google-apis-gkehub_v2 0.2.0 → 0.4.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: 9b840bd0a9dde840f95ba095ed55aa5ca52174f75ced89fb55529920c326d8af
4
- data.tar.gz: 497c048f688313d4d46071cc600692281e4c2b5adf4dca36d58c0a8e424fe274
3
+ metadata.gz: bf0b1c8c4b234a94cfdd66cea6a3aafc9a1e0c0eb9dd0c15a36362d924a57ebe
4
+ data.tar.gz: e451a6fd4f25ce0167e037e42bda146436733426f0d8d31914a0148d800507ff
5
5
  SHA512:
6
- metadata.gz: 11d78954855f69ab7e01e6692b36103bbbcfb9efad672ad7e07c185dd0703e51ce76e38616971f5e40a7b3bee6c1073dc444bf83a34ac3c645e91feb2319fad7
7
- data.tar.gz: abf994713e4efe8716680935e2b9a1a9b7f58949676a9958e6973684a3910f62c8a2a60a725d75786f3af8e6aeb94689b86ea646087a02db75b5641323674acb
6
+ metadata.gz: c753a3f9b49a5b4eb62aab2c16ed20d0f61a44583762030284bc8589944564fe08ff44e078c953b4e1c4a09e2344b75aafd01de78127c75b26335732a45aa56f
7
+ data.tar.gz: 4f22b00dfc9e146c82d4d8c2d6c357d02ce51429295c7c1b70d4bb1f6cb9a092cebfbbd4a96ca7de3fe2e3046e6475192e6a06e78e7fe70838306fe572415956
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkehub_v2
2
2
 
3
+ ### v0.4.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241206
6
+
7
+ ### v0.3.0 (2024-11-03)
8
+
9
+ * Regenerated from discovery document revision 20241025
10
+
3
11
  ### v0.2.0 (2024-10-27)
4
12
 
5
13
  * Regenerated from discovery document revision 20241017
@@ -361,6 +361,12 @@ module Google
361
361
  # @return [String]
362
362
  attr_accessor :source_format
363
363
 
364
+ # Set to true to stop syncing configs for a single cluster. Default to false.
365
+ # Corresponds to the JSON property `stopSyncing`
366
+ # @return [Boolean]
367
+ attr_accessor :stop_syncing
368
+ alias_method :stop_syncing?, :stop_syncing
369
+
364
370
  def initialize(**args)
365
371
  update!(**args)
366
372
  end
@@ -374,6 +380,7 @@ module Google
374
380
  @oci = args[:oci] if args.key?(:oci)
375
381
  @prevent_drift = args[:prevent_drift] if args.key?(:prevent_drift)
376
382
  @source_format = args[:source_format] if args.key?(:source_format)
383
+ @stop_syncing = args[:stop_syncing] if args.key?(:stop_syncing)
377
384
  end
378
385
  end
379
386
 
@@ -1367,38 +1374,6 @@ module Google
1367
1374
  end
1368
1375
  end
1369
1376
 
1370
- # Information of the FeatureConfig applied on the MembershipFeature.
1371
- class FeatureConfigRef
1372
- include Google::Apis::Core::Hashable
1373
-
1374
- # Input only. Resource name of FeatureConfig, in the format: `projects/`project`/
1375
- # locations/global/featureConfigs/`feature_config``.
1376
- # Corresponds to the JSON property `config`
1377
- # @return [String]
1378
- attr_accessor :config
1379
-
1380
- # Output only. When the FeatureConfig was last applied and copied to FeatureSpec.
1381
- # Corresponds to the JSON property `configUpdateTime`
1382
- # @return [String]
1383
- attr_accessor :config_update_time
1384
-
1385
- # Output only. An id that uniquely identify a FeatureConfig object.
1386
- # Corresponds to the JSON property `uuid`
1387
- # @return [String]
1388
- attr_accessor :uuid
1389
-
1390
- def initialize(**args)
1391
- update!(**args)
1392
- end
1393
-
1394
- # Update properties of this object
1395
- def update!(**args)
1396
- @config = args[:config] if args.key?(:config)
1397
- @config_update_time = args[:config_update_time] if args.key?(:config_update_time)
1398
- @uuid = args[:uuid] if args.key?(:uuid)
1399
- end
1400
- end
1401
-
1402
1377
  # FeatureSpec contains user input per-feature spec information.
1403
1378
  class FeatureSpec
1404
1379
  include Google::Apis::Core::Hashable
@@ -2370,11 +2345,6 @@ module Google
2370
2345
  # @return [String]
2371
2346
  attr_accessor :delete_time
2372
2347
 
2373
- # Information of the FeatureConfig applied on the MembershipFeature.
2374
- # Corresponds to the JSON property `featureConfigRef`
2375
- # @return [Google::Apis::GkehubV2::FeatureConfigRef]
2376
- attr_accessor :feature_config_ref
2377
-
2378
2348
  # GCP labels for this MembershipFeature.
2379
2349
  # Corresponds to the JSON property `labels`
2380
2350
  # @return [Hash<String,String>]
@@ -2419,7 +2389,6 @@ module Google
2419
2389
  def update!(**args)
2420
2390
  @create_time = args[:create_time] if args.key?(:create_time)
2421
2391
  @delete_time = args[:delete_time] if args.key?(:delete_time)
2422
- @feature_config_ref = args[:feature_config_ref] if args.key?(:feature_config_ref)
2423
2392
  @labels = args[:labels] if args.key?(:labels)
2424
2393
  @lifecycle_state = args[:lifecycle_state] if args.key?(:lifecycle_state)
2425
2394
  @name = args[:name] if args.key?(:name)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV2
18
18
  # Version of the google-apis-gkehub_v2 gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241017"
25
+ REVISION = "20241206"
26
26
  end
27
27
  end
28
28
  end
@@ -250,12 +250,6 @@ module Google
250
250
  include Google::Apis::Core::JsonObjectSupport
251
251
  end
252
252
 
253
- class FeatureConfigRef
254
- class Representation < Google::Apis::Core::JsonRepresentation; end
255
-
256
- include Google::Apis::Core::JsonObjectSupport
257
- end
258
-
259
253
  class FeatureSpec
260
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
261
255
 
@@ -678,6 +672,7 @@ module Google
678
672
 
679
673
  property :prevent_drift, as: 'preventDrift'
680
674
  property :source_format, as: 'sourceFormat'
675
+ property :stop_syncing, as: 'stopSyncing'
681
676
  end
682
677
  end
683
678
 
@@ -959,15 +954,6 @@ module Google
959
954
  end
960
955
  end
961
956
 
962
- class FeatureConfigRef
963
- # @private
964
- class Representation < Google::Apis::Core::JsonRepresentation
965
- property :config, as: 'config'
966
- property :config_update_time, as: 'configUpdateTime'
967
- property :uuid, as: 'uuid'
968
- end
969
- end
970
-
971
957
  class FeatureSpec
972
958
  # @private
973
959
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1239,8 +1225,6 @@ module Google
1239
1225
  class Representation < Google::Apis::Core::JsonRepresentation
1240
1226
  property :create_time, as: 'createTime'
1241
1227
  property :delete_time, as: 'deleteTime'
1242
- property :feature_config_ref, as: 'featureConfigRef', class: Google::Apis::GkehubV2::FeatureConfigRef, decorator: Google::Apis::GkehubV2::FeatureConfigRef::Representation
1243
-
1244
1228
  hash :labels, as: 'labels'
1245
1229
  property :lifecycle_state, as: 'lifecycleState', class: Google::Apis::GkehubV2::LifecycleState, decorator: Google::Apis::GkehubV2::LifecycleState::Representation
1246
1230
 
@@ -334,8 +334,8 @@ module Google
334
334
  # Clients can use Operations.GetOperation or other methods to check whether the
335
335
  # cancellation succeeded or whether the operation completed despite cancellation.
336
336
  # On successful cancellation, the operation is not deleted; instead, it becomes
337
- # an operation with an Operation.error value with a google.rpc.Status.code of 1,
338
- # corresponding to `Code.CANCELLED`.
337
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
338
+ # , corresponding to `Code.CANCELLED`.
339
339
  # @param [String] name
340
340
  # The name of the operation resource to be cancelled.
341
341
  # @param [Google::Apis::GkehubV2::CancelOperationRequest] cancel_operation_request_object
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.4.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-10-27 00:00:00.000000000 Z
11
+ date: 2024-12-15 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-gkehub_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v2/v0.2.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v2/v0.4.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v2
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.5.21
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for GKE Hub API V2