google-apis-gkeonprem_v1 0.11.0 → 0.13.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: 893d76ffb30466862c72edbbf5b68cc9437678ecbb1bee864932d0f89fba3fb0
4
- data.tar.gz: a0a3c7ac59e952f3442eeeac602fedd7bca660d433f73bb7563f7a3d48a13a62
3
+ metadata.gz: ee60e661a425a415af406716ed8042765cedfb2579049e0074a568ddfb07589e
4
+ data.tar.gz: 377bdaa16dc4886e5ea76eb6cc61a926413ec81ade238b8feb2b7612fcaca130
5
5
  SHA512:
6
- metadata.gz: abda69d8de95cc598a472e19f687b8fd16bb0e013d7a173fea0054e14a4f4216e9f1d5412f4db8700c11a80491697580377bde343cab7354c87ece4baf6527a1
7
- data.tar.gz: 34abc4f57671fd61100cda6c96ae91c0f0a3f11cd4056055b41882bf02cb34da292a9aa1be967e37a2539d1a0ef3d5f0ec3d52ccffe2757d65d72f2f2d1cd00d
6
+ metadata.gz: a5c973c5c168b19711fe4fe06cc44a2d5d6aa2220adffc374d168518e6ff760a3350d1dc0b382888ba016d73d901e991c593e8cc08b0a9fb12d1da1b7fefb4bb
7
+ data.tar.gz: ba87d30594b6b3e1f4f6380346c5749980fdb8d2e05899e2e0cd5e43441364959e962c2b93cbc56547c8ca73287013f25942048d720eeaf1338594c38286845f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-gkeonprem_v1
2
2
 
3
+ ### v0.13.0 (2023-10-15)
4
+
5
+ * Regenerated from discovery document revision 20231004
6
+
7
+ ### v0.12.0 (2023-10-01)
8
+
9
+ * Regenerated from discovery document revision 20230925
10
+
3
11
  ### v0.11.0 (2023-09-17)
4
12
 
5
13
  * Regenerated from discovery document revision 20230906
@@ -75,7 +75,7 @@ module Google
75
75
  end
76
76
  end
77
77
 
78
- # ## Resource that represents a bare metal admin cluster.
78
+ # Resource that represents a bare metal admin cluster. LINT.IfChange
79
79
  class BareMetalAdminCluster
80
80
  include Google::Apis::Core::Hashable
81
81
 
@@ -862,7 +862,7 @@ module Google
862
862
  end
863
863
  end
864
864
 
865
- # Resource that represents a bare metal user cluster.
865
+ # Resource that represents a bare metal user cluster. LINT.IfChange
866
866
  class BareMetalCluster
867
867
  include Google::Apis::Core::Hashable
868
868
 
@@ -3433,11 +3433,6 @@ module Google
3433
3433
  # @return [String]
3434
3434
  attr_accessor :current_version
3435
3435
 
3436
- # Local name of the dependency.
3437
- # Corresponds to the JSON property `localName`
3438
- # @return [String]
3439
- attr_accessor :local_name
3440
-
3441
3436
  # Membership names are formatted as `projects//locations//memberships/`.
3442
3437
  # Corresponds to the JSON property `membership`
3443
3438
  # @return [String]
@@ -3461,7 +3456,6 @@ module Google
3461
3456
  # Update properties of this object
3462
3457
  def update!(**args)
3463
3458
  @current_version = args[:current_version] if args.key?(:current_version)
3464
- @local_name = args[:local_name] if args.key?(:local_name)
3465
3459
  @membership = args[:membership] if args.key?(:membership)
3466
3460
  @resource_name = args[:resource_name] if args.key?(:resource_name)
3467
3461
  @target_version = args[:target_version] if args.key?(:target_version)
@@ -3761,6 +3755,12 @@ module Google
3761
3755
  # @return [Google::Apis::GkeonpremV1::VmwarePlatformConfig]
3762
3756
  attr_accessor :platform_config
3763
3757
 
3758
+ # VmwareAdminPreparedSecretsConfig represents configuration for admin cluster
3759
+ # prepared secrets.
3760
+ # Corresponds to the JSON property `preparedSecrets`
3761
+ # @return [Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig]
3762
+ attr_accessor :prepared_secrets
3763
+
3764
3764
  # Output only. If set, there are currently changes in flight to the VMware admin
3765
3765
  # cluster.
3766
3766
  # Corresponds to the JSON property `reconciling`
@@ -3819,6 +3819,7 @@ module Google
3819
3819
  @network_config = args[:network_config] if args.key?(:network_config)
3820
3820
  @on_prem_version = args[:on_prem_version] if args.key?(:on_prem_version)
3821
3821
  @platform_config = args[:platform_config] if args.key?(:platform_config)
3822
+ @prepared_secrets = args[:prepared_secrets] if args.key?(:prepared_secrets)
3822
3823
  @reconciling = args[:reconciling] if args.key?(:reconciling)
3823
3824
  @state = args[:state] if args.key?(:state)
3824
3825
  @status = args[:status] if args.key?(:status)
@@ -4099,6 +4100,27 @@ module Google
4099
4100
  end
4100
4101
  end
4101
4102
 
4103
+ # VmwareAdminPreparedSecretsConfig represents configuration for admin cluster
4104
+ # prepared secrets.
4105
+ class VmwareAdminPreparedSecretsConfig
4106
+ include Google::Apis::Core::Hashable
4107
+
4108
+ # Whether prepared secrets is enabled.
4109
+ # Corresponds to the JSON property `enabled`
4110
+ # @return [Boolean]
4111
+ attr_accessor :enabled
4112
+ alias_method :enabled?, :enabled
4113
+
4114
+ def initialize(**args)
4115
+ update!(**args)
4116
+ end
4117
+
4118
+ # Update properties of this object
4119
+ def update!(**args)
4120
+ @enabled = args[:enabled] if args.key?(:enabled)
4121
+ end
4122
+ end
4123
+
4102
4124
  # VmwareSeesawConfig represents configuration parameters for an already existing
4103
4125
  # Seesaw load balancer. IMPORTANT: Please note that the Anthos On-Prem API will
4104
4126
  # not generate or update Seesaw configurations it can only bind a pre-existing
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module GkeonpremV1
18
18
  # Version of the google-apis-gkeonprem_v1 gem
19
- GEM_VERSION = "0.11.0"
19
+ GEM_VERSION = "0.13.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 = "20230906"
25
+ REVISION = "20231004"
26
26
  end
27
27
  end
28
28
  end
@@ -712,6 +712,12 @@ module Google
712
712
  include Google::Apis::Core::JsonObjectSupport
713
713
  end
714
714
 
715
+ class VmwareAdminPreparedSecretsConfig
716
+ class Representation < Google::Apis::Core::JsonRepresentation; end
717
+
718
+ include Google::Apis::Core::JsonObjectSupport
719
+ end
720
+
715
721
  class VmwareAdminSeesawConfig
716
722
  class Representation < Google::Apis::Core::JsonRepresentation; end
717
723
 
@@ -1889,7 +1895,6 @@ module Google
1889
1895
  # @private
1890
1896
  class Representation < Google::Apis::Core::JsonRepresentation
1891
1897
  property :current_version, as: 'currentVersion'
1892
- property :local_name, as: 'localName'
1893
1898
  property :membership, as: 'membership'
1894
1899
  property :resource_name, as: 'resourceName'
1895
1900
  property :target_version, as: 'targetVersion'
@@ -1979,6 +1984,8 @@ module Google
1979
1984
  property :on_prem_version, as: 'onPremVersion'
1980
1985
  property :platform_config, as: 'platformConfig', class: Google::Apis::GkeonpremV1::VmwarePlatformConfig, decorator: Google::Apis::GkeonpremV1::VmwarePlatformConfig::Representation
1981
1986
 
1987
+ property :prepared_secrets, as: 'preparedSecrets', class: Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig, decorator: Google::Apis::GkeonpremV1::VmwareAdminPreparedSecretsConfig::Representation
1988
+
1982
1989
  property :reconciling, as: 'reconciling'
1983
1990
  property :state, as: 'state'
1984
1991
  property :status, as: 'status', class: Google::Apis::GkeonpremV1::ResourceStatus, decorator: Google::Apis::GkeonpremV1::ResourceStatus::Representation
@@ -2066,6 +2073,13 @@ module Google
2066
2073
  end
2067
2074
  end
2068
2075
 
2076
+ class VmwareAdminPreparedSecretsConfig
2077
+ # @private
2078
+ class Representation < Google::Apis::Core::JsonRepresentation
2079
+ property :enabled, as: 'enabled'
2080
+ end
2081
+ end
2082
+
2069
2083
  class VmwareAdminSeesawConfig
2070
2084
  # @private
2071
2085
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkeonprem_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.13.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-09-17 00:00:00.000000000 Z
11
+ date: 2023-10-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-gkeonprem_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkeonprem_v1/v0.11.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkeonprem_v1/v0.13.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkeonprem_v1
63
63
  post_install_message:
64
64
  rdoc_options: []