// Copyright 2021 Google LLC // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. syntax = "proto3"; package google.storagetransfer.v1; import "google/api/annotations.proto"; import "google/api/client.proto"; import "google/api/field_behavior.proto"; import "google/longrunning/operations.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/empty.proto"; import "google/protobuf/field_mask.proto"; import "google/storagetransfer/v1/transfer_types.proto"; option cc_enable_arenas = true; option csharp_namespace = "Google.Cloud.StorageTransfer.V1"; option go_package = "google.golang.org/genproto/googleapis/storagetransfer/v1;storagetransfer"; option java_outer_classname = "TransferProto"; option java_package = "com.google.storagetransfer.v1.proto"; option php_namespace = "Google\\Cloud\\StorageTransfer\\V1"; option ruby_package = "Google::Cloud::StorageTransfer::V1"; // Storage Transfer Service and its protos. // Transfers data between between Google Cloud Storage buckets or from a data // source external to Google to a Cloud Storage bucket. service StorageTransferService { option (google.api.default_host) = "storagetransfer.googleapis.com"; option (google.api.oauth_scopes) = "https://www.googleapis.com/auth/cloud-platform"; // Returns the Google service account that is used by Storage Transfer // Service to access buckets in the project where transfers // run or in other projects. Each Google service account is associated // with one Google Cloud Platform Console project. Users // should add this service account to the Google Cloud Storage bucket // ACLs to grant access to Storage Transfer Service. This service // account is created and owned by Storage Transfer Service and can // only be used by Storage Transfer Service. rpc GetGoogleServiceAccount(GetGoogleServiceAccountRequest) returns (GoogleServiceAccount) { option (google.api.http) = { get: "/v1/googleServiceAccounts/{project_id}" }; } // Creates a transfer job that runs periodically. rpc CreateTransferJob(CreateTransferJobRequest) returns (TransferJob) { option (google.api.http) = { post: "/v1/transferJobs" body: "transfer_job" }; } // Updates a transfer job. Updating a job's transfer spec does not affect // transfer operations that are running already. // // **Note:** The job's [status][google.storagetransfer.v1.TransferJob.status] // field can be modified using this RPC (for example, to set a job's status to // [DELETED][google.storagetransfer.v1.TransferJob.Status.DELETED], // [DISABLED][google.storagetransfer.v1.TransferJob.Status.DISABLED], or // [ENABLED][google.storagetransfer.v1.TransferJob.Status.ENABLED]). rpc UpdateTransferJob(UpdateTransferJobRequest) returns (TransferJob) { option (google.api.http) = { patch: "/v1/{job_name=transferJobs/**}" body: "*" }; } // Gets a transfer job. rpc GetTransferJob(GetTransferJobRequest) returns (TransferJob) { option (google.api.http) = { get: "/v1/{job_name=transferJobs/**}" }; } // Lists transfer jobs. rpc ListTransferJobs(ListTransferJobsRequest) returns (ListTransferJobsResponse) { option (google.api.http) = { get: "/v1/transferJobs" }; } // Pauses a transfer operation. rpc PauseTransferOperation(PauseTransferOperationRequest) returns (google.protobuf.Empty) { option (google.api.http) = { post: "/v1/{name=transferOperations/**}:pause" body: "*" }; } // Resumes a transfer operation that is paused. rpc ResumeTransferOperation(ResumeTransferOperationRequest) returns (google.protobuf.Empty) { option (google.api.http) = { post: "/v1/{name=transferOperations/**}:resume" body: "*" }; } // Attempts to start a new TransferOperation for the current TransferJob. A // TransferJob has a maximum of one active TransferOperation. If this method // is called while a TransferOperation is active, an error wil be returned. rpc RunTransferJob(RunTransferJobRequest) returns (google.longrunning.Operation) { option (google.api.http) = { post: "/v1/{job_name=transferJobs/**}:run" body: "*" }; option (google.longrunning.operation_info) = { response_type: "google.protobuf.Empty" metadata_type: "TransferOperation" }; } } // Request passed to GetGoogleServiceAccount. message GetGoogleServiceAccountRequest { // Required. The ID of the Google Cloud Platform Console project that the // Google service account is associated with. string project_id = 1 [(google.api.field_behavior) = REQUIRED]; } // Request passed to CreateTransferJob. message CreateTransferJobRequest { // Required. The job to create. TransferJob transfer_job = 1 [(google.api.field_behavior) = REQUIRED]; } // Request passed to UpdateTransferJob. message UpdateTransferJobRequest { // Required. The name of job to update. string job_name = 1 [(google.api.field_behavior) = REQUIRED]; // Required. The ID of the Google Cloud Platform Console project that owns the // job. string project_id = 2 [(google.api.field_behavior) = REQUIRED]; // Required. The job to update. `transferJob` is expected to specify only // four fields: // [description][google.storagetransfer.v1.TransferJob.description], // [transfer_spec][google.storagetransfer.v1.TransferJob.transfer_spec], // [notification_config][google.storagetransfer.v1.TransferJob.notification_config], // and [status][google.storagetransfer.v1.TransferJob.status]. An // `UpdateTransferJobRequest` that specifies other fields are rejected with // the error [INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT]. Updating a // job status to // [DELETED][google.storagetransfer.v1.TransferJob.Status.DELETED] requires // `storagetransfer.jobs.delete` permissions. TransferJob transfer_job = 3 [(google.api.field_behavior) = REQUIRED]; // The field mask of the fields in `transferJob` that are to be updated in // this request. Fields in `transferJob` that can be updated are: // [description][google.storagetransfer.v1.TransferJob.description], // [transfer_spec][google.storagetransfer.v1.TransferJob.transfer_spec], // [notification_config][google.storagetransfer.v1.TransferJob.notification_config], // and [status][google.storagetransfer.v1.TransferJob.status]. To update the // `transfer_spec` of the job, a complete transfer specification must be // provided. An incomplete specification missing any required fields is // rejected with the error // [INVALID_ARGUMENT][google.rpc.Code.INVALID_ARGUMENT]. google.protobuf.FieldMask update_transfer_job_field_mask = 4; } // Request passed to GetTransferJob. message GetTransferJobRequest { // Required. // The job to get. string job_name = 1 [(google.api.field_behavior) = REQUIRED]; // Required. The ID of the Google Cloud Platform Console project that owns the // job. string project_id = 2 [(google.api.field_behavior) = REQUIRED]; } // `projectId`, `jobNames`, and `jobStatuses` are query parameters that can // be specified when listing transfer jobs. message ListTransferJobsRequest { // Required. A list of query parameters specified as JSON text in the form of: // `{"projectId":"my_project_id", // "jobNames":["jobid1","jobid2",...], // "jobStatuses":["status1","status2",...]}` // // Since `jobNames` and `jobStatuses` support multiple values, their values // must be specified with array notation. `projectId` is required. // `jobNames` and `jobStatuses` are optional. The valid values for // `jobStatuses` are case-insensitive: // [ENABLED][google.storagetransfer.v1.TransferJob.Status.ENABLED], // [DISABLED][google.storagetransfer.v1.TransferJob.Status.DISABLED], and // [DELETED][google.storagetransfer.v1.TransferJob.Status.DELETED]. string filter = 1 [(google.api.field_behavior) = REQUIRED]; // The list page size. The max allowed value is 256. int32 page_size = 4; // The list page token. string page_token = 5; } // Response from ListTransferJobs. message ListTransferJobsResponse { // A list of transfer jobs. repeated TransferJob transfer_jobs = 1; // The list next page token. string next_page_token = 2; } // Request passed to PauseTransferOperation. message PauseTransferOperationRequest { // Required. The name of the transfer operation. string name = 1 [(google.api.field_behavior) = REQUIRED]; } // Request passed to ResumeTransferOperation. message ResumeTransferOperationRequest { // Required. The name of the transfer operation. string name = 1 [(google.api.field_behavior) = REQUIRED]; } // Request passed to RunTransferJob. message RunTransferJobRequest { // Required. The name of the transfer job. string job_name = 1 [(google.api.field_behavior) = REQUIRED]; // Required. The ID of the Google Cloud Platform Console project that owns the // transfer job. string project_id = 2 [(google.api.field_behavior) = REQUIRED]; }