google-apis-storagetransfer_v1 0.49.0 → 0.51.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: 0c23777b72a6caf5826d16a5acead7803344573415ac71096236cf456d08e2cb
4
- data.tar.gz: 8c4d3420be9605d0e59e66ed4a07d8d3eca23c959bd7bebc3d7c81de6287b790
3
+ metadata.gz: de139f75d09e9d91c9bf83311fb003536300c5a75deedfe0e4d3252406b1a0a6
4
+ data.tar.gz: ee453f7581db6510ecc5bc7821f0e4ffa643f89db23add21e676df736a98eb26
5
5
  SHA512:
6
- metadata.gz: e9d66999724c38c99e30e9d498e61bd371bb1ffa2d2f762dc9e414246e4cf80d5b25e92d228febdf17f1c1c01bde71ded73bfbe92ad0fd89346d13e1fbd7fede
7
- data.tar.gz: f31d2fd2745909a40967f312c2aced1469617544eb353ba72115ddf515ee04f8b934e4c5f689ef0639084c0daef424437e8bd0a59c9b29f938f1344ef13b15a0
6
+ metadata.gz: 8a04c1f1905655bca66f6b20d7a80603b46e6c7bbfed6d3cf41f4a05a9a1b06771121aa6ed339755ee1f49ae8506b486d36858a10eb256903616629e4020e225
7
+ data.tar.gz: 3f9da86ebf9aad586ddc9e2db7a9aa6ccc8a608e6a1bb5fa09904158a12c5e4bf152d1c11485924c59e10be56e5f9e6c1f7ac18eb5f80ad5616754b3a14d4e2a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-storagetransfer_v1
2
2
 
3
+ ### v0.51.0 (2024-05-19)
4
+
5
+ * Regenerated from discovery document revision 20240511
6
+ * Regenerated using generator version 0.15.0
7
+
8
+ ### v0.50.0 (2024-04-21)
9
+
10
+ * Regenerated from discovery document revision 20240412
11
+
3
12
  ### v0.49.0 (2024-03-17)
4
13
 
5
14
  * Regenerated from discovery document revision 20240311
@@ -22,7 +22,7 @@ module Google
22
22
  module Apis
23
23
  module StoragetransferV1
24
24
 
25
- # Represents an On-Premises Agent pool.
25
+ # Represents an agent pool.
26
26
  class AgentPool
27
27
  include Google::Apis::Core::Hashable
28
28
 
@@ -174,6 +174,13 @@ module Google
174
174
  # @return [String]
175
175
  attr_accessor :credentials_secret
176
176
 
177
+ # Egress bytes over a Google-managed private network. This network is shared
178
+ # between other users of Storage Transfer Service.
179
+ # Corresponds to the JSON property `managedPrivateNetwork`
180
+ # @return [Boolean]
181
+ attr_accessor :managed_private_network
182
+ alias_method :managed_private_network?, :managed_private_network
183
+
177
184
  # Root path to transfer objects. Must be an empty string or full path name that
178
185
  # ends with a '/'. This field is treated as an object prefix. As such, it should
179
186
  # generally not begin with a '/'.
@@ -201,6 +208,7 @@ module Google
201
208
  @bucket_name = args[:bucket_name] if args.key?(:bucket_name)
202
209
  @cloudfront_domain = args[:cloudfront_domain] if args.key?(:cloudfront_domain)
203
210
  @credentials_secret = args[:credentials_secret] if args.key?(:credentials_secret)
211
+ @managed_private_network = args[:managed_private_network] if args.key?(:managed_private_network)
204
212
  @path = args[:path] if args.key?(:path)
205
213
  @role_arn = args[:role_arn] if args.key?(:role_arn)
206
214
  end
@@ -683,33 +691,28 @@ module Google
683
691
  end
684
692
  end
685
693
 
686
- # Specifies the logging behavior for transfer operations. For cloud-to-cloud
687
- # transfers, logs are sent to Cloud Logging. See [Read transfer logs](https://
688
- # cloud.google.com/storage-transfer/docs/read-transfer-logs) for details. For
689
- # transfers to or from a POSIX file system, logs are stored in the Cloud Storage
690
- # bucket that is the source or sink of the transfer. See [Managing Transfer for
691
- # on-premises jobs] (https://cloud.google.com/storage-transfer/docs/managing-on-
692
- # prem-jobs#viewing-logs) for details.
694
+ # Specifies the logging behavior for transfer operations. Logs can be sent to
695
+ # Cloud Logging for all transfer types. See [Read transfer logs](https://cloud.
696
+ # google.com/storage-transfer/docs/read-transfer-logs) for details.
693
697
  class LoggingConfig
694
698
  include Google::Apis::Core::Hashable
695
699
 
696
- # For transfers with a PosixFilesystem source, this option enables the Cloud
697
- # Storage transfer logs for this transfer.
700
+ # For PosixFilesystem transfers, enables [file system transfer logs](https://
701
+ # cloud.google.com/storage-transfer/docs/on-prem-transfer-log-format) instead of,
702
+ # or in addition to, Cloud Logging. This option ignores [LoggableAction] and [
703
+ # LoggableActionState]. If these are set, Cloud Logging will also be enabled for
704
+ # this transfer.
698
705
  # Corresponds to the JSON property `enableOnpremGcsTransferLogs`
699
706
  # @return [Boolean]
700
707
  attr_accessor :enable_onprem_gcs_transfer_logs
701
708
  alias_method :enable_onprem_gcs_transfer_logs?, :enable_onprem_gcs_transfer_logs
702
709
 
703
- # States in which `log_actions` are logged. If empty, no logs are generated. Not
704
- # supported for transfers with PosixFilesystem data sources; use
705
- # enable_onprem_gcs_transfer_logs instead.
710
+ # States in which `log_actions` are logged. If empty, no logs are generated.
706
711
  # Corresponds to the JSON property `logActionStates`
707
712
  # @return [Array<String>]
708
713
  attr_accessor :log_action_states
709
714
 
710
- # Specifies the actions to be logged. If empty, no logs are generated. Not
711
- # supported for transfers with PosixFilesystem data sources; use
712
- # enable_onprem_gcs_transfer_logs instead.
715
+ # Specifies the actions to be logged. If empty, no logs are generated.
713
716
  # Corresponds to the JSON property `logActions`
714
717
  # @return [Array<String>]
715
718
  attr_accessor :log_actions
@@ -781,7 +784,9 @@ module Google
781
784
  attr_accessor :temporary_hold
782
785
 
783
786
  # Specifies how each object's `timeCreated` metadata is preserved for transfers.
784
- # If unspecified, the default behavior is the same as TIME_CREATED_SKIP.
787
+ # If unspecified, the default behavior is the same as TIME_CREATED_SKIP. This
788
+ # behavior is supported for transfers to GCS buckets from GCS, S3, Azure, S3
789
+ # Compatible, and Azure sources.
785
790
  # Corresponds to the JSON property `timeCreated`
786
791
  # @return [String]
787
792
  attr_accessor :time_created
@@ -1509,13 +1514,9 @@ module Google
1509
1514
  # @return [String]
1510
1515
  attr_accessor :latest_operation_name
1511
1516
 
1512
- # Specifies the logging behavior for transfer operations. For cloud-to-cloud
1513
- # transfers, logs are sent to Cloud Logging. See [Read transfer logs](https://
1514
- # cloud.google.com/storage-transfer/docs/read-transfer-logs) for details. For
1515
- # transfers to or from a POSIX file system, logs are stored in the Cloud Storage
1516
- # bucket that is the source or sink of the transfer. See [Managing Transfer for
1517
- # on-premises jobs] (https://cloud.google.com/storage-transfer/docs/managing-on-
1518
- # prem-jobs#viewing-logs) for details.
1517
+ # Specifies the logging behavior for transfer operations. Logs can be sent to
1518
+ # Cloud Logging for all transfer types. See [Read transfer logs](https://cloud.
1519
+ # google.com/storage-transfer/docs/read-transfer-logs) for details.
1519
1520
  # Corresponds to the JSON property `loggingConfig`
1520
1521
  # @return [Google::Apis::StoragetransferV1::LoggingConfig]
1521
1522
  attr_accessor :logging_config
@@ -1642,13 +1643,9 @@ module Google
1642
1643
  # @return [Array<Google::Apis::StoragetransferV1::ErrorSummary>]
1643
1644
  attr_accessor :error_breakdowns
1644
1645
 
1645
- # Specifies the logging behavior for transfer operations. For cloud-to-cloud
1646
- # transfers, logs are sent to Cloud Logging. See [Read transfer logs](https://
1647
- # cloud.google.com/storage-transfer/docs/read-transfer-logs) for details. For
1648
- # transfers to or from a POSIX file system, logs are stored in the Cloud Storage
1649
- # bucket that is the source or sink of the transfer. See [Managing Transfer for
1650
- # on-premises jobs] (https://cloud.google.com/storage-transfer/docs/managing-on-
1651
- # prem-jobs#viewing-logs) for details.
1646
+ # Specifies the logging behavior for transfer operations. Logs can be sent to
1647
+ # Cloud Logging for all transfer types. See [Read transfer logs](https://cloud.
1648
+ # google.com/storage-transfer/docs/read-transfer-logs) for details.
1652
1649
  # Corresponds to the JSON property `loggingConfig`
1653
1650
  # @return [Google::Apis::StoragetransferV1::LoggingConfig]
1654
1651
  attr_accessor :logging_config
@@ -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.49.0"
19
+ GEM_VERSION = "0.51.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.14.0"
22
+ GENERATOR_VERSION = "0.15.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240311"
25
+ REVISION = "20240511"
26
26
  end
27
27
  end
28
28
  end
@@ -307,6 +307,7 @@ module Google
307
307
  property :bucket_name, as: 'bucketName'
308
308
  property :cloudfront_domain, as: 'cloudfrontDomain'
309
309
  property :credentials_secret, as: 'credentialsSecret'
310
+ property :managed_private_network, as: 'managedPrivateNetwork'
310
311
  property :path, as: 'path'
311
312
  property :role_arn, as: 'roleArn'
312
313
  end
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.49.0
4
+ version: 0.51.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: 2024-03-17 00:00:00.000000000 Z
11
+ date: 2024-05-26 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.14.0
19
+ version: 0.15.0
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.14.0
29
+ version: 0.15.0
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/main/generated/google-apis-storagetransfer_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.49.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.51.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: []