google-apis-storagetransfer_v1 0.60.0 → 0.61.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ddedab099252dfe42cb4b02749a28b1ec06700ae3aa31d61df0700d3f912c8eb
4
- data.tar.gz: 88772415bc21828443bd06835586f5d8bc68500620673619645542b0892f9dbb
3
+ metadata.gz: 6d8420077de530bc80771f299cc5ecf40ce07c7f924782bd26395a9a9a4493ea
4
+ data.tar.gz: 819aca6a670bd2417bc2f5217b92fa2de5e216fefdea412c974964632758526b
5
5
  SHA512:
6
- metadata.gz: aa4df839dbc9d09ca7b1f190a91bd2f39c36701b8e293e37d4175eece727d73d63b8492d6c30e30857900b8d93fcc334edb6ca3cb154b62f99f07abe8c31e99f
7
- data.tar.gz: 53f50296f570525bed23fcf198d7bc43c301c3d7c020a894f8f2acea6ce3ba265cc3315d23617032c92c2b5df1e8ae9a5f63037e209c59067534b6c259e675bb
6
+ metadata.gz: 49b5b627b3bdaea668fce70149ced15388193974ed0d9501a41ea0796f663ef7f1360aa6f6f0f1383b03dfaeb1c2bfb1e9cc1d20cb60d5425595b1ae2ee6282a
7
+ data.tar.gz: 86a230ac133e80604c4b0528203e5941931498ea43983a38becf4dae20bb96f49a257d2c60de1136c9867c969cfff518b1cc807993675e4881559d125789a48d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-storagetransfer_v1
2
2
 
3
+ ### v0.61.0 (2025-11-16)
4
+
5
+ * Regenerated from discovery document revision 20251106
6
+
3
7
  ### v0.60.0 (2025-10-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20251010
@@ -188,6 +188,13 @@ module Google
188
188
  # @return [String]
189
189
  attr_accessor :path
190
190
 
191
+ # Service Directory Service to be used as the endpoint for transfers from a
192
+ # custom VPC. Format: `projects/`project_id`/locations/`location`/namespaces/`
193
+ # namespace`/services/`service``
194
+ # Corresponds to the JSON property `privateNetworkService`
195
+ # @return [String]
196
+ attr_accessor :private_network_service
197
+
191
198
  # The Amazon Resource Name (ARN) of the role to support temporary credentials
192
199
  # via `AssumeRoleWithWebIdentity`. For more information about ARNs, see [IAM
193
200
  # ARNs](https://docs.aws.amazon.com/IAM/latest/UserGuide/reference_identifiers.
@@ -210,6 +217,7 @@ module Google
210
217
  @credentials_secret = args[:credentials_secret] if args.key?(:credentials_secret)
211
218
  @managed_private_network = args[:managed_private_network] if args.key?(:managed_private_network)
212
219
  @path = args[:path] if args.key?(:path)
220
+ @private_network_service = args[:private_network_service] if args.key?(:private_network_service)
213
221
  @role_arn = args[:role_arn] if args.key?(:role_arn)
214
222
  end
215
223
  end
@@ -266,6 +274,13 @@ module Google
266
274
  # @return [String]
267
275
  attr_accessor :path
268
276
 
277
+ # Service Directory Service to be used as the endpoint for transfers from a
278
+ # custom VPC. Format: `projects/`project_id`/locations/`location`/namespaces/`
279
+ # namespace`/services/`service``
280
+ # Corresponds to the JSON property `privateNetworkService`
281
+ # @return [String]
282
+ attr_accessor :private_network_service
283
+
269
284
  # Required. The name of the Azure Storage account.
270
285
  # Corresponds to the JSON property `storageAccount`
271
286
  # @return [String]
@@ -282,6 +297,7 @@ module Google
282
297
  @credentials_secret = args[:credentials_secret] if args.key?(:credentials_secret)
283
298
  @federated_identity_config = args[:federated_identity_config] if args.key?(:federated_identity_config)
284
299
  @path = args[:path] if args.key?(:path)
300
+ @private_network_service = args[:private_network_service] if args.key?(:private_network_service)
285
301
  @storage_account = args[:storage_account] if args.key?(:storage_account)
286
302
  end
287
303
  end
@@ -987,6 +1003,11 @@ module Google
987
1003
  # @return [String]
988
1004
  attr_accessor :last_modified_since
989
1005
 
1006
+ # Optional. If specified, only objects matching this glob are transferred.
1007
+ # Corresponds to the JSON property `matchGlob`
1008
+ # @return [String]
1009
+ attr_accessor :match_glob
1010
+
990
1011
  # Ensures that objects are not transferred if a specific maximum time has
991
1012
  # elapsed since the "last modification time". When a TransferOperation begins,
992
1013
  # objects with a "last modification time" are transferred only if the elapsed
@@ -1019,6 +1040,7 @@ module Google
1019
1040
  @include_prefixes = args[:include_prefixes] if args.key?(:include_prefixes)
1020
1041
  @last_modified_before = args[:last_modified_before] if args.key?(:last_modified_before)
1021
1042
  @last_modified_since = args[:last_modified_since] if args.key?(:last_modified_since)
1043
+ @match_glob = args[:match_glob] if args.key?(:match_glob)
1022
1044
  @max_time_elapsed_since_last_modification = args[:max_time_elapsed_since_last_modification] if args.key?(:max_time_elapsed_since_last_modification)
1023
1045
  @min_time_elapsed_since_last_modification = args[:min_time_elapsed_since_last_modification] if args.key?(:min_time_elapsed_since_last_modification)
1024
1046
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module StoragetransferV1
18
18
  # Version of the google-apis-storagetransfer_v1 gem
19
- GEM_VERSION = "0.60.0"
19
+ GEM_VERSION = "0.61.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20251010"
25
+ REVISION = "20251106"
26
26
  end
27
27
  end
28
28
  end
@@ -315,6 +315,7 @@ module Google
315
315
  property :credentials_secret, as: 'credentialsSecret'
316
316
  property :managed_private_network, as: 'managedPrivateNetwork'
317
317
  property :path, as: 'path'
318
+ property :private_network_service, as: 'privateNetworkService'
318
319
  property :role_arn, as: 'roleArn'
319
320
  end
320
321
  end
@@ -329,6 +330,7 @@ module Google
329
330
  property :federated_identity_config, as: 'federatedIdentityConfig', class: Google::Apis::StoragetransferV1::FederatedIdentityConfig, decorator: Google::Apis::StoragetransferV1::FederatedIdentityConfig::Representation
330
331
 
331
332
  property :path, as: 'path'
333
+ property :private_network_service, as: 'privateNetworkService'
332
334
  property :storage_account, as: 'storageAccount'
333
335
  end
334
336
  end
@@ -502,6 +504,7 @@ module Google
502
504
  collection :include_prefixes, as: 'includePrefixes'
503
505
  property :last_modified_before, as: 'lastModifiedBefore'
504
506
  property :last_modified_since, as: 'lastModifiedSince'
507
+ property :match_glob, as: 'matchGlob'
505
508
  property :max_time_elapsed_since_last_modification, as: 'maxTimeElapsedSinceLastModification'
506
509
  property :min_time_elapsed_since_last_modification, as: 'minTimeElapsedSinceLastModification'
507
510
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-storagetransfer_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.60.0
4
+ version: 0.61.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storagetransfer_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.60.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.61.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storagetransfer_v1
62
62
  rdoc_options: []
63
63
  require_paths: