google-apis-parallelstore_v1 0.4.0 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66ccc5928ab560260ef205f657570181d21cd69146c7090848d95e11727c0689
4
- data.tar.gz: 1428b84bb678c3eb910c6f7f939cacb3cd69351fb623271bedad5053fb46970d
3
+ metadata.gz: 3141d57bc6a8680c429920ef3cfce7d1d1d2a65066e558c48ad5822d1356c8cd
4
+ data.tar.gz: 9ed2cd1977881403fc90bc2b45e0d9e1da4849c16cab39e49d600aa5a1130759
5
5
  SHA512:
6
- metadata.gz: cdfd19a2381688cf486dbb7b77b07298489f1aad6dbeacf299eefa30a59bdbdf4b9846b9688b477f49ab1731f90cc14bf81b156b68e6a552e273d21297618b07
7
- data.tar.gz: 2ba0161570f6c5fe928b1367c95d67fc2a54a78269a217472b82e2834703134869922e6da276e140c3a2003c3766fc8c88440d5d6679903a86c94af14bdc93ce
6
+ metadata.gz: 428c1d85af17348d31abde9edc9f29f0872610543ab1c858b2cc6c0e2a3cb0d7e4b184c89e0a372c626e9038f6a6aeaa71938685d58d0329aac4aae1fdffe3c8
7
+ data.tar.gz: 1ef9a1f0a2c53fff917d9491fc86dd722e6a95e51e4bb5278bd17ea45058f88a30eabb48c8660725a684ee9264bd2e99d4d6678f92b31349f5208914375ef8e7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-parallelstore_v1
2
2
 
3
+ ### v0.5.0 (2025-03-09)
4
+
5
+ * Regenerated from discovery document revision 20250303
6
+
3
7
  ### v0.4.0 (2025-02-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20250219
@@ -84,6 +84,11 @@ module Google
84
84
  # @return [Google::Apis::ParallelstoreV1::DestinationGcsBucket]
85
85
  attr_accessor :destination_gcs_bucket
86
86
 
87
+ # Transfer metadata options for the instance.
88
+ # Corresponds to the JSON property `metadataOptions`
89
+ # @return [Google::Apis::ParallelstoreV1::TransferMetadataOptions]
90
+ attr_accessor :metadata_options
91
+
87
92
  # Optional. An optional request ID to identify requests. Specify a unique
88
93
  # request ID so that if you must retry your request, the server will know to
89
94
  # ignore the request if it has already been completed. The server will guarantee
@@ -120,6 +125,7 @@ module Google
120
125
  # Update properties of this object
121
126
  def update!(**args)
122
127
  @destination_gcs_bucket = args[:destination_gcs_bucket] if args.key?(:destination_gcs_bucket)
128
+ @metadata_options = args[:metadata_options] if args.key?(:metadata_options)
123
129
  @request_id = args[:request_id] if args.key?(:request_id)
124
130
  @service_account = args[:service_account] if args.key?(:service_account)
125
131
  @source_parallelstore = args[:source_parallelstore] if args.key?(:source_parallelstore)
@@ -151,6 +157,11 @@ module Google
151
157
  # @return [Google::Apis::ParallelstoreV1::DestinationParallelstore]
152
158
  attr_accessor :destination_parallelstore
153
159
 
160
+ # Transfer metadata options for the instance.
161
+ # Corresponds to the JSON property `metadataOptions`
162
+ # @return [Google::Apis::ParallelstoreV1::TransferMetadataOptions]
163
+ attr_accessor :metadata_options
164
+
154
165
  # Optional. An optional request ID to identify requests. Specify a unique
155
166
  # request ID so that if you must retry your request, the server will know to
156
167
  # ignore the request if it has already been completed. The server will guarantee
@@ -187,6 +198,7 @@ module Google
187
198
  # Update properties of this object
188
199
  def update!(**args)
189
200
  @destination_parallelstore = args[:destination_parallelstore] if args.key?(:destination_parallelstore)
201
+ @metadata_options = args[:metadata_options] if args.key?(:metadata_options)
190
202
  @request_id = args[:request_id] if args.key?(:request_id)
191
203
  @service_account = args[:service_account] if args.key?(:service_account)
192
204
  @source_gcs_bucket = args[:source_gcs_bucket] if args.key?(:source_gcs_bucket)
@@ -569,6 +581,32 @@ module Google
569
581
  end
570
582
  end
571
583
 
584
+ # Operation metadata returned by the CLH during resource state reconciliation.
585
+ class ReconciliationOperationMetadata
586
+ include Google::Apis::Core::Hashable
587
+
588
+ # DEPRECATED. Use exclusive_action instead.
589
+ # Corresponds to the JSON property `deleteResource`
590
+ # @return [Boolean]
591
+ attr_accessor :delete_resource
592
+ alias_method :delete_resource?, :delete_resource
593
+
594
+ # Excluisive action returned by the CLH.
595
+ # Corresponds to the JSON property `exclusiveAction`
596
+ # @return [String]
597
+ attr_accessor :exclusive_action
598
+
599
+ def initialize(**args)
600
+ update!(**args)
601
+ end
602
+
603
+ # Update properties of this object
604
+ def update!(**args)
605
+ @delete_resource = args[:delete_resource] if args.key?(:delete_resource)
606
+ @exclusive_action = args[:exclusive_action] if args.key?(:exclusive_action)
607
+ end
608
+ end
609
+
572
610
  # Cloud Storage as the source of a data transfer.
573
611
  class SourceGcsBucket
574
612
  include Google::Apis::Core::Hashable
@@ -647,6 +685,37 @@ module Google
647
685
  @message = args[:message] if args.key?(:message)
648
686
  end
649
687
  end
688
+
689
+ # Transfer metadata options for the instance.
690
+ class TransferMetadataOptions
691
+ include Google::Apis::Core::Hashable
692
+
693
+ # Optional. The GID preservation behavior.
694
+ # Corresponds to the JSON property `gid`
695
+ # @return [String]
696
+ attr_accessor :gid
697
+
698
+ # Optional. The mode preservation behavior.
699
+ # Corresponds to the JSON property `mode`
700
+ # @return [String]
701
+ attr_accessor :mode
702
+
703
+ # Optional. The UID preservation behavior.
704
+ # Corresponds to the JSON property `uid`
705
+ # @return [String]
706
+ attr_accessor :uid
707
+
708
+ def initialize(**args)
709
+ update!(**args)
710
+ end
711
+
712
+ # Update properties of this object
713
+ def update!(**args)
714
+ @gid = args[:gid] if args.key?(:gid)
715
+ @mode = args[:mode] if args.key?(:mode)
716
+ @uid = args[:uid] if args.key?(:uid)
717
+ end
718
+ end
650
719
  end
651
720
  end
652
721
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ParallelstoreV1
18
18
  # Version of the google-apis-parallelstore_v1 gem
19
- GEM_VERSION = "0.4.0"
19
+ GEM_VERSION = "0.5.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250219"
25
+ REVISION = "20250303"
26
26
  end
27
27
  end
28
28
  end
@@ -100,6 +100,12 @@ module Google
100
100
  include Google::Apis::Core::JsonObjectSupport
101
101
  end
102
102
 
103
+ class ReconciliationOperationMetadata
104
+ class Representation < Google::Apis::Core::JsonRepresentation; end
105
+
106
+ include Google::Apis::Core::JsonObjectSupport
107
+ end
108
+
103
109
  class SourceGcsBucket
104
110
  class Representation < Google::Apis::Core::JsonRepresentation; end
105
111
 
@@ -118,6 +124,12 @@ module Google
118
124
  include Google::Apis::Core::JsonObjectSupport
119
125
  end
120
126
 
127
+ class TransferMetadataOptions
128
+ class Representation < Google::Apis::Core::JsonRepresentation; end
129
+
130
+ include Google::Apis::Core::JsonObjectSupport
131
+ end
132
+
121
133
  class CancelOperationRequest
122
134
  # @private
123
135
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -143,6 +155,8 @@ module Google
143
155
  class Representation < Google::Apis::Core::JsonRepresentation
144
156
  property :destination_gcs_bucket, as: 'destinationGcsBucket', class: Google::Apis::ParallelstoreV1::DestinationGcsBucket, decorator: Google::Apis::ParallelstoreV1::DestinationGcsBucket::Representation
145
157
 
158
+ property :metadata_options, as: 'metadataOptions', class: Google::Apis::ParallelstoreV1::TransferMetadataOptions, decorator: Google::Apis::ParallelstoreV1::TransferMetadataOptions::Representation
159
+
146
160
  property :request_id, as: 'requestId'
147
161
  property :service_account, as: 'serviceAccount'
148
162
  property :source_parallelstore, as: 'sourceParallelstore', class: Google::Apis::ParallelstoreV1::SourceParallelstore, decorator: Google::Apis::ParallelstoreV1::SourceParallelstore::Representation
@@ -161,6 +175,8 @@ module Google
161
175
  class Representation < Google::Apis::Core::JsonRepresentation
162
176
  property :destination_parallelstore, as: 'destinationParallelstore', class: Google::Apis::ParallelstoreV1::DestinationParallelstore, decorator: Google::Apis::ParallelstoreV1::DestinationParallelstore::Representation
163
177
 
178
+ property :metadata_options, as: 'metadataOptions', class: Google::Apis::ParallelstoreV1::TransferMetadataOptions, decorator: Google::Apis::ParallelstoreV1::TransferMetadataOptions::Representation
179
+
164
180
  property :request_id, as: 'requestId'
165
181
  property :service_account, as: 'serviceAccount'
166
182
  property :source_gcs_bucket, as: 'sourceGcsBucket', class: Google::Apis::ParallelstoreV1::SourceGcsBucket, decorator: Google::Apis::ParallelstoreV1::SourceGcsBucket::Representation
@@ -253,6 +269,14 @@ module Google
253
269
  end
254
270
  end
255
271
 
272
+ class ReconciliationOperationMetadata
273
+ # @private
274
+ class Representation < Google::Apis::Core::JsonRepresentation
275
+ property :delete_resource, as: 'deleteResource'
276
+ property :exclusive_action, as: 'exclusiveAction'
277
+ end
278
+ end
279
+
256
280
  class SourceGcsBucket
257
281
  # @private
258
282
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -275,6 +299,15 @@ module Google
275
299
  property :message, as: 'message'
276
300
  end
277
301
  end
302
+
303
+ class TransferMetadataOptions
304
+ # @private
305
+ class Representation < Google::Apis::Core::JsonRepresentation
306
+ property :gid, as: 'gid'
307
+ property :mode, as: 'mode'
308
+ property :uid, as: 'uid'
309
+ end
310
+ end
278
311
  end
279
312
  end
280
313
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-parallelstore_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 2025-03-09 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-parallelstore_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-parallelstore_v1/v0.4.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-parallelstore_v1/v0.5.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-parallelstore_v1
62
62
  rdoc_options: []
63
63
  require_paths: