google-apis-compute_beta 0.143.0 → 0.144.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: ed2cd963f3a146930b7669ff9ef39d13926fdfb91bec9f3116f2879e9182ce46
|
|
4
|
+
data.tar.gz: be6aba02594379279b61b73f90a10c63b48e62703404fbc99919d299b5f4de1c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 210e2c6114386e2241156383acfc4ddcd73e9530d896bfce60c559cd23e18d64d1786978519f1c052bc5cec2808c0f27bd78cdda1ed58741dee604613836e17a
|
|
7
|
+
data.tar.gz: f6a019dcac360fdd284eb2d8edff5acaf92c01c193d848c689383e3564c764a480fc46f5eb11e5fe9b2adb7cf410361fe493bd8d3b8182e7fb6ac974dfeb0cd3
|
data/CHANGELOG.md
CHANGED
|
@@ -754,8 +754,10 @@ module Google
|
|
|
754
754
|
# It supports the following cases:
|
|
755
755
|
#
|
|
756
756
|
# -
|
|
757
|
-
# Case 1: PublicDelegatedPrefix (PDP) for BYOIP external
|
|
758
|
-
# addresses.
|
|
757
|
+
# Case 1: PublicDelegatedPrefix (PDP) for BYOIP external
|
|
758
|
+
# addresses. If an IPv4 PDP is used, the PDP must support enhanced IPv4
|
|
759
|
+
# allocations. If an IPv6 PDP is used, the PDP must be in
|
|
760
|
+
# EXTERNAL_IPV6_FORWARDING_RULE_CREATION mode.
|
|
759
761
|
# -
|
|
760
762
|
# Case 2: Internal Range for global internal addresses.
|
|
761
763
|
# Use one of the following formats to specify the resource:
|
|
@@ -874,6 +876,12 @@ module Google
|
|
|
874
876
|
# - `PRIVATE_SERVICE_CONNECT` for a private network address that is
|
|
875
877
|
# used to configure Private Service Connect. Only global internal addresses
|
|
876
878
|
# can use this purpose.
|
|
879
|
+
# - `PASSTHROUGH_LOAD_BALANCER_AVAILABILITY_GROUP0` for addresses
|
|
880
|
+
# that can only be assigned to global external Passthrough Network Load
|
|
881
|
+
# Balancer forwarding rules, as an Availability Group 0 address.
|
|
882
|
+
# - `PASSTHROUGH_LOAD_BALANCER_AVAILABILITY_GROUP1` for addresses that
|
|
883
|
+
# can only be assigned to global external Passthrough Network Load Balancer
|
|
884
|
+
# forwarding rules, as an Availability Group 1 address.
|
|
877
885
|
# Corresponds to the JSON property `purpose`
|
|
878
886
|
# @return [String]
|
|
879
887
|
attr_accessor :purpose
|
|
@@ -2000,7 +2008,42 @@ module Google
|
|
|
2000
2008
|
# @return [Fixnum]
|
|
2001
2009
|
attr_accessor :disk_size_gb
|
|
2002
2010
|
|
|
2011
|
+
# Specifies the disk type used for the boot disk or an additional data
|
|
2012
|
+
# disk. For valid disk type values, see
|
|
2013
|
+
# Supported types for Hyperdisk volumes and
|
|
2014
|
+
# Persistent Disk type variables.
|
|
2015
|
+
# When creating a single instance, you must provide either the full or
|
|
2016
|
+
# partial URL of the disk type. For example, the following values are
|
|
2017
|
+
# valid:
|
|
2003
2018
|
#
|
|
2019
|
+
#
|
|
2020
|
+
# - https://www.googleapis.com/compute/v1/projects/project/zones/zone/
|
|
2021
|
+
# diskTypes/diskType
|
|
2022
|
+
# - projects/project/zones/zone/diskTypes/diskType
|
|
2023
|
+
# - zones/zone/diskTypes/diskType
|
|
2024
|
+
# When creating an instance template, instance flexibility policy, or when
|
|
2025
|
+
# creating or updating an all-instances configuration, you specify the
|
|
2026
|
+
# disk type without a URL, for example, hyperdisk-balanced.
|
|
2027
|
+
# If you omit this field for a disk, the default disk type depends on
|
|
2028
|
+
# the instance's machine series, as follows.
|
|
2029
|
+
#
|
|
2030
|
+
#
|
|
2031
|
+
# - For first- and second-generation machine series like N1, N2, T2, and
|
|
2032
|
+
# M1, the
|
|
2033
|
+
# default disk type is Standard Persistent Disk
|
|
2034
|
+
# (pd-standard).
|
|
2035
|
+
# - For C3, C3D, and M3 the default is Balanced Persistent Disk
|
|
2036
|
+
# (pd-balanced).
|
|
2037
|
+
# - For other third-generation machine
|
|
2038
|
+
# series like A3, H3, Z3, all
|
|
2039
|
+
# fourth-generation types like C4, N4, M4, and newer machine series,
|
|
2040
|
+
# the default is Hyperdisk Balanced
|
|
2041
|
+
# (hyperdisk-balanced).
|
|
2042
|
+
# The disk type you specify must be compatible with the instance's machine
|
|
2043
|
+
# series. For a list of machine series that support Persistent Disk, see Machine
|
|
2044
|
+
# series support for Persistent Disk.
|
|
2045
|
+
# For a list of machine series that support Hyperdisk, seeMachine
|
|
2046
|
+
# series support for Hyperdisk.
|
|
2004
2047
|
# Corresponds to the JSON property `diskType`
|
|
2005
2048
|
# @return [String]
|
|
2006
2049
|
attr_accessor :disk_type
|
|
@@ -4955,7 +4998,11 @@ module Google
|
|
|
4955
4998
|
|
|
4956
4999
|
# URL to networkservices.ServiceLbPolicy resource.
|
|
4957
5000
|
# Can only be set if load balancing scheme is EXTERNAL_MANAGED,
|
|
4958
|
-
# INTERNAL_MANAGED or INTERNAL_SELF_MANAGED
|
|
5001
|
+
# INTERNAL_MANAGED or INTERNAL_SELF_MANAGED for a global backend service, and
|
|
5002
|
+
# EXTERNAL_MANAGED or INTERNAL_MANAGED for a regional backend service. For a
|
|
5003
|
+
# global backend service, the service lb policy must be global. For a
|
|
5004
|
+
# regional backend service, the service lb policy must be regional and in the
|
|
5005
|
+
# same region.
|
|
4959
5006
|
# Corresponds to the JSON property `serviceLbPolicy`
|
|
4960
5007
|
# @return [String]
|
|
4961
5008
|
attr_accessor :service_lb_policy
|
|
@@ -10242,6 +10289,7 @@ module Google
|
|
|
10242
10289
|
# @return [String]
|
|
10243
10290
|
attr_accessor :kms_key_service_account
|
|
10244
10291
|
|
|
10292
|
+
# [DEPRECATED] CSEK is no longer supported. Use CMEK instead.
|
|
10245
10293
|
# Specifies a 256-bit customer-supplied
|
|
10246
10294
|
# encryption key, encoded in RFC
|
|
10247
10295
|
# 4648 base64 to either encrypt or decrypt this resource. You can
|
|
@@ -10253,6 +10301,7 @@ module Google
|
|
|
10253
10301
|
# @return [String]
|
|
10254
10302
|
attr_accessor :raw_key
|
|
10255
10303
|
|
|
10304
|
+
# [DEPRECATED] CSEK is no longer supported. Use CMEK instead.
|
|
10256
10305
|
# Specifies an RFC 4648 base64 encoded, RSA-wrapped 2048-bit
|
|
10257
10306
|
# customer-supplied encryption key to either encrypt or decrypt this
|
|
10258
10307
|
# resource. You can provide either the rawKey or thersaEncryptedKey.
|
|
@@ -10274,6 +10323,7 @@ module Google
|
|
|
10274
10323
|
# @return [String]
|
|
10275
10324
|
attr_accessor :rsa_encrypted_key
|
|
10276
10325
|
|
|
10326
|
+
# [DEPRECATED] CSEK is no longer supported. Use CMEK instead.
|
|
10277
10327
|
# [Output only] TheRFC
|
|
10278
10328
|
# 4648 base64 encoded SHA-256 hash of the customer-supplied
|
|
10279
10329
|
# encryption key that protects this resource.
|
|
@@ -18910,7 +18960,7 @@ module Google
|
|
|
18910
18960
|
# on what other health check fields are supported and what other resources
|
|
18911
18961
|
# can use this health check:
|
|
18912
18962
|
#
|
|
18913
|
-
# - SSL, HTTP2, and
|
|
18963
|
+
# - SSL, HTTP2, GRPC, and GRPC_WITH_TLS protocols are not supported.
|
|
18914
18964
|
# - The TCP request field is not supported.
|
|
18915
18965
|
# - The proxyHeader field for HTTP, HTTPS, and TCP is not
|
|
18916
18966
|
# supported.
|
|
@@ -18938,10 +18988,10 @@ module Google
|
|
|
18938
18988
|
# @return [Fixnum]
|
|
18939
18989
|
attr_accessor :timeout_sec
|
|
18940
18990
|
|
|
18941
|
-
# Specifies the type of the healthCheck, either TCP,SSL, HTTP, HTTPS,HTTP2
|
|
18942
|
-
#
|
|
18943
|
-
# protocol-specific health check fields must be specified,
|
|
18944
|
-
# field.
|
|
18991
|
+
# Specifies the type of the healthCheck, either TCP,SSL, HTTP, HTTPS,HTTP2, GRPC
|
|
18992
|
+
# or GRPC_WITH_TLS.
|
|
18993
|
+
# Exactly one of the protocol-specific health check fields must be specified,
|
|
18994
|
+
# which must match type field.
|
|
18945
18995
|
# Corresponds to the JSON property `type`
|
|
18946
18996
|
# @return [String]
|
|
18947
18997
|
attr_accessor :type
|
|
@@ -51912,7 +51962,7 @@ module Google
|
|
|
51912
51962
|
class ReliabilityRisksListResponse
|
|
51913
51963
|
include Google::Apis::Core::Hashable
|
|
51914
51964
|
|
|
51915
|
-
#
|
|
51965
|
+
# [Output Only] An ETag of the resource.
|
|
51916
51966
|
# Corresponds to the JSON property `etag`
|
|
51917
51967
|
# @return [String]
|
|
51918
51968
|
attr_accessor :etag
|
|
@@ -55179,6 +55229,14 @@ module Google
|
|
|
55179
55229
|
# @return [Hash<String,String>]
|
|
55180
55230
|
attr_accessor :accelerator_topology_ids
|
|
55181
55231
|
|
|
55232
|
+
# Output only. Key-value store for arbitrary network topology identifiers
|
|
55233
|
+
# defined by the underlying infrastructure.
|
|
55234
|
+
# The key will be the topology label and the value will be the location
|
|
55235
|
+
# ID for the topology.
|
|
55236
|
+
# Corresponds to the JSON property `networkTopologyIds`
|
|
55237
|
+
# @return [Hash<String,String>]
|
|
55238
|
+
attr_accessor :network_topology_ids
|
|
55239
|
+
|
|
55182
55240
|
def initialize(**args)
|
|
55183
55241
|
update!(**args)
|
|
55184
55242
|
end
|
|
@@ -55186,6 +55244,7 @@ module Google
|
|
|
55186
55244
|
# Update properties of this object
|
|
55187
55245
|
def update!(**args)
|
|
55188
55246
|
@accelerator_topology_ids = args[:accelerator_topology_ids] if args.key?(:accelerator_topology_ids)
|
|
55247
|
+
@network_topology_ids = args[:network_topology_ids] if args.key?(:network_topology_ids)
|
|
55189
55248
|
end
|
|
55190
55249
|
end
|
|
55191
55250
|
|
|
@@ -55236,6 +55295,13 @@ module Google
|
|
|
55236
55295
|
# @return [Fixnum]
|
|
55237
55296
|
attr_accessor :availability_domain
|
|
55238
55297
|
|
|
55298
|
+
# Output only. Specifies the timestamp, when the instance will start graceful
|
|
55299
|
+
# shutdown
|
|
55300
|
+
# process, in RFC3339 text format.
|
|
55301
|
+
# Corresponds to the JSON property `gracefulShutdownTimestamp`
|
|
55302
|
+
# @return [String]
|
|
55303
|
+
attr_accessor :graceful_shutdown_timestamp
|
|
55304
|
+
|
|
55239
55305
|
# Time in future when the instance will be terminated inRFC3339 text format.
|
|
55240
55306
|
# Corresponds to the JSON property `terminationTimestamp`
|
|
55241
55307
|
# @return [String]
|
|
@@ -55248,6 +55314,7 @@ module Google
|
|
|
55248
55314
|
# Update properties of this object
|
|
55249
55315
|
def update!(**args)
|
|
55250
55316
|
@availability_domain = args[:availability_domain] if args.key?(:availability_domain)
|
|
55317
|
+
@graceful_shutdown_timestamp = args[:graceful_shutdown_timestamp] if args.key?(:graceful_shutdown_timestamp)
|
|
55251
55318
|
@termination_timestamp = args[:termination_timestamp] if args.key?(:termination_timestamp)
|
|
55252
55319
|
end
|
|
55253
55320
|
end
|
|
@@ -58405,6 +58472,13 @@ module Google
|
|
|
58405
58472
|
# @return [Google::Apis::ComputeBeta::BfdStatus]
|
|
58406
58473
|
attr_accessor :bfd_status
|
|
58407
58474
|
|
|
58475
|
+
# Output only. [Output Only] Indicates whether the BGP peer is in a
|
|
58476
|
+
# depreferenced state.
|
|
58477
|
+
# Corresponds to the JSON property `depreferenced`
|
|
58478
|
+
# @return [Boolean]
|
|
58479
|
+
attr_accessor :depreferenced
|
|
58480
|
+
alias_method :depreferenced?, :depreferenced
|
|
58481
|
+
|
|
58408
58482
|
# Output only. Enable IPv4 traffic over BGP Peer.
|
|
58409
58483
|
# It is enabled by default if the peerIpAddress is version 4.
|
|
58410
58484
|
# Corresponds to the JSON property `enableIpv4`
|
|
@@ -58518,6 +58592,7 @@ module Google
|
|
|
58518
58592
|
def update!(**args)
|
|
58519
58593
|
@advertised_routes = args[:advertised_routes] if args.key?(:advertised_routes)
|
|
58520
58594
|
@bfd_status = args[:bfd_status] if args.key?(:bfd_status)
|
|
58595
|
+
@depreferenced = args[:depreferenced] if args.key?(:depreferenced)
|
|
58521
58596
|
@enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
|
|
58522
58597
|
@enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
|
|
58523
58598
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
@@ -65777,6 +65852,11 @@ module Google
|
|
|
65777
65852
|
# @return [String]
|
|
65778
65853
|
attr_accessor :self_link_with_id
|
|
65779
65854
|
|
|
65855
|
+
# Share settings for the storage pool.
|
|
65856
|
+
# Corresponds to the JSON property `shareSettings`
|
|
65857
|
+
# @return [Google::Apis::ComputeBeta::StoragePoolShareSettings]
|
|
65858
|
+
attr_accessor :share_settings
|
|
65859
|
+
|
|
65780
65860
|
# Output only. [Output Only] The status of storage pool creation.
|
|
65781
65861
|
#
|
|
65782
65862
|
#
|
|
@@ -65829,6 +65909,7 @@ module Google
|
|
|
65829
65909
|
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
|
65830
65910
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
65831
65911
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
65912
|
+
@share_settings = args[:share_settings] if args.key?(:share_settings)
|
|
65832
65913
|
@state = args[:state] if args.key?(:state)
|
|
65833
65914
|
@status = args[:status] if args.key?(:status)
|
|
65834
65915
|
@storage_pool_type = args[:storage_pool_type] if args.key?(:storage_pool_type)
|
|
@@ -66502,6 +66583,45 @@ module Google
|
|
|
66502
66583
|
end
|
|
66503
66584
|
end
|
|
66504
66585
|
|
|
66586
|
+
# Share settings for the storage pool.
|
|
66587
|
+
class StoragePoolShareSettings
|
|
66588
|
+
include Google::Apis::Core::Hashable
|
|
66589
|
+
|
|
66590
|
+
# A map of project id and project config.
|
|
66591
|
+
# Corresponds to the JSON property `projectMap`
|
|
66592
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::StoragePoolShareSettingsProjectConfig>]
|
|
66593
|
+
attr_accessor :project_map
|
|
66594
|
+
|
|
66595
|
+
def initialize(**args)
|
|
66596
|
+
update!(**args)
|
|
66597
|
+
end
|
|
66598
|
+
|
|
66599
|
+
# Update properties of this object
|
|
66600
|
+
def update!(**args)
|
|
66601
|
+
@project_map = args[:project_map] if args.key?(:project_map)
|
|
66602
|
+
end
|
|
66603
|
+
end
|
|
66604
|
+
|
|
66605
|
+
# Config for each project in the share settings.
|
|
66606
|
+
class StoragePoolShareSettingsProjectConfig
|
|
66607
|
+
include Google::Apis::Core::Hashable
|
|
66608
|
+
|
|
66609
|
+
# The project ID, should be same as the key of this project config in the
|
|
66610
|
+
# parent map.
|
|
66611
|
+
# Corresponds to the JSON property `projectId`
|
|
66612
|
+
# @return [String]
|
|
66613
|
+
attr_accessor :project_id
|
|
66614
|
+
|
|
66615
|
+
def initialize(**args)
|
|
66616
|
+
update!(**args)
|
|
66617
|
+
end
|
|
66618
|
+
|
|
66619
|
+
# Update properties of this object
|
|
66620
|
+
def update!(**args)
|
|
66621
|
+
@project_id = args[:project_id] if args.key?(:project_id)
|
|
66622
|
+
end
|
|
66623
|
+
end
|
|
66624
|
+
|
|
66505
66625
|
#
|
|
66506
66626
|
class StoragePoolType
|
|
66507
66627
|
include Google::Apis::Core::Hashable
|
|
@@ -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.144.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260722"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -8296,6 +8296,18 @@ module Google
|
|
|
8296
8296
|
include Google::Apis::Core::JsonObjectSupport
|
|
8297
8297
|
end
|
|
8298
8298
|
|
|
8299
|
+
class StoragePoolShareSettings
|
|
8300
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
8301
|
+
|
|
8302
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
8303
|
+
end
|
|
8304
|
+
|
|
8305
|
+
class StoragePoolShareSettingsProjectConfig
|
|
8306
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
8307
|
+
|
|
8308
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
8309
|
+
end
|
|
8310
|
+
|
|
8299
8311
|
class StoragePoolType
|
|
8300
8312
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
8301
8313
|
|
|
@@ -22500,6 +22512,7 @@ module Google
|
|
|
22500
22512
|
# @private
|
|
22501
22513
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
22502
22514
|
hash :accelerator_topology_ids, as: 'acceleratorTopologyIds'
|
|
22515
|
+
hash :network_topology_ids, as: 'networkTopologyIds'
|
|
22503
22516
|
end
|
|
22504
22517
|
end
|
|
22505
22518
|
|
|
@@ -22516,6 +22529,7 @@ module Google
|
|
|
22516
22529
|
# @private
|
|
22517
22530
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
22518
22531
|
property :availability_domain, as: 'availabilityDomain'
|
|
22532
|
+
property :graceful_shutdown_timestamp, as: 'gracefulShutdownTimestamp'
|
|
22519
22533
|
property :termination_timestamp, as: 'terminationTimestamp'
|
|
22520
22534
|
end
|
|
22521
22535
|
end
|
|
@@ -23217,6 +23231,7 @@ module Google
|
|
|
23217
23231
|
|
|
23218
23232
|
property :bfd_status, as: 'bfdStatus', class: Google::Apis::ComputeBeta::BfdStatus, decorator: Google::Apis::ComputeBeta::BfdStatus::Representation
|
|
23219
23233
|
|
|
23234
|
+
property :depreferenced, as: 'depreferenced'
|
|
23220
23235
|
property :enable_ipv4, as: 'enableIpv4'
|
|
23221
23236
|
property :enable_ipv6, as: 'enableIpv6'
|
|
23222
23237
|
property :ip_address, as: 'ipAddress'
|
|
@@ -24963,6 +24978,8 @@ module Google
|
|
|
24963
24978
|
|
|
24964
24979
|
property :self_link, as: 'selfLink'
|
|
24965
24980
|
property :self_link_with_id, as: 'selfLinkWithId'
|
|
24981
|
+
property :share_settings, as: 'shareSettings', class: Google::Apis::ComputeBeta::StoragePoolShareSettings, decorator: Google::Apis::ComputeBeta::StoragePoolShareSettings::Representation
|
|
24982
|
+
|
|
24966
24983
|
property :state, as: 'state'
|
|
24967
24984
|
property :status, as: 'status', class: Google::Apis::ComputeBeta::StoragePoolResourceStatus, decorator: Google::Apis::ComputeBeta::StoragePoolResourceStatus::Representation
|
|
24968
24985
|
|
|
@@ -25126,6 +25143,21 @@ module Google
|
|
|
25126
25143
|
end
|
|
25127
25144
|
end
|
|
25128
25145
|
|
|
25146
|
+
class StoragePoolShareSettings
|
|
25147
|
+
# @private
|
|
25148
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
25149
|
+
hash :project_map, as: 'projectMap', class: Google::Apis::ComputeBeta::StoragePoolShareSettingsProjectConfig, decorator: Google::Apis::ComputeBeta::StoragePoolShareSettingsProjectConfig::Representation
|
|
25150
|
+
|
|
25151
|
+
end
|
|
25152
|
+
end
|
|
25153
|
+
|
|
25154
|
+
class StoragePoolShareSettingsProjectConfig
|
|
25155
|
+
# @private
|
|
25156
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
25157
|
+
property :project_id, as: 'projectId'
|
|
25158
|
+
end
|
|
25159
|
+
end
|
|
25160
|
+
|
|
25129
25161
|
class StoragePoolType
|
|
25130
25162
|
# @private
|
|
25131
25163
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -32625,6 +32625,13 @@ module Google
|
|
|
32625
32625
|
|
|
32626
32626
|
# Returns the specified global ProjectViews resource, with a regional
|
|
32627
32627
|
# context.
|
|
32628
|
+
# This regional API endpoint reads resource metadata from regional
|
|
32629
|
+
# read-only replicas. Because changes are copied to these regional replicas
|
|
32630
|
+
# asynchronously, for real-time resource reads or any write operations
|
|
32631
|
+
# (creating, updating, or deleting resources), use the global
|
|
32632
|
+
# [projects.get](https://cloud.google.com/compute/docs/reference/rest/v1/
|
|
32633
|
+
# projects/get)
|
|
32634
|
+
# endpoint.
|
|
32628
32635
|
# @param [String] project
|
|
32629
32636
|
# Required. Project ID for this request. This is part of the URL path.
|
|
32630
32637
|
# @param [String] region
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.144.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-compute_beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.144.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|