google-apis-vmwareengine_v1 0.15.0 → 0.17.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: 0ed73d9fbe19c75afb843679b120c2e85ac9dfba0cfa7601dc0f4bb57889f5b3
|
|
4
|
+
data.tar.gz: 993a2c06781d0bce57ce1767828898f84ce57c931453ce9a91bf7db31d494ddb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 69b0716b787f57c34ad567f56d7dd836d2f080d5366656845ab47e6a8a4173fc30c92bd2f1b3a6b5ec9987bd92ae1736c113108c9baa1b90830ad5d5c8d9f255
|
|
7
|
+
data.tar.gz: 80efc40f33053afb208887d65b331b472c72de5ec244bb1f6255ce204e6a355b3bae2f1116e6f971806552e09ca1e693365f82afe712ddee41ffc2322b5278cc
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-vmwareengine_v1
|
|
2
2
|
|
|
3
|
+
### v0.17.0 (2026-04-19)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260319
|
|
6
|
+
|
|
7
|
+
### v0.16.0 (2026-03-01)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260217
|
|
10
|
+
|
|
3
11
|
### v0.15.0 (2025-12-14)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251113
|
|
@@ -649,17 +649,16 @@ module Google
|
|
|
649
649
|
class DatastoreMountConfig
|
|
650
650
|
include Google::Apis::Core::Hashable
|
|
651
651
|
|
|
652
|
-
# Optional.
|
|
653
|
-
#
|
|
652
|
+
# Optional. The access mode of the NFS volume. Optional. Default value used will
|
|
653
|
+
# be READ_WRITE
|
|
654
654
|
# Corresponds to the JSON property `accessMode`
|
|
655
655
|
# @return [String]
|
|
656
656
|
attr_accessor :access_mode
|
|
657
657
|
|
|
658
|
-
# Required. The resource name of the datastore to
|
|
659
|
-
#
|
|
660
|
-
#
|
|
661
|
-
#
|
|
662
|
-
# central1/datastores/my-datastore`
|
|
658
|
+
# Required. The resource name of the datastore to mount. Resource names are
|
|
659
|
+
# schemeless URIs that follow the conventions in https://cloud.google.com/apis/
|
|
660
|
+
# design/resource_names. For example: `projects/my-project/locations/us-central1/
|
|
661
|
+
# datastores/my-datastore`
|
|
663
662
|
# Corresponds to the JSON property `datastore`
|
|
664
663
|
# @return [String]
|
|
665
664
|
attr_accessor :datastore
|
|
@@ -680,11 +679,6 @@ module Google
|
|
|
680
679
|
# @return [String]
|
|
681
680
|
attr_accessor :nfs_version
|
|
682
681
|
|
|
683
|
-
# Optional. ONLY required when NFS 4.1 version is used
|
|
684
|
-
# Corresponds to the JSON property `securityType`
|
|
685
|
-
# @return [String]
|
|
686
|
-
attr_accessor :security_type
|
|
687
|
-
|
|
688
682
|
# Output only. Server IP addresses of the NFS volume. For NFS 3, you can only
|
|
689
683
|
# provide a single server IP address or DNS names.
|
|
690
684
|
# Corresponds to the JSON property `servers`
|
|
@@ -702,7 +696,6 @@ module Google
|
|
|
702
696
|
@datastore_network = args[:datastore_network] if args.key?(:datastore_network)
|
|
703
697
|
@file_share = args[:file_share] if args.key?(:file_share)
|
|
704
698
|
@nfs_version = args[:nfs_version] if args.key?(:nfs_version)
|
|
705
|
-
@security_type = args[:security_type] if args.key?(:security_type)
|
|
706
699
|
@servers = args[:servers] if args.key?(:servers)
|
|
707
700
|
end
|
|
708
701
|
end
|
|
@@ -711,16 +704,22 @@ module Google
|
|
|
711
704
|
class DatastoreNetwork
|
|
712
705
|
include Google::Apis::Core::Hashable
|
|
713
706
|
|
|
714
|
-
# Optional.
|
|
715
|
-
#
|
|
707
|
+
# Optional. connection_count is used to set multiple connections from NFS client
|
|
708
|
+
# on ESXi host to NFS server. A higher number of connections results in better
|
|
709
|
+
# performance on datastores. In MountDatastore API by default max 4 connections
|
|
710
|
+
# are configured. User can set value of connection_count between 1 to 4.
|
|
711
|
+
# Connection_count is supported from vsphere 8.0u1 for earlier version 1
|
|
712
|
+
# connection count is set on the ESXi hosts.
|
|
716
713
|
# Corresponds to the JSON property `connectionCount`
|
|
717
714
|
# @return [Fixnum]
|
|
718
715
|
attr_accessor :connection_count
|
|
719
716
|
|
|
720
|
-
# Optional.
|
|
721
|
-
# default MTU size
|
|
722
|
-
#
|
|
723
|
-
#
|
|
717
|
+
# Optional. MTU value is set on the VMKernel adapter for the NFS traffic. By
|
|
718
|
+
# default standard 1500 MTU size is set in MountDatastore API which is good for
|
|
719
|
+
# typical setups. However google VPC networks supports jumbo MTU 8896. We
|
|
720
|
+
# recommend to tune this value based on the NFS traffic performance. Performance
|
|
721
|
+
# can be determined using benchmarking I/O tools like fio (Flexible I/O Tester)
|
|
722
|
+
# utility.
|
|
724
723
|
# Corresponds to the JSON property `mtu`
|
|
725
724
|
# @return [Fixnum]
|
|
726
725
|
attr_accessor :mtu
|
|
@@ -2292,6 +2291,13 @@ module Google
|
|
|
2292
2291
|
# @return [String]
|
|
2293
2292
|
attr_accessor :request_id
|
|
2294
2293
|
|
|
2294
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
2295
|
+
# request. If set to `false`, validates and executes the request.
|
|
2296
|
+
# Corresponds to the JSON property `validateOnly`
|
|
2297
|
+
# @return [Boolean]
|
|
2298
|
+
attr_accessor :validate_only
|
|
2299
|
+
alias_method :validate_only?, :validate_only
|
|
2300
|
+
|
|
2295
2301
|
def initialize(**args)
|
|
2296
2302
|
update!(**args)
|
|
2297
2303
|
end
|
|
@@ -2301,6 +2307,7 @@ module Google
|
|
|
2301
2307
|
@datastore_mount_config = args[:datastore_mount_config] if args.key?(:datastore_mount_config)
|
|
2302
2308
|
@ignore_colocation = args[:ignore_colocation] if args.key?(:ignore_colocation)
|
|
2303
2309
|
@request_id = args[:request_id] if args.key?(:request_id)
|
|
2310
|
+
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
|
2304
2311
|
end
|
|
2305
2312
|
end
|
|
2306
2313
|
|
|
@@ -3966,6 +3973,13 @@ module Google
|
|
|
3966
3973
|
# @return [String]
|
|
3967
3974
|
attr_accessor :request_id
|
|
3968
3975
|
|
|
3976
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
3977
|
+
# request. If set to `false`, validates and executes the request.
|
|
3978
|
+
# Corresponds to the JSON property `validateOnly`
|
|
3979
|
+
# @return [Boolean]
|
|
3980
|
+
attr_accessor :validate_only
|
|
3981
|
+
alias_method :validate_only?, :validate_only
|
|
3982
|
+
|
|
3969
3983
|
def initialize(**args)
|
|
3970
3984
|
update!(**args)
|
|
3971
3985
|
end
|
|
@@ -3974,6 +3988,7 @@ module Google
|
|
|
3974
3988
|
def update!(**args)
|
|
3975
3989
|
@datastore = args[:datastore] if args.key?(:datastore)
|
|
3976
3990
|
@request_id = args[:request_id] if args.key?(:request_id)
|
|
3991
|
+
@validate_only = args[:validate_only] if args.key?(:validate_only)
|
|
3977
3992
|
end
|
|
3978
3993
|
end
|
|
3979
3994
|
|
|
@@ -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.17.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 = "20260319"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -730,7 +730,6 @@ module Google
|
|
|
730
730
|
|
|
731
731
|
property :file_share, as: 'fileShare'
|
|
732
732
|
property :nfs_version, as: 'nfsVersion'
|
|
733
|
-
property :security_type, as: 'securityType'
|
|
734
733
|
collection :servers, as: 'servers'
|
|
735
734
|
end
|
|
736
735
|
end
|
|
@@ -1164,6 +1163,7 @@ module Google
|
|
|
1164
1163
|
|
|
1165
1164
|
property :ignore_colocation, as: 'ignoreColocation'
|
|
1166
1165
|
property :request_id, as: 'requestId'
|
|
1166
|
+
property :validate_only, as: 'validateOnly'
|
|
1167
1167
|
end
|
|
1168
1168
|
end
|
|
1169
1169
|
|
|
@@ -1533,6 +1533,7 @@ module Google
|
|
|
1533
1533
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1534
1534
|
property :datastore, as: 'datastore'
|
|
1535
1535
|
property :request_id, as: 'requestId'
|
|
1536
|
+
property :validate_only, as: 'validateOnly'
|
|
1536
1537
|
end
|
|
1537
1538
|
end
|
|
1538
1539
|
|
|
@@ -119,7 +119,16 @@ module Google
|
|
|
119
119
|
execute_or_queue_command(command, &block)
|
|
120
120
|
end
|
|
121
121
|
|
|
122
|
-
# Lists information about the supported locations for this service.
|
|
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] field: * **Global locations**: If `name` is empty,
|
|
125
|
+
# the method lists the public locations available to all projects. * **Project-
|
|
126
|
+
# specific locations**: If `name` follows the format `projects/`project``, the
|
|
127
|
+
# method lists locations visible to that specific project. This includes public,
|
|
128
|
+
# private, or other project-specific locations enabled for the project. For gRPC
|
|
129
|
+
# and client library implementations, the resource name is passed as the `name`
|
|
130
|
+
# field. For direct service calls, the resource name is incorporated into the
|
|
131
|
+
# request path based on the specific service implementation and version.
|
|
123
132
|
# @param [String] name
|
|
124
133
|
# The resource that owns the locations collection, if applicable.
|
|
125
134
|
# @param [Array<String>, String] extra_location_types
|
|
@@ -263,8 +272,7 @@ module Google
|
|
|
263
272
|
execute_or_queue_command(command, &block)
|
|
264
273
|
end
|
|
265
274
|
|
|
266
|
-
# Creates a new `Datastore` resource in a given project and location.
|
|
267
|
-
# are regional resources
|
|
275
|
+
# Creates a new `Datastore` resource in a given project and location.
|
|
268
276
|
# @param [String] parent
|
|
269
277
|
# Required. The resource name of the location to create the new datastore in.
|
|
270
278
|
# Resource names are schemeless URIs that follow the conventions in https://
|
|
@@ -459,8 +467,8 @@ module Google
|
|
|
459
467
|
execute_or_queue_command(command, &block)
|
|
460
468
|
end
|
|
461
469
|
|
|
462
|
-
# Modifies a Datastore resource. Only
|
|
463
|
-
#
|
|
470
|
+
# Modifies a Datastore resource. Only fields specified in `updateMask` are
|
|
471
|
+
# applied.
|
|
464
472
|
# @param [String] name
|
|
465
473
|
# Output only. Identifier. The resource name of this datastore. Resource names
|
|
466
474
|
# are schemeless URIs that follow the conventions in https://cloud.google.com/
|
|
@@ -475,8 +483,7 @@ module Google
|
|
|
475
483
|
# Datastore resource by the update. The fields specified in the `update_mask`
|
|
476
484
|
# are relative to the resource, not the full request. A field will be
|
|
477
485
|
# overwritten if it is in the mask. If the user does not provide a mask then all
|
|
478
|
-
# fields will be overwritten.
|
|
479
|
-
# description`.
|
|
486
|
+
# fields will be overwritten.
|
|
480
487
|
# @param [String] fields
|
|
481
488
|
# Selector specifying which fields to include in a partial response.
|
|
482
489
|
# @param [String] quota_user
|
|
@@ -619,6 +626,9 @@ module Google
|
|
|
619
626
|
# accidentally creating duplicate commitments. The request ID must be a valid
|
|
620
627
|
# UUID with the exception that zero UUID is not supported (00000000-0000-0000-
|
|
621
628
|
# 0000-000000000000).
|
|
629
|
+
# @param [Boolean] validate_only
|
|
630
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
631
|
+
# request. If set to `false`, validates and executes the request.
|
|
622
632
|
# @param [String] fields
|
|
623
633
|
# Selector specifying which fields to include in a partial response.
|
|
624
634
|
# @param [String] quota_user
|
|
@@ -636,7 +646,7 @@ module Google
|
|
|
636
646
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
637
647
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
638
648
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
639
|
-
def create_project_location_network_peering(parent, network_peering_object = nil, network_peering_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
649
|
+
def create_project_location_network_peering(parent, network_peering_object = nil, network_peering_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
640
650
|
command = make_simple_command(:post, 'v1/{+parent}/networkPeerings', options)
|
|
641
651
|
command.request_representation = Google::Apis::VmwareengineV1::NetworkPeering::Representation
|
|
642
652
|
command.request_object = network_peering_object
|
|
@@ -645,6 +655,7 @@ module Google
|
|
|
645
655
|
command.params['parent'] = parent unless parent.nil?
|
|
646
656
|
command.query['networkPeeringId'] = network_peering_id unless network_peering_id.nil?
|
|
647
657
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
658
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
648
659
|
command.query['fields'] = fields unless fields.nil?
|
|
649
660
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
650
661
|
execute_or_queue_command(command, &block)
|
|
@@ -827,6 +838,9 @@ module Google
|
|
|
827
838
|
# update_mask` are relative to the resource, not the full request. A field will
|
|
828
839
|
# be overwritten if it is in the mask. If the user does not provide a mask then
|
|
829
840
|
# all fields will be overwritten.
|
|
841
|
+
# @param [Boolean] validate_only
|
|
842
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
843
|
+
# request. If set to `false`, validates and executes the request.
|
|
830
844
|
# @param [String] fields
|
|
831
845
|
# Selector specifying which fields to include in a partial response.
|
|
832
846
|
# @param [String] quota_user
|
|
@@ -844,7 +858,7 @@ module Google
|
|
|
844
858
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
845
859
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
846
860
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
847
|
-
def patch_project_location_network_peering(name, network_peering_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
861
|
+
def patch_project_location_network_peering(name, network_peering_object = nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
848
862
|
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
849
863
|
command.request_representation = Google::Apis::VmwareengineV1::NetworkPeering::Representation
|
|
850
864
|
command.request_object = network_peering_object
|
|
@@ -853,6 +867,7 @@ module Google
|
|
|
853
867
|
command.params['name'] = name unless name.nil?
|
|
854
868
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
855
869
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
870
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
856
871
|
command.query['fields'] = fields unless fields.nil?
|
|
857
872
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
858
873
|
execute_or_queue_command(command, &block)
|
|
@@ -939,6 +954,9 @@ module Google
|
|
|
939
954
|
# accidentally creating duplicate commitments. The request ID must be a valid
|
|
940
955
|
# UUID with the exception that zero UUID is not supported (00000000-0000-0000-
|
|
941
956
|
# 0000-000000000000).
|
|
957
|
+
# @param [Boolean] validate_only
|
|
958
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
959
|
+
# request. If set to `false`, validates and executes the request.
|
|
942
960
|
# @param [String] fields
|
|
943
961
|
# Selector specifying which fields to include in a partial response.
|
|
944
962
|
# @param [String] quota_user
|
|
@@ -956,7 +974,7 @@ module Google
|
|
|
956
974
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
957
975
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
958
976
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
959
|
-
def create_project_location_network_policy(parent, network_policy_object = nil, network_policy_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
977
|
+
def create_project_location_network_policy(parent, network_policy_object = nil, network_policy_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
960
978
|
command = make_simple_command(:post, 'v1/{+parent}/networkPolicies', options)
|
|
961
979
|
command.request_representation = Google::Apis::VmwareengineV1::NetworkPolicy::Representation
|
|
962
980
|
command.request_object = network_policy_object
|
|
@@ -965,6 +983,7 @@ module Google
|
|
|
965
983
|
command.params['parent'] = parent unless parent.nil?
|
|
966
984
|
command.query['networkPolicyId'] = network_policy_id unless network_policy_id.nil?
|
|
967
985
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
986
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
968
987
|
command.query['fields'] = fields unless fields.nil?
|
|
969
988
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
970
989
|
execute_or_queue_command(command, &block)
|
|
@@ -1194,6 +1213,9 @@ module Google
|
|
|
1194
1213
|
# update_mask` are relative to the resource, not the full request. A field will
|
|
1195
1214
|
# be overwritten if it is in the mask. If the user does not provide a mask then
|
|
1196
1215
|
# all fields will be overwritten.
|
|
1216
|
+
# @param [Boolean] validate_only
|
|
1217
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
1218
|
+
# request. If set to `false`, validates and executes the request.
|
|
1197
1219
|
# @param [String] fields
|
|
1198
1220
|
# Selector specifying which fields to include in a partial response.
|
|
1199
1221
|
# @param [String] quota_user
|
|
@@ -1211,7 +1233,7 @@ module Google
|
|
|
1211
1233
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1212
1234
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1213
1235
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1214
|
-
def patch_project_location_network_policy(name, network_policy_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1236
|
+
def patch_project_location_network_policy(name, network_policy_object = nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1215
1237
|
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
1216
1238
|
command.request_representation = Google::Apis::VmwareengineV1::NetworkPolicy::Representation
|
|
1217
1239
|
command.request_object = network_policy_object
|
|
@@ -1220,6 +1242,7 @@ module Google
|
|
|
1220
1242
|
command.params['name'] = name unless name.nil?
|
|
1221
1243
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
1222
1244
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
1245
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
1223
1246
|
command.query['fields'] = fields unless fields.nil?
|
|
1224
1247
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1225
1248
|
execute_or_queue_command(command, &block)
|
|
@@ -1252,6 +1275,9 @@ module Google
|
|
|
1252
1275
|
# creating duplicate commitments. The request ID must be a valid UUID with the
|
|
1253
1276
|
# exception that zero UUID is not supported (00000000-0000-0000-0000-
|
|
1254
1277
|
# 000000000000).
|
|
1278
|
+
# @param [Boolean] validate_only
|
|
1279
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
1280
|
+
# request. If set to `false`, validates and executes the request.
|
|
1255
1281
|
# @param [String] fields
|
|
1256
1282
|
# Selector specifying which fields to include in a partial response.
|
|
1257
1283
|
# @param [String] quota_user
|
|
@@ -1269,7 +1295,7 @@ module Google
|
|
|
1269
1295
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1270
1296
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1271
1297
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1272
|
-
def create_project_location_network_policy_external_access_rule(parent, external_access_rule_object = nil, external_access_rule_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1298
|
+
def create_project_location_network_policy_external_access_rule(parent, external_access_rule_object = nil, external_access_rule_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1273
1299
|
command = make_simple_command(:post, 'v1/{+parent}/externalAccessRules', options)
|
|
1274
1300
|
command.request_representation = Google::Apis::VmwareengineV1::ExternalAccessRule::Representation
|
|
1275
1301
|
command.request_object = external_access_rule_object
|
|
@@ -1278,6 +1304,7 @@ module Google
|
|
|
1278
1304
|
command.params['parent'] = parent unless parent.nil?
|
|
1279
1305
|
command.query['externalAccessRuleId'] = external_access_rule_id unless external_access_rule_id.nil?
|
|
1280
1306
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
1307
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
1281
1308
|
command.query['fields'] = fields unless fields.nil?
|
|
1282
1309
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1283
1310
|
execute_or_queue_command(command, &block)
|
|
@@ -1452,6 +1479,9 @@ module Google
|
|
|
1452
1479
|
# update_mask` are relative to the resource, not the full request. A field will
|
|
1453
1480
|
# be overwritten if it is in the mask. If the user does not provide a mask then
|
|
1454
1481
|
# all fields will be overwritten.
|
|
1482
|
+
# @param [Boolean] validate_only
|
|
1483
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the/
|
|
1484
|
+
# / request. If set to `false`, validates and executes the request.
|
|
1455
1485
|
# @param [String] fields
|
|
1456
1486
|
# Selector specifying which fields to include in a partial response.
|
|
1457
1487
|
# @param [String] quota_user
|
|
@@ -1469,7 +1499,7 @@ module Google
|
|
|
1469
1499
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1470
1500
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1471
1501
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1472
|
-
def patch_project_location_network_policy_external_access_rule(name, external_access_rule_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1502
|
+
def patch_project_location_network_policy_external_access_rule(name, external_access_rule_object = nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1473
1503
|
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
1474
1504
|
command.request_representation = Google::Apis::VmwareengineV1::ExternalAccessRule::Representation
|
|
1475
1505
|
command.request_object = external_access_rule_object
|
|
@@ -1478,6 +1508,7 @@ module Google
|
|
|
1478
1508
|
command.params['name'] = name unless name.nil?
|
|
1479
1509
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
1480
1510
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
1511
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
1481
1512
|
command.query['fields'] = fields unless fields.nil?
|
|
1482
1513
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1483
1514
|
execute_or_queue_command(command, &block)
|
|
@@ -1708,8 +1739,8 @@ module Google
|
|
|
1708
1739
|
# Optional. The request ID must be a valid UUID with the exception that zero
|
|
1709
1740
|
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
|
1710
1741
|
# @param [Boolean] validate_only
|
|
1711
|
-
# Optional.
|
|
1712
|
-
#
|
|
1742
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
1743
|
+
# request. If set to `false`, validates and executes the request.
|
|
1713
1744
|
# @param [String] fields
|
|
1714
1745
|
# Selector specifying which fields to include in a partial response.
|
|
1715
1746
|
# @param [String] quota_user
|
|
@@ -2004,6 +2035,9 @@ module Google
|
|
|
2004
2035
|
# relative to the resource, not the full request. A field will be overwritten if
|
|
2005
2036
|
# it is in the mask. If the user does not provide a mask then all fields will be
|
|
2006
2037
|
# overwritten.
|
|
2038
|
+
# @param [Boolean] validate_only
|
|
2039
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
2040
|
+
# request. If set to `false`, validates and executes the request.
|
|
2007
2041
|
# @param [String] fields
|
|
2008
2042
|
# Selector specifying which fields to include in a partial response.
|
|
2009
2043
|
# @param [String] quota_user
|
|
@@ -2021,7 +2055,7 @@ module Google
|
|
|
2021
2055
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2022
2056
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2023
2057
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2024
|
-
def patch_project_location_private_cloud(name, private_cloud_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2058
|
+
def patch_project_location_private_cloud(name, private_cloud_object = nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2025
2059
|
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
2026
2060
|
command.request_representation = Google::Apis::VmwareengineV1::PrivateCloud::Representation
|
|
2027
2061
|
command.request_object = private_cloud_object
|
|
@@ -2030,6 +2064,7 @@ module Google
|
|
|
2030
2064
|
command.params['name'] = name unless name.nil?
|
|
2031
2065
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
2032
2066
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
2067
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
2033
2068
|
command.query['fields'] = fields unless fields.nil?
|
|
2034
2069
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2035
2070
|
execute_or_queue_command(command, &block)
|
|
@@ -2412,8 +2447,8 @@ module Google
|
|
|
2412
2447
|
# Optional. The request ID must be a valid UUID with the exception that zero
|
|
2413
2448
|
# UUID is not supported (00000000-0000-0000-0000-000000000000).
|
|
2414
2449
|
# @param [Boolean] validate_only
|
|
2415
|
-
# Optional.
|
|
2416
|
-
#
|
|
2450
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
2451
|
+
# request. If set to `false`, validates and executes the request.
|
|
2417
2452
|
# @param [String] fields
|
|
2418
2453
|
# Selector specifying which fields to include in a partial response.
|
|
2419
2454
|
# @param [String] quota_user
|
|
@@ -2620,7 +2655,7 @@ module Google
|
|
|
2620
2655
|
execute_or_queue_command(command, &block)
|
|
2621
2656
|
end
|
|
2622
2657
|
|
|
2623
|
-
# Mounts a `Datastore` on a cluster resource
|
|
2658
|
+
# Mounts a `Datastore` on a cluster resource
|
|
2624
2659
|
# @param [String] name
|
|
2625
2660
|
# Required. The resource name of the cluster to mount the datastore. Resource
|
|
2626
2661
|
# names are schemeless URIs that follow the conventions in https://cloud.google.
|
|
@@ -2677,8 +2712,8 @@ module Google
|
|
|
2677
2712
|
# it is in the mask. If the user does not provide a mask then all fields will be
|
|
2678
2713
|
# overwritten.
|
|
2679
2714
|
# @param [Boolean] validate_only
|
|
2680
|
-
# Optional.
|
|
2681
|
-
#
|
|
2715
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
2716
|
+
# request. If set to `false`, validates and executes the request.
|
|
2682
2717
|
# @param [String] fields
|
|
2683
2718
|
# Selector specifying which fields to include in a partial response.
|
|
2684
2719
|
# @param [String] quota_user
|
|
@@ -2787,7 +2822,7 @@ module Google
|
|
|
2787
2822
|
execute_or_queue_command(command, &block)
|
|
2788
2823
|
end
|
|
2789
2824
|
|
|
2790
|
-
#
|
|
2825
|
+
# Unmounts a `Datastore` on a cluster resource
|
|
2791
2826
|
# @param [String] name
|
|
2792
2827
|
# Required. The resource name of the cluster to unmount the datastore. Resource
|
|
2793
2828
|
# names are schemeless URIs that follow the conventions in https://cloud.google.
|
|
@@ -2927,6 +2962,9 @@ module Google
|
|
|
2927
2962
|
# from accidentally creating duplicate commitments. The request ID must be a
|
|
2928
2963
|
# valid UUID with the exception that zero UUID is not supported (00000000-0000-
|
|
2929
2964
|
# 0000-0000-000000000000).
|
|
2965
|
+
# @param [Boolean] validate_only
|
|
2966
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
2967
|
+
# request. If set to `false`, validates and executes the request.
|
|
2930
2968
|
# @param [String] fields
|
|
2931
2969
|
# Selector specifying which fields to include in a partial response.
|
|
2932
2970
|
# @param [String] quota_user
|
|
@@ -2944,7 +2982,7 @@ module Google
|
|
|
2944
2982
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
2945
2983
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
2946
2984
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
2947
|
-
def create_project_location_private_cloud_external_address(parent, external_address_object = nil, external_address_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2985
|
+
def create_project_location_private_cloud_external_address(parent, external_address_object = nil, external_address_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
2948
2986
|
command = make_simple_command(:post, 'v1/{+parent}/externalAddresses', options)
|
|
2949
2987
|
command.request_representation = Google::Apis::VmwareengineV1::ExternalAddress::Representation
|
|
2950
2988
|
command.request_object = external_address_object
|
|
@@ -2953,6 +2991,7 @@ module Google
|
|
|
2953
2991
|
command.params['parent'] = parent unless parent.nil?
|
|
2954
2992
|
command.query['externalAddressId'] = external_address_id unless external_address_id.nil?
|
|
2955
2993
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
2994
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
2956
2995
|
command.query['fields'] = fields unless fields.nil?
|
|
2957
2996
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
2958
2997
|
execute_or_queue_command(command, &block)
|
|
@@ -3132,6 +3171,9 @@ module Google
|
|
|
3132
3171
|
# update_mask` are relative to the resource, not the full request. A field will
|
|
3133
3172
|
# be overwritten if it is in the mask. If the user does not provide a mask then
|
|
3134
3173
|
# all fields will be overwritten.
|
|
3174
|
+
# @param [Boolean] validate_only
|
|
3175
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
3176
|
+
# request. If set to `false`, validates and executes the request.
|
|
3135
3177
|
# @param [String] fields
|
|
3136
3178
|
# Selector specifying which fields to include in a partial response.
|
|
3137
3179
|
# @param [String] quota_user
|
|
@@ -3149,7 +3191,7 @@ module Google
|
|
|
3149
3191
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
3150
3192
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
3151
3193
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
3152
|
-
def patch_project_location_private_cloud_external_address(name, external_address_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3194
|
+
def patch_project_location_private_cloud_external_address(name, external_address_object = nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
3153
3195
|
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
3154
3196
|
command.request_representation = Google::Apis::VmwareengineV1::ExternalAddress::Representation
|
|
3155
3197
|
command.request_object = external_address_object
|
|
@@ -3158,6 +3200,7 @@ module Google
|
|
|
3158
3200
|
command.params['name'] = name unless name.nil?
|
|
3159
3201
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
3160
3202
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
3203
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
3161
3204
|
command.query['fields'] = fields unless fields.nil?
|
|
3162
3205
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
3163
3206
|
execute_or_queue_command(command, &block)
|
|
@@ -4291,6 +4334,9 @@ module Google
|
|
|
4291
4334
|
# accidentally creating duplicate commitments. The request ID must be a valid
|
|
4292
4335
|
# UUID with the exception that zero UUID is not supported (00000000-0000-0000-
|
|
4293
4336
|
# 0000-000000000000).
|
|
4337
|
+
# @param [Boolean] validate_only
|
|
4338
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
4339
|
+
# request. If set to `false`, validates and executes the request.
|
|
4294
4340
|
# @param [String] fields
|
|
4295
4341
|
# Selector specifying which fields to include in a partial response.
|
|
4296
4342
|
# @param [String] quota_user
|
|
@@ -4308,7 +4354,7 @@ module Google
|
|
|
4308
4354
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
4309
4355
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
4310
4356
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
4311
|
-
def create_project_location_private_connection(parent, private_connection_object = nil, private_connection_id: nil, request_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
4357
|
+
def create_project_location_private_connection(parent, private_connection_object = nil, private_connection_id: nil, request_id: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
4312
4358
|
command = make_simple_command(:post, 'v1/{+parent}/privateConnections', options)
|
|
4313
4359
|
command.request_representation = Google::Apis::VmwareengineV1::PrivateConnection::Representation
|
|
4314
4360
|
command.request_object = private_connection_object
|
|
@@ -4317,6 +4363,7 @@ module Google
|
|
|
4317
4363
|
command.params['parent'] = parent unless parent.nil?
|
|
4318
4364
|
command.query['privateConnectionId'] = private_connection_id unless private_connection_id.nil?
|
|
4319
4365
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
4366
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
4320
4367
|
command.query['fields'] = fields unless fields.nil?
|
|
4321
4368
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
4322
4369
|
execute_or_queue_command(command, &block)
|
|
@@ -4494,6 +4541,9 @@ module Google
|
|
|
4494
4541
|
# update_mask` are relative to the resource, not the full request. A field will
|
|
4495
4542
|
# be overwritten if it is in the mask. If the user does not provide a mask then
|
|
4496
4543
|
# all fields will be overwritten.
|
|
4544
|
+
# @param [Boolean] validate_only
|
|
4545
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
4546
|
+
# request. If set to `false`, validates and executes the request.
|
|
4497
4547
|
# @param [String] fields
|
|
4498
4548
|
# Selector specifying which fields to include in a partial response.
|
|
4499
4549
|
# @param [String] quota_user
|
|
@@ -4511,7 +4561,7 @@ module Google
|
|
|
4511
4561
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
4512
4562
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
4513
4563
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
4514
|
-
def patch_project_location_private_connection(name, private_connection_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
4564
|
+
def patch_project_location_private_connection(name, private_connection_object = nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
4515
4565
|
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
4516
4566
|
command.request_representation = Google::Apis::VmwareengineV1::PrivateConnection::Representation
|
|
4517
4567
|
command.request_object = private_connection_object
|
|
@@ -4520,6 +4570,7 @@ module Google
|
|
|
4520
4570
|
command.params['name'] = name unless name.nil?
|
|
4521
4571
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
4522
4572
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
4573
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
4523
4574
|
command.query['fields'] = fields unless fields.nil?
|
|
4524
4575
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
4525
4576
|
execute_or_queue_command(command, &block)
|
|
@@ -4590,6 +4641,9 @@ module Google
|
|
|
4590
4641
|
# accidentally creating duplicate commitments. The request ID must be a valid
|
|
4591
4642
|
# UUID with the exception that zero UUID is not supported (00000000-0000-0000-
|
|
4592
4643
|
# 0000-000000000000).
|
|
4644
|
+
# @param [Boolean] validate_only
|
|
4645
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
4646
|
+
# request. If set to `false`, validates and executes the request.
|
|
4593
4647
|
# @param [String] vmware_engine_network_id
|
|
4594
4648
|
# Required. The user-provided identifier of the new VMware Engine network. This
|
|
4595
4649
|
# identifier must be unique among VMware Engine network resources within the
|
|
@@ -4618,7 +4672,7 @@ module Google
|
|
|
4618
4672
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
4619
4673
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
4620
4674
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
4621
|
-
def create_project_location_vmware_engine_network(parent, vmware_engine_network_object = nil, request_id: nil, vmware_engine_network_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
4675
|
+
def create_project_location_vmware_engine_network(parent, vmware_engine_network_object = nil, request_id: nil, validate_only: nil, vmware_engine_network_id: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
4622
4676
|
command = make_simple_command(:post, 'v1/{+parent}/vmwareEngineNetworks', options)
|
|
4623
4677
|
command.request_representation = Google::Apis::VmwareengineV1::VmwareEngineNetwork::Representation
|
|
4624
4678
|
command.request_object = vmware_engine_network_object
|
|
@@ -4626,6 +4680,7 @@ module Google
|
|
|
4626
4680
|
command.response_class = Google::Apis::VmwareengineV1::Operation
|
|
4627
4681
|
command.params['parent'] = parent unless parent.nil?
|
|
4628
4682
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
4683
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
4629
4684
|
command.query['vmwareEngineNetworkId'] = vmware_engine_network_id unless vmware_engine_network_id.nil?
|
|
4630
4685
|
command.query['fields'] = fields unless fields.nil?
|
|
4631
4686
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
@@ -4813,6 +4868,9 @@ module Google
|
|
|
4813
4868
|
# be overwritten if it is in the mask. If the user does not provide a mask then
|
|
4814
4869
|
# all fields will be overwritten. Only the following fields can be updated: `
|
|
4815
4870
|
# description`.
|
|
4871
|
+
# @param [Boolean] validate_only
|
|
4872
|
+
# Optional. If set to `true`, only validates the request but doesn’t execute the
|
|
4873
|
+
# request. If set to `false`, validates and executes the request.
|
|
4816
4874
|
# @param [String] fields
|
|
4817
4875
|
# Selector specifying which fields to include in a partial response.
|
|
4818
4876
|
# @param [String] quota_user
|
|
@@ -4830,7 +4888,7 @@ module Google
|
|
|
4830
4888
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
4831
4889
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
4832
4890
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
4833
|
-
def patch_project_location_vmware_engine_network(name, vmware_engine_network_object = nil, request_id: nil, update_mask: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
4891
|
+
def patch_project_location_vmware_engine_network(name, vmware_engine_network_object = nil, request_id: nil, update_mask: nil, validate_only: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
4834
4892
|
command = make_simple_command(:patch, 'v1/{+name}', options)
|
|
4835
4893
|
command.request_representation = Google::Apis::VmwareengineV1::VmwareEngineNetwork::Representation
|
|
4836
4894
|
command.request_object = vmware_engine_network_object
|
|
@@ -4839,6 +4897,7 @@ module Google
|
|
|
4839
4897
|
command.params['name'] = name unless name.nil?
|
|
4840
4898
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
4841
4899
|
command.query['updateMask'] = update_mask unless update_mask.nil?
|
|
4900
|
+
command.query['validateOnly'] = validate_only unless validate_only.nil?
|
|
4842
4901
|
command.query['fields'] = fields unless fields.nil?
|
|
4843
4902
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
4844
4903
|
execute_or_queue_command(command, &block)
|
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.17.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.17.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:
|