google-apis-gkeonprem_v1 0.31.0 → 0.32.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: 9936ee101af59432ce5581740b46a9f8aace344e8d0b9e7598ded253c4f7e888
4
- data.tar.gz: a6df842caa56a83d900e055f905ef61db6344221f2df992a5a89cde3eb62918a
3
+ metadata.gz: 7fb453a32c3db60dc46d069dd239b5517d7a0d9fbdf6b8a5a4c96f182c00a317
4
+ data.tar.gz: ee6debbcc0b64efbca26f56de10cfb731f7ffbc37657df4ccb70ba452d62bdcf
5
5
  SHA512:
6
- metadata.gz: 5e65315bcff43091344cef0fb144ddb9fbb949d9c5a9c47c04ca6c5705164e08cb304b38dfb66453ed48b376db0cb2acd7cb26229be15ea54388439b755ab30a
7
- data.tar.gz: fe7eda4418b03709883dea1f803a3d667a82d5f3fd968d40b814eaebf526a19111ef488bbcad7ba9f880b1f57a149511001261813442ed9983cc495a864d5969
6
+ metadata.gz: a2cda38b35c2ef16c6eec9ece14b98abaa39ac08e95670cdf25e9270276b60341e71ecec461aa31f2c4d0aae009f77ea8129599677ce311db759642f6ca2c89a
7
+ data.tar.gz: 0fcc2d776b7c9854eb8cdb619f244777e5f689d0e5e906120b7f09b621a60003de863d8d7290565779ec4bd16ee13c8709d1c06a4e324223cded30daba2a8148
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-gkeonprem_v1
2
2
 
3
+ ### v0.32.0 (2025-09-07)
4
+
5
+ * Regenerated from discovery document revision 20250827
6
+
3
7
  ### v0.31.0 (2025-08-24)
4
8
 
5
9
  * Regenerated from discovery document revision 20250813
@@ -3904,6 +3904,11 @@ module Google
3904
3904
  # @return [Google::Apis::GkeonpremV1::VmwareAdminPrivateRegistryConfig]
3905
3905
  attr_accessor :private_registry_config
3906
3906
 
3907
+ # VmwareAdminProxy represents configuration for admin cluster proxy.
3908
+ # Corresponds to the JSON property `proxy`
3909
+ # @return [Google::Apis::GkeonpremV1::VmwareAdminProxy]
3910
+ attr_accessor :proxy
3911
+
3907
3912
  # Output only. If set, there are currently changes in flight to the VMware admin
3908
3913
  # cluster.
3909
3914
  # Corresponds to the JSON property `reconciling`
@@ -3971,6 +3976,7 @@ module Google
3971
3976
  @platform_config = args[:platform_config] if args.key?(:platform_config)
3972
3977
  @prepared_secrets = args[:prepared_secrets] if args.key?(:prepared_secrets)
3973
3978
  @private_registry_config = args[:private_registry_config] if args.key?(:private_registry_config)
3979
+ @proxy = args[:proxy] if args.key?(:proxy)
3974
3980
  @reconciling = args[:reconciling] if args.key?(:reconciling)
3975
3981
  @state = args[:state] if args.key?(:state)
3976
3982
  @status = args[:status] if args.key?(:status)
@@ -4309,6 +4315,34 @@ module Google
4309
4315
  end
4310
4316
  end
4311
4317
 
4318
+ # VmwareAdminProxy represents configuration for admin cluster proxy.
4319
+ class VmwareAdminProxy
4320
+ include Google::Apis::Core::Hashable
4321
+
4322
+ # A comma-separated list of IP addresses, IP address ranges, host names, and
4323
+ # domain names that should not go through the proxy server. When Google
4324
+ # Distributed Cloud sends a request to one of these addresses, hosts, or domains,
4325
+ # the request is sent directly.
4326
+ # Corresponds to the JSON property `noProxy`
4327
+ # @return [String]
4328
+ attr_accessor :no_proxy
4329
+
4330
+ # The HTTP address of proxy server.
4331
+ # Corresponds to the JSON property `url`
4332
+ # @return [String]
4333
+ attr_accessor :url
4334
+
4335
+ def initialize(**args)
4336
+ update!(**args)
4337
+ end
4338
+
4339
+ # Update properties of this object
4340
+ def update!(**args)
4341
+ @no_proxy = args[:no_proxy] if args.key?(:no_proxy)
4342
+ @url = args[:url] if args.key?(:url)
4343
+ end
4344
+ end
4345
+
4312
4346
  # VmwareSeesawConfig represents configuration parameters for an already existing
4313
4347
  # Seesaw load balancer. IMPORTANT: Please note that the Anthos On-Prem API will
4314
4348
  # 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.31.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250813"
25
+ REVISION = "20250827"
26
26
  end
27
27
  end
28
28
  end
@@ -742,6 +742,12 @@ module Google
742
742
  include Google::Apis::Core::JsonObjectSupport
743
743
  end
744
744
 
745
+ class VmwareAdminProxy
746
+ class Representation < Google::Apis::Core::JsonRepresentation; end
747
+
748
+ include Google::Apis::Core::JsonObjectSupport
749
+ end
750
+
745
751
  class VmwareAdminSeesawConfig
746
752
  class Representation < Google::Apis::Core::JsonRepresentation; end
747
753
 
@@ -2045,6 +2051,8 @@ module Google
2045
2051
 
2046
2052
  property :private_registry_config, as: 'privateRegistryConfig', class: Google::Apis::GkeonpremV1::VmwareAdminPrivateRegistryConfig, decorator: Google::Apis::GkeonpremV1::VmwareAdminPrivateRegistryConfig::Representation
2047
2053
 
2054
+ property :proxy, as: 'proxy', class: Google::Apis::GkeonpremV1::VmwareAdminProxy, decorator: Google::Apis::GkeonpremV1::VmwareAdminProxy::Representation
2055
+
2048
2056
  property :reconciling, as: 'reconciling'
2049
2057
  property :state, as: 'state'
2050
2058
  property :status, as: 'status', class: Google::Apis::GkeonpremV1::ResourceStatus, decorator: Google::Apis::GkeonpremV1::ResourceStatus::Representation
@@ -2150,6 +2158,14 @@ module Google
2150
2158
  end
2151
2159
  end
2152
2160
 
2161
+ class VmwareAdminProxy
2162
+ # @private
2163
+ class Representation < Google::Apis::Core::JsonRepresentation
2164
+ property :no_proxy, as: 'noProxy'
2165
+ property :url, as: 'url'
2166
+ end
2167
+ end
2168
+
2153
2169
  class VmwareAdminSeesawConfig
2154
2170
  # @private
2155
2171
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-gkeonprem_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.0
4
+ version: 0.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkeonprem_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-gkeonprem_v1/v0.31.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-gkeonprem_v1/v0.32.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-gkeonprem_v1
62
62
  rdoc_options: []
63
63
  require_paths: