google-cloud-gke_multi_cloud-v1 0.1.0 → 0.3.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 +4 -4
- data/AUTHENTICATION.md +7 -7
- data/README.md +9 -9
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/client.rb +1289 -0
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/credentials.rb +47 -0
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/operations.rb +770 -0
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters/paths.rb +86 -0
- data/lib/google/cloud/gke_multi_cloud/v1/attached_clusters.rb +52 -0
- data/lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb +93 -51
- data/lib/google/cloud/gke_multi_cloud/v1/aws_clusters/operations.rb +3 -0
- data/lib/google/cloud/gke_multi_cloud/v1/aws_clusters.rb +1 -1
- data/lib/google/cloud/gke_multi_cloud/v1/azure_clusters/client.rb +126 -75
- data/lib/google/cloud/gke_multi_cloud/v1/azure_clusters/operations.rb +3 -0
- data/lib/google/cloud/gke_multi_cloud/v1/azure_clusters.rb +1 -1
- data/lib/google/cloud/gke_multi_cloud/v1/version.rb +1 -1
- data/lib/google/cloud/gke_multi_cloud/v1.rb +4 -3
- data/lib/google/cloud/gkemulticloud/v1/attached_resources_pb.rb +82 -0
- data/lib/google/cloud/gkemulticloud/v1/attached_service_pb.rb +84 -0
- data/lib/google/cloud/gkemulticloud/v1/attached_service_services_pb.rb +85 -0
- data/lib/google/cloud/gkemulticloud/v1/aws_resources_pb.rb +17 -0
- data/lib/google/cloud/gkemulticloud/v1/aws_service_services_pb.rb +19 -11
- data/lib/google/cloud/gkemulticloud/v1/azure_resources_pb.rb +11 -0
- data/lib/google/cloud/gkemulticloud/v1/azure_service_services_pb.rb +28 -17
- data/lib/google/cloud/gkemulticloud/v1/common_resources_pb.rb +10 -0
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb +239 -0
- data/proto_docs/google/cloud/gkemulticloud/v1/attached_service.rb +294 -0
- data/proto_docs/google/cloud/gkemulticloud/v1/aws_resources.rb +86 -29
- data/proto_docs/google/cloud/gkemulticloud/v1/aws_service.rb +79 -44
- data/proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb +75 -37
- data/proto_docs/google/cloud/gkemulticloud/v1/azure_service.rb +105 -64
- data/proto_docs/google/cloud/gkemulticloud/v1/common_resources.rb +36 -3
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +24 -12
@@ -24,8 +24,9 @@ module Google
|
|
24
24
|
# Request message for `AzureClusters.CreateAzureCluster` method.
|
25
25
|
# @!attribute [rw] parent
|
26
26
|
# @return [::String]
|
27
|
-
# Required. The parent location where this
|
28
|
-
# will be
|
27
|
+
# Required. The parent location where this
|
28
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster} resource will be
|
29
|
+
# created.
|
29
30
|
#
|
30
31
|
# Location names are formatted as `projects/<project-id>/locations/<region>`.
|
31
32
|
#
|
@@ -33,17 +34,19 @@ module Google
|
|
33
34
|
# for more details on Google Cloud resource names.
|
34
35
|
# @!attribute [rw] azure_cluster
|
35
36
|
# @return [::Google::Cloud::GkeMultiCloud::V1::AzureCluster]
|
36
|
-
# Required. The specification of the
|
37
|
+
# Required. The specification of the
|
38
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster} to create.
|
37
39
|
# @!attribute [rw] azure_cluster_id
|
38
40
|
# @return [::String]
|
39
|
-
# Required. A client provided ID the resource. Must be unique within the
|
40
|
-
# resource.
|
41
|
+
# Required. A client provided ID the resource. Must be unique within the
|
42
|
+
# parent resource.
|
41
43
|
#
|
42
|
-
# The provided ID will be part of the
|
43
|
-
# resource name
|
44
|
+
# The provided ID will be part of the
|
45
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster} resource name
|
46
|
+
# formatted as
|
44
47
|
# `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>`.
|
45
48
|
#
|
46
|
-
# Valid characters are `/[a-z][0-9]-/`. Cannot be longer than
|
49
|
+
# Valid characters are `/[a-z][0-9]-/`. Cannot be longer than 63 characters.
|
47
50
|
# @!attribute [rw] validate_only
|
48
51
|
# @return [::Boolean]
|
49
52
|
# If set, only validate the request, but do not actually create the cluster.
|
@@ -55,7 +58,8 @@ module Google
|
|
55
58
|
# Request message for `AzureClusters.UpdateAzureCluster` method.
|
56
59
|
# @!attribute [rw] azure_cluster
|
57
60
|
# @return [::Google::Cloud::GkeMultiCloud::V1::AzureCluster]
|
58
|
-
# Required. The {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster}
|
61
|
+
# Required. The {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster}
|
62
|
+
# resource to update.
|
59
63
|
# @!attribute [rw] validate_only
|
60
64
|
# @return [::Boolean]
|
61
65
|
# If set, only validate the request, but do not actually update the cluster.
|
@@ -66,13 +70,18 @@ module Google
|
|
66
70
|
# fields from {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster}:
|
67
71
|
#
|
68
72
|
# * `description`.
|
69
|
-
# * `annotations`.
|
70
73
|
# * `azureClient`.
|
71
74
|
# * `control_plane.version`.
|
72
75
|
# * `control_plane.vm_size`.
|
76
|
+
# * `annotations`.
|
73
77
|
# * `authorization.admin_users`.
|
74
78
|
# * `control_plane.root_volume.size_gib`.
|
75
|
-
# * `
|
79
|
+
# * `control_plane.proxy_config`.
|
80
|
+
# * `control_plane.proxy_config.resource_group_id`.
|
81
|
+
# * `control_plane.proxy_config.secret_id`.
|
82
|
+
# * `control_plane.ssh_config.authorized_key`.
|
83
|
+
# * `logging_config.component_config.enable_components`
|
84
|
+
# * `monitoring_config.managed_prometheus_config.enabled`.
|
76
85
|
class UpdateAzureClusterRequest
|
77
86
|
include ::Google::Protobuf::MessageExts
|
78
87
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -81,7 +90,9 @@ module Google
|
|
81
90
|
# Request message for `AzureClusters.GetAzureCluster` method.
|
82
91
|
# @!attribute [rw] name
|
83
92
|
# @return [::String]
|
84
|
-
# Required. The name of the
|
93
|
+
# Required. The name of the
|
94
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster} resource to
|
95
|
+
# describe.
|
85
96
|
#
|
86
97
|
# `AzureCluster` names are formatted as
|
87
98
|
# `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>`.
|
@@ -110,12 +121,13 @@ module Google
|
|
110
121
|
# If not specified, a default value of 50 will be used by the service.
|
111
122
|
# Regardless of the pageSize value, the response can include a partial list
|
112
123
|
# and a caller should only rely on response's
|
113
|
-
# {::Google::Cloud::GkeMultiCloud::V1::ListAzureClustersResponse#next_page_token nextPageToken}
|
114
|
-
# there are more instances left to be queried.
|
124
|
+
# {::Google::Cloud::GkeMultiCloud::V1::ListAzureClustersResponse#next_page_token nextPageToken}
|
125
|
+
# to determine if there are more instances left to be queried.
|
115
126
|
# @!attribute [rw] page_token
|
116
127
|
# @return [::String]
|
117
128
|
# The `nextPageToken` value returned from a previous
|
118
|
-
# {::Google::Cloud::GkeMultiCloud::V1::AzureClusters::Client#list_azure_clusters azureClusters.list}
|
129
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClusters::Client#list_azure_clusters azureClusters.list}
|
130
|
+
# request, if any.
|
119
131
|
class ListAzureClustersRequest
|
120
132
|
include ::Google::Protobuf::MessageExts
|
121
133
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -124,8 +136,8 @@ module Google
|
|
124
136
|
# Response message for `AzureClusters.ListAzureClusters` method.
|
125
137
|
# @!attribute [rw] azure_clusters
|
126
138
|
# @return [::Array<::Google::Cloud::GkeMultiCloud::V1::AzureCluster>]
|
127
|
-
# A list of {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster}
|
128
|
-
# project and region region.
|
139
|
+
# A list of {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster}
|
140
|
+
# resources in the specified GCP project and region region.
|
129
141
|
# @!attribute [rw] next_page_token
|
130
142
|
# @return [::String]
|
131
143
|
# Token to retrieve the next page of results, or empty if there are no more
|
@@ -138,7 +150,8 @@ module Google
|
|
138
150
|
# Request message for `Clusters.DeleteAzureCluster` method.
|
139
151
|
# @!attribute [rw] name
|
140
152
|
# @return [::String]
|
141
|
-
# Required. The resource name the
|
153
|
+
# Required. The resource name the
|
154
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster} to delete.
|
142
155
|
#
|
143
156
|
# `AzureCluster` names are formatted as
|
144
157
|
# `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>`.
|
@@ -147,9 +160,10 @@ module Google
|
|
147
160
|
# for more details on GCP resource names.
|
148
161
|
# @!attribute [rw] allow_missing
|
149
162
|
# @return [::Boolean]
|
150
|
-
# If set to true, and the
|
151
|
-
#
|
152
|
-
#
|
163
|
+
# If set to true, and the
|
164
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster} resource is not
|
165
|
+
# found, the request will succeed but no action will be taken on the server
|
166
|
+
# and a completed {::Google::Longrunning::Operation Operation} will be returned.
|
153
167
|
#
|
154
168
|
# Useful for idempotent deletion.
|
155
169
|
# @!attribute [rw] validate_only
|
@@ -157,7 +171,8 @@ module Google
|
|
157
171
|
# If set, only validate the request, but do not actually delete the resource.
|
158
172
|
# @!attribute [rw] etag
|
159
173
|
# @return [::String]
|
160
|
-
# The current etag of the
|
174
|
+
# The current etag of the
|
175
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster}.
|
161
176
|
#
|
162
177
|
# Allows clients to perform deletions through optimistic concurrency control.
|
163
178
|
#
|
@@ -171,7 +186,8 @@ module Google
|
|
171
186
|
# Response message for `AzureClusters.CreateAzureNodePool` method.
|
172
187
|
# @!attribute [rw] parent
|
173
188
|
# @return [::String]
|
174
|
-
# Required. The {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster}
|
189
|
+
# Required. The {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster}
|
190
|
+
# resource where this node pool will be created.
|
175
191
|
#
|
176
192
|
# Location names are formatted as `projects/<project-id>/locations/<region>`.
|
177
193
|
#
|
@@ -179,17 +195,19 @@ module Google
|
|
179
195
|
# for more details on Google Cloud resource names.
|
180
196
|
# @!attribute [rw] azure_node_pool
|
181
197
|
# @return [::Google::Cloud::GkeMultiCloud::V1::AzureNodePool]
|
182
|
-
# Required. The specification of the
|
198
|
+
# Required. The specification of the
|
199
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureNodePool AzureNodePool} to create.
|
183
200
|
# @!attribute [rw] azure_node_pool_id
|
184
201
|
# @return [::String]
|
185
|
-
# Required. A client provided ID the resource. Must be unique within the
|
186
|
-
# resource.
|
202
|
+
# Required. A client provided ID the resource. Must be unique within the
|
203
|
+
# parent resource.
|
187
204
|
#
|
188
|
-
# The provided ID will be part of the
|
189
|
-
# resource name
|
205
|
+
# The provided ID will be part of the
|
206
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureNodePool AzureNodePool} resource name
|
207
|
+
# formatted as
|
190
208
|
# `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>/azureNodePools/<node-pool-id>`.
|
191
209
|
#
|
192
|
-
# Valid characters are `/[a-z][0-9]-/`. Cannot be longer than
|
210
|
+
# Valid characters are `/[a-z][0-9]-/`. Cannot be longer than 63 characters.
|
193
211
|
# @!attribute [rw] validate_only
|
194
212
|
# @return [::Boolean]
|
195
213
|
# If set, only validate the request, but do not actually create the node
|
@@ -202,7 +220,8 @@ module Google
|
|
202
220
|
# Request message for `AzureClusters.UpdateAzureNodePool` method.
|
203
221
|
# @!attribute [rw] azure_node_pool
|
204
222
|
# @return [::Google::Cloud::GkeMultiCloud::V1::AzureNodePool]
|
205
|
-
# Required. The {::Google::Cloud::GkeMultiCloud::V1::AzureNodePool AzureNodePool}
|
223
|
+
# Required. The {::Google::Cloud::GkeMultiCloud::V1::AzureNodePool AzureNodePool}
|
224
|
+
# resource to update.
|
206
225
|
# @!attribute [rw] validate_only
|
207
226
|
# @return [::Boolean]
|
208
227
|
# If set, only validate the request, but don't actually update the node pool.
|
@@ -216,7 +235,7 @@ module Google
|
|
216
235
|
# * `version`.
|
217
236
|
# * `autoscaling.min_node_count`.
|
218
237
|
# * `autoscaling.max_node_count`.
|
219
|
-
# * `config.
|
238
|
+
# * `config.ssh_config.authorized_key`.
|
220
239
|
class UpdateAzureNodePoolRequest
|
221
240
|
include ::Google::Protobuf::MessageExts
|
222
241
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -225,7 +244,9 @@ module Google
|
|
225
244
|
# Request message for `AzureClusters.GetAzureNodePool` method.
|
226
245
|
# @!attribute [rw] name
|
227
246
|
# @return [::String]
|
228
|
-
# Required. The name of the
|
247
|
+
# Required. The name of the
|
248
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureNodePool AzureNodePool} resource to
|
249
|
+
# describe.
|
229
250
|
#
|
230
251
|
# `AzureNodePool` names are formatted as
|
231
252
|
# `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>/azureNodePools/<node-pool-id>`.
|
@@ -255,12 +276,13 @@ module Google
|
|
255
276
|
# If not specified, a default value of 50 will be used by the service.
|
256
277
|
# Regardless of the pageSize value, the response can include a partial list
|
257
278
|
# and a caller should only rely on response's
|
258
|
-
# {::Google::Cloud::GkeMultiCloud::V1::ListAzureNodePoolsResponse#next_page_token nextPageToken}
|
259
|
-
# there are more instances left to be queried.
|
279
|
+
# {::Google::Cloud::GkeMultiCloud::V1::ListAzureNodePoolsResponse#next_page_token nextPageToken}
|
280
|
+
# to determine if there are more instances left to be queried.
|
260
281
|
# @!attribute [rw] page_token
|
261
282
|
# @return [::String]
|
262
283
|
# The `nextPageToken` value returned from a previous
|
263
|
-
# {::Google::Cloud::GkeMultiCloud::V1::AzureClusters::Client#list_azure_node_pools azureNodePools.list}
|
284
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClusters::Client#list_azure_node_pools azureNodePools.list}
|
285
|
+
# request, if any.
|
264
286
|
class ListAzureNodePoolsRequest
|
265
287
|
include ::Google::Protobuf::MessageExts
|
266
288
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -269,7 +291,8 @@ module Google
|
|
269
291
|
# Response message for `AzureClusters.ListAzureNodePools` method.
|
270
292
|
# @!attribute [rw] azure_node_pools
|
271
293
|
# @return [::Array<::Google::Cloud::GkeMultiCloud::V1::AzureNodePool>]
|
272
|
-
# A list of {::Google::Cloud::GkeMultiCloud::V1::AzureNodePool AzureNodePool}
|
294
|
+
# A list of {::Google::Cloud::GkeMultiCloud::V1::AzureNodePool AzureNodePool}
|
295
|
+
# resources in the specified `AzureCluster`.
|
273
296
|
# @!attribute [rw] next_page_token
|
274
297
|
# @return [::String]
|
275
298
|
# Token to retrieve the next page of results, or empty if there are no more
|
@@ -279,10 +302,11 @@ module Google
|
|
279
302
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
280
303
|
end
|
281
304
|
|
282
|
-
# Delete message for `AzureClusters.
|
305
|
+
# Delete message for `AzureClusters.DeleteAzureNodePool` method.
|
283
306
|
# @!attribute [rw] name
|
284
307
|
# @return [::String]
|
285
|
-
# Required. The resource name the
|
308
|
+
# Required. The resource name the
|
309
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureNodePool AzureNodePool} to delete.
|
286
310
|
#
|
287
311
|
# `AzureNodePool` names are formatted as
|
288
312
|
# `projects/<project-id>/locations/<region>/azureClusters/<cluster-id>/azureNodePools/<node-pool-id>`.
|
@@ -295,14 +319,17 @@ module Google
|
|
295
319
|
# pool.
|
296
320
|
# @!attribute [rw] allow_missing
|
297
321
|
# @return [::Boolean]
|
298
|
-
# If set to true, and the
|
299
|
-
#
|
300
|
-
#
|
322
|
+
# If set to true, and the
|
323
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureNodePool AzureNodePool} resource is
|
324
|
+
# not found, the request will succeed but no action will be taken on the
|
325
|
+
# server and a completed {::Google::Longrunning::Operation Operation} will be
|
326
|
+
# returned.
|
301
327
|
#
|
302
328
|
# Useful for idempotent deletion.
|
303
329
|
# @!attribute [rw] etag
|
304
330
|
# @return [::String]
|
305
|
-
# The current ETag of the
|
331
|
+
# The current ETag of the
|
332
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureNodePool AzureNodePool}.
|
306
333
|
#
|
307
334
|
# Allows clients to perform deletions through optimistic concurrency control.
|
308
335
|
#
|
@@ -316,7 +343,9 @@ module Google
|
|
316
343
|
# GetAzureServerConfigRequest gets the server config of GKE cluster on Azure.
|
317
344
|
# @!attribute [rw] name
|
318
345
|
# @return [::String]
|
319
|
-
# Required. The name of the
|
346
|
+
# Required. The name of the
|
347
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureServerConfig AzureServerConfig}
|
348
|
+
# resource to describe.
|
320
349
|
#
|
321
350
|
# `AzureServerConfig` names are formatted as
|
322
351
|
# `projects/<project-id>/locations/<region>/azureServerConfig`.
|
@@ -331,8 +360,9 @@ module Google
|
|
331
360
|
# Request message for `AzureClusters.CreateAzureClient` method.
|
332
361
|
# @!attribute [rw] parent
|
333
362
|
# @return [::String]
|
334
|
-
# Required. The parent location where this
|
335
|
-
# will be
|
363
|
+
# Required. The parent location where this
|
364
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient} resource will be
|
365
|
+
# created.
|
336
366
|
#
|
337
367
|
# Location names are formatted as `projects/<project-id>/locations/<region>`.
|
338
368
|
#
|
@@ -340,17 +370,19 @@ module Google
|
|
340
370
|
# for more details on Google Cloud resource names.
|
341
371
|
# @!attribute [rw] azure_client
|
342
372
|
# @return [::Google::Cloud::GkeMultiCloud::V1::AzureClient]
|
343
|
-
# Required. The specification of the
|
373
|
+
# Required. The specification of the
|
374
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient} to create.
|
344
375
|
# @!attribute [rw] azure_client_id
|
345
376
|
# @return [::String]
|
346
|
-
# Required. A client provided ID the resource. Must be unique within the
|
347
|
-
# resource.
|
377
|
+
# Required. A client provided ID the resource. Must be unique within the
|
378
|
+
# parent resource.
|
348
379
|
#
|
349
|
-
# The provided ID will be part of the
|
350
|
-
# resource name
|
380
|
+
# The provided ID will be part of the
|
381
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient} resource name
|
382
|
+
# formatted as
|
351
383
|
# `projects/<project-id>/locations/<region>/azureClients/<client-id>`.
|
352
384
|
#
|
353
|
-
# Valid characters are `/[a-z][0-9]-/`. Cannot be longer than
|
385
|
+
# Valid characters are `/[a-z][0-9]-/`. Cannot be longer than 63 characters.
|
354
386
|
# @!attribute [rw] validate_only
|
355
387
|
# @return [::Boolean]
|
356
388
|
# If set, only validate the request, but do not actually create the client.
|
@@ -362,9 +394,12 @@ module Google
|
|
362
394
|
# Request message for `AzureClusters.GetAzureClient` method.
|
363
395
|
# @!attribute [rw] name
|
364
396
|
# @return [::String]
|
365
|
-
# Required. The name of the
|
397
|
+
# Required. The name of the
|
398
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient} resource to
|
399
|
+
# describe.
|
366
400
|
#
|
367
|
-
# {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient} names are
|
401
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient} names are
|
402
|
+
# formatted as
|
368
403
|
# `projects/<project-id>/locations/<region>/azureClients/<client-id>`.
|
369
404
|
#
|
370
405
|
# See [Resource Names](https://cloud.google.com/apis/design/resource_names)
|
@@ -391,12 +426,13 @@ module Google
|
|
391
426
|
# If not specified, a default value of 50 will be used by the service.
|
392
427
|
# Regardless of the pageSize value, the response can include a partial list
|
393
428
|
# and a caller should only rely on response's
|
394
|
-
# {::Google::Cloud::GkeMultiCloud::V1::ListAzureClientsResponse#next_page_token nextPageToken}
|
395
|
-
# there are more instances left to be queried.
|
429
|
+
# {::Google::Cloud::GkeMultiCloud::V1::ListAzureClientsResponse#next_page_token nextPageToken}
|
430
|
+
# to determine if there are more instances left to be queried.
|
396
431
|
# @!attribute [rw] page_token
|
397
432
|
# @return [::String]
|
398
433
|
# The `nextPageToken` value returned from a previous
|
399
|
-
# {::Google::Cloud::GkeMultiCloud::V1::AzureClusters::Client#list_azure_clients azureClients.list}
|
434
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClusters::Client#list_azure_clients azureClients.list}
|
435
|
+
# request, if any.
|
400
436
|
class ListAzureClientsRequest
|
401
437
|
include ::Google::Protobuf::MessageExts
|
402
438
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -405,8 +441,8 @@ module Google
|
|
405
441
|
# Response message for `AzureClusters.ListAzureClients` method.
|
406
442
|
# @!attribute [rw] azure_clients
|
407
443
|
# @return [::Array<::Google::Cloud::GkeMultiCloud::V1::AzureClient>]
|
408
|
-
# A list of {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient}
|
409
|
-
# project and region region.
|
444
|
+
# A list of {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient}
|
445
|
+
# resources in the specified Google Cloud project and region region.
|
410
446
|
# @!attribute [rw] next_page_token
|
411
447
|
# @return [::String]
|
412
448
|
# Token to retrieve the next page of results, or empty if there are no more
|
@@ -419,18 +455,21 @@ module Google
|
|
419
455
|
# Request message for `AzureClusters.DeleteAzureClient` method.
|
420
456
|
# @!attribute [rw] name
|
421
457
|
# @return [::String]
|
422
|
-
# Required. The resource name the
|
458
|
+
# Required. The resource name the
|
459
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient} to delete.
|
423
460
|
#
|
424
|
-
# {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient} names are
|
461
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient} names are
|
462
|
+
# formatted as
|
425
463
|
# `projects/<project-id>/locations/<region>/azureClients/<client-id>`.
|
426
464
|
#
|
427
465
|
# See [Resource Names](https://cloud.google.com/apis/design/resource_names)
|
428
466
|
# for more details on Google Cloud resource names.
|
429
467
|
# @!attribute [rw] allow_missing
|
430
468
|
# @return [::Boolean]
|
431
|
-
# If set to true, and the
|
432
|
-
#
|
433
|
-
#
|
469
|
+
# If set to true, and the
|
470
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureClient AzureClient} resource is not
|
471
|
+
# found, the request will succeed but no action will be taken on the server
|
472
|
+
# and a completed {::Google::Longrunning::Operation Operation} will be returned.
|
434
473
|
#
|
435
474
|
# Useful for idempotent deletion.
|
436
475
|
# @!attribute [rw] validate_only
|
@@ -444,7 +483,9 @@ module Google
|
|
444
483
|
# Request message for `AzureClusters.GenerateAzureAccessToken` method.
|
445
484
|
# @!attribute [rw] azure_cluster
|
446
485
|
# @return [::String]
|
447
|
-
# Required. The name of the
|
486
|
+
# Required. The name of the
|
487
|
+
# {::Google::Cloud::GkeMultiCloud::V1::AzureCluster AzureCluster} resource to
|
488
|
+
# authenticate to.
|
448
489
|
#
|
449
490
|
# `AzureCluster` names are formatted as
|
450
491
|
# `projects/<project-id>/locations/<region>/AzureClusters/<cluster-id>`.
|
@@ -61,7 +61,19 @@ module Google
|
|
61
61
|
# Output only. Human-readable status of the operation, if any.
|
62
62
|
# @!attribute [r] error_detail
|
63
63
|
# @return [::String]
|
64
|
-
# Output only. Human-readable status of any error that occurred during the
|
64
|
+
# Output only. Human-readable status of any error that occurred during the
|
65
|
+
# operation.
|
66
|
+
# @!attribute [r] verb
|
67
|
+
# @return [::String]
|
68
|
+
# Output only. The verb associated with the API method which triggered this
|
69
|
+
# operation. Possible values are "create", "delete", "update" and "import".
|
70
|
+
# @!attribute [r] requested_cancellation
|
71
|
+
# @return [::Boolean]
|
72
|
+
# Output only. Identifies whether it has been requested cancellation
|
73
|
+
# for the operation. Operations that have successfully been cancelled
|
74
|
+
# have [Operation.error][] value with a
|
75
|
+
# {::Google::Rpc::Status#code google.rpc.Status.code} of 1, corresponding to
|
76
|
+
# `Code.CANCELLED`.
|
65
77
|
class OperationMetadata
|
66
78
|
include ::Google::Protobuf::MessageExts
|
67
79
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -114,13 +126,15 @@ module Google
|
|
114
126
|
# more details on Anthos multi-cluster capabilities using Fleets.
|
115
127
|
# @!attribute [rw] project
|
116
128
|
# @return [::String]
|
117
|
-
# Required. The name of the Fleet host project where this cluster will be
|
129
|
+
# Required. The name of the Fleet host project where this cluster will be
|
130
|
+
# registered.
|
118
131
|
#
|
119
132
|
# Project names are formatted as
|
120
133
|
# `projects/<project-number>`.
|
121
134
|
# @!attribute [r] membership
|
122
135
|
# @return [::String]
|
123
|
-
# Output only. The name of the managed Hub Membership resource associated to
|
136
|
+
# Output only. The name of the managed Hub Membership resource associated to
|
137
|
+
# this cluster.
|
124
138
|
#
|
125
139
|
# Membership names are formatted as
|
126
140
|
# `projects/<project-number>/locations/global/membership/<cluster-id>`.
|
@@ -158,6 +172,25 @@ module Google
|
|
158
172
|
WORKLOADS = 2
|
159
173
|
end
|
160
174
|
end
|
175
|
+
|
176
|
+
# Parameters that describe the Monitoring configuration in a cluster.
|
177
|
+
# @!attribute [rw] managed_prometheus_config
|
178
|
+
# @return [::Google::Cloud::GkeMultiCloud::V1::ManagedPrometheusConfig]
|
179
|
+
# Enable Google Cloud Managed Service for Prometheus in the cluster.
|
180
|
+
class MonitoringConfig
|
181
|
+
include ::Google::Protobuf::MessageExts
|
182
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
183
|
+
end
|
184
|
+
|
185
|
+
# ManagedPrometheusConfig defines the configuration for
|
186
|
+
# Google Cloud Managed Service for Prometheus.
|
187
|
+
# @!attribute [rw] enabled
|
188
|
+
# @return [::Boolean]
|
189
|
+
# Enable Managed Collection.
|
190
|
+
class ManagedPrometheusConfig
|
191
|
+
include ::Google::Protobuf::MessageExts
|
192
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
193
|
+
end
|
161
194
|
end
|
162
195
|
end
|
163
196
|
end
|
@@ -26,8 +26,6 @@ module Google
|
|
26
26
|
# service Foo {
|
27
27
|
# rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
|
28
28
|
# }
|
29
|
-
#
|
30
|
-
# The JSON representation for `Empty` is empty JSON object `{}`.
|
31
29
|
class Empty
|
32
30
|
include ::Google::Protobuf::MessageExts
|
33
31
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -28,12 +28,14 @@ module Google
|
|
28
28
|
# [API Design Guide](https://cloud.google.com/apis/design/errors).
|
29
29
|
# @!attribute [rw] code
|
30
30
|
# @return [::Integer]
|
31
|
-
# The status code, which should be an enum value of
|
31
|
+
# The status code, which should be an enum value of
|
32
|
+
# [google.rpc.Code][google.rpc.Code].
|
32
33
|
# @!attribute [rw] message
|
33
34
|
# @return [::String]
|
34
35
|
# A developer-facing error message, which should be in English. Any
|
35
36
|
# user-facing error message should be localized and sent in the
|
36
|
-
# {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
|
37
|
+
# {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
|
38
|
+
# by the client.
|
37
39
|
# @!attribute [rw] details
|
38
40
|
# @return [::Array<::Google::Protobuf::Any>]
|
39
41
|
# A list of messages that carry the error details. There is a common set of
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-gke_multi_cloud-v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.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:
|
11
|
+
date: 2023-01-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 0.16.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 0.16.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -50,28 +50,28 @@ dependencies:
|
|
50
50
|
requirements:
|
51
51
|
- - "~>"
|
52
52
|
- !ruby/object:Gem::Version
|
53
|
-
version: 1.
|
53
|
+
version: 1.26.1
|
54
54
|
type: :development
|
55
55
|
prerelease: false
|
56
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
57
|
requirements:
|
58
58
|
- - "~>"
|
59
59
|
- !ruby/object:Gem::Version
|
60
|
-
version: 1.
|
60
|
+
version: 1.26.1
|
61
61
|
- !ruby/object:Gem::Dependency
|
62
62
|
name: minitest
|
63
63
|
requirement: !ruby/object:Gem::Requirement
|
64
64
|
requirements:
|
65
65
|
- - "~>"
|
66
66
|
- !ruby/object:Gem::Version
|
67
|
-
version: '5.
|
67
|
+
version: '5.16'
|
68
68
|
type: :development
|
69
69
|
prerelease: false
|
70
70
|
version_requirements: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - "~>"
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version: '5.
|
74
|
+
version: '5.16'
|
75
75
|
- !ruby/object:Gem::Dependency
|
76
76
|
name: minitest-focus
|
77
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -106,14 +106,14 @@ dependencies:
|
|
106
106
|
requirements:
|
107
107
|
- - ">="
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '
|
109
|
+
version: '13.0'
|
110
110
|
type: :development
|
111
111
|
prerelease: false
|
112
112
|
version_requirements: !ruby/object:Gem::Requirement
|
113
113
|
requirements:
|
114
114
|
- - ">="
|
115
115
|
- !ruby/object:Gem::Version
|
116
|
-
version: '
|
116
|
+
version: '13.0'
|
117
117
|
- !ruby/object:Gem::Dependency
|
118
118
|
name: redcarpet
|
119
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -173,6 +173,11 @@ files:
|
|
173
173
|
- README.md
|
174
174
|
- lib/google-cloud-gke_multi_cloud-v1.rb
|
175
175
|
- lib/google/cloud/gke_multi_cloud/v1.rb
|
176
|
+
- lib/google/cloud/gke_multi_cloud/v1/attached_clusters.rb
|
177
|
+
- lib/google/cloud/gke_multi_cloud/v1/attached_clusters/client.rb
|
178
|
+
- lib/google/cloud/gke_multi_cloud/v1/attached_clusters/credentials.rb
|
179
|
+
- lib/google/cloud/gke_multi_cloud/v1/attached_clusters/operations.rb
|
180
|
+
- lib/google/cloud/gke_multi_cloud/v1/attached_clusters/paths.rb
|
176
181
|
- lib/google/cloud/gke_multi_cloud/v1/aws_clusters.rb
|
177
182
|
- lib/google/cloud/gke_multi_cloud/v1/aws_clusters/client.rb
|
178
183
|
- lib/google/cloud/gke_multi_cloud/v1/aws_clusters/credentials.rb
|
@@ -184,6 +189,9 @@ files:
|
|
184
189
|
- lib/google/cloud/gke_multi_cloud/v1/azure_clusters/operations.rb
|
185
190
|
- lib/google/cloud/gke_multi_cloud/v1/azure_clusters/paths.rb
|
186
191
|
- lib/google/cloud/gke_multi_cloud/v1/version.rb
|
192
|
+
- lib/google/cloud/gkemulticloud/v1/attached_resources_pb.rb
|
193
|
+
- lib/google/cloud/gkemulticloud/v1/attached_service_pb.rb
|
194
|
+
- lib/google/cloud/gkemulticloud/v1/attached_service_services_pb.rb
|
187
195
|
- lib/google/cloud/gkemulticloud/v1/aws_resources_pb.rb
|
188
196
|
- lib/google/cloud/gkemulticloud/v1/aws_service_pb.rb
|
189
197
|
- lib/google/cloud/gkemulticloud/v1/aws_service_services_pb.rb
|
@@ -192,8 +200,12 @@ files:
|
|
192
200
|
- lib/google/cloud/gkemulticloud/v1/azure_service_services_pb.rb
|
193
201
|
- lib/google/cloud/gkemulticloud/v1/common_resources_pb.rb
|
194
202
|
- proto_docs/README.md
|
203
|
+
- proto_docs/google/api/client.rb
|
195
204
|
- proto_docs/google/api/field_behavior.rb
|
205
|
+
- proto_docs/google/api/launch_stage.rb
|
196
206
|
- proto_docs/google/api/resource.rb
|
207
|
+
- proto_docs/google/cloud/gkemulticloud/v1/attached_resources.rb
|
208
|
+
- proto_docs/google/cloud/gkemulticloud/v1/attached_service.rb
|
197
209
|
- proto_docs/google/cloud/gkemulticloud/v1/aws_resources.rb
|
198
210
|
- proto_docs/google/cloud/gkemulticloud/v1/aws_service.rb
|
199
211
|
- proto_docs/google/cloud/gkemulticloud/v1/azure_resources.rb
|
@@ -218,14 +230,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
218
230
|
requirements:
|
219
231
|
- - ">="
|
220
232
|
- !ruby/object:Gem::Version
|
221
|
-
version: '2.
|
233
|
+
version: '2.6'
|
222
234
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
223
235
|
requirements:
|
224
236
|
- - ">="
|
225
237
|
- !ruby/object:Gem::Version
|
226
238
|
version: '0'
|
227
239
|
requirements: []
|
228
|
-
rubygems_version: 3.3.
|
240
|
+
rubygems_version: 3.3.14
|
229
241
|
signing_key:
|
230
242
|
specification_version: 4
|
231
243
|
summary: API Client library for the Anthos Multi-Cloud V1 API
|