google-apis-storagetransfer_v1 0.44.0 → 0.46.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: 5a1c8eb4100b2a3962331a017116bb57d91d92c50caca54c1f5c8606d65cb20d
4
- data.tar.gz: bdfb69c7f6f924bc8ec59c7fb645f7f4e4e289e1d91214177f5ed1ac548f7f2a
3
+ metadata.gz: 560362b122e1b438096a6d85edca66e004bc42e7e7d992da48d44c4df17ab07b
4
+ data.tar.gz: f78e39e0c2cc22bcb725d027a15650a85605c0de7c87860fbf8601a4690b2cc9
5
5
  SHA512:
6
- metadata.gz: bb16f800aeece0038a8a5b8f9e15882ee723c86834bcd544b0c3063c134364ec785d57a10e44cee34ae6de77fbd565d1809239658f385f1dc3c0fca08d3e8218
7
- data.tar.gz: dc43a9720f63f948be6649a730dc352d87235728803a82440783f5d8a86c47e5c55ae642e3366860e0b7f2dd56f831d44991105b9b238a5cb32206e7f3d2f3cb
6
+ metadata.gz: 54afd261205336749ae0d310e403daf336ef5f585ac188a496cf63be9b5e3cb983cec20afb763917529e0bd1a9122d73c6aa160076713d67dde354cedd48ed2c
7
+ data.tar.gz: fbc3aa65510146186e68bba9615826398dd993ec1c7a6db068ad2292ca77b9edf1a501d52bb9492e538549d67d090a2db32ce3a1a058588e9df7da08dc15422d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-storagetransfer_v1
2
2
 
3
+ ### v0.46.0 (2024-02-24)
4
+
5
+ * Regenerated from discovery document revision 20240217
6
+ * Regenerated using generator version 0.14.0
7
+
8
+ ### v0.45.0 (2024-02-18)
9
+
10
+ * Regenerated from discovery document revision 20240209
11
+
3
12
  ### v0.44.0 (2024-02-04)
4
13
 
5
14
  * Regenerated from discovery document revision 20240126
data/OVERVIEW.md CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/storage-transfer/docs) may
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.5+.
86
+ This library is supported on Ruby 2.7+.
87
87
 
88
- Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Currently, this means Ruby 2.5 and later. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
88
+ Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
90
90
  ## License
91
91
 
@@ -311,6 +311,37 @@ module Google
311
311
  end
312
312
  end
313
313
 
314
+ #
315
+ class BatchTaskSpec
316
+ include Google::Apis::Core::Hashable
317
+
318
+ #
319
+ # Corresponds to the JSON property `deleteObjectTaskSpec`
320
+ # @return [Google::Apis::StoragetransferV1::DeleteObjectTaskSpec]
321
+ attr_accessor :delete_object_task_spec
322
+
323
+ #
324
+ # Corresponds to the JSON property `listTaskSpec`
325
+ # @return [Google::Apis::StoragetransferV1::ListTaskSpec]
326
+ attr_accessor :list_task_spec
327
+
328
+ #
329
+ # Corresponds to the JSON property `metadataTaskSpec`
330
+ # @return [Google::Apis::StoragetransferV1::MetadataTaskSpec]
331
+ attr_accessor :metadata_task_spec
332
+
333
+ def initialize(**args)
334
+ update!(**args)
335
+ end
336
+
337
+ # Update properties of this object
338
+ def update!(**args)
339
+ @delete_object_task_spec = args[:delete_object_task_spec] if args.key?(:delete_object_task_spec)
340
+ @list_task_spec = args[:list_task_spec] if args.key?(:list_task_spec)
341
+ @metadata_task_spec = args[:metadata_task_spec] if args.key?(:metadata_task_spec)
342
+ end
343
+ end
344
+
314
345
  # The request message for Operations.CancelOperation.
315
346
  class CancelOperationRequest
316
347
  include Google::Apis::Core::Hashable
@@ -365,6 +396,44 @@ module Google
365
396
  end
366
397
  end
367
398
 
399
+ #
400
+ class DeleteObjectTaskSpec
401
+ include Google::Apis::Core::Hashable
402
+
403
+ #
404
+ # Corresponds to the JSON property `generation`
405
+ # @return [Fixnum]
406
+ attr_accessor :generation
407
+
408
+ #
409
+ # Corresponds to the JSON property `hardDeleteVersionedObject`
410
+ # @return [Boolean]
411
+ attr_accessor :hard_delete_versioned_object
412
+ alias_method :hard_delete_versioned_object?, :hard_delete_versioned_object
413
+
414
+ #
415
+ # Corresponds to the JSON property `name`
416
+ # @return [String]
417
+ attr_accessor :name
418
+
419
+ #
420
+ # Corresponds to the JSON property `size`
421
+ # @return [Fixnum]
422
+ attr_accessor :size
423
+
424
+ def initialize(**args)
425
+ update!(**args)
426
+ end
427
+
428
+ # Update properties of this object
429
+ def update!(**args)
430
+ @generation = args[:generation] if args.key?(:generation)
431
+ @hard_delete_versioned_object = args[:hard_delete_versioned_object] if args.key?(:hard_delete_versioned_object)
432
+ @name = args[:name] if args.key?(:name)
433
+ @size = args[:size] if args.key?(:size)
434
+ end
435
+ end
436
+
368
437
  # A generic empty message that you can re-use to avoid defining duplicated empty
369
438
  # messages in your APIs. A typical example is to use it as the request or the
370
439
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -545,6 +614,28 @@ module Google
545
614
  end
546
615
  end
547
616
 
617
+ # An HdfsData resource specifies a path within an HDFS entity (e.g. a cluster).
618
+ # All cluster-specific settings, such as namenodes and ports, are configured on
619
+ # the transfer agents servicing requests, so HdfsData only contains the root
620
+ # path to the data in our transfer.
621
+ class HdfsData
622
+ include Google::Apis::Core::Hashable
623
+
624
+ # Root path to transfer files.
625
+ # Corresponds to the JSON property `path`
626
+ # @return [String]
627
+ attr_accessor :path
628
+
629
+ def initialize(**args)
630
+ update!(**args)
631
+ end
632
+
633
+ # Update properties of this object
634
+ def update!(**args)
635
+ @path = args[:path] if args.key?(:path)
636
+ end
637
+ end
638
+
548
639
  # An HttpData resource specifies a list of objects on the web to be transferred
549
640
  # over HTTP. The information of the objects to be transferred is contained in a
550
641
  # file referenced by a URL. The first line in the file must be `"TsvHttpData-1.0"
@@ -636,6 +727,31 @@ module Google
636
727
  end
637
728
  end
638
729
 
730
+ #
731
+ class ListTaskSpec
732
+ include Google::Apis::Core::Hashable
733
+
734
+ #
735
+ # Corresponds to the JSON property `manifest`
736
+ # @return [Google::Apis::StoragetransferV1::Manifest]
737
+ attr_accessor :manifest
738
+
739
+ #
740
+ # Corresponds to the JSON property `objectPrefixes`
741
+ # @return [Google::Apis::StoragetransferV1::ObjectPrefixes]
742
+ attr_accessor :object_prefixes
743
+
744
+ def initialize(**args)
745
+ update!(**args)
746
+ end
747
+
748
+ # Update properties of this object
749
+ def update!(**args)
750
+ @manifest = args[:manifest] if args.key?(:manifest)
751
+ @object_prefixes = args[:object_prefixes] if args.key?(:object_prefixes)
752
+ end
753
+ end
754
+
639
755
  # Response from ListTransferJobs.
640
756
  class ListTransferJobsResponse
641
757
  include Google::Apis::Core::Hashable
@@ -704,6 +820,31 @@ module Google
704
820
  end
705
821
  end
706
822
 
823
+ #
824
+ class Manifest
825
+ include Google::Apis::Core::Hashable
826
+
827
+ #
828
+ # Corresponds to the JSON property `manifestLocation`
829
+ # @return [String]
830
+ attr_accessor :manifest_location
831
+
832
+ #
833
+ # Corresponds to the JSON property `root`
834
+ # @return [String]
835
+ attr_accessor :root
836
+
837
+ def initialize(**args)
838
+ update!(**args)
839
+ end
840
+
841
+ # Update properties of this object
842
+ def update!(**args)
843
+ @manifest_location = args[:manifest_location] if args.key?(:manifest_location)
844
+ @root = args[:root] if args.key?(:root)
845
+ end
846
+ end
847
+
707
848
  # Specifies the metadata options for running a transfer.
708
849
  class MetadataOptions
709
850
  include Google::Apis::Core::Hashable
@@ -758,9 +899,8 @@ module Google
758
899
  # @return [String]
759
900
  attr_accessor :temporary_hold
760
901
 
761
- # Specifies how each object's `timeCreated` metadata is preserved for transfers
762
- # between Google Cloud Storage buckets. If unspecified, the default behavior is
763
- # the same as TIME_CREATED_SKIP.
902
+ # Specifies how each object's `timeCreated` metadata is preserved for transfers.
903
+ # If unspecified, the default behavior is the same as TIME_CREATED_SKIP.
764
904
  # Corresponds to the JSON property `timeCreated`
765
905
  # @return [String]
766
906
  attr_accessor :time_created
@@ -790,6 +930,43 @@ module Google
790
930
  end
791
931
  end
792
932
 
933
+ #
934
+ class MetadataTaskSpec
935
+ include Google::Apis::Core::Hashable
936
+
937
+ #
938
+ # Corresponds to the JSON property `bucketName`
939
+ # @return [String]
940
+ attr_accessor :bucket_name
941
+
942
+ #
943
+ # Corresponds to the JSON property `generation`
944
+ # @return [Fixnum]
945
+ attr_accessor :generation
946
+
947
+ #
948
+ # Corresponds to the JSON property `key`
949
+ # @return [String]
950
+ attr_accessor :key
951
+
952
+ #
953
+ # Corresponds to the JSON property `size`
954
+ # @return [Fixnum]
955
+ attr_accessor :size
956
+
957
+ def initialize(**args)
958
+ update!(**args)
959
+ end
960
+
961
+ # Update properties of this object
962
+ def update!(**args)
963
+ @bucket_name = args[:bucket_name] if args.key?(:bucket_name)
964
+ @generation = args[:generation] if args.key?(:generation)
965
+ @key = args[:key] if args.key?(:key)
966
+ @size = args[:size] if args.key?(:size)
967
+ end
968
+ end
969
+
793
970
  # Specification to configure notifications published to Pub/Sub. Notifications
794
971
  # are published to the customer-provided topic using the following `
795
972
  # PubsubMessage.attributes`: * `"eventType"`: one of the EventType values * `"
@@ -939,6 +1116,50 @@ module Google
939
1116
  end
940
1117
  end
941
1118
 
1119
+ #
1120
+ class ObjectPrefix
1121
+ include Google::Apis::Core::Hashable
1122
+
1123
+ #
1124
+ # Corresponds to the JSON property `bucketName`
1125
+ # @return [String]
1126
+ attr_accessor :bucket_name
1127
+
1128
+ #
1129
+ # Corresponds to the JSON property `objectPrefix`
1130
+ # @return [String]
1131
+ attr_accessor :object_prefix
1132
+
1133
+ def initialize(**args)
1134
+ update!(**args)
1135
+ end
1136
+
1137
+ # Update properties of this object
1138
+ def update!(**args)
1139
+ @bucket_name = args[:bucket_name] if args.key?(:bucket_name)
1140
+ @object_prefix = args[:object_prefix] if args.key?(:object_prefix)
1141
+ end
1142
+ end
1143
+
1144
+ #
1145
+ class ObjectPrefixes
1146
+ include Google::Apis::Core::Hashable
1147
+
1148
+ #
1149
+ # Corresponds to the JSON property `objectPrefixes`
1150
+ # @return [Array<Google::Apis::StoragetransferV1::ObjectPrefix>]
1151
+ attr_accessor :object_prefixes
1152
+
1153
+ def initialize(**args)
1154
+ update!(**args)
1155
+ end
1156
+
1157
+ # Update properties of this object
1158
+ def update!(**args)
1159
+ @object_prefixes = args[:object_prefixes] if args.key?(:object_prefixes)
1160
+ end
1161
+ end
1162
+
942
1163
  # This resource represents a long-running operation that is the result of a
943
1164
  # network API call.
944
1165
  class Operation
@@ -1743,6 +1964,14 @@ module Google
1743
1964
  # @return [Google::Apis::StoragetransferV1::GcsData]
1744
1965
  attr_accessor :gcs_intermediate_data_location
1745
1966
 
1967
+ # An HdfsData resource specifies a path within an HDFS entity (e.g. a cluster).
1968
+ # All cluster-specific settings, such as namenodes and ports, are configured on
1969
+ # the transfer agents servicing requests, so HdfsData only contains the root
1970
+ # path to the data in our transfer.
1971
+ # Corresponds to the JSON property `hdfsDataSource`
1972
+ # @return [Google::Apis::StoragetransferV1::HdfsData]
1973
+ attr_accessor :hdfs_data_source
1974
+
1746
1975
  # An HttpData resource specifies a list of objects on the web to be transferred
1747
1976
  # over HTTP. The information of the objects to be transferred is contained in a
1748
1977
  # file referenced by a URL. The first line in the file must be `"TsvHttpData-1.0"
@@ -1823,6 +2052,7 @@ module Google
1823
2052
  @gcs_data_sink = args[:gcs_data_sink] if args.key?(:gcs_data_sink)
1824
2053
  @gcs_data_source = args[:gcs_data_source] if args.key?(:gcs_data_source)
1825
2054
  @gcs_intermediate_data_location = args[:gcs_intermediate_data_location] if args.key?(:gcs_intermediate_data_location)
2055
+ @hdfs_data_source = args[:hdfs_data_source] if args.key?(:hdfs_data_source)
1826
2056
  @http_data_source = args[:http_data_source] if args.key?(:http_data_source)
1827
2057
  @object_conditions = args[:object_conditions] if args.key?(:object_conditions)
1828
2058
  @posix_data_sink = args[:posix_data_sink] if args.key?(:posix_data_sink)
@@ -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.44.0"
19
+ GEM_VERSION = "0.46.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.1"
22
+ GENERATOR_VERSION = "0.14.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240126"
25
+ REVISION = "20240217"
26
26
  end
27
27
  end
28
28
  end
@@ -64,6 +64,12 @@ module Google
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
+ class BatchTaskSpec
68
+ class Representation < Google::Apis::Core::JsonRepresentation; end
69
+
70
+ include Google::Apis::Core::JsonObjectSupport
71
+ end
72
+
67
73
  class CancelOperationRequest
68
74
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
75
 
@@ -76,6 +82,12 @@ module Google
76
82
  include Google::Apis::Core::JsonObjectSupport
77
83
  end
78
84
 
85
+ class DeleteObjectTaskSpec
86
+ class Representation < Google::Apis::Core::JsonRepresentation; end
87
+
88
+ include Google::Apis::Core::JsonObjectSupport
89
+ end
90
+
79
91
  class Empty
80
92
  class Representation < Google::Apis::Core::JsonRepresentation; end
81
93
 
@@ -112,6 +124,12 @@ module Google
112
124
  include Google::Apis::Core::JsonObjectSupport
113
125
  end
114
126
 
127
+ class HdfsData
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
115
133
  class HttpData
116
134
  class Representation < Google::Apis::Core::JsonRepresentation; end
117
135
 
@@ -130,6 +148,12 @@ module Google
130
148
  include Google::Apis::Core::JsonObjectSupport
131
149
  end
132
150
 
151
+ class ListTaskSpec
152
+ class Representation < Google::Apis::Core::JsonRepresentation; end
153
+
154
+ include Google::Apis::Core::JsonObjectSupport
155
+ end
156
+
133
157
  class ListTransferJobsResponse
134
158
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
159
 
@@ -142,12 +166,24 @@ module Google
142
166
  include Google::Apis::Core::JsonObjectSupport
143
167
  end
144
168
 
169
+ class Manifest
170
+ class Representation < Google::Apis::Core::JsonRepresentation; end
171
+
172
+ include Google::Apis::Core::JsonObjectSupport
173
+ end
174
+
145
175
  class MetadataOptions
146
176
  class Representation < Google::Apis::Core::JsonRepresentation; end
147
177
 
148
178
  include Google::Apis::Core::JsonObjectSupport
149
179
  end
150
180
 
181
+ class MetadataTaskSpec
182
+ class Representation < Google::Apis::Core::JsonRepresentation; end
183
+
184
+ include Google::Apis::Core::JsonObjectSupport
185
+ end
186
+
151
187
  class NotificationConfig
152
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
189
 
@@ -160,6 +196,18 @@ module Google
160
196
  include Google::Apis::Core::JsonObjectSupport
161
197
  end
162
198
 
199
+ class ObjectPrefix
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
205
+ class ObjectPrefixes
206
+ class Representation < Google::Apis::Core::JsonRepresentation; end
207
+
208
+ include Google::Apis::Core::JsonObjectSupport
209
+ end
210
+
163
211
  class Operation
164
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
165
213
 
@@ -326,6 +374,18 @@ module Google
326
374
  end
327
375
  end
328
376
 
377
+ class BatchTaskSpec
378
+ # @private
379
+ class Representation < Google::Apis::Core::JsonRepresentation
380
+ property :delete_object_task_spec, as: 'deleteObjectTaskSpec', class: Google::Apis::StoragetransferV1::DeleteObjectTaskSpec, decorator: Google::Apis::StoragetransferV1::DeleteObjectTaskSpec::Representation
381
+
382
+ property :list_task_spec, as: 'listTaskSpec', class: Google::Apis::StoragetransferV1::ListTaskSpec, decorator: Google::Apis::StoragetransferV1::ListTaskSpec::Representation
383
+
384
+ property :metadata_task_spec, as: 'metadataTaskSpec', class: Google::Apis::StoragetransferV1::MetadataTaskSpec, decorator: Google::Apis::StoragetransferV1::MetadataTaskSpec::Representation
385
+
386
+ end
387
+ end
388
+
329
389
  class CancelOperationRequest
330
390
  # @private
331
391
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -341,6 +401,16 @@ module Google
341
401
  end
342
402
  end
343
403
 
404
+ class DeleteObjectTaskSpec
405
+ # @private
406
+ class Representation < Google::Apis::Core::JsonRepresentation
407
+ property :generation, :numeric_string => true, as: 'generation'
408
+ property :hard_delete_versioned_object, as: 'hardDeleteVersionedObject'
409
+ property :name, as: 'name'
410
+ property :size, :numeric_string => true, as: 'size'
411
+ end
412
+ end
413
+
344
414
  class Empty
345
415
  # @private
346
416
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -391,6 +461,13 @@ module Google
391
461
  end
392
462
  end
393
463
 
464
+ class HdfsData
465
+ # @private
466
+ class Representation < Google::Apis::Core::JsonRepresentation
467
+ property :path, as: 'path'
468
+ end
469
+ end
470
+
394
471
  class HttpData
395
472
  # @private
396
473
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -416,6 +493,16 @@ module Google
416
493
  end
417
494
  end
418
495
 
496
+ class ListTaskSpec
497
+ # @private
498
+ class Representation < Google::Apis::Core::JsonRepresentation
499
+ property :manifest, as: 'manifest', class: Google::Apis::StoragetransferV1::Manifest, decorator: Google::Apis::StoragetransferV1::Manifest::Representation
500
+
501
+ property :object_prefixes, as: 'objectPrefixes', class: Google::Apis::StoragetransferV1::ObjectPrefixes, decorator: Google::Apis::StoragetransferV1::ObjectPrefixes::Representation
502
+
503
+ end
504
+ end
505
+
419
506
  class ListTransferJobsResponse
420
507
  # @private
421
508
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -434,6 +521,14 @@ module Google
434
521
  end
435
522
  end
436
523
 
524
+ class Manifest
525
+ # @private
526
+ class Representation < Google::Apis::Core::JsonRepresentation
527
+ property :manifest_location, as: 'manifestLocation'
528
+ property :root, as: 'root'
529
+ end
530
+ end
531
+
437
532
  class MetadataOptions
438
533
  # @private
439
534
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -449,6 +544,16 @@ module Google
449
544
  end
450
545
  end
451
546
 
547
+ class MetadataTaskSpec
548
+ # @private
549
+ class Representation < Google::Apis::Core::JsonRepresentation
550
+ property :bucket_name, as: 'bucketName'
551
+ property :generation, :numeric_string => true, as: 'generation'
552
+ property :key, as: 'key'
553
+ property :size, :numeric_string => true, as: 'size'
554
+ end
555
+ end
556
+
452
557
  class NotificationConfig
453
558
  # @private
454
559
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -470,6 +575,22 @@ module Google
470
575
  end
471
576
  end
472
577
 
578
+ class ObjectPrefix
579
+ # @private
580
+ class Representation < Google::Apis::Core::JsonRepresentation
581
+ property :bucket_name, as: 'bucketName'
582
+ property :object_prefix, as: 'objectPrefix'
583
+ end
584
+ end
585
+
586
+ class ObjectPrefixes
587
+ # @private
588
+ class Representation < Google::Apis::Core::JsonRepresentation
589
+ collection :object_prefixes, as: 'objectPrefixes', class: Google::Apis::StoragetransferV1::ObjectPrefix, decorator: Google::Apis::StoragetransferV1::ObjectPrefix::Representation
590
+
591
+ end
592
+ end
593
+
473
594
  class Operation
474
595
  # @private
475
596
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -659,6 +780,8 @@ module Google
659
780
 
660
781
  property :gcs_intermediate_data_location, as: 'gcsIntermediateDataLocation', class: Google::Apis::StoragetransferV1::GcsData, decorator: Google::Apis::StoragetransferV1::GcsData::Representation
661
782
 
783
+ property :hdfs_data_source, as: 'hdfsDataSource', class: Google::Apis::StoragetransferV1::HdfsData, decorator: Google::Apis::StoragetransferV1::HdfsData::Representation
784
+
662
785
  property :http_data_source, as: 'httpDataSource', class: Google::Apis::StoragetransferV1::HttpData, decorator: Google::Apis::StoragetransferV1::HttpData::Representation
663
786
 
664
787
  property :object_conditions, as: 'objectConditions', class: Google::Apis::StoragetransferV1::ObjectConditions, decorator: Google::Apis::StoragetransferV1::ObjectConditions::Representation
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.44.0
4
+ version: 0.46.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-02-04 00:00:00.000000000 Z
11
+ date: 2024-02-25 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.12.0
19
+ version: 0.14.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.12.0
29
+ version: 0.14.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.44.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-storagetransfer_v1/v0.46.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: []
@@ -68,14 +68,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - ">="
70
70
  - !ruby/object:Gem::Version
71
- version: '2.5'
71
+ version: '2.7'
72
72
  required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  requirements:
74
74
  - - ">="
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.3
78
+ rubygems_version: 3.5.6
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Storage Transfer API V1