google-apis-storagetransfer_v1 0.39.0 → 0.41.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: 132d4c3efa0f574d65743b8d8a0a8615c6d9a5f2155ecf2301d41857f41dc563
4
- data.tar.gz: 5807c1e203161f480470e8e1d89bd33389124d6ca85f20818d6a664b8d4ec311
3
+ metadata.gz: 1cec4b2c8e8c08c4d1f39f14cd48c3b25546eb86393e531c283355419d9f8685
4
+ data.tar.gz: acae730d4de941cd67c49aca3726b6aeec9fafb91031b351ea5c78d02aa50dc1
5
5
  SHA512:
6
- metadata.gz: 3b0e500cbdd2298f8fd1cbbb381395c76196c11019748f79b8f4d69a13e65172541641ee76c4a2bfc80201834b26a033ab2a467a76a1b2c00b349e7b20160d16
7
- data.tar.gz: e48917e9cce4c9fb3fc01fcd3bbedcdc87974ca4cf1ed7bfaa1f87533f1bc9272b1abaacd26fca2ef368d3dd19aa3724380c299bb7cffeb82b821597c29b6c10
6
+ metadata.gz: f70a8baa727346baaee29d4b37bedb7f332a68871db014ff91f0225ecf88f639763d15df251ce738b96670c231646f27c97c1917187187c029dc8048f54d834f
7
+ data.tar.gz: 91b7c26e2ac64037a387fb7a56252099e6b1d6415260614b30bf5a996082ccc5e7eea0be97fd8b801d4515addb5a098a3899b59e84abd6b5a164a0e52602f6c9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-storagetransfer_v1
2
2
 
3
+ ### v0.41.0 (2023-09-10)
4
+
5
+ * Regenerated from discovery document revision 20230831
6
+
7
+ ### v0.40.0 (2023-08-13)
8
+
9
+ * Regenerated from discovery document revision 20230807
10
+
3
11
  ### v0.39.0 (2023-05-21)
4
12
 
5
13
  * Regenerated from discovery document revision 20230516
@@ -154,6 +154,13 @@ module Google
154
154
  # @return [String]
155
155
  attr_accessor :bucket_name
156
156
 
157
+ # Optional. Cloudfront domain name pointing to this bucket (as origin), to use
158
+ # when fetching. Format: `https://`id`.cloudfront.net` or any valid custom
159
+ # domain `https://...`
160
+ # Corresponds to the JSON property `cloudfrontDomain`
161
+ # @return [String]
162
+ attr_accessor :cloudfront_domain
163
+
157
164
  # Optional. The Resource name of a secret in Secret Manager. The Azure SAS token
158
165
  # must be stored in Secret Manager in JSON format: ` "sas_token" : "SAS_TOKEN" `
159
166
  # GoogleServiceAccount must be granted `roles/secretmanager.secretAccessor` for
@@ -192,6 +199,7 @@ module Google
192
199
  def update!(**args)
193
200
  @aws_access_key = args[:aws_access_key] if args.key?(:aws_access_key)
194
201
  @bucket_name = args[:bucket_name] if args.key?(:bucket_name)
202
+ @cloudfront_domain = args[:cloudfront_domain] if args.key?(:cloudfront_domain)
195
203
  @credentials_secret = args[:credentials_secret] if args.key?(:credentials_secret)
196
204
  @path = args[:path] if args.key?(:path)
197
205
  @role_arn = args[:role_arn] if args.key?(:role_arn)
@@ -954,13 +962,13 @@ module Google
954
962
  # @return [String]
955
963
  attr_accessor :name
956
964
 
957
- # The normal response of the operation in case of success. If the original
958
- # method returns no data on success, such as `Delete`, the response is `google.
959
- # protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`,
960
- # the response should be the resource. For other methods, the response should
961
- # have the type `XxxResponse`, where `Xxx` is the original method name. For
962
- # example, if the original method name is `TakeSnapshot()`, the inferred
963
- # response type is `TakeSnapshotResponse`.
965
+ # The normal, successful response of the operation. If the original method
966
+ # returns no data on success, such as `Delete`, the response is `google.protobuf.
967
+ # Empty`. If the original method is standard `Get`/`Create`/`Update`, the
968
+ # response should be the resource. For other methods, the response should have
969
+ # the type `XxxResponse`, where `Xxx` is the original method name. For example,
970
+ # if the original method name is `TakeSnapshot()`, the inferred response type is
971
+ # `TakeSnapshotResponse`.
964
972
  # Corresponds to the JSON property `response`
965
973
  # @return [Hash<String,Object>]
966
974
  attr_accessor :response
@@ -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.39.0"
19
+ GEM_VERSION = "0.41.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230516"
25
+ REVISION = "20230831"
26
26
  end
27
27
  end
28
28
  end
@@ -293,6 +293,7 @@ module Google
293
293
  property :aws_access_key, as: 'awsAccessKey', class: Google::Apis::StoragetransferV1::AwsAccessKey, decorator: Google::Apis::StoragetransferV1::AwsAccessKey::Representation
294
294
 
295
295
  property :bucket_name, as: 'bucketName'
296
+ property :cloudfront_domain, as: 'cloudfrontDomain'
296
297
  property :credentials_secret, as: 'credentialsSecret'
297
298
  property :path, as: 'path'
298
299
  property :role_arn, as: 'roleArn'
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.39.0
4
+ version: 0.41.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: 2023-05-21 00:00:00.000000000 Z
11
+ date: 2023-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -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/main/generated/google-apis-storagetransfer_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.39.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.41.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-storagetransfer_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.4.2
78
+ rubygems_version: 3.4.19
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Storage Transfer API V1