google-apis-storagetransfer_v1 0.50.0 → 0.52.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: e249f52e4522c0fe96f300163f39961d46a736094b539b31b3c0135ee288bfd7
4
- data.tar.gz: f91a1be4a7573965df5bd7d4a547985afd424bea9682fcacd612f53180bc2b9a
3
+ metadata.gz: 8ea537f54c6eaa8691f9f5b53d5107d974133441b3e8836a98509bfc895c6ff7
4
+ data.tar.gz: e675e26682debe757474c44159be3d832d5c5c28a735da635bc8618fd7c12ec0
5
5
  SHA512:
6
- metadata.gz: b6557156562fb05b75ead8630501c718e3c55b2733d4899b630a11b6305b821c6c4234df6baad14aeb7fbad6a1f711f0e1edd27f1e05202ac90b51acf5bd65ba
7
- data.tar.gz: '018d9d4413c7360049048a13027bc294ce29068dbe877d26015051180c6e6d205e628020fc3d92765c186ba5670688310751f0ef2233420727b7a811b5780eeb'
6
+ metadata.gz: fcb96615659419493a2c3d06f091232c5b0e6917d095ed8fe416546cc29ed883e380954ada16d9a8ce6077414b29fa1656f4d77f33d56318cff62f8588244f73
7
+ data.tar.gz: 80fc9be72ca764d37573b97163f4d577270e56a312a93613b6323c56139e35492b88392556210668c11b1891465c030dc70ef9e2efc25dc4ebc641c86875c691
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-storagetransfer_v1
2
2
 
3
+ ### v0.52.0 (2024-06-26)
4
+
5
+ * Regenerated from discovery document revision 20240622
6
+
7
+ ### v0.51.0 (2024-05-19)
8
+
9
+ * Regenerated from discovery document revision 20240511
10
+ * Regenerated using generator version 0.15.0
11
+
3
12
  ### v0.50.0 (2024-04-21)
4
13
 
5
14
  * Regenerated from discovery document revision 20240412
@@ -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
@@ -782,8 +785,8 @@ module Google
782
785
 
783
786
  # Specifies how each object's `timeCreated` metadata is preserved for transfers.
784
787
  # If unspecified, the default behavior is the same as TIME_CREATED_SKIP. This
785
- # behavior is supported for transfers to GCS buckets from GCS, S3, Azure, S3
786
- # Compatible, and Azure sources.
788
+ # behavior is supported for transfers to Cloud Storage buckets from Cloud
789
+ # Storage, Amazon S3, S3-compatible storage, and Azure sources.
787
790
  # Corresponds to the JSON property `timeCreated`
788
791
  # @return [String]
789
792
  attr_accessor :time_created
@@ -1511,13 +1514,9 @@ module Google
1511
1514
  # @return [String]
1512
1515
  attr_accessor :latest_operation_name
1513
1516
 
1514
- # Specifies the logging behavior for transfer operations. For cloud-to-cloud
1515
- # transfers, logs are sent to Cloud Logging. See [Read transfer logs](https://
1516
- # cloud.google.com/storage-transfer/docs/read-transfer-logs) for details. For
1517
- # transfers to or from a POSIX file system, logs are stored in the Cloud Storage
1518
- # bucket that is the source or sink of the transfer. See [Managing Transfer for
1519
- # on-premises jobs] (https://cloud.google.com/storage-transfer/docs/managing-on-
1520
- # 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.
1521
1520
  # Corresponds to the JSON property `loggingConfig`
1522
1521
  # @return [Google::Apis::StoragetransferV1::LoggingConfig]
1523
1522
  attr_accessor :logging_config
@@ -1644,13 +1643,9 @@ module Google
1644
1643
  # @return [Array<Google::Apis::StoragetransferV1::ErrorSummary>]
1645
1644
  attr_accessor :error_breakdowns
1646
1645
 
1647
- # Specifies the logging behavior for transfer operations. For cloud-to-cloud
1648
- # transfers, logs are sent to Cloud Logging. See [Read transfer logs](https://
1649
- # cloud.google.com/storage-transfer/docs/read-transfer-logs) for details. For
1650
- # transfers to or from a POSIX file system, logs are stored in the Cloud Storage
1651
- # bucket that is the source or sink of the transfer. See [Managing Transfer for
1652
- # on-premises jobs] (https://cloud.google.com/storage-transfer/docs/managing-on-
1653
- # 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.
1654
1649
  # Corresponds to the JSON property `loggingConfig`
1655
1650
  # @return [Google::Apis::StoragetransferV1::LoggingConfig]
1656
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.50.0"
19
+ GEM_VERSION = "0.52.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 = "20240412"
25
+ REVISION = "20240622"
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.50.0
4
+ version: 0.52.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-04-21 00:00:00.000000000 Z
11
+ date: 2024-06-27 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.50.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.52.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: []