google-apis-compute_beta 0.101.0 → 0.102.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: 62d0742137425557000381864d56aa19ef84d6c35692536efadb33b0db30549c
|
|
4
|
+
data.tar.gz: 5f1cfa73eefa4914b01eaea15e7253f6e3cef096ec7f2fba5b823be290b8f716
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1fb0f3ff5711f3aabfb45815e0b5669ec45d385b406c0c3ec475738aa641f1145b08559db2c724970931f4967492d60bd968feecc27e63b06f5eb911cca9b5ac
|
|
7
|
+
data.tar.gz: bf51acb988306e220045c444ed0467bfc151015b9991b6e977d7dd92b57ccf6fc36bd15fa017a11325e90fb4e136c4d21a7f1bc524fb1ffa267e677489961125
|
data/CHANGELOG.md
CHANGED
|
@@ -1507,8 +1507,10 @@ module Google
|
|
|
1507
1507
|
# the disk or when you attach the disk to a virtual machine instance. If you do
|
|
1508
1508
|
# not provide an encryption key, then the disk will be encrypted using an
|
|
1509
1509
|
# automatically generated key and you do not need to provide a key to use the
|
|
1510
|
-
# disk later. Instance templates do not store customer-supplied encryption
|
|
1511
|
-
# so you cannot use your own keys to encrypt disks in a managed instance
|
|
1510
|
+
# disk later. Note: Instance templates do not store customer-supplied encryption
|
|
1511
|
+
# keys, so you cannot use your own keys to encrypt disks in a managed instance
|
|
1512
|
+
# group. You cannot create VMs that have disks with customer-supplied keys using
|
|
1513
|
+
# the bulk insert method.
|
|
1512
1514
|
# Corresponds to the JSON property `diskEncryptionKey`
|
|
1513
1515
|
# @return [Google::Apis::ComputeBeta::CustomerEncryptionKey]
|
|
1514
1516
|
attr_accessor :disk_encryption_key
|
|
@@ -6647,6 +6649,16 @@ module Google
|
|
|
6647
6649
|
class Disk
|
|
6648
6650
|
include Google::Apis::Core::Hashable
|
|
6649
6651
|
|
|
6652
|
+
# The access mode of the disk. - READ_WRITE_SINGLE: The default AccessMode,
|
|
6653
|
+
# means the disk can be attached to single instance in RW mode. -
|
|
6654
|
+
# READ_WRITE_MANY: The AccessMode means the disk can be attached to multiple
|
|
6655
|
+
# instances in RW mode. - READ_ONLY_MANY: The AccessMode means the disk can be
|
|
6656
|
+
# attached to multiple instances in RO mode. The AccessMode is only valid for
|
|
6657
|
+
# Hyperdisk disk types.
|
|
6658
|
+
# Corresponds to the JSON property `accessMode`
|
|
6659
|
+
# @return [String]
|
|
6660
|
+
attr_accessor :access_mode
|
|
6661
|
+
|
|
6650
6662
|
# The architecture of the disk. Valid values are ARM64 or X86_64.
|
|
6651
6663
|
# Corresponds to the JSON property `architecture`
|
|
6652
6664
|
# @return [String]
|
|
@@ -7056,6 +7068,7 @@ module Google
|
|
|
7056
7068
|
|
|
7057
7069
|
# Update properties of this object
|
|
7058
7070
|
def update!(**args)
|
|
7071
|
+
@access_mode = args[:access_mode] if args.key?(:access_mode)
|
|
7059
7072
|
@architecture = args[:architecture] if args.key?(:architecture)
|
|
7060
7073
|
@async_primary_disk = args[:async_primary_disk] if args.key?(:async_primary_disk)
|
|
7061
7074
|
@async_secondary_disks = args[:async_secondary_disks] if args.key?(:async_secondary_disks)
|
|
@@ -18829,6 +18842,9 @@ module Google
|
|
|
18829
18842
|
attr_accessor :labels
|
|
18830
18843
|
|
|
18831
18844
|
# The machine type to use for instances that are created from these properties.
|
|
18845
|
+
# This field only accept machine types name. e.g. n2-standard-4 and does not
|
|
18846
|
+
# accept machine type full or partial url. e.g. projects/my-l7ilb-project/zones/
|
|
18847
|
+
# us-central1-a/machineTypes/n2-standard-4 will throw INTERNAL_ERROR.
|
|
18832
18848
|
# Corresponds to the JSON property `machineType`
|
|
18833
18849
|
# @return [String]
|
|
18834
18850
|
attr_accessor :machine_type
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ComputeBeta
|
|
18
18
|
# Version of the google-apis-compute_beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.102.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240519"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -8438,6 +8438,7 @@ module Google
|
|
|
8438
8438
|
class Disk
|
|
8439
8439
|
# @private
|
|
8440
8440
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8441
|
+
property :access_mode, as: 'accessMode'
|
|
8441
8442
|
property :architecture, as: 'architecture'
|
|
8442
8443
|
property :async_primary_disk, as: 'asyncPrimaryDisk', class: Google::Apis::ComputeBeta::DiskAsyncReplication, decorator: Google::Apis::ComputeBeta::DiskAsyncReplication::Representation
|
|
8443
8444
|
|
|
@@ -37059,7 +37059,13 @@ module Google
|
|
|
37059
37059
|
# To exclude one or more fields, set your request's `fields` query parameter to
|
|
37060
37060
|
# only include the fields you need. For example, to only include the `id` and `
|
|
37061
37061
|
# selfLink` fields, add the query parameter `?fields=id,selfLink` to your
|
|
37062
|
-
# request.
|
|
37062
|
+
# request. This method fails if the quota information is unavailable for the
|
|
37063
|
+
# region and if the organization policy constraint compute.
|
|
37064
|
+
# requireBasicQuotaInResponse is enforced. This constraint, when enforced,
|
|
37065
|
+
# disables the fail-open behaviour when quota information (the `items.quotas`
|
|
37066
|
+
# field) is unavailable for the region. It is recommended to use the default
|
|
37067
|
+
# setting for the constraint unless your application requires the fail-closed
|
|
37068
|
+
# behaviour for this method.
|
|
37063
37069
|
# @param [String] project
|
|
37064
37070
|
# Project ID for this request.
|
|
37065
37071
|
# @param [String] filter
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-compute_beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.102.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: 2024-05-
|
|
11
|
+
date: 2024-05-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.102.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|