google-apis-vmwareengine_v1 0.10.0 → 0.12.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/CHANGELOG.md +9 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/vmwareengine_v1/classes.rb +29 -0
- data/lib/google/apis/vmwareengine_v1/gem_version.rb +3 -3
- data/lib/google/apis/vmwareengine_v1/representations.rb +14 -0
- data/lib/google/apis/vmwareengine_v1/service.rb +39 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5fa88aad744cd7d07caa522ae50d50883dbbb096c720165fdcf65c8f0550a119
|
4
|
+
data.tar.gz: 18053e2c43d0745d351bec3d1e2b09a4c846767023de3cd78c4ba7ad6f700225
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8e86795ca287b35c522099d18923b3c924daa02600d61d03bb844f0bf9bdeef13aa40bef52b7b65ad24cd16376fec505595de6e691df05c954d864718d8176f0
|
7
|
+
data.tar.gz: e380585b5cb7ff6964d3a8bec748d4760343661d2e365c99ecd5de71a7b517813c1082128678d1fadafbecfbcd55ccb989a9c33aad9771e7ba7f8d51b9ff0c98
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-vmwareengine_v1
|
2
2
|
|
3
|
+
### v0.12.0 (2025-08-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250811
|
6
|
+
* Regenerated using generator version 0.18.0
|
7
|
+
|
8
|
+
### v0.11.0 (2025-05-04)
|
9
|
+
|
10
|
+
* Regenerated using generator version 0.17.0
|
11
|
+
|
3
12
|
### v0.10.0 (2025-04-20)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20250410
|
data/OVERVIEW.md
CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/solutions/vmware-as-a-servi
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby
|
86
|
+
This library is supported on Ruby 3.1+.
|
87
87
|
|
88
88
|
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
@@ -22,6 +22,35 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module VmwareengineV1
|
24
24
|
|
25
|
+
# Request message for VmwareEngine.AcceleratePrivateCloudDeletion
|
26
|
+
class AcceleratePrivateCloudDeletionRequest
|
27
|
+
include Google::Apis::Core::Hashable
|
28
|
+
|
29
|
+
# Optional. Checksum used to ensure that the user-provided value is up to date
|
30
|
+
# before the server processes the request. The server compares provided checksum
|
31
|
+
# with the current checksum of the resource. If the user-provided value is out
|
32
|
+
# of date, this request returns an `ABORTED` error.
|
33
|
+
# Corresponds to the JSON property `etag`
|
34
|
+
# @return [String]
|
35
|
+
attr_accessor :etag
|
36
|
+
|
37
|
+
# Optional. The request ID must be a valid UUID with the exception that zero
|
38
|
+
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
39
|
+
# Corresponds to the JSON property `requestId`
|
40
|
+
# @return [String]
|
41
|
+
attr_accessor :request_id
|
42
|
+
|
43
|
+
def initialize(**args)
|
44
|
+
update!(**args)
|
45
|
+
end
|
46
|
+
|
47
|
+
# Update properties of this object
|
48
|
+
def update!(**args)
|
49
|
+
@etag = args[:etag] if args.key?(:etag)
|
50
|
+
@request_id = args[:request_id] if args.key?(:request_id)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
25
54
|
# Announcement for the resources of Vmware Engine.
|
26
55
|
class Announcement
|
27
56
|
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.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250811"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -22,6 +22,12 @@ module Google
|
|
22
22
|
module Apis
|
23
23
|
module VmwareengineV1
|
24
24
|
|
25
|
+
class AcceleratePrivateCloudDeletionRequest
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
|
+
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
29
|
+
end
|
30
|
+
|
25
31
|
class Announcement
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
27
33
|
|
@@ -520,6 +526,14 @@ module Google
|
|
520
526
|
include Google::Apis::Core::JsonObjectSupport
|
521
527
|
end
|
522
528
|
|
529
|
+
class AcceleratePrivateCloudDeletionRequest
|
530
|
+
# @private
|
531
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
532
|
+
property :etag, as: 'etag'
|
533
|
+
property :request_id, as: 'requestId'
|
534
|
+
end
|
535
|
+
end
|
536
|
+
|
523
537
|
class Announcement
|
524
538
|
# @private
|
525
539
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1781,6 +1781,45 @@ module Google
|
|
1781
1781
|
execute_or_queue_command(command, &block)
|
1782
1782
|
end
|
1783
1783
|
|
1784
|
+
# Accelerates the deletion of a private cloud that is currently in soft deletion
|
1785
|
+
# A `PrivateCloud` resource in soft deletion has `PrivateCloud.state` set to `
|
1786
|
+
# SOFT_DELETED` and `PrivateCloud.expireTime` set to the time when deletion can
|
1787
|
+
# no longer be reversed.
|
1788
|
+
# @param [String] name
|
1789
|
+
# Required. The resource name of the private cloud in softdeletion. Resource
|
1790
|
+
# names are schemeless URIs that follow the conventions in https://cloud.google.
|
1791
|
+
# com/apis/design/resource_names. For example: `projects/my-project/locations/us-
|
1792
|
+
# central1-a/privateClouds/my-cloud`
|
1793
|
+
# @param [Google::Apis::VmwareengineV1::AcceleratePrivateCloudDeletionRequest] accelerate_private_cloud_deletion_request_object
|
1794
|
+
# @param [String] fields
|
1795
|
+
# Selector specifying which fields to include in a partial response.
|
1796
|
+
# @param [String] quota_user
|
1797
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
1798
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
1799
|
+
# @param [Google::Apis::RequestOptions] options
|
1800
|
+
# Request-specific options
|
1801
|
+
#
|
1802
|
+
# @yield [result, err] Result & error if block supplied
|
1803
|
+
# @yieldparam result [Google::Apis::VmwareengineV1::Operation] parsed result object
|
1804
|
+
# @yieldparam err [StandardError] error object if request failed
|
1805
|
+
#
|
1806
|
+
# @return [Google::Apis::VmwareengineV1::Operation]
|
1807
|
+
#
|
1808
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1809
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1810
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1811
|
+
def private_project_location_private_cloud_cloud_deletion_now(name, accelerate_private_cloud_deletion_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
1812
|
+
command = make_simple_command(:post, 'v1/{+name}:privateCloudDeletionNow', options)
|
1813
|
+
command.request_representation = Google::Apis::VmwareengineV1::AcceleratePrivateCloudDeletionRequest::Representation
|
1814
|
+
command.request_object = accelerate_private_cloud_deletion_request_object
|
1815
|
+
command.response_representation = Google::Apis::VmwareengineV1::Operation::Representation
|
1816
|
+
command.response_class = Google::Apis::VmwareengineV1::Operation
|
1817
|
+
command.params['name'] = name unless name.nil?
|
1818
|
+
command.query['fields'] = fields unless fields.nil?
|
1819
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1820
|
+
execute_or_queue_command(command, &block)
|
1821
|
+
end
|
1822
|
+
|
1784
1823
|
# Resets credentials of the NSX appliance.
|
1785
1824
|
# @param [String] private_cloud
|
1786
1825
|
# Required. The resource name of the private cloud to reset credentials for.
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
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.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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.12.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:
|
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements:
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '
|
69
|
+
version: '3.1'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
72
|
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for VMware Engine API V1
|
79
79
|
test_files: []
|