google-apis-compute_beta 0.46.0 → 0.49.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: ce39ae02d528dc115959308e1849a0b7a25050eac3c1669f0fc82aa63da5c226
|
4
|
+
data.tar.gz: dfe85b9e4012ec68b3871c7067b9915ad62f1abf7152a2fd15b4901512cdc223
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1d886f12e225effd537e4b02553154adc95c9280b5a5fd638aac289916218661ae2cd40594fc8c537e5159186c609ec5a2883a0c94057d21e749a825ebbc165a
|
7
|
+
data.tar.gz: '0708f4e9c8563a453cdfbc3b4249488295cbe433aac033ff235a805c757c5efa09622f280d7fb35ecf5b817041c001239238d8094aaf2b6773fe226cb0185b0b'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Release history for google-apis-compute_beta
|
2
2
|
|
3
|
+
### v0.49.0 (2022-09-10)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220831
|
6
|
+
|
7
|
+
### v0.48.0 (2022-08-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220823
|
10
|
+
|
11
|
+
### v0.47.0 (2022-08-25)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20220816
|
14
|
+
|
3
15
|
### v0.46.0 (2022-08-14)
|
4
16
|
|
5
17
|
* Regenerated from discovery document revision 20220809
|
@@ -654,12 +654,12 @@ module Google
|
|
654
654
|
# - NAT_AUTO for the regional external IP addresses used by Cloud NAT when
|
655
655
|
# allocating addresses using automatic NAT IP address allocation. -
|
656
656
|
# IPSEC_INTERCONNECT for addresses created from a private IP range that are
|
657
|
-
# reserved for a VLAN attachment in an *
|
658
|
-
# configuration. These addresses are regional resources.
|
659
|
-
#
|
660
|
-
#
|
661
|
-
#
|
662
|
-
#
|
657
|
+
# reserved for a VLAN attachment in an *HA VPN over Cloud Interconnect*
|
658
|
+
# configuration. These addresses are regional resources. - `
|
659
|
+
# SHARED_LOADBALANCER_VIP` for an internal IP address that is assigned to
|
660
|
+
# multiple internal forwarding rules. - `PRIVATE_SERVICE_CONNECT` for a private
|
661
|
+
# network address that is used to configure Private Service Connect. Only global
|
662
|
+
# internal addresses can use this purpose.
|
663
663
|
# Corresponds to the JSON property `purpose`
|
664
664
|
# @return [String]
|
665
665
|
attr_accessor :purpose
|
@@ -1318,6 +1318,14 @@ module Google
|
|
1318
1318
|
# @return [Fixnum]
|
1319
1319
|
attr_accessor :disk_size_gb
|
1320
1320
|
|
1321
|
+
# [Input Only] Whether to force attach the regional disk even if it's currently
|
1322
|
+
# attached to another instance. If you try to force attach a zonal disk to an
|
1323
|
+
# instance, you will receive an error.
|
1324
|
+
# Corresponds to the JSON property `forceAttach`
|
1325
|
+
# @return [Boolean]
|
1326
|
+
attr_accessor :force_attach
|
1327
|
+
alias_method :force_attach?, :force_attach
|
1328
|
+
|
1321
1329
|
# A list of features to enable on the guest operating system. Applicable only
|
1322
1330
|
# for bootable images. Read Enabling guest operating system features to see a
|
1323
1331
|
# list of available options.
|
@@ -1343,10 +1351,9 @@ module Google
|
|
1343
1351
|
attr_accessor :initialize_params
|
1344
1352
|
|
1345
1353
|
# Specifies the disk interface to use for attaching this disk, which is either
|
1346
|
-
# SCSI or NVME.
|
1347
|
-
#
|
1348
|
-
#
|
1349
|
-
# characteristics of SCSI over NVMe, see Local SSD performance.
|
1354
|
+
# SCSI or NVME. For most machine types, the default is SCSI. Local SSDs can use
|
1355
|
+
# either NVME or SCSI. In certain configurations, persistent disks can use NVMe.
|
1356
|
+
# For more information, see About persistent disks.
|
1350
1357
|
# Corresponds to the JSON property `interface`
|
1351
1358
|
# @return [String]
|
1352
1359
|
attr_accessor :interface
|
@@ -1421,6 +1428,7 @@ module Google
|
|
1421
1428
|
@device_name = args[:device_name] if args.key?(:device_name)
|
1422
1429
|
@disk_encryption_key = args[:disk_encryption_key] if args.key?(:disk_encryption_key)
|
1423
1430
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
1431
|
+
@force_attach = args[:force_attach] if args.key?(:force_attach)
|
1424
1432
|
@guest_os_features = args[:guest_os_features] if args.key?(:guest_os_features)
|
1425
1433
|
@index = args[:index] if args.key?(:index)
|
1426
1434
|
@initialize_params = args[:initialize_params] if args.key?(:initialize_params)
|
@@ -4238,8 +4246,8 @@ module Google
|
|
4238
4246
|
class BackendServiceLogConfig
|
4239
4247
|
include Google::Apis::Core::Hashable
|
4240
4248
|
|
4241
|
-
#
|
4242
|
-
#
|
4249
|
+
# Denotes whether to enable logging for the load balancer traffic served by this
|
4250
|
+
# backend service. The default value is false.
|
4243
4251
|
# Corresponds to the JSON property `enable`
|
4244
4252
|
# @return [Boolean]
|
4245
4253
|
attr_accessor :enable
|
@@ -4249,7 +4257,7 @@ module Google
|
|
4249
4257
|
# service. The value of the field must be in [0, 1]. This configures the
|
4250
4258
|
# sampling rate of requests to the load balancer where 1.0 means all logged
|
4251
4259
|
# requests are reported and 0.0 means no logged requests are reported. The
|
4252
|
-
# default value is
|
4260
|
+
# default value is 1.0.
|
4253
4261
|
# Corresponds to the JSON property `sampleRate`
|
4254
4262
|
# @return [Float]
|
4255
4263
|
attr_accessor :sample_rate
|
@@ -4656,31 +4664,33 @@ module Google
|
|
4656
4664
|
# members` can have the following values: * `allUsers`: A special identifier
|
4657
4665
|
# that represents anyone who is on the internet; with or without a Google
|
4658
4666
|
# account. * `allAuthenticatedUsers`: A special identifier that represents
|
4659
|
-
# anyone who is authenticated with a Google account or a service account.
|
4660
|
-
#
|
4661
|
-
#
|
4662
|
-
#
|
4663
|
-
#
|
4664
|
-
#
|
4665
|
-
#
|
4666
|
-
#
|
4667
|
-
# .
|
4668
|
-
#
|
4669
|
-
# email address
|
4670
|
-
#
|
4671
|
-
#
|
4672
|
-
#
|
4673
|
-
# emailid
|
4674
|
-
#
|
4675
|
-
#
|
4676
|
-
#
|
4677
|
-
#
|
4678
|
-
#
|
4679
|
-
#
|
4680
|
-
#
|
4681
|
-
#
|
4682
|
-
#
|
4683
|
-
#
|
4667
|
+
# anyone who is authenticated with a Google account or a service account. Does
|
4668
|
+
# not include identities that come from external identity providers (IdPs)
|
4669
|
+
# through identity federation. * `user:`emailid``: An email address that
|
4670
|
+
# represents a specific Google account. For example, `alice@example.com` . * `
|
4671
|
+
# serviceAccount:`emailid``: An email address that represents a Google service
|
4672
|
+
# account. For example, `my-other-app@appspot.gserviceaccount.com`. * `
|
4673
|
+
# serviceAccount:`projectid`.svc.id.goog[`namespace`/`kubernetes-sa`]`: An
|
4674
|
+
# identifier for a [Kubernetes service account](https://cloud.google.com/
|
4675
|
+
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
|
4676
|
+
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
4677
|
+
# email address that represents a Google group. For example, `admins@example.com`
|
4678
|
+
# . * `deleted:user:`emailid`?uid=`uniqueid``: An email address (plus unique
|
4679
|
+
# identifier) representing a user that has been recently deleted. For example, `
|
4680
|
+
# alice@example.com?uid=123456789012345678901`. If the user is recovered, this
|
4681
|
+
# value reverts to `user:`emailid`` and the recovered user retains the role in
|
4682
|
+
# the binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email
|
4683
|
+
# address (plus unique identifier) representing a service account that has been
|
4684
|
+
# recently deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
4685
|
+
# 123456789012345678901`. If the service account is undeleted, this value
|
4686
|
+
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
4687
|
+
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
4688
|
+
# An email address (plus unique identifier) representing a Google group that has
|
4689
|
+
# been recently deleted. For example, `admins@example.com?uid=
|
4690
|
+
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
4691
|
+
# group:`emailid`` and the recovered group retains the role in the binding. * `
|
4692
|
+
# domain:`domain``: The G Suite domain (primary) that represents all the users
|
4693
|
+
# of that domain. For example, `google.com` or `example.com`.
|
4684
4694
|
# Corresponds to the JSON property `members`
|
4685
4695
|
# @return [Array<String>]
|
4686
4696
|
attr_accessor :members
|
@@ -5025,6 +5035,11 @@ module Google
|
|
5025
5035
|
# @return [Google::Apis::ComputeBeta::LicenseResourceCommitment]
|
5026
5036
|
attr_accessor :license_resource
|
5027
5037
|
|
5038
|
+
# List of source commitments to be merged into a new commitment.
|
5039
|
+
# Corresponds to the JSON property `mergeSourceCommitments`
|
5040
|
+
# @return [Array<String>]
|
5041
|
+
attr_accessor :merge_source_commitments
|
5042
|
+
|
5028
5043
|
# Name of the resource. Provided by the client when the resource is created. The
|
5029
5044
|
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
5030
5045
|
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
@@ -5063,6 +5078,11 @@ module Google
|
|
5063
5078
|
# @return [String]
|
5064
5079
|
attr_accessor :self_link
|
5065
5080
|
|
5081
|
+
# Source commitment to be splitted into a new commitment.
|
5082
|
+
# Corresponds to the JSON property `splitSourceCommitment`
|
5083
|
+
# @return [String]
|
5084
|
+
attr_accessor :split_source_commitment
|
5085
|
+
|
5066
5086
|
# [Output Only] Commitment start time in RFC3339 text format.
|
5067
5087
|
# Corresponds to the JSON property `startTimestamp`
|
5068
5088
|
# @return [String]
|
@@ -5102,12 +5122,14 @@ module Google
|
|
5102
5122
|
@id = args[:id] if args.key?(:id)
|
5103
5123
|
@kind = args[:kind] if args.key?(:kind)
|
5104
5124
|
@license_resource = args[:license_resource] if args.key?(:license_resource)
|
5125
|
+
@merge_source_commitments = args[:merge_source_commitments] if args.key?(:merge_source_commitments)
|
5105
5126
|
@name = args[:name] if args.key?(:name)
|
5106
5127
|
@plan = args[:plan] if args.key?(:plan)
|
5107
5128
|
@region = args[:region] if args.key?(:region)
|
5108
5129
|
@reservations = args[:reservations] if args.key?(:reservations)
|
5109
5130
|
@resources = args[:resources] if args.key?(:resources)
|
5110
5131
|
@self_link = args[:self_link] if args.key?(:self_link)
|
5132
|
+
@split_source_commitment = args[:split_source_commitment] if args.key?(:split_source_commitment)
|
5111
5133
|
@start_timestamp = args[:start_timestamp] if args.key?(:start_timestamp)
|
5112
5134
|
@status = args[:status] if args.key?(:status)
|
5113
5135
|
@status_message = args[:status_message] if args.key?(:status_message)
|
@@ -7824,9 +7846,8 @@ module Google
|
|
7824
7846
|
attr_accessor :destination_ranges
|
7825
7847
|
|
7826
7848
|
# Direction of traffic to which this firewall applies, either `INGRESS` or `
|
7827
|
-
# EGRESS`. The default is `INGRESS`. For `
|
7828
|
-
# the
|
7829
|
-
# sourceRanges or sourceTags fields.
|
7849
|
+
# EGRESS`. The default is `INGRESS`. For `EGRESS` traffic, you cannot specify
|
7850
|
+
# the sourceTags fields.
|
7830
7851
|
# Corresponds to the JSON property `direction`
|
7831
7852
|
# @return [String]
|
7832
7853
|
attr_accessor :direction
|
@@ -8242,13 +8263,13 @@ module Google
|
|
8242
8263
|
|
8243
8264
|
# Deprecated, please use short name instead. User-provided name of the
|
8244
8265
|
# Organization firewall policy. The name should be unique in the organization in
|
8245
|
-
# which the firewall policy is created. This
|
8246
|
-
#
|
8247
|
-
#
|
8248
|
-
# regular expression `[a-z]([
|
8249
|
-
#
|
8250
|
-
#
|
8251
|
-
# dash.
|
8266
|
+
# which the firewall policy is created. This field is not applicable to network
|
8267
|
+
# firewall policies. This name must be set on creation and cannot be changed.
|
8268
|
+
# The name must be 1-63 characters long, and comply with RFC1035. Specifically,
|
8269
|
+
# the name must be 1-63 characters long and match the regular expression `[a-z]([
|
8270
|
+
# -a-z0-9]*[a-z0-9])?` which means the first character must be a lowercase
|
8271
|
+
# letter, and all following characters must be a dash, lowercase letter, or
|
8272
|
+
# digit, except the last character, which cannot be a dash.
|
8252
8273
|
# Corresponds to the JSON property `displayName`
|
8253
8274
|
# @return [String]
|
8254
8275
|
attr_accessor :display_name
|
@@ -8277,13 +8298,15 @@ module Google
|
|
8277
8298
|
# @return [String]
|
8278
8299
|
attr_accessor :kind
|
8279
8300
|
|
8280
|
-
#
|
8281
|
-
# uniquely identifies the
|
8301
|
+
# Name of the resource. For Organization Firewall Policies it's a [Output Only]
|
8302
|
+
# numeric ID allocated by GCP which uniquely identifies the Organization
|
8303
|
+
# Firewall Policy.
|
8282
8304
|
# Corresponds to the JSON property `name`
|
8283
8305
|
# @return [String]
|
8284
8306
|
attr_accessor :name
|
8285
8307
|
|
8286
|
-
# [Output Only] The parent of the firewall policy.
|
8308
|
+
# [Output Only] The parent of the firewall policy. This field is not applicable
|
8309
|
+
# to network firewall policies.
|
8287
8310
|
# Corresponds to the JSON property `parent`
|
8288
8311
|
# @return [String]
|
8289
8312
|
attr_accessor :parent
|
@@ -8320,14 +8343,15 @@ module Google
|
|
8320
8343
|
# @return [String]
|
8321
8344
|
attr_accessor :self_link_with_id
|
8322
8345
|
|
8323
|
-
# User-provided name of the Organization firewall
|
8324
|
-
# unique in the organization in which the firewall policy is created. This
|
8325
|
-
#
|
8326
|
-
#
|
8327
|
-
#
|
8328
|
-
#
|
8329
|
-
#
|
8330
|
-
# character, which cannot
|
8346
|
+
# User-provided name of the Organization firewall policy. The name should be
|
8347
|
+
# unique in the organization in which the firewall policy is created. This field
|
8348
|
+
# is not applicable to network firewall policies. This name must be set on
|
8349
|
+
# creation and cannot be changed. The name must be 1-63 characters long, and
|
8350
|
+
# comply with RFC1035. Specifically, the name must be 1-63 characters long and
|
8351
|
+
# match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the
|
8352
|
+
# first character must be a lowercase letter, and all following characters must
|
8353
|
+
# be a dash, lowercase letter, or digit, except the last character, which cannot
|
8354
|
+
# be a dash.
|
8331
8355
|
# Corresponds to the JSON property `shortName`
|
8332
8356
|
# @return [String]
|
8333
8357
|
attr_accessor :short_name
|
@@ -11967,9 +11991,9 @@ module Google
|
|
11967
11991
|
# forwarding the request to the selected backend. If routeAction specifies any
|
11968
11992
|
# weightedBackendServices, service must not be set. Conversely if service is set,
|
11969
11993
|
# routeAction cannot contain any weightedBackendServices. Only one of
|
11970
|
-
# urlRedirect, service or routeAction.weightedBackendService must be set.
|
11971
|
-
#
|
11972
|
-
# within a route rule's routeAction.
|
11994
|
+
# urlRedirect, service or routeAction.weightedBackendService must be set. URL
|
11995
|
+
# maps for Classic external HTTP(S) load balancers only support the urlRewrite
|
11996
|
+
# action within a route rule's routeAction.
|
11973
11997
|
# Corresponds to the JSON property `routeAction`
|
11974
11998
|
# @return [Google::Apis::ComputeBeta::HttpRouteAction]
|
11975
11999
|
attr_accessor :route_action
|
@@ -17146,8 +17170,8 @@ module Google
|
|
17146
17170
|
# attachment. - IPSEC - The VLAN attachment carries only encrypted traffic that
|
17147
17171
|
# is encrypted by an IPsec device, such as an HA VPN gateway or third-party
|
17148
17172
|
# IPsec VPN. VMs cannot directly send traffic to, or receive traffic from, such
|
17149
|
-
# a VLAN attachment. To use *
|
17150
|
-
# attachment must be created with this option.
|
17173
|
+
# a VLAN attachment. To use *HA VPN over Cloud Interconnect*, the VLAN
|
17174
|
+
# attachment must be created with this option.
|
17151
17175
|
# Corresponds to the JSON property `encryption`
|
17152
17176
|
# @return [String]
|
17153
17177
|
attr_accessor :encryption
|
@@ -18870,7 +18894,7 @@ module Google
|
|
18870
18894
|
class LocalizedMessage
|
18871
18895
|
include Google::Apis::Core::Hashable
|
18872
18896
|
|
18873
|
-
# The locale used following the specification defined at
|
18897
|
+
# The locale used following the specification defined at https://www.rfc-editor.
|
18874
18898
|
# org/rfc/bcp/bcp47.txt. Examples are: "en-US", "fr-CH", "es-MX"
|
18875
18899
|
# Corresponds to the JSON property `locale`
|
18876
18900
|
# @return [String]
|
@@ -20355,8 +20379,10 @@ module Google
|
|
20355
20379
|
# @return [String]
|
20356
20380
|
attr_accessor :kind
|
20357
20381
|
|
20358
|
-
# Maximum Transmission Unit in bytes. The minimum value for this field is
|
20359
|
-
# and the maximum value is
|
20382
|
+
# Maximum Transmission Unit in bytes. The minimum value for this field is 1300
|
20383
|
+
# and the maximum value is 8896. The suggested value is 1500, which is the
|
20384
|
+
# default MTU used on the Internet, or 8896 if you want to use Jumbo frames. If
|
20385
|
+
# unspecified, the value defaults to 1460.
|
20360
20386
|
# Corresponds to the JSON property `mtu`
|
20361
20387
|
# @return [Fixnum]
|
20362
20388
|
attr_accessor :mtu
|
@@ -25847,8 +25873,9 @@ module Google
|
|
25847
25873
|
# If defaultRouteAction specifies any weightedBackendServices, defaultService
|
25848
25874
|
# must not be set. Conversely if defaultService is set, defaultRouteAction
|
25849
25875
|
# cannot contain any weightedBackendServices. Only one of defaultRouteAction or
|
25850
|
-
# defaultUrlRedirect must be set.
|
25851
|
-
#
|
25876
|
+
# defaultUrlRedirect must be set. URL maps for Classic external HTTP(S) load
|
25877
|
+
# balancers only support the urlRewrite action within a path matcher's
|
25878
|
+
# defaultRouteAction.
|
25852
25879
|
# Corresponds to the JSON property `defaultRouteAction`
|
25853
25880
|
# @return [Google::Apis::ComputeBeta::HttpRouteAction]
|
25854
25881
|
attr_accessor :default_route_action
|
@@ -25947,8 +25974,9 @@ module Google
|
|
25947
25974
|
# the request to the selected backend. If routeAction specifies any
|
25948
25975
|
# weightedBackendServices, service must not be set. Conversely if service is set,
|
25949
25976
|
# routeAction cannot contain any weightedBackendServices. Only one of
|
25950
|
-
# routeAction or urlRedirect must be set. URL maps for external HTTP(S)
|
25951
|
-
# balancers support
|
25977
|
+
# routeAction or urlRedirect must be set. URL maps for Classic external HTTP(S)
|
25978
|
+
# load balancers only support the urlRewrite action within a path rule's
|
25979
|
+
# routeAction.
|
25952
25980
|
# Corresponds to the JSON property `routeAction`
|
25953
25981
|
# @return [Google::Apis::ComputeBeta::HttpRouteAction]
|
25954
25982
|
attr_accessor :route_action
|
@@ -30846,7 +30874,7 @@ module Google
|
|
30846
30874
|
attr_accessor :description
|
30847
30875
|
|
30848
30876
|
# Indicates if a router is dedicated for use with encrypted VLAN attachments (
|
30849
|
-
# interconnectAttachments).
|
30877
|
+
# interconnectAttachments).
|
30850
30878
|
# Corresponds to the JSON property `encryptedInterconnectRouter`
|
30851
30879
|
# @return [Boolean]
|
30852
30880
|
attr_accessor :encrypted_interconnect_router
|
@@ -41073,8 +41101,8 @@ module Google
|
|
41073
41101
|
# defaultRouteAction specifies any weightedBackendServices, defaultService must
|
41074
41102
|
# not be set. Conversely if defaultService is set, defaultRouteAction cannot
|
41075
41103
|
# contain any weightedBackendServices. Only one of defaultRouteAction or
|
41076
|
-
# defaultUrlRedirect must be set.
|
41077
|
-
#
|
41104
|
+
# defaultUrlRedirect must be set. URL maps for Classic external HTTP(S) load
|
41105
|
+
# balancers only support the urlRewrite action within defaultRouteAction.
|
41078
41106
|
# defaultRouteAction has no effect when the URL map is bound to a target gRPC
|
41079
41107
|
# proxy that has the validateForProxyless field set to true.
|
41080
41108
|
# Corresponds to the JSON property `defaultRouteAction`
|
@@ -42795,9 +42823,8 @@ module Google
|
|
42795
42823
|
|
42796
42824
|
# URL of the VLAN attachment (interconnectAttachment) resource for this VPN
|
42797
42825
|
# gateway interface. When the value of this field is present, the VPN gateway is
|
42798
|
-
# used for
|
42826
|
+
# used for HA VPN over Cloud Interconnect; all egress or ingress traffic for
|
42799
42827
|
# this VPN gateway interface goes through the specified VLAN attachment resource.
|
42800
|
-
# Not currently available publicly.
|
42801
42828
|
# Corresponds to the JSON property `interconnectAttachment`
|
42802
42829
|
# @return [String]
|
42803
42830
|
attr_accessor :interconnect_attachment
|
@@ -42806,11 +42833,11 @@ module Google
|
|
42806
42833
|
# gateway. The IP address could be either a regional external IP address or a
|
42807
42834
|
# regional internal IP address. The two IP addresses for a VPN gateway must be
|
42808
42835
|
# all regional external or regional internal IP addresses. There cannot be a mix
|
42809
|
-
# of regional external IP addresses and regional internal IP addresses. For
|
42810
|
-
#
|
42811
|
-
#
|
42812
|
-
#
|
42813
|
-
#
|
42836
|
+
# of regional external IP addresses and regional internal IP addresses. For HA
|
42837
|
+
# VPN over Cloud Interconnect, the IP addresses for both interfaces could either
|
42838
|
+
# be regional internal IP addresses or regional external IP addresses. For
|
42839
|
+
# regular (non HA VPN over Cloud Interconnect) HA VPN tunnels, the IP address
|
42840
|
+
# must be a regional external IP address.
|
42814
42841
|
# Corresponds to the JSON property `ipAddress`
|
42815
42842
|
# @return [String]
|
42816
42843
|
attr_accessor :ip_address
|
@@ -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.49.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220831"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -6124,6 +6124,7 @@ module Google
|
|
6124
6124
|
property :disk_encryption_key, as: 'diskEncryptionKey', class: Google::Apis::ComputeBeta::CustomerEncryptionKey, decorator: Google::Apis::ComputeBeta::CustomerEncryptionKey::Representation
|
6125
6125
|
|
6126
6126
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
6127
|
+
property :force_attach, as: 'forceAttach'
|
6127
6128
|
collection :guest_os_features, as: 'guestOsFeatures', class: Google::Apis::ComputeBeta::GuestOsFeature, decorator: Google::Apis::ComputeBeta::GuestOsFeature::Representation
|
6128
6129
|
|
6129
6130
|
property :index, as: 'index'
|
@@ -6908,6 +6909,7 @@ module Google
|
|
6908
6909
|
property :kind, as: 'kind'
|
6909
6910
|
property :license_resource, as: 'licenseResource', class: Google::Apis::ComputeBeta::LicenseResourceCommitment, decorator: Google::Apis::ComputeBeta::LicenseResourceCommitment::Representation
|
6910
6911
|
|
6912
|
+
collection :merge_source_commitments, as: 'mergeSourceCommitments'
|
6911
6913
|
property :name, as: 'name'
|
6912
6914
|
property :plan, as: 'plan'
|
6913
6915
|
property :region, as: 'region'
|
@@ -6916,6 +6918,7 @@ module Google
|
|
6916
6918
|
collection :resources, as: 'resources', class: Google::Apis::ComputeBeta::ResourceCommitment, decorator: Google::Apis::ComputeBeta::ResourceCommitment::Representation
|
6917
6919
|
|
6918
6920
|
property :self_link, as: 'selfLink'
|
6921
|
+
property :split_source_commitment, as: 'splitSourceCommitment'
|
6919
6922
|
property :start_timestamp, as: 'startTimestamp'
|
6920
6923
|
property :status, as: 'status'
|
6921
6924
|
property :status_message, as: 'statusMessage'
|
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.49.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: 2022-
|
11
|
+
date: 2022-09-12 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.49.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: []
|