google-apis-gkehub_v2alpha 0.18.0 → 0.19.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: caface8955b14fee6253237366a8973b3c037f4af4233d1e7ea5ac4d3d4d50f0
4
- data.tar.gz: f3ba10806c09dc84b7155052de84665033030ed5a21e17e6c16f5bc54edcaeee
3
+ metadata.gz: 55a082b450cf2f0fc8a699bfa5f150d6dd4763cd226b408de92f4b5b067afa9b
4
+ data.tar.gz: 83fb0e90cef4289415238a70ad0f3b1713198905cb7cf078ee0011aae44ad621
5
5
  SHA512:
6
- metadata.gz: 12302a676e3ebc4f908a4a0ff974c8fade9bea31c623b437d62fc56e4522dd32c92ba5144a21244f87f0c5c815767b2d84e42e496194c299868471bede2c81f2
7
- data.tar.gz: 736a6bf9e926f661e4051ebdfc8b1d1ca362002e02862190fdec715cc5c67b2aa1d4b95aaddb67b8d760246725608010dcde0664db94881ab62cbc76eb400d8e
6
+ metadata.gz: 90b5d00edb4e54d63396b366148eb438b725698e80d4510db2e7d9152b3462b023e87be0b0c4d687d54e84b7ce41bff1c19cbc9d0727cdb57ca97426c95052a6
7
+ data.tar.gz: 706938cda6c5acd3dcb4ee4cd4d9bbfa18385a1bbfd0a5c7228fa35adc3af05cf2afab538f9972dfb93dacb4261bcbb0028a20f2b0cf1e6a7e87a2ccf6c92bfc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v2alpha
2
2
 
3
+ ### v0.19.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241206
6
+
3
7
  ### v0.18.0 (2024-12-02)
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::GkehubV2alpha::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 GkehubV2alpha
18
18
  # Version of the google-apis-gkehub_v2alpha gem
19
- GEM_VERSION = "0.18.0"
19
+ GEM_VERSION = "0.19.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::GkehubV2alpha::FeatureConfigRef, decorator: Google::Apis::GkehubV2alpha::FeatureConfigRef::Representation
1244
-
1245
1228
  hash :labels, as: 'labels'
1246
1229
  property :lifecycle_state, as: 'lifecycleState', class: Google::Apis::GkehubV2alpha::LifecycleState, decorator: Google::Apis::GkehubV2alpha::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::GkehubV2alpha::CancelOperationRequest] cancel_operation_request_object
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v2alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.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-12-04 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_v2alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v2alpha/v0.18.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v2alpha/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v2alpha
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.22
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 V2alpha