google-apis-vmwareengine_v1 0.17.0 → 0.19.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3adad58cd0e9b3248dd346fcc744a2ca96fc6507b0a20e47330eb18a5f316fbf
|
|
4
|
+
data.tar.gz: 36486c4796cebe7b3b421014f34e0f35303af49fcad67f72debb9bfac70fa767
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32e4351d866d8a4fb2a19375825d5e63a0bebe16f73238cc8ae190ca9615438476c6029973950a35dc1b30397cc9708e2547a81195d06857a41ee8618f4c8b14
|
|
7
|
+
data.tar.gz: 7bd99dbf6c026b6f63ce50d80619aee53557c6f91c13d95bbce94d039e505181d25e0cad6649c6fd729ff8c025ae2145b2de3d387a9055cf4e637e353ccbe819
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-vmwareengine_v1
|
|
2
2
|
|
|
3
|
+
### v0.19.0 (2026-05-31)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260518
|
|
6
|
+
|
|
7
|
+
### v0.18.0 (2026-05-03)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260420
|
|
10
|
+
|
|
3
11
|
### v0.17.0 (2026-04-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20260319
|
|
@@ -2266,6 +2266,54 @@ module Google
|
|
|
2266
2266
|
end
|
|
2267
2267
|
end
|
|
2268
2268
|
|
|
2269
|
+
# Request message for VmwareEngine.MigrateManagementVms
|
|
2270
|
+
class MigrateManagementVmsRequest
|
|
2271
|
+
include Google::Apis::Core::Hashable
|
|
2272
|
+
|
|
2273
|
+
# Required. The user-provided identifier of the workload cluster to which the
|
|
2274
|
+
# management VMs are to be migrated. The cluster must be in the same private
|
|
2275
|
+
# cloud as the one specified in `name`, and must be a workload cluster. The
|
|
2276
|
+
# eventual cluster name will be constructed from the private cloud name and this
|
|
2277
|
+
# cluster ID.
|
|
2278
|
+
# Corresponds to the JSON property `clusterId`
|
|
2279
|
+
# @return [String]
|
|
2280
|
+
attr_accessor :cluster_id
|
|
2281
|
+
|
|
2282
|
+
# Optional. Checksum used to ensure that the user-provided value is up to date
|
|
2283
|
+
# before the server processes the request. The server compares provided checksum
|
|
2284
|
+
# with the current checksum of the resource. If the user-provided value is out
|
|
2285
|
+
# of date, this request returns an `ABORTED` error.
|
|
2286
|
+
# Corresponds to the JSON property `etag`
|
|
2287
|
+
# @return [String]
|
|
2288
|
+
attr_accessor :etag
|
|
2289
|
+
|
|
2290
|
+
# Optional. A request ID to identify requests. Specify a unique request ID so
|
|
2291
|
+
# that if you must retry your request, the server will know to ignore the
|
|
2292
|
+
# request if it has already been completed. The server guarantees that a request
|
|
2293
|
+
# doesn't result in creation of duplicate commitments for at least 60 minutes.
|
|
2294
|
+
# For example, consider a situation where you make an initial request and the
|
|
2295
|
+
# request times out. If you make the request again with the same request ID, the
|
|
2296
|
+
# server can check if the original operation with the same request ID was
|
|
2297
|
+
# received, and if so, will ignore the second request. This prevents clients
|
|
2298
|
+
# from accidentally creating duplicate commitments. The request ID must be a
|
|
2299
|
+
# valid UUID with the exception that zero UUID is not supported (00000000-0000-
|
|
2300
|
+
# 0000-0000-000000000000).
|
|
2301
|
+
# Corresponds to the JSON property `requestId`
|
|
2302
|
+
# @return [String]
|
|
2303
|
+
attr_accessor :request_id
|
|
2304
|
+
|
|
2305
|
+
def initialize(**args)
|
|
2306
|
+
update!(**args)
|
|
2307
|
+
end
|
|
2308
|
+
|
|
2309
|
+
# Update properties of this object
|
|
2310
|
+
def update!(**args)
|
|
2311
|
+
@cluster_id = args[:cluster_id] if args.key?(:cluster_id)
|
|
2312
|
+
@etag = args[:etag] if args.key?(:etag)
|
|
2313
|
+
@request_id = args[:request_id] if args.key?(:request_id)
|
|
2314
|
+
end
|
|
2315
|
+
end
|
|
2316
|
+
|
|
2269
2317
|
# Mount Datastore Request message
|
|
2270
2318
|
class MountDatastoreRequest
|
|
2271
2319
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module VmwareengineV1
|
|
18
18
|
# Version of the google-apis-vmwareengine_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.19.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260518"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -346,6 +346,12 @@ module Google
|
|
|
346
346
|
include Google::Apis::Core::JsonObjectSupport
|
|
347
347
|
end
|
|
348
348
|
|
|
349
|
+
class MigrateManagementVmsRequest
|
|
350
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
|
+
|
|
352
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
353
|
+
end
|
|
354
|
+
|
|
349
355
|
class MountDatastoreRequest
|
|
350
356
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
351
357
|
|
|
@@ -1156,6 +1162,15 @@ module Google
|
|
|
1156
1162
|
end
|
|
1157
1163
|
end
|
|
1158
1164
|
|
|
1165
|
+
class MigrateManagementVmsRequest
|
|
1166
|
+
# @private
|
|
1167
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1168
|
+
property :cluster_id, as: 'clusterId'
|
|
1169
|
+
property :etag, as: 'etag'
|
|
1170
|
+
property :request_id, as: 'requestId'
|
|
1171
|
+
end
|
|
1172
|
+
end
|
|
1173
|
+
|
|
1159
1174
|
class MountDatastoreRequest
|
|
1160
1175
|
# @private
|
|
1161
1176
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -120,8 +120,8 @@ module Google
|
|
|
120
120
|
end
|
|
121
121
|
|
|
122
122
|
# Lists information about the supported locations for this service. This method
|
|
123
|
-
# lists locations based on the resource scope provided in the
|
|
124
|
-
# ListLocationsRequest.name
|
|
123
|
+
# lists locations based on the resource scope provided in the
|
|
124
|
+
# ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
|
|
125
125
|
# the method lists the public locations available to all projects. * **Project-
|
|
126
126
|
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
127
127
|
# method lists locations visible to that specific project. This includes public,
|
|
@@ -132,8 +132,8 @@ module Google
|
|
|
132
132
|
# @param [String] name
|
|
133
133
|
# The resource that owns the locations collection, if applicable.
|
|
134
134
|
# @param [Array<String>, String] extra_location_types
|
|
135
|
-
# Optional. Do not use this field
|
|
136
|
-
#
|
|
135
|
+
# Optional. Do not use this field unless explicitly documented otherwise. This
|
|
136
|
+
# is primarily for internal usage.
|
|
137
137
|
# @param [String] filter
|
|
138
138
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
139
139
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
|
@@ -2014,6 +2014,44 @@ module Google
|
|
|
2014
2014
|
execute_or_queue_command(command, &block)
|
|
2015
2015
|
end
|
|
2016
2016
|
|
|
2017
|
+
# Migrates the management VMs of the PC from the current management cluster to a
|
|
2018
|
+
# workload cluster. Post this migration, the provided workload cluster becomes
|
|
2019
|
+
# the management cluster
|
|
2020
|
+
# @param [String] name
|
|
2021
|
+
# Required. The resource name of the private cloud whose management vms are
|
|
2022
|
+
# getting migrated. Resource names are schemeless URIs that follow the
|
|
2023
|
+
# conventions in https://cloud.google.com/apis/design/resource_names. For
|
|
2024
|
+
# example: `projects/my-project/locations/us-central1-a/privateClouds/my-cloud`
|
|
2025
|
+
# @param [Google::Apis::VmwareengineV1::MigrateManagementVmsRequest] migrate_management_vms_request_object
|
|
2026
|
+
# @param [String] fields
|
|
2027
|
+
# Selector specifying which fields to include in a partial response.
|
|
2028
|
+
# @param [String] quota_user
|
|
2029
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
2030
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
2031
|
+
# @param [Google::Apis::RequestOptions] options
|
|
2032
|
+
# Request-specific options
|
|
2033
|
+
#
|
|
2034
|
+
# @yield [result, err] Result & error if block supplied
|
|
2035
|
+
# @yieldparam result [Google::Apis::VmwareengineV1::Operation] parsed result object
|
|
2036
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
2037
|
+
#
|
|
2038
|
+
# @return [Google::Apis::VmwareengineV1::Operation]
|
|
2039
|
+
#
|
|
2040
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2041
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2042
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2043
|
+
def migrate_private_cloud_management_vms(name, migrate_management_vms_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2044
|
+
command = make_simple_command(:post, 'v1/{+name}:migrateManagementVms', options)
|
|
2045
|
+
command.request_representation = Google::Apis::VmwareengineV1::MigrateManagementVmsRequest::Representation
|
|
2046
|
+
command.request_object = migrate_management_vms_request_object
|
|
2047
|
+
command.response_representation = Google::Apis::VmwareengineV1::Operation::Representation
|
|
2048
|
+
command.response_class = Google::Apis::VmwareengineV1::Operation
|
|
2049
|
+
command.params['name'] = name unless name.nil?
|
|
2050
|
+
command.query['fields'] = fields unless fields.nil?
|
|
2051
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2052
|
+
execute_or_queue_command(command, &block)
|
|
2053
|
+
end
|
|
2054
|
+
|
|
2017
2055
|
# Modifies a `PrivateCloud` resource. Only the following fields can be updated: `
|
|
2018
2056
|
# description`. Only fields specified in `updateMask` are applied. During
|
|
2019
2057
|
# operation processing, the resource is temporarily in the `ACTIVE` state before
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-vmwareengine_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.19.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmwareengine_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-vmwareengine_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-vmwareengine_v1/v0.19.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-vmwareengine_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|