google-apis-vmwareengine_v1 0.6.0 → 0.8.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69cc879480b06f609678d470ed4b5ab2fb875b571820d5286ec9ef29a85bb246
|
4
|
+
data.tar.gz: 6cbda6d8124dc625855dcf0d63aedeef0eefb0db2f6199e19974a328ea56764e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca3ab1d50d1cb5234e553a56ef88faa71428275ba55cc6b1dc1f9cc34cccd7e88aa779392e306f0a1013e1e745a3a5abd0ed17da902427122c80827a97c55430
|
7
|
+
data.tar.gz: d61befa786fdc2c5ec4824075fd5e0807a21f9681182a964627645122689c8176a0b5823be8058e767225c6bfe26c396ee28ed1dfa4f1fb46ec4b64da4c873bb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-vmwareengine_v1
|
2
2
|
|
3
|
+
### v0.8.0 (2024-10-27)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241009
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
8
|
+
### v0.7.0 (2024-07-25)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240701
|
11
|
+
|
3
12
|
### v0.6.0 (2024-05-19)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240412
|
@@ -93,6 +93,114 @@ module Google
|
|
93
93
|
end
|
94
94
|
end
|
95
95
|
|
96
|
+
# Autoscaling policy describes the behavior of the autoscaling with respect to
|
97
|
+
# the resource utilization. The scale-out operation is initiated if the
|
98
|
+
# utilization exceeds ANY of the respective thresholds. The scale-in operation
|
99
|
+
# is initiated if the utilization is below ALL of the respective thresholds.
|
100
|
+
class AutoscalingPolicy
|
101
|
+
include Google::Apis::Core::Hashable
|
102
|
+
|
103
|
+
# Thresholds define the utilization of resources triggering scale-out and scale-
|
104
|
+
# in operations.
|
105
|
+
# Corresponds to the JSON property `consumedMemoryThresholds`
|
106
|
+
# @return [Google::Apis::VmwareengineV1::Thresholds]
|
107
|
+
attr_accessor :consumed_memory_thresholds
|
108
|
+
|
109
|
+
# Thresholds define the utilization of resources triggering scale-out and scale-
|
110
|
+
# in operations.
|
111
|
+
# Corresponds to the JSON property `cpuThresholds`
|
112
|
+
# @return [Google::Apis::VmwareengineV1::Thresholds]
|
113
|
+
attr_accessor :cpu_thresholds
|
114
|
+
|
115
|
+
# Thresholds define the utilization of resources triggering scale-out and scale-
|
116
|
+
# in operations.
|
117
|
+
# Corresponds to the JSON property `grantedMemoryThresholds`
|
118
|
+
# @return [Google::Apis::VmwareengineV1::Thresholds]
|
119
|
+
attr_accessor :granted_memory_thresholds
|
120
|
+
|
121
|
+
# Required. The canonical identifier of the node type to add or remove.
|
122
|
+
# Corresponds to the `NodeType`.
|
123
|
+
# Corresponds to the JSON property `nodeTypeId`
|
124
|
+
# @return [String]
|
125
|
+
attr_accessor :node_type_id
|
126
|
+
|
127
|
+
# Required. Number of nodes to add to a cluster during a scale-out operation.
|
128
|
+
# Must be divisible by 2 for stretched clusters. During a scale-in operation
|
129
|
+
# only one node (or 2 for stretched clusters) are removed in a single iteration.
|
130
|
+
# Corresponds to the JSON property `scaleOutSize`
|
131
|
+
# @return [Fixnum]
|
132
|
+
attr_accessor :scale_out_size
|
133
|
+
|
134
|
+
# Thresholds define the utilization of resources triggering scale-out and scale-
|
135
|
+
# in operations.
|
136
|
+
# Corresponds to the JSON property `storageThresholds`
|
137
|
+
# @return [Google::Apis::VmwareengineV1::Thresholds]
|
138
|
+
attr_accessor :storage_thresholds
|
139
|
+
|
140
|
+
def initialize(**args)
|
141
|
+
update!(**args)
|
142
|
+
end
|
143
|
+
|
144
|
+
# Update properties of this object
|
145
|
+
def update!(**args)
|
146
|
+
@consumed_memory_thresholds = args[:consumed_memory_thresholds] if args.key?(:consumed_memory_thresholds)
|
147
|
+
@cpu_thresholds = args[:cpu_thresholds] if args.key?(:cpu_thresholds)
|
148
|
+
@granted_memory_thresholds = args[:granted_memory_thresholds] if args.key?(:granted_memory_thresholds)
|
149
|
+
@node_type_id = args[:node_type_id] if args.key?(:node_type_id)
|
150
|
+
@scale_out_size = args[:scale_out_size] if args.key?(:scale_out_size)
|
151
|
+
@storage_thresholds = args[:storage_thresholds] if args.key?(:storage_thresholds)
|
152
|
+
end
|
153
|
+
end
|
154
|
+
|
155
|
+
# Autoscaling settings define the rules used by VMware Engine to automatically
|
156
|
+
# scale-out and scale-in the clusters in a private cloud.
|
157
|
+
class AutoscalingSettings
|
158
|
+
include Google::Apis::Core::Hashable
|
159
|
+
|
160
|
+
# Required. The map with autoscaling policies applied to the cluster. The key is
|
161
|
+
# the identifier of the policy. It must meet the following requirements: * Only
|
162
|
+
# contains 1-63 alphanumeric characters and hyphens * Begins with an
|
163
|
+
# alphabetical character * Ends with a non-hyphen character * Not formatted as a
|
164
|
+
# UUID * Complies with [RFC 1034](https://datatracker.ietf.org/doc/html/rfc1034)
|
165
|
+
# (section 3.5) Currently there map must contain only one element that describes
|
166
|
+
# the autoscaling policy for compute nodes.
|
167
|
+
# Corresponds to the JSON property `autoscalingPolicies`
|
168
|
+
# @return [Hash<String,Google::Apis::VmwareengineV1::AutoscalingPolicy>]
|
169
|
+
attr_accessor :autoscaling_policies
|
170
|
+
|
171
|
+
# Optional. The minimum duration between consecutive autoscale operations. It
|
172
|
+
# starts once addition or removal of nodes is fully completed. Defaults to 30
|
173
|
+
# minutes if not specified. Cool down period must be in whole minutes (for
|
174
|
+
# example, 30, 31, 50, 180 minutes).
|
175
|
+
# Corresponds to the JSON property `coolDownPeriod`
|
176
|
+
# @return [String]
|
177
|
+
attr_accessor :cool_down_period
|
178
|
+
|
179
|
+
# Optional. Maximum number of nodes of any type in a cluster. If not specified
|
180
|
+
# the default limits apply.
|
181
|
+
# Corresponds to the JSON property `maxClusterNodeCount`
|
182
|
+
# @return [Fixnum]
|
183
|
+
attr_accessor :max_cluster_node_count
|
184
|
+
|
185
|
+
# Optional. Minimum number of nodes of any type in a cluster. If not specified
|
186
|
+
# the default limits apply.
|
187
|
+
# Corresponds to the JSON property `minClusterNodeCount`
|
188
|
+
# @return [Fixnum]
|
189
|
+
attr_accessor :min_cluster_node_count
|
190
|
+
|
191
|
+
def initialize(**args)
|
192
|
+
update!(**args)
|
193
|
+
end
|
194
|
+
|
195
|
+
# Update properties of this object
|
196
|
+
def update!(**args)
|
197
|
+
@autoscaling_policies = args[:autoscaling_policies] if args.key?(:autoscaling_policies)
|
198
|
+
@cool_down_period = args[:cool_down_period] if args.key?(:cool_down_period)
|
199
|
+
@max_cluster_node_count = args[:max_cluster_node_count] if args.key?(:max_cluster_node_count)
|
200
|
+
@min_cluster_node_count = args[:min_cluster_node_count] if args.key?(:min_cluster_node_count)
|
201
|
+
end
|
202
|
+
end
|
203
|
+
|
96
204
|
# Associates `members`, or principals, with a `role`.
|
97
205
|
class Binding
|
98
206
|
include Google::Apis::Core::Hashable
|
@@ -198,6 +306,12 @@ module Google
|
|
198
306
|
class Cluster
|
199
307
|
include Google::Apis::Core::Hashable
|
200
308
|
|
309
|
+
# Autoscaling settings define the rules used by VMware Engine to automatically
|
310
|
+
# scale-out and scale-in the clusters in a private cloud.
|
311
|
+
# Corresponds to the JSON property `autoscalingSettings`
|
312
|
+
# @return [Google::Apis::VmwareengineV1::AutoscalingSettings]
|
313
|
+
attr_accessor :autoscaling_settings
|
314
|
+
|
201
315
|
# Output only. Creation time of this resource.
|
202
316
|
# Corresponds to the JSON property `createTime`
|
203
317
|
# @return [String]
|
@@ -211,10 +325,10 @@ module Google
|
|
211
325
|
attr_accessor :management
|
212
326
|
alias_method :management?, :management
|
213
327
|
|
214
|
-
# Output only. The resource name of this cluster. Resource names are
|
215
|
-
# URIs that follow the conventions in https://cloud.google.com/apis/
|
216
|
-
# resource_names. For example: `projects/my-project/locations/us-central1-
|
217
|
-
# privateClouds/my-cloud/clusters/my-cluster`
|
328
|
+
# Output only. Identifier. The resource name of this cluster. Resource names are
|
329
|
+
# schemeless URIs that follow the conventions in https://cloud.google.com/apis/
|
330
|
+
# design/resource_names. For example: `projects/my-project/locations/us-central1-
|
331
|
+
# a/privateClouds/my-cloud/clusters/my-cluster`
|
218
332
|
# Corresponds to the JSON property `name`
|
219
333
|
# @return [String]
|
220
334
|
attr_accessor :name
|
@@ -251,6 +365,7 @@ module Google
|
|
251
365
|
|
252
366
|
# Update properties of this object
|
253
367
|
def update!(**args)
|
368
|
+
@autoscaling_settings = args[:autoscaling_settings] if args.key?(:autoscaling_settings)
|
254
369
|
@create_time = args[:create_time] if args.key?(:create_time)
|
255
370
|
@management = args[:management] if args.key?(:management)
|
256
371
|
@name = args[:name] if args.key?(:name)
|
@@ -334,10 +449,10 @@ module Google
|
|
334
449
|
# @return [Array<Google::Apis::VmwareengineV1::ForwardingRule>]
|
335
450
|
attr_accessor :forwarding_rules
|
336
451
|
|
337
|
-
# Output only. The resource name of this DNS profile. Resource names
|
338
|
-
# schemeless URIs that follow the conventions in https://cloud.google.com/
|
339
|
-
# design/resource_names. For example: `projects/my-project/locations/us-
|
340
|
-
# a/privateClouds/my-cloud/dnsForwarding`
|
452
|
+
# Output only. Identifier. The resource name of this DNS profile. Resource names
|
453
|
+
# are schemeless URIs that follow the conventions in https://cloud.google.com/
|
454
|
+
# apis/design/resource_names. For example: `projects/my-project/locations/us-
|
455
|
+
# central1-a/privateClouds/my-cloud/dnsForwarding`
|
341
456
|
# Corresponds to the JSON property `name`
|
342
457
|
# @return [String]
|
343
458
|
attr_accessor :name
|
@@ -573,10 +688,10 @@ module Google
|
|
573
688
|
# @return [String]
|
574
689
|
attr_accessor :internal_ip
|
575
690
|
|
576
|
-
# Output only. The resource name of this external IP address.
|
577
|
-
# schemeless URIs that follow the conventions in https://
|
578
|
-
# design/resource_names. For example: `projects/my-project/
|
579
|
-
# a/privateClouds/my-cloud/externalAddresses/my-address`
|
691
|
+
# Output only. Identifier. The resource name of this external IP address.
|
692
|
+
# Resource names are schemeless URIs that follow the conventions in https://
|
693
|
+
# cloud.google.com/apis/design/resource_names. For example: `projects/my-project/
|
694
|
+
# locations/us-central1-a/privateClouds/my-cloud/externalAddresses/my-address`
|
580
695
|
# Corresponds to the JSON property `name`
|
581
696
|
# @return [String]
|
582
697
|
attr_accessor :name
|
@@ -1735,11 +1850,11 @@ module Google
|
|
1735
1850
|
attr_accessor :import_custom_routes_with_public_ip
|
1736
1851
|
alias_method :import_custom_routes_with_public_ip?, :import_custom_routes_with_public_ip
|
1737
1852
|
|
1738
|
-
# Output only. The resource name of the network peering.
|
1739
|
-
# global resource and location can only be global. Resource
|
1740
|
-
# less URIs that follow the conventions in https://cloud.google.
|
1741
|
-
# resource_names. For example: `projects/my-project/locations/
|
1742
|
-
# networkPeerings/my-peering`
|
1853
|
+
# Output only. Identifier. The resource name of the network peering.
|
1854
|
+
# NetworkPeering is a global resource and location can only be global. Resource
|
1855
|
+
# names are scheme-less URIs that follow the conventions in https://cloud.google.
|
1856
|
+
# com/apis/design/resource_names. For example: `projects/my-project/locations/
|
1857
|
+
# global/networkPeerings/my-peering`
|
1743
1858
|
# Corresponds to the JSON property `name`
|
1744
1859
|
# @return [String]
|
1745
1860
|
attr_accessor :name
|
@@ -1867,10 +1982,10 @@ module Google
|
|
1867
1982
|
# @return [Google::Apis::VmwareengineV1::NetworkService]
|
1868
1983
|
attr_accessor :internet_access
|
1869
1984
|
|
1870
|
-
# Output only. The resource name of this network policy. Resource
|
1871
|
-
# schemeless URIs that follow the conventions in https://cloud.google.
|
1872
|
-
# design/resource_names. For example: `projects/my-project/locations/us-
|
1873
|
-
# networkPolicies/my-network-policy`
|
1985
|
+
# Output only. Identifier. The resource name of this network policy. Resource
|
1986
|
+
# names are schemeless URIs that follow the conventions in https://cloud.google.
|
1987
|
+
# com/apis/design/resource_names. For example: `projects/my-project/locations/us-
|
1988
|
+
# central1/networkPolicies/my-network-policy`
|
1874
1989
|
# Corresponds to the JSON property `name`
|
1875
1990
|
# @return [String]
|
1876
1991
|
attr_accessor :name
|
@@ -2494,10 +2609,10 @@ module Google
|
|
2494
2609
|
# @return [Google::Apis::VmwareengineV1::ManagementCluster]
|
2495
2610
|
attr_accessor :management_cluster
|
2496
2611
|
|
2497
|
-
# Output only. The resource name of this private cloud. Resource
|
2498
|
-
# schemeless URIs that follow the conventions in https://cloud.google.
|
2499
|
-
# design/resource_names. For example: `projects/my-project/locations/us-
|
2500
|
-
# a/privateClouds/my-cloud`
|
2612
|
+
# Output only. Identifier. The resource name of this private cloud. Resource
|
2613
|
+
# names are schemeless URIs that follow the conventions in https://cloud.google.
|
2614
|
+
# com/apis/design/resource_names. For example: `projects/my-project/locations/us-
|
2615
|
+
# central1-a/privateClouds/my-cloud`
|
2501
2616
|
# Corresponds to the JSON property `name`
|
2502
2617
|
# @return [String]
|
2503
2618
|
attr_accessor :name
|
@@ -2949,10 +3064,10 @@ module Google
|
|
2949
3064
|
# @return [String]
|
2950
3065
|
attr_accessor :ip_cidr_range
|
2951
3066
|
|
2952
|
-
# Output only. The resource name of this subnet. Resource names are
|
2953
|
-
# URIs that follow the conventions in https://cloud.google.com/apis/
|
2954
|
-
# resource_names. For example: `projects/my-project/locations/us-central1-
|
2955
|
-
# privateClouds/my-cloud/subnets/my-subnet`
|
3067
|
+
# Output only. Identifier. The resource name of this subnet. Resource names are
|
3068
|
+
# schemeless URIs that follow the conventions in https://cloud.google.com/apis/
|
3069
|
+
# design/resource_names. For example: `projects/my-project/locations/us-central1-
|
3070
|
+
# a/privateClouds/my-cloud/subnets/my-subnet`
|
2956
3071
|
# Corresponds to the JSON property `name`
|
2957
3072
|
# @return [String]
|
2958
3073
|
attr_accessor :name
|
@@ -3027,6 +3142,32 @@ module Google
|
|
3027
3142
|
end
|
3028
3143
|
end
|
3029
3144
|
|
3145
|
+
# Thresholds define the utilization of resources triggering scale-out and scale-
|
3146
|
+
# in operations.
|
3147
|
+
class Thresholds
|
3148
|
+
include Google::Apis::Core::Hashable
|
3149
|
+
|
3150
|
+
# Required. The utilization triggering the scale-in operation in percent.
|
3151
|
+
# Corresponds to the JSON property `scaleIn`
|
3152
|
+
# @return [Fixnum]
|
3153
|
+
attr_accessor :scale_in
|
3154
|
+
|
3155
|
+
# Required. The utilization triggering the scale-out operation in percent.
|
3156
|
+
# Corresponds to the JSON property `scaleOut`
|
3157
|
+
# @return [Fixnum]
|
3158
|
+
attr_accessor :scale_out
|
3159
|
+
|
3160
|
+
def initialize(**args)
|
3161
|
+
update!(**args)
|
3162
|
+
end
|
3163
|
+
|
3164
|
+
# Update properties of this object
|
3165
|
+
def update!(**args)
|
3166
|
+
@scale_in = args[:scale_in] if args.key?(:scale_in)
|
3167
|
+
@scale_out = args[:scale_out] if args.key?(:scale_out)
|
3168
|
+
end
|
3169
|
+
end
|
3170
|
+
|
3030
3171
|
# Request message for VmwareEngine.UndeletePrivateCloud
|
3031
3172
|
class UndeletePrivateCloudRequest
|
3032
3173
|
include Google::Apis::Core::Hashable
|
@@ -3106,10 +3247,10 @@ module Google
|
|
3106
3247
|
# @return [String]
|
3107
3248
|
attr_accessor :etag
|
3108
3249
|
|
3109
|
-
# Output only. The resource name of the VMware Engine network.
|
3110
|
-
# are schemeless URIs that follow the conventions in https://
|
3111
|
-
# apis/design/resource_names. For example: `projects/my-project/
|
3112
|
-
# vmwareEngineNetworks/my-network`
|
3250
|
+
# Output only. Identifier. The resource name of the VMware Engine network.
|
3251
|
+
# Resource names are schemeless URIs that follow the conventions in https://
|
3252
|
+
# cloud.google.com/apis/design/resource_names. For example: `projects/my-project/
|
3253
|
+
# locations/global/vmwareEngineNetworks/my-network`
|
3113
3254
|
# Corresponds to the JSON property `name`
|
3114
3255
|
# @return [String]
|
3115
3256
|
attr_accessor :name
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module VmwareengineV1
|
18
18
|
# Version of the google-apis-vmwareengine_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241009"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -34,6 +34,18 @@ module Google
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
35
35
|
end
|
36
36
|
|
37
|
+
class AutoscalingPolicy
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
|
+
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
41
|
+
end
|
42
|
+
|
43
|
+
class AutoscalingSettings
|
44
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
45
|
+
|
46
|
+
include Google::Apis::Core::JsonObjectSupport
|
47
|
+
end
|
48
|
+
|
37
49
|
class Binding
|
38
50
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
39
51
|
|
@@ -412,6 +424,12 @@ module Google
|
|
412
424
|
include Google::Apis::Core::JsonObjectSupport
|
413
425
|
end
|
414
426
|
|
427
|
+
class Thresholds
|
428
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
429
|
+
|
430
|
+
include Google::Apis::Core::JsonObjectSupport
|
431
|
+
end
|
432
|
+
|
415
433
|
class UndeletePrivateCloudRequest
|
416
434
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
435
|
|
@@ -453,6 +471,33 @@ module Google
|
|
453
471
|
end
|
454
472
|
end
|
455
473
|
|
474
|
+
class AutoscalingPolicy
|
475
|
+
# @private
|
476
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
477
|
+
property :consumed_memory_thresholds, as: 'consumedMemoryThresholds', class: Google::Apis::VmwareengineV1::Thresholds, decorator: Google::Apis::VmwareengineV1::Thresholds::Representation
|
478
|
+
|
479
|
+
property :cpu_thresholds, as: 'cpuThresholds', class: Google::Apis::VmwareengineV1::Thresholds, decorator: Google::Apis::VmwareengineV1::Thresholds::Representation
|
480
|
+
|
481
|
+
property :granted_memory_thresholds, as: 'grantedMemoryThresholds', class: Google::Apis::VmwareengineV1::Thresholds, decorator: Google::Apis::VmwareengineV1::Thresholds::Representation
|
482
|
+
|
483
|
+
property :node_type_id, as: 'nodeTypeId'
|
484
|
+
property :scale_out_size, as: 'scaleOutSize'
|
485
|
+
property :storage_thresholds, as: 'storageThresholds', class: Google::Apis::VmwareengineV1::Thresholds, decorator: Google::Apis::VmwareengineV1::Thresholds::Representation
|
486
|
+
|
487
|
+
end
|
488
|
+
end
|
489
|
+
|
490
|
+
class AutoscalingSettings
|
491
|
+
# @private
|
492
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
493
|
+
hash :autoscaling_policies, as: 'autoscalingPolicies', class: Google::Apis::VmwareengineV1::AutoscalingPolicy, decorator: Google::Apis::VmwareengineV1::AutoscalingPolicy::Representation
|
494
|
+
|
495
|
+
property :cool_down_period, as: 'coolDownPeriod'
|
496
|
+
property :max_cluster_node_count, as: 'maxClusterNodeCount'
|
497
|
+
property :min_cluster_node_count, as: 'minClusterNodeCount'
|
498
|
+
end
|
499
|
+
end
|
500
|
+
|
456
501
|
class Binding
|
457
502
|
# @private
|
458
503
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -466,6 +511,8 @@ module Google
|
|
466
511
|
class Cluster
|
467
512
|
# @private
|
468
513
|
class Representation < Google::Apis::Core::JsonRepresentation
|
514
|
+
property :autoscaling_settings, as: 'autoscalingSettings', class: Google::Apis::VmwareengineV1::AutoscalingSettings, decorator: Google::Apis::VmwareengineV1::AutoscalingSettings::Representation
|
515
|
+
|
469
516
|
property :create_time, as: 'createTime'
|
470
517
|
property :management, as: 'management'
|
471
518
|
property :name, as: 'name'
|
@@ -1137,6 +1184,14 @@ module Google
|
|
1137
1184
|
end
|
1138
1185
|
end
|
1139
1186
|
|
1187
|
+
class Thresholds
|
1188
|
+
# @private
|
1189
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1190
|
+
property :scale_in, as: 'scaleIn'
|
1191
|
+
property :scale_out, as: 'scaleOut'
|
1192
|
+
end
|
1193
|
+
end
|
1194
|
+
|
1140
1195
|
class UndeletePrivateCloudRequest
|
1141
1196
|
# @private
|
1142
1197
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -457,11 +457,11 @@ module Google
|
|
457
457
|
# updated. Only fields specified in `updateMask` are applied. NetworkPeering is
|
458
458
|
# a global resource and location can only be global.
|
459
459
|
# @param [String] name
|
460
|
-
# Output only. The resource name of the network peering.
|
461
|
-
# global resource and location can only be global. Resource
|
462
|
-
# less URIs that follow the conventions in https://cloud.google.
|
463
|
-
# resource_names. For example: `projects/my-project/locations/
|
464
|
-
# networkPeerings/my-peering`
|
460
|
+
# Output only. Identifier. The resource name of the network peering.
|
461
|
+
# NetworkPeering is a global resource and location can only be global. Resource
|
462
|
+
# names are scheme-less URIs that follow the conventions in https://cloud.google.
|
463
|
+
# com/apis/design/resource_names. For example: `projects/my-project/locations/
|
464
|
+
# global/networkPeerings/my-peering`
|
465
465
|
# @param [Google::Apis::VmwareengineV1::NetworkPeering] network_peering_object
|
466
466
|
# @param [String] request_id
|
467
467
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
@@ -825,10 +825,10 @@ module Google
|
|
825
825
|
# resource. Use the operation status to determine when the processing fully
|
826
826
|
# completes.
|
827
827
|
# @param [String] name
|
828
|
-
# Output only. The resource name of this network policy. Resource
|
829
|
-
# schemeless URIs that follow the conventions in https://cloud.google.
|
830
|
-
# design/resource_names. For example: `projects/my-project/locations/us-
|
831
|
-
# networkPolicies/my-network-policy`
|
828
|
+
# Output only. Identifier. The resource name of this network policy. Resource
|
829
|
+
# names are schemeless URIs that follow the conventions in https://cloud.google.
|
830
|
+
# com/apis/design/resource_names. For example: `projects/my-project/locations/us-
|
831
|
+
# central1/networkPolicies/my-network-policy`
|
832
832
|
# @param [Google::Apis::VmwareengineV1::NetworkPolicy] network_policy_object
|
833
833
|
# @param [String] request_id
|
834
834
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
@@ -1635,10 +1635,10 @@ module Google
|
|
1635
1635
|
# resource. Use the operation status to determine when the processing fully
|
1636
1636
|
# completes.
|
1637
1637
|
# @param [String] name
|
1638
|
-
# Output only. The resource name of this private cloud. Resource
|
1639
|
-
# schemeless URIs that follow the conventions in https://cloud.google.
|
1640
|
-
# design/resource_names. For example: `projects/my-project/locations/us-
|
1641
|
-
# a/privateClouds/my-cloud`
|
1638
|
+
# Output only. Identifier. The resource name of this private cloud. Resource
|
1639
|
+
# names are schemeless URIs that follow the conventions in https://cloud.google.
|
1640
|
+
# com/apis/design/resource_names. For example: `projects/my-project/locations/us-
|
1641
|
+
# central1-a/privateClouds/my-cloud`
|
1642
1642
|
# @param [Google::Apis::VmwareengineV1::PrivateCloud] private_cloud_object
|
1643
1643
|
# @param [String] request_id
|
1644
1644
|
# Optional. The request ID must be a valid UUID with the exception that zero
|
@@ -1943,10 +1943,10 @@ module Google
|
|
1943
1943
|
# Updates the parameters of the `DnsForwarding` config, like associated domains.
|
1944
1944
|
# Only fields specified in `update_mask` are applied.
|
1945
1945
|
# @param [String] name
|
1946
|
-
# Output only. The resource name of this DNS profile. Resource names
|
1947
|
-
# schemeless URIs that follow the conventions in https://cloud.google.com/
|
1948
|
-
# design/resource_names. For example: `projects/my-project/locations/us-
|
1949
|
-
# a/privateClouds/my-cloud/dnsForwarding`
|
1946
|
+
# Output only. Identifier. The resource name of this DNS profile. Resource names
|
1947
|
+
# are schemeless URIs that follow the conventions in https://cloud.google.com/
|
1948
|
+
# apis/design/resource_names. For example: `projects/my-project/locations/us-
|
1949
|
+
# central1-a/privateClouds/my-cloud/dnsForwarding`
|
1950
1950
|
# @param [Google::Apis::VmwareengineV1::DnsForwarding] dns_forwarding_object
|
1951
1951
|
# @param [String] request_id
|
1952
1952
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
@@ -2232,10 +2232,10 @@ module Google
|
|
2232
2232
|
# you can't update the resource. Use the operation status to determine when the
|
2233
2233
|
# processing fully completes.
|
2234
2234
|
# @param [String] name
|
2235
|
-
# Output only. The resource name of this cluster. Resource names are
|
2236
|
-
# URIs that follow the conventions in https://cloud.google.com/apis/
|
2237
|
-
# resource_names. For example: `projects/my-project/locations/us-central1-
|
2238
|
-
# privateClouds/my-cloud/clusters/my-cluster`
|
2235
|
+
# Output only. Identifier. The resource name of this cluster. Resource names are
|
2236
|
+
# schemeless URIs that follow the conventions in https://cloud.google.com/apis/
|
2237
|
+
# design/resource_names. For example: `projects/my-project/locations/us-central1-
|
2238
|
+
# a/privateClouds/my-cloud/clusters/my-cluster`
|
2239
2239
|
# @param [Google::Apis::VmwareengineV1::Cluster] cluster_object
|
2240
2240
|
# @param [String] request_id
|
2241
2241
|
# Optional. The request ID must be a valid UUID with the exception that zero
|
@@ -2643,10 +2643,10 @@ module Google
|
|
2643
2643
|
# that period of time, you can't update the resource. Use the operation status
|
2644
2644
|
# to determine when the processing fully completes.
|
2645
2645
|
# @param [String] name
|
2646
|
-
# Output only. The resource name of this external IP address.
|
2647
|
-
# schemeless URIs that follow the conventions in https://
|
2648
|
-
# design/resource_names. For example: `projects/my-project/
|
2649
|
-
# a/privateClouds/my-cloud/externalAddresses/my-address`
|
2646
|
+
# Output only. Identifier. The resource name of this external IP address.
|
2647
|
+
# Resource names are schemeless URIs that follow the conventions in https://
|
2648
|
+
# cloud.google.com/apis/design/resource_names. For example: `projects/my-project/
|
2649
|
+
# locations/us-central1-a/privateClouds/my-cloud/externalAddresses/my-address`
|
2650
2650
|
# @param [Google::Apis::VmwareengineV1::ExternalAddress] external_address_object
|
2651
2651
|
# @param [String] request_id
|
2652
2652
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
@@ -3602,10 +3602,10 @@ module Google
|
|
3602
3602
|
# successful `google.longrunning.Operation` (LRO). The returned LRO will only
|
3603
3603
|
# have `done` and `response` fields.
|
3604
3604
|
# @param [String] name
|
3605
|
-
# Output only. The resource name of this subnet. Resource names are
|
3606
|
-
# URIs that follow the conventions in https://cloud.google.com/apis/
|
3607
|
-
# resource_names. For example: `projects/my-project/locations/us-central1-
|
3608
|
-
# privateClouds/my-cloud/subnets/my-subnet`
|
3605
|
+
# Output only. Identifier. The resource name of this subnet. Resource names are
|
3606
|
+
# schemeless URIs that follow the conventions in https://cloud.google.com/apis/
|
3607
|
+
# design/resource_names. For example: `projects/my-project/locations/us-central1-
|
3608
|
+
# a/privateClouds/my-cloud/subnets/my-subnet`
|
3609
3609
|
# @param [Google::Apis::VmwareengineV1::Subnet] subnet_object
|
3610
3610
|
# @param [String] update_mask
|
3611
3611
|
# Required. Field mask is used to specify the fields to be overwritten in the `
|
@@ -4168,10 +4168,10 @@ module Google
|
|
4168
4168
|
# Modifies a VMware Engine network resource. Only the following fields can be
|
4169
4169
|
# updated: `description`. Only fields specified in `updateMask` are applied.
|
4170
4170
|
# @param [String] name
|
4171
|
-
# Output only. The resource name of the VMware Engine network.
|
4172
|
-
# are schemeless URIs that follow the conventions in https://
|
4173
|
-
# apis/design/resource_names. For example: `projects/my-project/
|
4174
|
-
# vmwareEngineNetworks/my-network`
|
4171
|
+
# Output only. Identifier. The resource name of the VMware Engine network.
|
4172
|
+
# Resource names are schemeless URIs that follow the conventions in https://
|
4173
|
+
# cloud.google.com/apis/design/resource_names. For example: `projects/my-project/
|
4174
|
+
# locations/global/vmwareEngineNetworks/my-network`
|
4175
4175
|
# @param [Google::Apis::VmwareengineV1::VmwareEngineNetwork] vmware_engine_network_object
|
4176
4176
|
# @param [String] request_id
|
4177
4177
|
# Optional. A request ID to identify requests. Specify a unique request ID so
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-vmwareengine_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.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
|
+
date: 2024-10-27 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-vmwareengine_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmwareengine_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmwareengine_v1/v0.8.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmwareengine_v1
|
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.
|
78
|
+
rubygems_version: 3.5.21
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for VMware Engine API V1
|