google-apis-storagetransfer_v1 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa51b5bcc252594c88df167a7cad102d8357e3c7b6559a4462ef1847f56b9264
4
- data.tar.gz: 7518b21b3eafb652f33877966fef38fa51a719d775a166c71bea88d1a7c86a3e
3
+ metadata.gz: 254123704604921c8e30562570ce1e4c9837f15666939882e6bb7af6c95bef87
4
+ data.tar.gz: 679c01a531d04c5685acc3aebd66a9d71b9598be9870f289bae54ccddd380268
5
5
  SHA512:
6
- metadata.gz: 247c5add62be3000b2bccabe399682be3617c6af048cdfb2d8592e558b89ae2f40e7135d7b436cb9f69bb4da7dd92e258830c6a3339b2be6384447414c9cad21
7
- data.tar.gz: 727ec79a0e769e62ec51726f3115023da1feb2a2ce3888347313315ee08b4221068783bc8dfd531019ab483f2045056710011c3e4fcfbf7eef093fd315c19a75
6
+ metadata.gz: d89189a254f8ba858415a6c5f809ee60d83f75e8088caf809ffd7294000f686a8d79188db0821afbfd5723538c717578bc449348235aa89dfc7a4de09faae836
7
+ data.tar.gz: b2d41686bd7ab2c64a6bb121fd91b89c495d75caf70726ac0af2f4b32f0f3ef013ff1e363cf45f67bf5e04cb775f9e9ec8a6362cff31bf5f7d3265a7ddaf8bde
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-storagetransfer_v1
2
2
 
3
+ ### v0.10.0 (2021-07-01)
4
+
5
+ * Regenerated from discovery document revision 20210624
6
+ * Regenerated using generator version 0.4.0
7
+
3
8
  ### v0.9.0 (2021-06-24)
4
9
 
5
10
  * Regenerated from discovery document revision 20210617
@@ -76,6 +76,14 @@ module Google
76
76
  # @return [String]
77
77
  attr_accessor :path
78
78
 
79
+ # Input only. Role arn to support temporary credentials via
80
+ # AssumeRoleWithWebIdentity. When role arn is provided, transfer service will
81
+ # fetch temporary credentials for the session using AssumeRoleWithWebIdentity
82
+ # call for the provided role using the [GoogleServiceAccount] for this project.
83
+ # Corresponds to the JSON property `roleArn`
84
+ # @return [String]
85
+ attr_accessor :role_arn
86
+
79
87
  def initialize(**args)
80
88
  update!(**args)
81
89
  end
@@ -85,6 +93,7 @@ module Google
85
93
  @aws_access_key = args[:aws_access_key] if args.key?(:aws_access_key)
86
94
  @bucket_name = args[:bucket_name] if args.key?(:bucket_name)
87
95
  @path = args[:path] if args.key?(:path)
96
+ @role_arn = args[:role_arn] if args.key?(:role_arn)
88
97
  end
89
98
  end
90
99
 
@@ -141,9 +150,12 @@ module Google
141
150
  class AzureCredentials
142
151
  include Google::Apis::Core::Hashable
143
152
 
144
- # Required. Azure shared access signature. (see [Grant limited access to Azure
145
- # Storage resources using shared access signatures (SAS)](https://docs.microsoft.
146
- # com/en-us/azure/storage/common/storage-sas-overview)).
153
+ # Required. Azure shared access signature (SAS). *Note:*Copying data from Azure
154
+ # Data Lake Storage (ADLS) Gen 2 is in [Preview](/products/#product-launch-
155
+ # stages). During Preview, if you are copying data from ADLS Gen 2, you must use
156
+ # an account SAS. For more information about SAS, see [Grant limited access to
157
+ # Azure Storage resources using shared access signatures (SAS)](https://docs.
158
+ # microsoft.com/en-us/azure/storage/common/storage-sas-overview).
147
159
  # Corresponds to the JSON property `sasToken`
148
160
  # @return [String]
149
161
  attr_accessor :sas_token
@@ -328,6 +340,11 @@ module Google
328
340
  # @return [String]
329
341
  attr_accessor :account_email
330
342
 
343
+ # Unique identifier for the service account.
344
+ # Corresponds to the JSON property `subjectId`
345
+ # @return [String]
346
+ attr_accessor :subject_id
347
+
331
348
  def initialize(**args)
332
349
  update!(**args)
333
350
  end
@@ -335,6 +352,7 @@ module Google
335
352
  # Update properties of this object
336
353
  def update!(**args)
337
354
  @account_email = args[:account_email] if args.key?(:account_email)
355
+ @subject_id = args[:subject_id] if args.key?(:subject_id)
338
356
  end
339
357
  end
340
358
 
@@ -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.9.0"
19
+ GEM_VERSION = "0.10.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.3.0"
22
+ GENERATOR_VERSION = "0.4.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210617"
25
+ REVISION = "20210624"
26
26
  end
27
27
  end
28
28
  end
@@ -211,6 +211,7 @@ module Google
211
211
 
212
212
  property :bucket_name, as: 'bucketName'
213
213
  property :path, as: 'path'
214
+ property :role_arn, as: 'roleArn'
214
215
  end
215
216
  end
216
217
 
@@ -283,6 +284,7 @@ module Google
283
284
  # @private
284
285
  class Representation < Google::Apis::Core::JsonRepresentation
285
286
  property :account_email, as: 'accountEmail'
287
+ property :subject_id, as: 'subjectId'
286
288
  end
287
289
  end
288
290
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-storagetransfer_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-28 00:00:00.000000000 Z
11
+ date: 2021-07-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.3'
19
+ version: '0.4'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.3'
29
+ version: '0.4'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-storagetransfer_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.9.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.10.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-storagetransfer_v1
63
63
  post_install_message:
64
64
  rdoc_options: []