google-cloud-vmware_engine-v1 0.1.0 → 0.2.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.
@@ -21,170 +21,15 @@ module Google
21
21
  module Cloud
22
22
  module VmwareEngine
23
23
  module V1
24
- # Network configuration in the consumer project
25
- # with which the peering has to be done.
26
- # @!attribute [rw] management_cidr
27
- # @return [::String]
28
- # Required. Management CIDR used by VMware management appliances.
29
- # @!attribute [rw] vmware_engine_network
30
- # @return [::String]
31
- # Optional. The relative resource name of the VMware Engine network attached
32
- # to the private cloud. Specify the name in the following form:
33
- # `projects/{project}/locations/{location}/vmwareEngineNetworks/{vmware_engine_network_id}`
34
- # where `{project}` can either be a project number or a project ID.
35
- # @!attribute [r] vmware_engine_network_canonical
36
- # @return [::String]
37
- # Output only. The canonical name of the VMware Engine network in the form:
38
- # `projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmware_engine_network_id}`
39
- # @!attribute [r] management_ip_address_layout_version
40
- # @return [::Integer]
41
- # Output only. The IP address layout version of the management IP address
42
- # range. Possible versions include:
43
- # * `managementIpAddressLayoutVersion=1`: Indicates the legacy IP address
44
- # layout used by some existing private clouds. This is no longer supported
45
- # for new private clouds as it does not support all features.
46
- # * `managementIpAddressLayoutVersion=2`: Indicates the latest IP address
47
- # layout used by all newly created private clouds. This version supports all
48
- # current features.
49
- class NetworkConfig
50
- include ::Google::Protobuf::MessageExts
51
- extend ::Google::Protobuf::MessageExts::ClassMethods
52
- end
53
-
54
- # Information about the type and number of nodes associated with the cluster.
55
- # @!attribute [rw] node_count
56
- # @return [::Integer]
57
- # Required. The number of nodes of this type in the cluster
58
- # @!attribute [rw] custom_core_count
59
- # @return [::Integer]
60
- # Optional. Customized number of cores available to each node of the type.
61
- # This number must always be one of `nodeType.availableCustomCoreCounts`.
62
- # If zero is provided max value from `nodeType.availableCustomCoreCounts`
63
- # will be used.
64
- class NodeTypeConfig
65
- include ::Google::Protobuf::MessageExts
66
- extend ::Google::Protobuf::MessageExts::ClassMethods
67
- end
68
-
69
- # Represents a private cloud resource. Private clouds are zonal resources.
70
- # @!attribute [r] name
71
- # @return [::String]
72
- # Output only. The resource name of this private cloud.
73
- # Resource names are schemeless URIs that follow the conventions in
74
- # https://cloud.google.com/apis/design/resource_names.
75
- # For example:
76
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
77
- # @!attribute [r] create_time
78
- # @return [::Google::Protobuf::Timestamp]
79
- # Output only. Creation time of this resource.
80
- # @!attribute [r] update_time
81
- # @return [::Google::Protobuf::Timestamp]
82
- # Output only. Last update time of this resource.
83
- # @!attribute [r] delete_time
84
- # @return [::Google::Protobuf::Timestamp]
85
- # Output only. Time when the resource was scheduled for deletion.
86
- # @!attribute [r] expire_time
87
- # @return [::Google::Protobuf::Timestamp]
88
- # Output only. Time when the resource will be irreversibly deleted.
89
- # @!attribute [r] state
90
- # @return [::Google::Cloud::VmwareEngine::V1::PrivateCloud::State]
91
- # Output only. State of the resource. New values may be added to this enum
92
- # when appropriate.
93
- # @!attribute [rw] network_config
94
- # @return [::Google::Cloud::VmwareEngine::V1::NetworkConfig]
95
- # Required. Network configuration of the private cloud.
96
- # @!attribute [rw] management_cluster
97
- # @return [::Google::Cloud::VmwareEngine::V1::PrivateCloud::ManagementCluster]
98
- # Input only. The management cluster for this private cloud.
99
- # This field is required during creation of the private cloud to provide
100
- # details for the default cluster.
101
- #
102
- # The following fields can't be changed after private cloud creation:
103
- # `ManagementCluster.clusterId`, `ManagementCluster.nodeTypeId`.
104
- # @!attribute [rw] description
105
- # @return [::String]
106
- # User-provided description for this private cloud.
107
- # @!attribute [r] hcx
108
- # @return [::Google::Cloud::VmwareEngine::V1::Hcx]
109
- # Output only. HCX appliance.
110
- # @!attribute [r] nsx
111
- # @return [::Google::Cloud::VmwareEngine::V1::Nsx]
112
- # Output only. NSX appliance.
113
- # @!attribute [r] vcenter
114
- # @return [::Google::Cloud::VmwareEngine::V1::Vcenter]
115
- # Output only. Vcenter appliance.
116
- # @!attribute [r] uid
117
- # @return [::String]
118
- # Output only. System-generated unique identifier for the resource.
119
- class PrivateCloud
120
- include ::Google::Protobuf::MessageExts
121
- extend ::Google::Protobuf::MessageExts::ClassMethods
122
-
123
- # Management cluster configuration.
124
- # @!attribute [rw] cluster_id
125
- # @return [::String]
126
- # Required. The user-provided identifier of the new `Cluster`.
127
- # The identifier must meet the following requirements:
128
- #
129
- # * Only contains 1-63 alphanumeric characters and hyphens
130
- # * Begins with an alphabetical character
131
- # * Ends with a non-hyphen character
132
- # * Not formatted as a UUID
133
- # * Complies with [RFC
134
- # 1034](https://datatracker.ietf.org/doc/html/rfc1034) (section 3.5)
135
- # @!attribute [rw] node_type_configs
136
- # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
137
- # Required. The map of cluster node types in this cluster, where the key is canonical
138
- # identifier of the node type (corresponds to the `NodeType`).
139
- class ManagementCluster
140
- include ::Google::Protobuf::MessageExts
141
- extend ::Google::Protobuf::MessageExts::ClassMethods
142
-
143
- # @!attribute [rw] key
144
- # @return [::String]
145
- # @!attribute [rw] value
146
- # @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
147
- class NodeTypeConfigsEntry
148
- include ::Google::Protobuf::MessageExts
149
- extend ::Google::Protobuf::MessageExts::ClassMethods
150
- end
151
- end
152
-
153
- # Enum State defines possible states of private clouds.
154
- module State
155
- # The default value. This value should never be used.
156
- STATE_UNSPECIFIED = 0
157
-
158
- # The private cloud is ready.
159
- ACTIVE = 1
160
-
161
- # The private cloud is being created.
162
- CREATING = 2
163
-
164
- # The private cloud is being updated.
165
- UPDATING = 3
166
-
167
- # The private cloud is in failed state.
168
- FAILED = 5
169
-
170
- # The private cloud is scheduled for deletion. The deletion process can be
171
- # cancelled by using the corresponding undelete method.
172
- DELETED = 6
173
-
174
- # The private cloud is irreversibly deleted and is being removed from the
175
- # system.
176
- PURGING = 7
177
- end
178
- end
179
-
180
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_private_clouds VmwareEngine.ListPrivateClouds}
24
+ # Request message for
25
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_private_clouds VmwareEngine.ListPrivateClouds}
181
26
  # @!attribute [rw] parent
182
27
  # @return [::String]
183
28
  # Required. The resource name of the private cloud to be queried for
184
29
  # clusters. Resource names are schemeless URIs that follow the conventions in
185
30
  # https://cloud.google.com/apis/design/resource_names.
186
31
  # For example:
187
- # `projects/my-project/locations/us-west1-a`
32
+ # `projects/my-project/locations/us-central1-a`
188
33
  # @!attribute [rw] page_size
189
34
  # @return [::Integer]
190
35
  # The maximum number of private clouds to return in one page.
@@ -238,7 +83,8 @@ module Google
238
83
  extend ::Google::Protobuf::MessageExts::ClassMethods
239
84
  end
240
85
 
241
- # Response message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_private_clouds VmwareEngine.ListPrivateClouds}
86
+ # Response message for
87
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_private_clouds VmwareEngine.ListPrivateClouds}
242
88
  # @!attribute [rw] private_clouds
243
89
  # @return [::Array<::Google::Cloud::VmwareEngine::V1::PrivateCloud>]
244
90
  # A list of private clouds.
@@ -255,27 +101,29 @@ module Google
255
101
  extend ::Google::Protobuf::MessageExts::ClassMethods
256
102
  end
257
103
 
258
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_private_cloud VmwareEngine.GetPrivateCloud}
104
+ # Request message for
105
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_private_cloud VmwareEngine.GetPrivateCloud}
259
106
  # @!attribute [rw] name
260
107
  # @return [::String]
261
108
  # Required. The resource name of the private cloud to retrieve.
262
109
  # Resource names are schemeless URIs that follow the conventions in
263
110
  # https://cloud.google.com/apis/design/resource_names.
264
111
  # For example:
265
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
112
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
266
113
  class GetPrivateCloudRequest
267
114
  include ::Google::Protobuf::MessageExts
268
115
  extend ::Google::Protobuf::MessageExts::ClassMethods
269
116
  end
270
117
 
271
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_private_cloud VmwareEngine.CreatePrivateCloud}
118
+ # Request message for
119
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_private_cloud VmwareEngine.CreatePrivateCloud}
272
120
  # @!attribute [rw] parent
273
121
  # @return [::String]
274
122
  # Required. The resource name of the location to create the new
275
123
  # private cloud in. Resource names are schemeless URIs that follow the
276
124
  # conventions in https://cloud.google.com/apis/design/resource_names.
277
125
  # For example:
278
- # `projects/my-project/locations/us-west1-a`
126
+ # `projects/my-project/locations/us-central1-a`
279
127
  # @!attribute [rw] private_cloud_id
280
128
  # @return [::String]
281
129
  # Required. The user-provided identifier of the private cloud to be created.
@@ -294,18 +142,19 @@ module Google
294
142
  # Required. The initial description of the new private cloud.
295
143
  # @!attribute [rw] request_id
296
144
  # @return [::String]
297
- # Optional. The request ID must be a valid UUID with the exception that zero UUID is
298
- # not supported (00000000-0000-0000-0000-000000000000).
145
+ # Optional. The request ID must be a valid UUID with the exception that zero
146
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
299
147
  # @!attribute [rw] validate_only
300
148
  # @return [::Boolean]
301
- # Optional. True if you want the request to be validated and not executed; false
302
- # otherwise.
149
+ # Optional. True if you want the request to be validated and not executed;
150
+ # false otherwise.
303
151
  class CreatePrivateCloudRequest
304
152
  include ::Google::Protobuf::MessageExts
305
153
  extend ::Google::Protobuf::MessageExts::ClassMethods
306
154
  end
307
155
 
308
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_private_cloud VmwareEngine.UpdatePrivateCloud}
156
+ # Request message for
157
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_private_cloud VmwareEngine.UpdatePrivateCloud}
309
158
  # @!attribute [rw] private_cloud
310
159
  # @return [::Google::Cloud::VmwareEngine::V1::PrivateCloud]
311
160
  # Required. Private cloud description.
@@ -318,137 +167,75 @@ module Google
318
167
  # all fields will be overwritten.
319
168
  # @!attribute [rw] request_id
320
169
  # @return [::String]
321
- # Optional. The request ID must be a valid UUID with the exception that zero UUID is
322
- # not supported (00000000-0000-0000-0000-000000000000).
170
+ # Optional. The request ID must be a valid UUID with the exception that zero
171
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
323
172
  class UpdatePrivateCloudRequest
324
173
  include ::Google::Protobuf::MessageExts
325
174
  extend ::Google::Protobuf::MessageExts::ClassMethods
326
175
  end
327
176
 
328
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_private_cloud VmwareEngine.DeletePrivateCloud}
177
+ # Request message for
178
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_private_cloud VmwareEngine.DeletePrivateCloud}
329
179
  # @!attribute [rw] name
330
180
  # @return [::String]
331
181
  # Required. The resource name of the private cloud to delete.
332
182
  # Resource names are schemeless URIs that follow the conventions in
333
183
  # https://cloud.google.com/apis/design/resource_names.
334
184
  # For example:
335
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
185
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
336
186
  # @!attribute [rw] request_id
337
187
  # @return [::String]
338
- # Optional. The request ID must be a valid UUID with the exception that zero UUID is
339
- # not supported (00000000-0000-0000-0000-000000000000).
188
+ # Optional. The request ID must be a valid UUID with the exception that zero
189
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
340
190
  # @!attribute [rw] force
341
191
  # @return [::Boolean]
342
- # Optional. If set to true, cascade delete is enabled and all children of this private
343
- # cloud resource are also deleted. When this flag is set to false, the
344
- # private cloud will not be deleted if there are any children other than the
345
- # management cluster. The management cluster is always deleted.
192
+ # Optional. If set to true, cascade delete is enabled and all children of
193
+ # this private cloud resource are also deleted. When this flag is set to
194
+ # false, the private cloud will not be deleted if there are any children
195
+ # other than the management cluster. The management cluster is always
196
+ # deleted.
346
197
  # @!attribute [rw] delay_hours
347
198
  # @return [::Integer]
348
199
  # Optional. Time delay of the deletion specified in hours. The default value
349
200
  # is `3`. Specifying a non-zero value for this field changes the value of
350
201
  # `PrivateCloud.state` to `DELETED` and sets `expire_time` to the planned
351
202
  # deletion time. Deletion can be cancelled before `expire_time` elapses using
352
- # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#undelete_private_cloud VmwareEngine.UndeletePrivateCloud}. Specifying a value of `0` for
353
- # this field instead begins the deletion process and ceases billing
354
- # immediately. During the final deletion process, the value of
355
- # `PrivateCloud.state` becomes `PURGING`.
203
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#undelete_private_cloud VmwareEngine.UndeletePrivateCloud}.
204
+ # Specifying a value of `0` for this field instead begins the deletion
205
+ # process and ceases billing immediately. During the final deletion process,
206
+ # the value of `PrivateCloud.state` becomes `PURGING`.
356
207
  class DeletePrivateCloudRequest
357
208
  include ::Google::Protobuf::MessageExts
358
209
  extend ::Google::Protobuf::MessageExts::ClassMethods
359
210
  end
360
211
 
361
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#undelete_private_cloud VmwareEngine.UndeletePrivateCloud}
212
+ # Request message for
213
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#undelete_private_cloud VmwareEngine.UndeletePrivateCloud}
362
214
  # @!attribute [rw] name
363
215
  # @return [::String]
364
216
  # Required. The resource name of the private cloud scheduled for deletion.
365
217
  # Resource names are schemeless URIs that follow the conventions in
366
218
  # https://cloud.google.com/apis/design/resource_names.
367
219
  # For example:
368
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
220
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
369
221
  # @!attribute [rw] request_id
370
222
  # @return [::String]
371
- # Optional. The request ID must be a valid UUID with the exception that zero UUID is
372
- # not supported (00000000-0000-0000-0000-000000000000).
223
+ # Optional. The request ID must be a valid UUID with the exception that zero
224
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
373
225
  class UndeletePrivateCloudRequest
374
226
  include ::Google::Protobuf::MessageExts
375
227
  extend ::Google::Protobuf::MessageExts::ClassMethods
376
228
  end
377
229
 
378
- # A cluster in a private cloud.
379
- # @!attribute [r] name
380
- # @return [::String]
381
- # Output only. The resource name of this cluster.
382
- # Resource names are schemeless URIs that follow the conventions in
383
- # https://cloud.google.com/apis/design/resource_names.
384
- # For example:
385
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud/clusters/my-cluster`
386
- # @!attribute [r] create_time
387
- # @return [::Google::Protobuf::Timestamp]
388
- # Output only. Creation time of this resource.
389
- # @!attribute [r] update_time
390
- # @return [::Google::Protobuf::Timestamp]
391
- # Output only. Last update time of this resource.
392
- # @!attribute [r] state
393
- # @return [::Google::Cloud::VmwareEngine::V1::Cluster::State]
394
- # Output only. State of the resource.
395
- # @!attribute [r] management
396
- # @return [::Boolean]
397
- # Output only. True if the cluster is a management cluster; false otherwise.
398
- # There can only be one management cluster in a private cloud
399
- # and it has to be the first one.
400
- # @!attribute [r] uid
401
- # @return [::String]
402
- # Output only. System-generated unique identifier for the resource.
403
- # @!attribute [rw] node_type_configs
404
- # @return [::Google::Protobuf::Map{::String => ::Google::Cloud::VmwareEngine::V1::NodeTypeConfig}]
405
- # Required. The map of cluster node types in this cluster, where the key is canonical
406
- # identifier of the node type (corresponds to the `NodeType`).
407
- class Cluster
408
- include ::Google::Protobuf::MessageExts
409
- extend ::Google::Protobuf::MessageExts::ClassMethods
410
-
411
- # @!attribute [rw] key
412
- # @return [::String]
413
- # @!attribute [rw] value
414
- # @return [::Google::Cloud::VmwareEngine::V1::NodeTypeConfig]
415
- class NodeTypeConfigsEntry
416
- include ::Google::Protobuf::MessageExts
417
- extend ::Google::Protobuf::MessageExts::ClassMethods
418
- end
419
-
420
- # Enum State defines possible states of private cloud clusters.
421
- module State
422
- # The default value. This value should never be used.
423
- STATE_UNSPECIFIED = 0
424
-
425
- # The Cluster is operational and can be used by the user.
426
- ACTIVE = 1
427
-
428
- # The Cluster is being deployed.
429
- CREATING = 2
430
-
431
- # Adding or removing of a node to the cluster, any other cluster specific
432
- # updates.
433
- UPDATING = 3
434
-
435
- # The Cluster is being deleted.
436
- DELETING = 4
437
-
438
- # The Cluster is undergoing maintenance, for example: a failed node is
439
- # getting replaced.
440
- REPAIRING = 5
441
- end
442
- end
443
-
444
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_clusters VmwareEngine.ListClusters}
230
+ # Request message for
231
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_clusters VmwareEngine.ListClusters}
445
232
  # @!attribute [rw] parent
446
233
  # @return [::String]
447
234
  # Required. The resource name of the private cloud to query for clusters.
448
235
  # Resource names are schemeless URIs that follow the conventions in
449
236
  # https://cloud.google.com/apis/design/resource_names.
450
237
  # For example:
451
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
238
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
452
239
  # @!attribute [rw] page_size
453
240
  # @return [::Integer]
454
241
  # The maximum number of clusters to return in one page.
@@ -489,7 +276,8 @@ module Google
489
276
  extend ::Google::Protobuf::MessageExts::ClassMethods
490
277
  end
491
278
 
492
- # Response message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_clusters VmwareEngine.ListClusters}
279
+ # Response message for
280
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_clusters VmwareEngine.ListClusters}
493
281
  # @!attribute [rw] clusters
494
282
  # @return [::Array<::Google::Cloud::VmwareEngine::V1::Cluster>]
495
283
  # A list of private cloud clusters.
@@ -506,27 +294,29 @@ module Google
506
294
  extend ::Google::Protobuf::MessageExts::ClassMethods
507
295
  end
508
296
 
509
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_cluster VmwareEngine.GetCluster}
297
+ # Request message for
298
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_cluster VmwareEngine.GetCluster}
510
299
  # @!attribute [rw] name
511
300
  # @return [::String]
512
301
  # Required. The cluster resource name to retrieve.
513
302
  # Resource names are schemeless URIs that follow the conventions in
514
303
  # https://cloud.google.com/apis/design/resource_names.
515
304
  # For example:
516
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud/clusters/my-cluster`
305
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/clusters/my-cluster`
517
306
  class GetClusterRequest
518
307
  include ::Google::Protobuf::MessageExts
519
308
  extend ::Google::Protobuf::MessageExts::ClassMethods
520
309
  end
521
310
 
522
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_cluster VmwareEngine.CreateCluster}
311
+ # Request message for
312
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_cluster VmwareEngine.CreateCluster}
523
313
  # @!attribute [rw] parent
524
314
  # @return [::String]
525
315
  # Required. The resource name of the private cloud to create a new cluster
526
316
  # in. Resource names are schemeless URIs that follow the conventions in
527
317
  # https://cloud.google.com/apis/design/resource_names.
528
318
  # For example:
529
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
319
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
530
320
  # @!attribute [rw] cluster_id
531
321
  # @return [::String]
532
322
  # Required. The user-provided identifier of the new `Cluster`.
@@ -545,18 +335,19 @@ module Google
545
335
  # Required. The initial description of the new cluster.
546
336
  # @!attribute [rw] request_id
547
337
  # @return [::String]
548
- # Optional. The request ID must be a valid UUID with the exception that zero UUID is
549
- # not supported (00000000-0000-0000-0000-000000000000).
338
+ # Optional. The request ID must be a valid UUID with the exception that zero
339
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
550
340
  # @!attribute [rw] validate_only
551
341
  # @return [::Boolean]
552
- # Optional. True if you want the request to be validated and not executed; false
553
- # otherwise.
342
+ # Optional. True if you want the request to be validated and not executed;
343
+ # false otherwise.
554
344
  class CreateClusterRequest
555
345
  include ::Google::Protobuf::MessageExts
556
346
  extend ::Google::Protobuf::MessageExts::ClassMethods
557
347
  end
558
348
 
559
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_cluster VmwareEngine.UpdateCluster}
349
+ # Request message for
350
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_cluster VmwareEngine.UpdateCluster}
560
351
  # @!attribute [rw] update_mask
561
352
  # @return [::Google::Protobuf::FieldMask]
562
353
  # Required. Field mask is used to specify the fields to be overwritten in the
@@ -573,76 +364,33 @@ module Google
573
364
  # zero UUID is not supported (00000000-0000-0000-0000-000000000000).
574
365
  # @!attribute [rw] validate_only
575
366
  # @return [::Boolean]
576
- # Optional. True if you want the request to be validated and not executed; false
577
- # otherwise.
367
+ # Optional. True if you want the request to be validated and not executed;
368
+ # false otherwise.
578
369
  class UpdateClusterRequest
579
370
  include ::Google::Protobuf::MessageExts
580
371
  extend ::Google::Protobuf::MessageExts::ClassMethods
581
372
  end
582
373
 
583
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_cluster VmwareEngine.DeleteCluster}
374
+ # Request message for
375
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_cluster VmwareEngine.DeleteCluster}
584
376
  # @!attribute [rw] name
585
377
  # @return [::String]
586
378
  # Required. The resource name of the cluster to delete.
587
379
  # Resource names are schemeless URIs that follow the conventions in
588
380
  # https://cloud.google.com/apis/design/resource_names.
589
381
  # For example:
590
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud/clusters/my-cluster`
382
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud/clusters/my-cluster`
591
383
  # @!attribute [rw] request_id
592
384
  # @return [::String]
593
- # Optional. The request ID must be a valid UUID with the exception that zero UUID is
594
- # not supported (00000000-0000-0000-0000-000000000000).
385
+ # Optional. The request ID must be a valid UUID with the exception that zero
386
+ # UUID is not supported (00000000-0000-0000-0000-000000000000).
595
387
  class DeleteClusterRequest
596
388
  include ::Google::Protobuf::MessageExts
597
389
  extend ::Google::Protobuf::MessageExts::ClassMethods
598
390
  end
599
391
 
600
- # Subnet in a private cloud. Either `management` subnets (such as vMotion) that
601
- # are read-only, or `userDefined`, which can also be updated.
602
- # @!attribute [r] name
603
- # @return [::String]
604
- # Output only. The resource name of this subnet.
605
- # Resource names are schemeless URIs that follow the conventions in
606
- # https://cloud.google.com/apis/design/resource_names.
607
- # For example:
608
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud/subnets/my-subnet`
609
- # @!attribute [rw] ip_cidr_range
610
- # @return [::String]
611
- # The IP address range of the subnet in CIDR format '10.0.0.0/24'.
612
- # @!attribute [rw] gateway_ip
613
- # @return [::String]
614
- # The IP address of the gateway of this subnet.
615
- # Must fall within the IP prefix defined above.
616
- # @!attribute [r] type
617
- # @return [::String]
618
- # Output only. The type of the subnet. For example "management" or "userDefined".
619
- # @!attribute [r] state
620
- # @return [::Google::Cloud::VmwareEngine::V1::Subnet::State]
621
- # Output only. The state of the resource.
622
- class Subnet
623
- include ::Google::Protobuf::MessageExts
624
- extend ::Google::Protobuf::MessageExts::ClassMethods
625
-
626
- # Defines possible states of subnets.
627
- module State
628
- # The default value. This value should never be used.
629
- STATE_UNSPECIFIED = 0
630
-
631
- # The subnet is ready.
632
- ACTIVE = 1
633
-
634
- # The subnet is being created.
635
- CREATING = 2
636
-
637
- # The subnet is being updated.
638
- UPDATING = 3
639
-
640
- # The subnet is being deleted.
641
- DELETING = 4
642
- end
643
- end
644
-
645
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_subnets VmwareEngine.ListSubnets}
392
+ # Request message for
393
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_subnets VmwareEngine.ListSubnets}
646
394
  # @!attribute [rw] parent
647
395
  # @return [::String]
648
396
  # Required. The resource name of the private cloud to be queried for
@@ -650,7 +398,7 @@ module Google
650
398
  # Resource names are schemeless URIs that follow the conventions in
651
399
  # https://cloud.google.com/apis/design/resource_names.
652
400
  # For example:
653
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
401
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
654
402
  # @!attribute [rw] page_size
655
403
  # @return [::Integer]
656
404
  # The maximum number of subnets to return in one page.
@@ -669,7 +417,8 @@ module Google
669
417
  extend ::Google::Protobuf::MessageExts::ClassMethods
670
418
  end
671
419
 
672
- # Response message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_subnets VmwareEngine.ListSubnets}
420
+ # Response message for
421
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_subnets VmwareEngine.ListSubnets}
673
422
  # @!attribute [rw] subnets
674
423
  # @return [::Array<::Google::Cloud::VmwareEngine::V1::Subnet>]
675
424
  # A list of subnets.
@@ -703,8 +452,9 @@ module Google
703
452
  # Output only. True if the user has requested cancellation
704
453
  # of the operation; false otherwise.
705
454
  # Operations that have successfully been cancelled
706
- # have [Operation.error][] value with a {::Google::Rpc::Status#code google.rpc.Status.code} of 1,
707
- # corresponding to `Code.CANCELLED`.
455
+ # have [Operation.error][] value with a
456
+ # {::Google::Rpc::Status#code google.rpc.Status.code} of 1, corresponding to
457
+ # `Code.CANCELLED`.
708
458
  # @!attribute [r] api_version
709
459
  # @return [::String]
710
460
  # Output only. API version used to start the operation.
@@ -713,50 +463,15 @@ module Google
713
463
  extend ::Google::Protobuf::MessageExts::ClassMethods
714
464
  end
715
465
 
716
- # Describes node type.
717
- # @!attribute [r] name
718
- # @return [::String]
719
- # Output only. The resource name of this node type.
720
- # Resource names are schemeless URIs that follow the conventions in
721
- # https://cloud.google.com/apis/design/resource_names.
722
- # For example:
723
- # `projects/my-proj/locations/us-west1-a/nodeTypes/standard-72`
724
- # @!attribute [r] node_type_id
725
- # @return [::String]
726
- # Output only. The canonical identifier of the node type
727
- # (corresponds to the `NodeType`). For example: standard-72.
728
- # @!attribute [r] display_name
729
- # @return [::String]
730
- # Output only. The friendly name for this node type.
731
- # For example: ve1-standard-72
732
- # @!attribute [r] virtual_cpu_count
733
- # @return [::Integer]
734
- # Output only. The total number of virtual CPUs in a single node.
735
- # @!attribute [r] total_core_count
736
- # @return [::Integer]
737
- # Output only. The total number of CPU cores in a single node.
738
- # @!attribute [r] memory_gb
739
- # @return [::Integer]
740
- # Output only. The amount of physical memory available, defined in GB.
741
- # @!attribute [r] disk_size_gb
742
- # @return [::Integer]
743
- # Output only. The amount of storage available, defined in GB.
744
- # @!attribute [r] available_custom_core_counts
745
- # @return [::Array<::Integer>]
746
- # Output only. List of possible values of custom core count.
747
- class NodeType
748
- include ::Google::Protobuf::MessageExts
749
- extend ::Google::Protobuf::MessageExts::ClassMethods
750
- end
751
-
752
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_node_types VmwareEngine.ListNodeTypes}
466
+ # Request message for
467
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_node_types VmwareEngine.ListNodeTypes}
753
468
  # @!attribute [rw] parent
754
469
  # @return [::String]
755
470
  # Required. The resource name of the location to be queried for node types.
756
471
  # Resource names are schemeless URIs that follow the conventions in
757
472
  # https://cloud.google.com/apis/design/resource_names.
758
473
  # For example:
759
- # `projects/my-project/locations/us-west1-a`
474
+ # `projects/my-project/locations/us-central1-a`
760
475
  # @!attribute [rw] page_size
761
476
  # @return [::Integer]
762
477
  # The maximum number of node types to return in one page.
@@ -802,7 +517,8 @@ module Google
802
517
  extend ::Google::Protobuf::MessageExts::ClassMethods
803
518
  end
804
519
 
805
- # Response message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_node_types VmwareEngine.ListNodeTypes}
520
+ # Response message for
521
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_node_types VmwareEngine.ListNodeTypes}
806
522
  # @!attribute [rw] node_types
807
523
  # @return [::Array<::Google::Cloud::VmwareEngine::V1::NodeType>]
808
524
  # A list of Node Types.
@@ -819,32 +535,22 @@ module Google
819
535
  extend ::Google::Protobuf::MessageExts::ClassMethods
820
536
  end
821
537
 
822
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_node_type VmwareEngine.GetNodeType}
538
+ # Request message for
539
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_node_type VmwareEngine.GetNodeType}
823
540
  # @!attribute [rw] name
824
541
  # @return [::String]
825
542
  # Required. The resource name of the node type to retrieve.
826
543
  # Resource names are schemeless URIs that follow the conventions in
827
544
  # https://cloud.google.com/apis/design/resource_names.
828
545
  # For example:
829
- # `projects/my-proj/locations/us-west1-a/nodeTypes/standard-72`
546
+ # `projects/my-proj/locations/us-central1-a/nodeTypes/standard-72`
830
547
  class GetNodeTypeRequest
831
548
  include ::Google::Protobuf::MessageExts
832
549
  extend ::Google::Protobuf::MessageExts::ClassMethods
833
550
  end
834
551
 
835
- # Credentials for a private cloud.
836
- # @!attribute [rw] username
837
- # @return [::String]
838
- # Initial username.
839
- # @!attribute [rw] password
840
- # @return [::String]
841
- # Initial password.
842
- class Credentials
843
- include ::Google::Protobuf::MessageExts
844
- extend ::Google::Protobuf::MessageExts::ClassMethods
845
- end
846
-
847
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#show_nsx_credentials VmwareEngine.ShowNsxCredentials}
552
+ # Request message for
553
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#show_nsx_credentials VmwareEngine.ShowNsxCredentials}
848
554
  # @!attribute [rw] private_cloud
849
555
  # @return [::String]
850
556
  # Required. The resource name of the private cloud
@@ -852,13 +558,14 @@ module Google
852
558
  # Resource names are schemeless URIs that follow the conventions in
853
559
  # https://cloud.google.com/apis/design/resource_names.
854
560
  # For example:
855
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
561
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
856
562
  class ShowNsxCredentialsRequest
857
563
  include ::Google::Protobuf::MessageExts
858
564
  extend ::Google::Protobuf::MessageExts::ClassMethods
859
565
  end
860
566
 
861
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#show_vcenter_credentials VmwareEngine.ShowVcenterCredentials}
567
+ # Request message for
568
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#show_vcenter_credentials VmwareEngine.ShowVcenterCredentials}
862
569
  # @!attribute [rw] private_cloud
863
570
  # @return [::String]
864
571
  # Required. The resource name of the private cloud
@@ -866,13 +573,14 @@ module Google
866
573
  # Resource names are schemeless URIs that follow the conventions in
867
574
  # https://cloud.google.com/apis/design/resource_names.
868
575
  # For example:
869
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
576
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
870
577
  class ShowVcenterCredentialsRequest
871
578
  include ::Google::Protobuf::MessageExts
872
579
  extend ::Google::Protobuf::MessageExts::ClassMethods
873
580
  end
874
581
 
875
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#reset_nsx_credentials VmwareEngine.ResetNsxCredentials}
582
+ # Request message for
583
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#reset_nsx_credentials VmwareEngine.ResetNsxCredentials}
876
584
  # @!attribute [rw] private_cloud
877
585
  # @return [::String]
878
586
  # Required. The resource name of the private cloud
@@ -880,7 +588,7 @@ module Google
880
588
  # Resource names are schemeless URIs that follow the conventions in
881
589
  # https://cloud.google.com/apis/design/resource_names.
882
590
  # For example:
883
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
591
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
884
592
  # @!attribute [rw] request_id
885
593
  # @return [::String]
886
594
  # Optional. A request ID to identify requests. Specify a unique request ID
@@ -902,7 +610,8 @@ module Google
902
610
  extend ::Google::Protobuf::MessageExts::ClassMethods
903
611
  end
904
612
 
905
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#reset_vcenter_credentials VmwareEngine.ResetVcenterCredentials}
613
+ # Request message for
614
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#reset_vcenter_credentials VmwareEngine.ResetVcenterCredentials}
906
615
  # @!attribute [rw] private_cloud
907
616
  # @return [::String]
908
617
  # Required. The resource name of the private cloud
@@ -910,7 +619,7 @@ module Google
910
619
  # Resource names are schemeless URIs that follow the conventions in
911
620
  # https://cloud.google.com/apis/design/resource_names.
912
621
  # For example:
913
- # `projects/my-project/locations/us-west1-a/privateClouds/my-cloud`
622
+ # `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
914
623
  # @!attribute [rw] request_id
915
624
  # @return [::String]
916
625
  # Optional. A request ID to identify requests. Specify a unique request ID
@@ -932,7 +641,8 @@ module Google
932
641
  extend ::Google::Protobuf::MessageExts::ClassMethods
933
642
  end
934
643
 
935
- # Response message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_hcx_activation_keys VmwareEngine.ListHcxActivationKeys}
644
+ # Response message for
645
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_hcx_activation_keys VmwareEngine.ListHcxActivationKeys}
936
646
  # @!attribute [rw] hcx_activation_keys
937
647
  # @return [::Array<::Google::Cloud::VmwareEngine::V1::HcxActivationKey>]
938
648
  # List of HCX activation keys.
@@ -949,51 +659,8 @@ module Google
949
659
  extend ::Google::Protobuf::MessageExts::ClassMethods
950
660
  end
951
661
 
952
- # HCX activation key. A default key is created during
953
- # private cloud provisioning, but this behavior is subject to change
954
- # and you should always verify active keys.
955
- # Use {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_hcx_activation_keys VmwareEngine.ListHcxActivationKeys} to retrieve existing keys
956
- # and {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_hcx_activation_key VmwareEngine.CreateHcxActivationKey} to create new ones.
957
- # @!attribute [r] name
958
- # @return [::String]
959
- # Output only. The resource name of this HcxActivationKey.
960
- # Resource names are schemeless URIs that follow the conventions in
961
- # https://cloud.google.com/apis/design/resource_names.
962
- # For example:
963
- # `projects/my-project/locations/us-west1/privateClouds/my-cloud/hcxActivationKeys/my-key`
964
- # @!attribute [r] create_time
965
- # @return [::Google::Protobuf::Timestamp]
966
- # Output only. Creation time of HCX activation key.
967
- # @!attribute [r] state
968
- # @return [::Google::Cloud::VmwareEngine::V1::HcxActivationKey::State]
969
- # Output only. State of HCX activation key.
970
- # @!attribute [r] activation_key
971
- # @return [::String]
972
- # Output only. HCX activation key.
973
- # @!attribute [r] uid
974
- # @return [::String]
975
- # Output only. System-generated unique identifier for the resource.
976
- class HcxActivationKey
977
- include ::Google::Protobuf::MessageExts
978
- extend ::Google::Protobuf::MessageExts::ClassMethods
979
-
980
- # State of HCX activation key
981
- module State
982
- # Unspecified state.
983
- STATE_UNSPECIFIED = 0
984
-
985
- # State of a newly generated activation key.
986
- AVAILABLE = 1
987
-
988
- # State of key when it has been used to activate HCX appliance.
989
- CONSUMED = 2
990
-
991
- # State of key when it is being created.
992
- CREATING = 3
993
- end
994
- end
995
-
996
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_hcx_activation_keys VmwareEngine.ListHcxActivationKeys}
662
+ # Request message for
663
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_hcx_activation_keys VmwareEngine.ListHcxActivationKeys}
997
664
  # @!attribute [rw] parent
998
665
  # @return [::String]
999
666
  # Required. The resource name of the private cloud
@@ -1028,13 +695,14 @@ module Google
1028
695
  # Resource names are schemeless URIs that follow the conventions in
1029
696
  # https://cloud.google.com/apis/design/resource_names.
1030
697
  # For example:
1031
- # `projects/my-project/locations/us-west1/privateClouds/my-cloud/hcxActivationKeys/my-key`
698
+ # `projects/my-project/locations/us-central1/privateClouds/my-cloud/hcxActivationKeys/my-key`
1032
699
  class GetHcxActivationKeyRequest
1033
700
  include ::Google::Protobuf::MessageExts
1034
701
  extend ::Google::Protobuf::MessageExts::ClassMethods
1035
702
  end
1036
703
 
1037
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_hcx_activation_key VmwareEngine.CreateHcxActivationKey}
704
+ # Request message for
705
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_hcx_activation_key VmwareEngine.CreateHcxActivationKey}
1038
706
  # @!attribute [rw] parent
1039
707
  # @return [::String]
1040
708
  # Required. The resource name of the private cloud to create the key for.
@@ -1080,184 +748,8 @@ module Google
1080
748
  extend ::Google::Protobuf::MessageExts::ClassMethods
1081
749
  end
1082
750
 
1083
- # Details about a HCX Cloud Manager appliance.
1084
- # @!attribute [rw] internal_ip
1085
- # @return [::String]
1086
- # Internal IP address of the appliance.
1087
- # @!attribute [rw] version
1088
- # @return [::String]
1089
- # Version of the appliance.
1090
- # @!attribute [r] state
1091
- # @return [::Google::Cloud::VmwareEngine::V1::Hcx::State]
1092
- # Output only. The state of the appliance.
1093
- # @!attribute [rw] fqdn
1094
- # @return [::String]
1095
- # Fully qualified domain name of the appliance.
1096
- class Hcx
1097
- include ::Google::Protobuf::MessageExts
1098
- extend ::Google::Protobuf::MessageExts::ClassMethods
1099
-
1100
- # State of the appliance
1101
- module State
1102
- # Unspecified appliance state. This is the default value.
1103
- STATE_UNSPECIFIED = 0
1104
-
1105
- # The appliance is operational and can be used.
1106
- ACTIVE = 1
1107
-
1108
- # The appliance is being deployed.
1109
- CREATING = 2
1110
- end
1111
- end
1112
-
1113
- # Details about a NSX Manager appliance.
1114
- # @!attribute [rw] internal_ip
1115
- # @return [::String]
1116
- # Internal IP address of the appliance.
1117
- # @!attribute [rw] version
1118
- # @return [::String]
1119
- # Version of the appliance.
1120
- # @!attribute [r] state
1121
- # @return [::Google::Cloud::VmwareEngine::V1::Nsx::State]
1122
- # Output only. The state of the appliance.
1123
- # @!attribute [rw] fqdn
1124
- # @return [::String]
1125
- # Fully qualified domain name of the appliance.
1126
- class Nsx
1127
- include ::Google::Protobuf::MessageExts
1128
- extend ::Google::Protobuf::MessageExts::ClassMethods
1129
-
1130
- # State of the appliance
1131
- module State
1132
- # Unspecified appliance state. This is the default value.
1133
- STATE_UNSPECIFIED = 0
1134
-
1135
- # The appliance is operational and can be used.
1136
- ACTIVE = 1
1137
-
1138
- # The appliance is being deployed.
1139
- CREATING = 2
1140
- end
1141
- end
1142
-
1143
- # Details about a vCenter Server management appliance.
1144
- # @!attribute [rw] internal_ip
1145
- # @return [::String]
1146
- # Internal IP address of the appliance.
1147
- # @!attribute [rw] version
1148
- # @return [::String]
1149
- # Version of the appliance.
1150
- # @!attribute [r] state
1151
- # @return [::Google::Cloud::VmwareEngine::V1::Vcenter::State]
1152
- # Output only. The state of the appliance.
1153
- # @!attribute [rw] fqdn
1154
- # @return [::String]
1155
- # Fully qualified domain name of the appliance.
1156
- class Vcenter
1157
- include ::Google::Protobuf::MessageExts
1158
- extend ::Google::Protobuf::MessageExts::ClassMethods
1159
-
1160
- # State of the appliance
1161
- module State
1162
- # Unspecified appliance state. This is the default value.
1163
- STATE_UNSPECIFIED = 0
1164
-
1165
- # The appliance is operational and can be used.
1166
- ACTIVE = 1
1167
-
1168
- # The appliance is being deployed.
1169
- CREATING = 2
1170
- end
1171
- end
1172
-
1173
- # Represents a network policy resource. Network policies are regional
1174
- # resources. You can use a network policy to enable or disable internet access
1175
- # and external IP access. Network policies are associated with a VMware Engine
1176
- # network, which might span across regions. For a given region, a network
1177
- # policy applies to all private clouds in the VMware Engine network associated
1178
- # with the policy.
1179
- # @!attribute [r] name
1180
- # @return [::String]
1181
- # Output only. The resource name of this network policy.
1182
- # Resource names are schemeless URIs that follow the conventions in
1183
- # https://cloud.google.com/apis/design/resource_names.
1184
- # For example:
1185
- # `projects/my-project/locations/us-central1/networkPolicies/my-network-policy`
1186
- # @!attribute [r] create_time
1187
- # @return [::Google::Protobuf::Timestamp]
1188
- # Output only. Creation time of this resource.
1189
- # @!attribute [r] update_time
1190
- # @return [::Google::Protobuf::Timestamp]
1191
- # Output only. Last update time of this resource.
1192
- # @!attribute [rw] internet_access
1193
- # @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService]
1194
- # Network service that allows VMware workloads to access the internet.
1195
- # @!attribute [rw] external_ip
1196
- # @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService]
1197
- # Network service that allows External IP addresses to be assigned to VMware
1198
- # workloads. This service can only be enabled when `internet_access` is also
1199
- # enabled.
1200
- # @!attribute [rw] edge_services_cidr
1201
- # @return [::String]
1202
- # Required. IP address range in CIDR notation used to create internet access
1203
- # and external IP access. An RFC 1918 CIDR block, with a "/26" prefix, is
1204
- # required. The range cannot overlap with any prefixes either in the consumer
1205
- # VPC network or in use by the private clouds attached to that VPC network.
1206
- # @!attribute [r] uid
1207
- # @return [::String]
1208
- # Output only. System-generated unique identifier for the resource.
1209
- # @!attribute [rw] vmware_engine_network
1210
- # @return [::String]
1211
- # Optional. The relative resource name of the VMware Engine network.
1212
- # Specify the name in the following form:
1213
- # `projects/{project}/locations/{location}/vmwareEngineNetworks/{vmware_engine_network_id}`
1214
- # where `{project}` can either be a project number or a project ID.
1215
- # @!attribute [rw] description
1216
- # @return [::String]
1217
- # Optional. User-provided description for this network policy.
1218
- # @!attribute [r] vmware_engine_network_canonical
1219
- # @return [::String]
1220
- # Output only. The canonical name of the VMware Engine network in the form:
1221
- # `projects/{project_number}/locations/{location}/vmwareEngineNetworks/{vmware_engine_network_id}`
1222
- class NetworkPolicy
1223
- include ::Google::Protobuf::MessageExts
1224
- extend ::Google::Protobuf::MessageExts::ClassMethods
1225
-
1226
- # Represents a network service that is managed by a `NetworkPolicy` resource.
1227
- # A network service provides a way to control an aspect of external access to
1228
- # VMware workloads. For example, whether the VMware workloads in the
1229
- # private clouds governed by a network policy can access or be accessed from
1230
- # the internet.
1231
- # @!attribute [rw] enabled
1232
- # @return [::Boolean]
1233
- # True if the service is enabled; false otherwise.
1234
- # @!attribute [r] state
1235
- # @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy::NetworkService::State]
1236
- # Output only. State of the service. New values may be added to this enum
1237
- # when appropriate.
1238
- class NetworkService
1239
- include ::Google::Protobuf::MessageExts
1240
- extend ::Google::Protobuf::MessageExts::ClassMethods
1241
-
1242
- # Enum State defines possible states of a network policy controlled
1243
- # service.
1244
- module State
1245
- # Unspecified service state. This is the default value.
1246
- STATE_UNSPECIFIED = 0
1247
-
1248
- # Service is not provisioned.
1249
- UNPROVISIONED = 1
1250
-
1251
- # Service is in the process of being provisioned/deprovisioned.
1252
- RECONCILING = 2
1253
-
1254
- # Service is active.
1255
- ACTIVE = 3
1256
- end
1257
- end
1258
- end
1259
-
1260
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_network_policies VmwareEngine.ListNetworkPolicies}
751
+ # Request message for
752
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_network_policies VmwareEngine.ListNetworkPolicies}
1261
753
  # @!attribute [rw] parent
1262
754
  # @return [::String]
1263
755
  # Required. The resource name of the location (region) to query for
@@ -1317,7 +809,8 @@ module Google
1317
809
  extend ::Google::Protobuf::MessageExts::ClassMethods
1318
810
  end
1319
811
 
1320
- # Response message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_network_policies VmwareEngine.ListNetworkPolicies}
812
+ # Response message for
813
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_network_policies VmwareEngine.ListNetworkPolicies}
1321
814
  # @!attribute [rw] network_policies
1322
815
  # @return [::Array<::Google::Cloud::VmwareEngine::V1::NetworkPolicy>]
1323
816
  # A list of network policies.
@@ -1334,7 +827,8 @@ module Google
1334
827
  extend ::Google::Protobuf::MessageExts::ClassMethods
1335
828
  end
1336
829
 
1337
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_network_policy VmwareEngine.GetNetworkPolicy}
830
+ # Request message for
831
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_network_policy VmwareEngine.GetNetworkPolicy}
1338
832
  # @!attribute [rw] name
1339
833
  # @return [::String]
1340
834
  # Required. The resource name of the network policy to retrieve.
@@ -1347,7 +841,8 @@ module Google
1347
841
  extend ::Google::Protobuf::MessageExts::ClassMethods
1348
842
  end
1349
843
 
1350
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_network_policy VmwareEngine.UpdateNetworkPolicy}
844
+ # Request message for
845
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_network_policy VmwareEngine.UpdateNetworkPolicy}
1351
846
  # @!attribute [rw] network_policy
1352
847
  # @return [::Google::Cloud::VmwareEngine::V1::NetworkPolicy]
1353
848
  # Required. Network policy description.
@@ -1379,7 +874,8 @@ module Google
1379
874
  extend ::Google::Protobuf::MessageExts::ClassMethods
1380
875
  end
1381
876
 
1382
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_network_policy VmwareEngine.CreateNetworkPolicy}
877
+ # Request message for
878
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_network_policy VmwareEngine.CreateNetworkPolicy}
1383
879
  # @!attribute [rw] parent
1384
880
  # @return [::String]
1385
881
  # Required. The resource name of the location (region)
@@ -1426,7 +922,8 @@ module Google
1426
922
  extend ::Google::Protobuf::MessageExts::ClassMethods
1427
923
  end
1428
924
 
1429
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_network_policy VmwareEngine.DeleteNetworkPolicy}
925
+ # Request message for
926
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_network_policy VmwareEngine.DeleteNetworkPolicy}
1430
927
  # @!attribute [rw] name
1431
928
  # @return [::String]
1432
929
  # Required. The resource name of the network policy to delete.
@@ -1455,115 +952,8 @@ module Google
1455
952
  extend ::Google::Protobuf::MessageExts::ClassMethods
1456
953
  end
1457
954
 
1458
- # VMware Engine network resource that provides connectivity for VMware Engine
1459
- # private clouds.
1460
- # @!attribute [r] name
1461
- # @return [::String]
1462
- # Output only. The resource name of the VMware Engine network.
1463
- # Resource names are schemeless URIs that follow the conventions in
1464
- # https://cloud.google.com/apis/design/resource_names.
1465
- # For example:
1466
- # `projects/my-project/locations/global/vmwareEngineNetworks/my-network`
1467
- # @!attribute [r] create_time
1468
- # @return [::Google::Protobuf::Timestamp]
1469
- # Output only. Creation time of this resource.
1470
- # @!attribute [r] update_time
1471
- # @return [::Google::Protobuf::Timestamp]
1472
- # Output only. Last update time of this resource.
1473
- # @!attribute [rw] description
1474
- # @return [::String]
1475
- # User-provided description for this VMware Engine network.
1476
- # @!attribute [r] vpc_networks
1477
- # @return [::Array<::Google::Cloud::VmwareEngine::V1::VmwareEngineNetwork::VpcNetwork>]
1478
- # Output only. VMware Engine service VPC networks that provide connectivity
1479
- # from a private cloud to customer projects, the internet, and other Google
1480
- # Cloud services.
1481
- # @!attribute [r] state
1482
- # @return [::Google::Cloud::VmwareEngine::V1::VmwareEngineNetwork::State]
1483
- # Output only. State of the VMware Engine network.
1484
- # @!attribute [rw] type
1485
- # @return [::Google::Cloud::VmwareEngine::V1::VmwareEngineNetwork::Type]
1486
- # Required. VMware Engine network type.
1487
- # @!attribute [r] uid
1488
- # @return [::String]
1489
- # Output only. System-generated unique identifier for the resource.
1490
- # @!attribute [rw] etag
1491
- # @return [::String]
1492
- # Checksum that may be sent on update and delete requests to ensure that the
1493
- # user-provided value is up to date before the server processes a request.
1494
- # The server computes checksums based on the value of other fields in the
1495
- # request.
1496
- class VmwareEngineNetwork
1497
- include ::Google::Protobuf::MessageExts
1498
- extend ::Google::Protobuf::MessageExts::ClassMethods
1499
-
1500
- # Represents a VMware Engine VPC network that is managed by a
1501
- # VMware Engine network resource.
1502
- # @!attribute [r] type
1503
- # @return [::Google::Cloud::VmwareEngine::V1::VmwareEngineNetwork::VpcNetwork::Type]
1504
- # Output only. Type of VPC network (INTRANET, INTERNET, or
1505
- # GOOGLE_CLOUD)
1506
- # @!attribute [r] network
1507
- # @return [::String]
1508
- # Output only. The relative resource name of the service VPC network this
1509
- # VMware Engine network is attached to. For example:
1510
- # `projects/123123/global/networks/my-network`
1511
- class VpcNetwork
1512
- include ::Google::Protobuf::MessageExts
1513
- extend ::Google::Protobuf::MessageExts::ClassMethods
1514
-
1515
- # Enum Type defines possible types of a VMware Engine network controlled
1516
- # service.
1517
- module Type
1518
- # The default value. This value should never be used.
1519
- TYPE_UNSPECIFIED = 0
1520
-
1521
- # VPC network that will be peered with a consumer VPC network or the
1522
- # intranet VPC of another VMware Engine network. Access a private cloud
1523
- # through Compute Engine VMs on a peered VPC network or an on-premises
1524
- # resource connected to a peered consumer VPC network.
1525
- INTRANET = 1
1526
-
1527
- # VPC network used for internet access to and from a private cloud.
1528
- INTERNET = 2
1529
-
1530
- # VPC network used for access to Google Cloud services like
1531
- # Cloud Storage.
1532
- GOOGLE_CLOUD = 3
1533
- end
1534
- end
1535
-
1536
- # Enum State defines possible states of VMware Engine network.
1537
- module State
1538
- # The default value. This value is used if the state is omitted.
1539
- STATE_UNSPECIFIED = 0
1540
-
1541
- # The VMware Engine network is being created.
1542
- CREATING = 1
1543
-
1544
- # The VMware Engine network is ready.
1545
- ACTIVE = 2
1546
-
1547
- # The VMware Engine network is being updated.
1548
- UPDATING = 3
1549
-
1550
- # The VMware Engine network is being deleted.
1551
- DELETING = 4
1552
- end
1553
-
1554
- # Enum Type defines possible types of VMware Engine network.
1555
- module Type
1556
- # The default value. This value should never be used.
1557
- TYPE_UNSPECIFIED = 0
1558
-
1559
- # Network type used by private clouds created in projects without a network
1560
- # of type `STANDARD`. This network type is no longer used for new VMware
1561
- # Engine private cloud deployments.
1562
- LEGACY = 1
1563
- end
1564
- end
1565
-
1566
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_vmware_engine_network VmwareEngine.CreateVmwareEngineNetwork}
955
+ # Request message for
956
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#create_vmware_engine_network VmwareEngine.CreateVmwareEngineNetwork}
1567
957
  # @!attribute [rw] parent
1568
958
  # @return [::String]
1569
959
  # Required. The resource name of the location to create the new VMware Engine
@@ -1582,7 +972,7 @@ module Google
1582
972
  #
1583
973
  # * For networks of type LEGACY, adheres to the format:
1584
974
  # `{region-id}-default`. Replace `{region-id}` with the region where you want
1585
- # to create the VMware Engine network. For example, "us-west1-default".
975
+ # to create the VMware Engine network. For example, "us-central1-default".
1586
976
  # * Only contains 1-63 alphanumeric characters and hyphens
1587
977
  # * Begins with an alphabetical character
1588
978
  # * Ends with a non-hyphen character
@@ -1613,7 +1003,8 @@ module Google
1613
1003
  extend ::Google::Protobuf::MessageExts::ClassMethods
1614
1004
  end
1615
1005
 
1616
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_vmware_engine_network VmwareEngine.UpdateVmwareEngineNetwork}
1006
+ # Request message for
1007
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#update_vmware_engine_network VmwareEngine.UpdateVmwareEngineNetwork}
1617
1008
  # @!attribute [rw] vmware_engine_network
1618
1009
  # @return [::Google::Cloud::VmwareEngine::V1::VmwareEngineNetwork]
1619
1010
  # Required. VMware Engine network description.
@@ -1646,7 +1037,8 @@ module Google
1646
1037
  extend ::Google::Protobuf::MessageExts::ClassMethods
1647
1038
  end
1648
1039
 
1649
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_vmware_engine_network VmwareEngine.DeleteVmwareEngineNetwork}
1040
+ # Request message for
1041
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#delete_vmware_engine_network VmwareEngine.DeleteVmwareEngineNetwork}
1650
1042
  # @!attribute [rw] name
1651
1043
  # @return [::String]
1652
1044
  # Required. The resource name of the VMware Engine network to be deleted.
@@ -1672,16 +1064,17 @@ module Google
1672
1064
  # not supported (00000000-0000-0000-0000-000000000000).
1673
1065
  # @!attribute [rw] etag
1674
1066
  # @return [::String]
1675
- # Optional. Checksum used to ensure that the user-provided value is up to date before
1676
- # the server processes the request. The server compares provided checksum
1677
- # with the current checksum of the resource. If the user-provided value is
1678
- # out of date, this request returns an `ABORTED` error.
1067
+ # Optional. Checksum used to ensure that the user-provided value is up to
1068
+ # date before the server processes the request. The server compares provided
1069
+ # checksum with the current checksum of the resource. If the user-provided
1070
+ # value is out of date, this request returns an `ABORTED` error.
1679
1071
  class DeleteVmwareEngineNetworkRequest
1680
1072
  include ::Google::Protobuf::MessageExts
1681
1073
  extend ::Google::Protobuf::MessageExts::ClassMethods
1682
1074
  end
1683
1075
 
1684
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_vmware_engine_network VmwareEngine.GetVmwareEngineNetwork}
1076
+ # Request message for
1077
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#get_vmware_engine_network VmwareEngine.GetVmwareEngineNetwork}
1685
1078
  # @!attribute [rw] name
1686
1079
  # @return [::String]
1687
1080
  # Required. The resource name of the VMware Engine network to retrieve.
@@ -1694,7 +1087,8 @@ module Google
1694
1087
  extend ::Google::Protobuf::MessageExts::ClassMethods
1695
1088
  end
1696
1089
 
1697
- # Request message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_vmware_engine_networks VmwareEngine.ListVmwareEngineNetworks}
1090
+ # Request message for
1091
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_vmware_engine_networks VmwareEngine.ListVmwareEngineNetworks}
1698
1092
  # @!attribute [rw] parent
1699
1093
  # @return [::String]
1700
1094
  # Required. The resource name of the location to query for
@@ -1753,7 +1147,8 @@ module Google
1753
1147
  extend ::Google::Protobuf::MessageExts::ClassMethods
1754
1148
  end
1755
1149
 
1756
- # Response message for {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_vmware_engine_networks VmwareEngine.ListVmwareEngineNetworks}
1150
+ # Response message for
1151
+ # {::Google::Cloud::VmwareEngine::V1::VmwareEngine::Client#list_vmware_engine_networks VmwareEngine.ListVmwareEngineNetworks}
1757
1152
  # @!attribute [rw] vmware_engine_networks
1758
1153
  # @return [::Array<::Google::Cloud::VmwareEngine::V1::VmwareEngineNetwork>]
1759
1154
  # A list of VMware Engine networks.