google-apis-vmwareengine_v1 0.15.0 → 0.16.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: d3b32ff7f13a0fa635e0aa1cca967c9078e06da7813c9f598cf6df4b8565168a
|
|
4
|
+
data.tar.gz: 52188f09ac5008630206172c0e9edc3bacc2539f64083491bfb919c4eb9fe58c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 723b0bc37cd41d1b1db78eb19ad811993a8a8787f0f2eb11f32df50a90923ca2b231190008b4b593fcf784f1b22ea3ec554dc1b0a5f78be7c629630f6e8c53ee
|
|
7
|
+
data.tar.gz: c6c568ce56d302426605c6171091c09ec93b1b68fca91848e9c7e4ab4a972764f43ac9003f24d99899121820f20d4c12eddbf333dbfcf7010402782496b26a23
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
|
@@ -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.16.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 = "20260217"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -119,7 +119,11 @@ 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
|
+
# can be called in two ways: * **List all public locations:** Use the path `GET /
|
|
124
|
+
# v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
|
|
125
|
+
# projects/`project_id`/locations`. This may include public locations as well as
|
|
126
|
+
# private or other locations specifically visible to the project.
|
|
123
127
|
# @param [String] name
|
|
124
128
|
# The resource that owns the locations collection, if applicable.
|
|
125
129
|
# @param [Array<String>, String] extra_location_types
|
|
@@ -263,8 +267,7 @@ module Google
|
|
|
263
267
|
execute_or_queue_command(command, &block)
|
|
264
268
|
end
|
|
265
269
|
|
|
266
|
-
# Creates a new `Datastore` resource in a given project and location.
|
|
267
|
-
# are regional resources
|
|
270
|
+
# Creates a new `Datastore` resource in a given project and location.
|
|
268
271
|
# @param [String] parent
|
|
269
272
|
# Required. The resource name of the location to create the new datastore in.
|
|
270
273
|
# Resource names are schemeless URIs that follow the conventions in https://
|
|
@@ -459,8 +462,8 @@ module Google
|
|
|
459
462
|
execute_or_queue_command(command, &block)
|
|
460
463
|
end
|
|
461
464
|
|
|
462
|
-
# Modifies a Datastore resource. Only
|
|
463
|
-
#
|
|
465
|
+
# Modifies a Datastore resource. Only fields specified in `updateMask` are
|
|
466
|
+
# applied.
|
|
464
467
|
# @param [String] name
|
|
465
468
|
# Output only. Identifier. The resource name of this datastore. Resource names
|
|
466
469
|
# are schemeless URIs that follow the conventions in https://cloud.google.com/
|
|
@@ -475,8 +478,7 @@ module Google
|
|
|
475
478
|
# Datastore resource by the update. The fields specified in the `update_mask`
|
|
476
479
|
# are relative to the resource, not the full request. A field will be
|
|
477
480
|
# overwritten if it is in the mask. If the user does not provide a mask then all
|
|
478
|
-
# fields will be overwritten.
|
|
479
|
-
# description`.
|
|
481
|
+
# fields will be overwritten.
|
|
480
482
|
# @param [String] fields
|
|
481
483
|
# Selector specifying which fields to include in a partial response.
|
|
482
484
|
# @param [String] quota_user
|
|
@@ -2620,7 +2622,7 @@ module Google
|
|
|
2620
2622
|
execute_or_queue_command(command, &block)
|
|
2621
2623
|
end
|
|
2622
2624
|
|
|
2623
|
-
# Mounts a `Datastore` on a cluster resource
|
|
2625
|
+
# Mounts a `Datastore` on a cluster resource
|
|
2624
2626
|
# @param [String] name
|
|
2625
2627
|
# Required. The resource name of the cluster to mount the datastore. Resource
|
|
2626
2628
|
# names are schemeless URIs that follow the conventions in https://cloud.google.
|
|
@@ -2787,7 +2789,7 @@ module Google
|
|
|
2787
2789
|
execute_or_queue_command(command, &block)
|
|
2788
2790
|
end
|
|
2789
2791
|
|
|
2790
|
-
#
|
|
2792
|
+
# Unmounts a `Datastore` on a cluster resource
|
|
2791
2793
|
# @param [String] name
|
|
2792
2794
|
# Required. The resource name of the cluster to unmount the datastore. Resource
|
|
2793
2795
|
# names are schemeless URIs that follow the conventions in https://cloud.google.
|
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.16.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.16.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:
|