google-apis-gkehub_v2 0.3.0 → 0.4.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: 8fab43a54a73ce1c0dfd8fe7a16f6427b5ce74893204a638f3c34440c1534d98
4
- data.tar.gz: 169b4526a4c9cee925f369fdebe98ab06c8cd52ba155521308ce39a0a1e780d5
3
+ metadata.gz: bf0b1c8c4b234a94cfdd66cea6a3aafc9a1e0c0eb9dd0c15a36362d924a57ebe
4
+ data.tar.gz: e451a6fd4f25ce0167e037e42bda146436733426f0d8d31914a0148d800507ff
5
5
  SHA512:
6
- metadata.gz: a5d855eb51f63e9238dbaa721c5ef905973639af3069c8e2b2d75b02d0e1cfd2f8c9dfcf5d56269c4902b2d00137841e1c715363344be39ecb2449d110420109
7
- data.tar.gz: c727e49e6a8bf87aa08cd1d3a897a8d5184ce5aa93fde9e122ad557d7f34d3dfae1fb1f134eab44e41ca12d07a167c24420e9a8a4f8680495eec52f9fba82c02
6
+ metadata.gz: c753a3f9b49a5b4eb62aab2c16ed20d0f61a44583762030284bc8589944564fe08ff44e078c953b4e1c4a09e2344b75aafd01de78127c75b26335732a45aa56f
7
+ data.tar.gz: 4f22b00dfc9e146c82d4d8c2d6c357d02ce51429295c7c1b70d4bb1f6cb9a092cebfbbd4a96ca7de3fe2e3046e6475192e6a06e78e7fe70838306fe572415956
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.3.0 (2024-11-03)
4
8
 
5
9
  * Regenerated from discovery document revision 20241025
@@ -1374,38 +1374,6 @@ module Google
1374
1374
  end
1375
1375
  end
1376
1376
 
1377
- # Information of the FeatureConfig applied on the MembershipFeature.
1378
- class FeatureConfigRef
1379
- include Google::Apis::Core::Hashable
1380
-
1381
- # Input only. Resource name of FeatureConfig, in the format: `projects/`project`/
1382
- # locations/global/featureConfigs/`feature_config``.
1383
- # Corresponds to the JSON property `config`
1384
- # @return [String]
1385
- attr_accessor :config
1386
-
1387
- # Output only. When the FeatureConfig was last applied and copied to FeatureSpec.
1388
- # Corresponds to the JSON property `configUpdateTime`
1389
- # @return [String]
1390
- attr_accessor :config_update_time
1391
-
1392
- # Output only. An id that uniquely identify a FeatureConfig object.
1393
- # Corresponds to the JSON property `uuid`
1394
- # @return [String]
1395
- attr_accessor :uuid
1396
-
1397
- def initialize(**args)
1398
- update!(**args)
1399
- end
1400
-
1401
- # Update properties of this object
1402
- def update!(**args)
1403
- @config = args[:config] if args.key?(:config)
1404
- @config_update_time = args[:config_update_time] if args.key?(:config_update_time)
1405
- @uuid = args[:uuid] if args.key?(:uuid)
1406
- end
1407
- end
1408
-
1409
1377
  # FeatureSpec contains user input per-feature spec information.
1410
1378
  class FeatureSpec
1411
1379
  include Google::Apis::Core::Hashable
@@ -2377,11 +2345,6 @@ module Google
2377
2345
  # @return [String]
2378
2346
  attr_accessor :delete_time
2379
2347
 
2380
- # Information of the FeatureConfig applied on the MembershipFeature.
2381
- # Corresponds to the JSON property `featureConfigRef`
2382
- # @return [Google::Apis::GkehubV2::FeatureConfigRef]
2383
- attr_accessor :feature_config_ref
2384
-
2385
2348
  # GCP labels for this MembershipFeature.
2386
2349
  # Corresponds to the JSON property `labels`
2387
2350
  # @return [Hash<String,String>]
@@ -2426,7 +2389,6 @@ module Google
2426
2389
  def update!(**args)
2427
2390
  @create_time = args[:create_time] if args.key?(:create_time)
2428
2391
  @delete_time = args[:delete_time] if args.key?(:delete_time)
2429
- @feature_config_ref = args[:feature_config_ref] if args.key?(:feature_config_ref)
2430
2392
  @labels = args[:labels] if args.key?(:labels)
2431
2393
  @lifecycle_state = args[:lifecycle_state] if args.key?(:lifecycle_state)
2432
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.3.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 = "20241025"
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
 
@@ -960,15 +954,6 @@ module Google
960
954
  end
961
955
  end
962
956
 
963
- class FeatureConfigRef
964
- # @private
965
- class Representation < Google::Apis::Core::JsonRepresentation
966
- property :config, as: 'config'
967
- property :config_update_time, as: 'configUpdateTime'
968
- property :uuid, as: 'uuid'
969
- end
970
- end
971
-
972
957
  class FeatureSpec
973
958
  # @private
974
959
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1240,8 +1225,6 @@ module Google
1240
1225
  class Representation < Google::Apis::Core::JsonRepresentation
1241
1226
  property :create_time, as: 'createTime'
1242
1227
  property :delete_time, as: 'deleteTime'
1243
- property :feature_config_ref, as: 'featureConfigRef', class: Google::Apis::GkehubV2::FeatureConfigRef, decorator: Google::Apis::GkehubV2::FeatureConfigRef::Representation
1244
-
1245
1228
  hash :labels, as: 'labels'
1246
1229
  property :lifecycle_state, as: 'lifecycleState', class: Google::Apis::GkehubV2::LifecycleState, decorator: Google::Apis::GkehubV2::LifecycleState::Representation
1247
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.3.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-11-03 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.3.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