Skip to content

Commit

Permalink
feat: support cross-bucket replication
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 707205525

Source-Link: googleapis/googleapis@67495ab

Source-Link: googleapis/googleapis-gen@9c2deac
Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuU3RvcmFnZVRyYW5zZmVyLlYxLy5Pd2xCb3QueWFtbCIsImgiOiI5YzJkZWFjOTQwY2VkMjhkNjhjODI5NmQ0YWViMTMxMzlkOGFjOTE0In0=
  • Loading branch information
gcf-owl-bot[bot] authored and amanda-tarafa committed Dec 18, 2024
1 parent 3b15a19 commit 7dea52d
Show file tree
Hide file tree
Showing 2 changed files with 673 additions and 172 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@ static TransferReflection() {
"Zi5FbXB0eSIx2kEEbmFtZYLT5JMCJCoiL3YxL3tuYW1lPXByb2plY3RzLyov",
"YWdlbnRQb29scy8qfRpSykEec3RvcmFnZXRyYW5zZmVyLmdvb2dsZWFwaXMu",
"Y29t0kEuaHR0cHM6Ly93d3cuZ29vZ2xlYXBpcy5jb20vYXV0aC9jbG91ZC1w",
"bGF0Zm9ybULvAQojY29tLmdvb2dsZS5zdG9yYWdldHJhbnNmZXIudjEucHJv",
"bGF0Zm9ybULsAQojY29tLmdvb2dsZS5zdG9yYWdldHJhbnNmZXIudjEucHJv",
"dG9CDVRyYW5zZmVyUHJvdG9aTWNsb3VkLmdvb2dsZS5jb20vZ28vc3RvcmFn",
"ZXRyYW5zZmVyL2FwaXYxL3N0b3JhZ2V0cmFuc2ZlcnBiO3N0b3JhZ2V0cmFu",
"c2ZlcnBi+AEBqgIfR29vZ2xlLkNsb3VkLlN0b3JhZ2VUcmFuc2Zlci5WMcoC",
"H0dvb2dsZVxDbG91ZFxTdG9yYWdlVHJhbnNmZXJcVjHqAiJHb29nbGU6OkNs",
"b3VkOjpTdG9yYWdlVHJhbnNmZXI6OlYxYgZwcm90bzM="));
"c2ZlcnBiqgIfR29vZ2xlLkNsb3VkLlN0b3JhZ2VUcmFuc2Zlci5WMcoCH0dv",
"b2dsZVxDbG91ZFxTdG9yYWdlVHJhbnNmZXJcVjHqAiJHb29nbGU6OkNsb3Vk",
"OjpTdG9yYWdlVHJhbnNmZXI6OlYxYgZwcm90bzM="));
descriptor = pbr::FileDescriptor.FromGeneratedCode(descriptorData,
new pbr::FileDescriptor[] { global::Google.Api.AnnotationsReflection.Descriptor, global::Google.Api.ClientReflection.Descriptor, global::Google.Api.FieldBehaviorReflection.Descriptor, global::Google.LongRunning.OperationsReflection.Descriptor, global::Google.Protobuf.WellKnownTypes.EmptyReflection.Descriptor, global::Google.Protobuf.WellKnownTypes.FieldMaskReflection.Descriptor, global::Google.Cloud.StorageTransfer.V1.TransferTypesReflection.Descriptor, },
new pbr::GeneratedClrTypeInfo(null, null, new pbr::GeneratedClrTypeInfo[] {
Expand Down Expand Up @@ -1437,17 +1437,32 @@ public ListTransferJobsRequest Clone() {
private string filter_ = "";
/// <summary>
/// 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].
/// ```
/// {
/// "projectId":"my_project_id",
/// "jobNames":["jobid1","jobid2",...],
/// "jobStatuses":["status1","status2",...],
/// "dataBackend":"QUERY_REPLICATION_CONFIGS",
/// "sourceBucket":"source-bucket-name",
/// "sinkBucket":"sink-bucket-name",
/// }
/// ```
///
/// The JSON formatting in the example is for display only; provide the
/// query parameters without spaces or line breaks.
///
/// * `projectId` is required.
/// * Since `jobNames` and `jobStatuses` support multiple values, their values
/// must be specified with array notation. `jobNames` and `jobStatuses` are
/// optional. Valid values are case-insensitive:
/// * [ENABLED][google.storagetransfer.v1.TransferJob.Status.ENABLED]
/// * [DISABLED][google.storagetransfer.v1.TransferJob.Status.DISABLED]
/// * [DELETED][google.storagetransfer.v1.TransferJob.Status.DELETED]
/// * Specify `"dataBackend":"QUERY_REPLICATION_CONFIGS"` to return a list of
/// cross-bucket replication jobs.
/// * Limit the results to jobs from a particular bucket with `sourceBucket`
/// and/or to a particular bucket with `sinkBucket`.
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
Expand Down
Loading

0 comments on commit 7dea52d

Please sign in to comment.