google-apis-storagetransfer_v1 0.56.0 → 0.57.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: 15813386077dd5e00843d77b46c9f642d104debcc58c64976de7e375c871403c
4
- data.tar.gz: 7e1399c404e129cc3adebf9133c3f3828a3c4880d06f448646612b5676486201
3
+ metadata.gz: 5eb70834d3d32c803c70331889bc8e2a9cfa2f0b3d1b878082c103be634aba6e
4
+ data.tar.gz: cd631895d403fc42173ab7357098b8a1fbb5e9c4800885039734fc2ed3a226f2
5
5
  SHA512:
6
- metadata.gz: 4e65c9ff28f36bd743613912e1254f83bc98a9468cbd2747cd4af8cfa25af71377a045dcb29f97439b7ec58643ef26762b5a924f3d96a7addd98ae7012e5b133
7
- data.tar.gz: 07cc7e3d5a66e80f89ca9611b18246d91e821c5e608ce506cd509fb383d124e7e360f12505bc505072c2fd12725f4c444a2ecde01c5f98ff2bb0147164c35c16
6
+ metadata.gz: 2318e0ea4f847cc6a4c3e0817d8c642177531542e43f817bc04f5ec778b92deea1b3728c18235d1ccd36f8beb8dce7611366e3451071b262bc6945fed89585f1
7
+ data.tar.gz: 55756a97866d846a4dd989b48664a63e1266f9e44ca5686fe71ef2716d2e1f2d8e9c82ad23126920c11a758352e46ca18f343122a9bf89e883d61d4564afa7bf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-storagetransfer_v1
2
2
 
3
+ ### v0.57.0 (2025-05-18)
4
+
5
+ * Regenerated from discovery document revision 20250510
6
+
3
7
  ### v0.56.0 (2025-05-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20250503
@@ -248,6 +248,20 @@ module Google
248
248
  # @return [String]
249
249
  attr_accessor :credentials_secret
250
250
 
251
+ # Identities of a user registered Azure application that enables identity
252
+ # federation to trust tokens issued by the user's Google service account. For
253
+ # more information about Azure application and identity federation, see [
254
+ # Register an application with the Microsoft identity platform] (https://learn.
255
+ # microsoft.com/en-us/entra/identity-platform/quickstart-register-app) Azure
256
+ # RBAC roles then need be assigned to the Azure application to authorize access
257
+ # to the user's Azure data source. For more information about Azure RBAC roles
258
+ # for blobs, see [Manage Access Rights with RBAC] (https://learn.microsoft.com/
259
+ # en-us/rest/api/storageservices/authorize-with-azure-active-directory#manage-
260
+ # access-rights-with-rbac)
261
+ # Corresponds to the JSON property `federatedIdentityConfig`
262
+ # @return [Google::Apis::StoragetransferV1::FederatedIdentityConfig]
263
+ attr_accessor :federated_identity_config
264
+
251
265
  # Root path to transfer objects. Must be an empty string or full path name that
252
266
  # ends with a '/'. This field is treated as an object prefix. As such, it should
253
267
  # generally not begin with a '/'.
@@ -269,6 +283,7 @@ module Google
269
283
  @azure_credentials = args[:azure_credentials] if args.key?(:azure_credentials)
270
284
  @container = args[:container] if args.key?(:container)
271
285
  @credentials_secret = args[:credentials_secret] if args.key?(:credentials_secret)
286
+ @federated_identity_config = args[:federated_identity_config] if args.key?(:federated_identity_config)
272
287
  @path = args[:path] if args.key?(:path)
273
288
  @storage_account = args[:storage_account] if args.key?(:storage_account)
274
289
  end
@@ -484,6 +499,41 @@ module Google
484
499
  end
485
500
  end
486
501
 
502
+ # Identities of a user registered Azure application that enables identity
503
+ # federation to trust tokens issued by the user's Google service account. For
504
+ # more information about Azure application and identity federation, see [
505
+ # Register an application with the Microsoft identity platform] (https://learn.
506
+ # microsoft.com/en-us/entra/identity-platform/quickstart-register-app) Azure
507
+ # RBAC roles then need be assigned to the Azure application to authorize access
508
+ # to the user's Azure data source. For more information about Azure RBAC roles
509
+ # for blobs, see [Manage Access Rights with RBAC] (https://learn.microsoft.com/
510
+ # en-us/rest/api/storageservices/authorize-with-azure-active-directory#manage-
511
+ # access-rights-with-rbac)
512
+ class FederatedIdentityConfig
513
+ include Google::Apis::Core::Hashable
514
+
515
+ # Required. Client (application) ID of the application with federated
516
+ # credentials.
517
+ # Corresponds to the JSON property `clientId`
518
+ # @return [String]
519
+ attr_accessor :client_id
520
+
521
+ # Required. Tenant (directory) ID of the application with federated credentials.
522
+ # Corresponds to the JSON property `tenantId`
523
+ # @return [String]
524
+ attr_accessor :tenant_id
525
+
526
+ def initialize(**args)
527
+ update!(**args)
528
+ end
529
+
530
+ # Update properties of this object
531
+ def update!(**args)
532
+ @client_id = args[:client_id] if args.key?(:client_id)
533
+ @tenant_id = args[:tenant_id] if args.key?(:tenant_id)
534
+ end
535
+ end
536
+
487
537
  # In a GcsData resource, an object's name is the Cloud Storage object's name and
488
538
  # its "last modification time" refers to the object's `updated` property of
489
539
  # Cloud Storage objects, which changes when the content or the metadata of the
@@ -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.56.0"
19
+ GEM_VERSION = "0.57.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250503"
25
+ REVISION = "20250510"
26
26
  end
27
27
  end
28
28
  end
@@ -100,6 +100,12 @@ module Google
100
100
  include Google::Apis::Core::JsonObjectSupport
101
101
  end
102
102
 
103
+ class FederatedIdentityConfig
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
103
109
  class GcsData
104
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
111
 
@@ -320,6 +326,8 @@ module Google
320
326
 
321
327
  property :container, as: 'container'
322
328
  property :credentials_secret, as: 'credentialsSecret'
329
+ property :federated_identity_config, as: 'federatedIdentityConfig', class: Google::Apis::StoragetransferV1::FederatedIdentityConfig, decorator: Google::Apis::StoragetransferV1::FederatedIdentityConfig::Representation
330
+
323
331
  property :path, as: 'path'
324
332
  property :storage_account, as: 'storageAccount'
325
333
  end
@@ -387,6 +395,14 @@ module Google
387
395
  end
388
396
  end
389
397
 
398
+ class FederatedIdentityConfig
399
+ # @private
400
+ class Representation < Google::Apis::Core::JsonRepresentation
401
+ property :client_id, as: 'clientId'
402
+ property :tenant_id, as: 'tenantId'
403
+ end
404
+ end
405
+
390
406
  class GcsData
391
407
  # @private
392
408
  class Representation < Google::Apis::Core::JsonRepresentation
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.56.0
4
+ version: 0.57.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.56.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.57.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: