google-apis-gkehub_v1alpha 0.55.0 → 0.56.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: 950cfd629e1a813fbd21c6c34224c380607cac6e1d7e1536f19c83b98d0321f7
4
- data.tar.gz: 180f8952e7d06c88180a304be958e64ecceb666d0741259187fc8c6dbb7862da
3
+ metadata.gz: 6419161ce67364e458af313d7f47a9d7c39c693ad5e83971564e8a6943271e41
4
+ data.tar.gz: 0dd36387fcd5e123af8d367f8dc805a9e54d3995c07bfae0734784a0f7d6d6c7
5
5
  SHA512:
6
- metadata.gz: 81f803f2bf0797f4e2f21140fa4b7e2b75df4989b609f1d92ce2d21c63a8a6371eb9ae4c397712744fa92778fe036af11a04a474795ddd64fe26c6c5d5aa0b47
7
- data.tar.gz: 01f106bba615dab37530106a1c3ceefac155493d0c5d518f1908ca85f76f7c784650f46ab98a7e3d520289f7e742caa4261465b229d5162942a1955f4de1b2de
6
+ metadata.gz: 106dd4f86bf68898c1c78ee619fe09c29dc164dbca928eff9e09e625b2c35487bb08497ef962e62391ff40a9d6dfd47e4fea7d8ccc01575dece68a07a631757e
7
+ data.tar.gz: c94c5fdab355602446a7ea8eccef6e651fe3554cffa918509667122ce62f9c4d466a2157d13d3aebfa4b154215b46bd3a55ca961e307facde1fa4ad9caef9cbf
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkehub_v1alpha
2
2
 
3
+ ### v0.56.0 (2023-06-18)
4
+
5
+ * Regenerated from discovery document revision 20230609
6
+
3
7
  ### v0.55.0 (2023-06-11)
4
8
 
5
9
  * Regenerated from discovery document revision 20230606
@@ -1739,6 +1739,11 @@ module Google
1739
1739
  attr_accessor :template_library_installed
1740
1740
  alias_method :template_library_installed?, :template_library_installed
1741
1741
 
1742
+ # Output only. Last time this membership spec was updated.
1743
+ # Corresponds to the JSON property `updateTime`
1744
+ # @return [String]
1745
+ attr_accessor :update_time
1746
+
1742
1747
  def initialize(**args)
1743
1748
  update!(**args)
1744
1749
  end
@@ -1753,6 +1758,7 @@ module Google
1753
1758
  @mutation_enabled = args[:mutation_enabled] if args.key?(:mutation_enabled)
1754
1759
  @referential_rules_enabled = args[:referential_rules_enabled] if args.key?(:referential_rules_enabled)
1755
1760
  @template_library_installed = args[:template_library_installed] if args.key?(:template_library_installed)
1761
+ @update_time = args[:update_time] if args.key?(:update_time)
1756
1762
  end
1757
1763
  end
1758
1764
 
@@ -1760,6 +1766,11 @@ module Google
1760
1766
  class ConfigManagementPolicyControllerMigration
1761
1767
  include Google::Apis::Core::Hashable
1762
1768
 
1769
+ # Last time this membership spec was copied to PoCo feature.
1770
+ # Corresponds to the JSON property `copyTime`
1771
+ # @return [String]
1772
+ attr_accessor :copy_time
1773
+
1763
1774
  # Stage of the migration.
1764
1775
  # Corresponds to the JSON property `stage`
1765
1776
  # @return [String]
@@ -1771,6 +1782,7 @@ module Google
1771
1782
 
1772
1783
  # Update properties of this object
1773
1784
  def update!(**args)
1785
+ @copy_time = args[:copy_time] if args.key?(:copy_time)
1774
1786
  @stage = args[:stage] if args.key?(:stage)
1775
1787
  end
1776
1788
  end
@@ -4428,6 +4440,11 @@ module Google
4428
4440
  # @return [Hash<String,Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState>]
4429
4441
  attr_accessor :bundle_states
4430
4442
 
4443
+ # OnClusterState represents the state of a sub-component of Policy Controller.
4444
+ # Corresponds to the JSON property `referentialSyncConfigState`
4445
+ # @return [Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState]
4446
+ attr_accessor :referential_sync_config_state
4447
+
4431
4448
  # OnClusterState represents the state of a sub-component of Policy Controller.
4432
4449
  # Corresponds to the JSON property `templateLibraryState`
4433
4450
  # @return [Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState]
@@ -4440,6 +4457,7 @@ module Google
4440
4457
  # Update properties of this object
4441
4458
  def update!(**args)
4442
4459
  @bundle_states = args[:bundle_states] if args.key?(:bundle_states)
4460
+ @referential_sync_config_state = args[:referential_sync_config_state] if args.key?(:referential_sync_config_state)
4443
4461
  @template_library_state = args[:template_library_state] if args.key?(:template_library_state)
4444
4462
  end
4445
4463
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkehubV1alpha
18
18
  # Version of the google-apis-gkehub_v1alpha gem
19
- GEM_VERSION = "0.55.0"
19
+ GEM_VERSION = "0.56.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230606"
25
+ REVISION = "20230609"
26
26
  end
27
27
  end
28
28
  end
@@ -1428,12 +1428,14 @@ module Google
1428
1428
  property :mutation_enabled, as: 'mutationEnabled'
1429
1429
  property :referential_rules_enabled, as: 'referentialRulesEnabled'
1430
1430
  property :template_library_installed, as: 'templateLibraryInstalled'
1431
+ property :update_time, as: 'updateTime'
1431
1432
  end
1432
1433
  end
1433
1434
 
1434
1435
  class ConfigManagementPolicyControllerMigration
1435
1436
  # @private
1436
1437
  class Representation < Google::Apis::Core::JsonRepresentation
1438
+ property :copy_time, as: 'copyTime'
1437
1439
  property :stage, as: 'stage'
1438
1440
  end
1439
1441
  end
@@ -2171,6 +2173,8 @@ module Google
2171
2173
  class Representation < Google::Apis::Core::JsonRepresentation
2172
2174
  hash :bundle_states, as: 'bundleStates', class: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState::Representation
2173
2175
 
2176
+ property :referential_sync_config_state, as: 'referentialSyncConfigState', class: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState::Representation
2177
+
2174
2178
  property :template_library_state, as: 'templateLibraryState', class: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState, decorator: Google::Apis::GkehubV1alpha::PolicyControllerOnClusterState::Representation
2175
2179
 
2176
2180
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkehub_v1alpha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.55.0
4
+ version: 0.56.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: 2023-06-11 00:00:00.000000000 Z
11
+ date: 2023-06-18 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_v1alpha/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.55.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkehub_v1alpha/v0.56.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkehub_v1alpha
63
63
  post_install_message:
64
64
  rdoc_options: []