google-apis-compute_v1 0.153.0 → 0.154.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: f89fc627157c0c5056d7dfce33029213915547dcc143868a14c6286ba732e118
|
|
4
|
+
data.tar.gz: d4cbe23afdd6937b26bc1389aab61e3a8efc7de281daca830d3e6156e521195d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1b60b68c9a9ea55e5245e96655f1a64fc9ddf95a0f8e1b1b40d2419748e4e2804461fbd2fad88a71dde5c62dd15c7cf3f25702dc02335e4c4f2d853562ce54f5
|
|
7
|
+
data.tar.gz: 29aa8184319408583cf8658c69f97ef8f1a64c7138b73c9615ad05137de37138e317a04dea73356fe88699f707863916fb6016a952a8d34025ab6583ca5850f4
|
data/CHANGELOG.md
CHANGED
|
@@ -3229,7 +3229,8 @@ module Google
|
|
|
3229
3229
|
# Specifies how to determine whether the backend of a load balancer can
|
|
3230
3230
|
# handle additional traffic or is fully loaded. For usage guidelines, see
|
|
3231
3231
|
# Connection balancing mode.
|
|
3232
|
-
# Backends must use compatible balancing modes.
|
|
3232
|
+
# Backends must use compatible balancing modes. Backends of a backend
|
|
3233
|
+
# service may use different balancing modes. For more information, see
|
|
3233
3234
|
# Supported balancing modes and target capacity settings and
|
|
3234
3235
|
# Restrictions and guidance for instance groups.
|
|
3235
3236
|
# Note: Currently, if you use the API to configure incompatible balancing
|
|
@@ -3272,6 +3273,8 @@ module Google
|
|
|
3272
3273
|
|
|
3273
3274
|
# This field designates whether this is a failover backend. More than one
|
|
3274
3275
|
# failover backend can be configured for a given BackendService.
|
|
3276
|
+
# This field can only be used for a regional external Passthrough Network
|
|
3277
|
+
# Load Balancer or a regional internal Passthrough Network Load Balancer.
|
|
3275
3278
|
# Corresponds to the JSON property `failover`
|
|
3276
3279
|
# @return [Boolean]
|
|
3277
3280
|
attr_accessor :failover
|
|
@@ -3389,6 +3392,12 @@ module Google
|
|
|
3389
3392
|
# capacity, backends in this layer would be used and traffic would be
|
|
3390
3393
|
# assigned based on the load balancing algorithm you use. This is the
|
|
3391
3394
|
# default
|
|
3395
|
+
# For global external Passthrough Network Load Balancers, the following
|
|
3396
|
+
# restrictions apply:
|
|
3397
|
+
#
|
|
3398
|
+
# - At most one backend can be marked as PREFERRED.
|
|
3399
|
+
# - PREFERRED and DEFAULT backends cannot reside
|
|
3400
|
+
# in the same Cloud region.
|
|
3392
3401
|
# Corresponds to the JSON property `preference`
|
|
3393
3402
|
# @return [String]
|
|
3394
3403
|
attr_accessor :preference
|
|
@@ -3717,16 +3726,17 @@ module Google
|
|
|
3717
3726
|
attr_accessor :cache_key_policy
|
|
3718
3727
|
|
|
3719
3728
|
# Specifies the cache setting for all responses from this backend.
|
|
3720
|
-
# The possible values are:
|
|
3721
|
-
# caching
|
|
3729
|
+
# The possible values are:
|
|
3730
|
+
# USE_ORIGIN_HEADERS Requires the origin to set valid caching
|
|
3722
3731
|
# headers to cache content. Responses without these headers will not be
|
|
3723
3732
|
# cached at Google's edge, and will require a full trip to the origin on
|
|
3724
3733
|
# every request, potentially impacting performance and increasing load on
|
|
3725
|
-
# the origin server.
|
|
3734
|
+
# the origin server.
|
|
3735
|
+
# FORCE_CACHE_ALL Cache all content, ignoring any "private",
|
|
3726
3736
|
# "no-store" or "no-cache" directives in Cache-Control response headers.
|
|
3727
3737
|
# Warning: this may result in Cloud CDN caching private,
|
|
3728
|
-
# per-user (user identifiable) content.
|
|
3729
|
-
# static content,
|
|
3738
|
+
# per-user (user identifiable) content.
|
|
3739
|
+
# CACHE_ALL_STATIC Automatically cache static content,
|
|
3730
3740
|
# including common image formats, media (video and audio), and web assets
|
|
3731
3741
|
# (JavaScript and CSS). Requests and responses that are marked as
|
|
3732
3742
|
# uncacheable, as well as dynamic content (including HTML), will not be
|
|
@@ -4589,8 +4599,10 @@ module Google
|
|
|
4589
4599
|
# haPolicy requires customers to be responsible for tracking backend
|
|
4590
4600
|
# endpoint health and electing a leader among the healthy endpoints.
|
|
4591
4601
|
# Therefore, haPolicy cannot be specified with healthChecks.
|
|
4592
|
-
# haPolicy can only be specified for External Passthrough
|
|
4593
|
-
# Balancers and Internal Passthrough Network Load Balancers.
|
|
4602
|
+
# haPolicy can only be specified for External Passthrough
|
|
4603
|
+
# Network Load Balancers and Internal Passthrough Network Load Balancers.
|
|
4604
|
+
# haPolicy cannot be used by global external Passthrough Network
|
|
4605
|
+
# Load Balancers.
|
|
4594
4606
|
# Corresponds to the JSON property `haPolicy`
|
|
4595
4607
|
# @return [Google::Apis::ComputeV1::BackendServiceHaPolicy]
|
|
4596
4608
|
attr_accessor :ha_policy
|
|
@@ -4660,8 +4672,8 @@ module Google
|
|
|
4660
4672
|
|
|
4661
4673
|
# Specifies the load balancer type. A backend service
|
|
4662
4674
|
# created for one type of load balancer cannot be used with another.
|
|
4663
|
-
# For more information, refer
|
|
4664
|
-
#
|
|
4675
|
+
# For more information, refer to
|
|
4676
|
+
# Backend services product and scheme table.
|
|
4665
4677
|
# Corresponds to the JSON property `loadBalancingScheme`
|
|
4666
4678
|
# @return [String]
|
|
4667
4679
|
attr_accessor :load_balancing_scheme
|
|
@@ -4709,27 +4721,32 @@ module Google
|
|
|
4709
4721
|
# HTTP response header field Endpoint-Load-Metrics. The reported
|
|
4710
4722
|
# metrics to use for computing the weights are specified via thecustomMetrics
|
|
4711
4723
|
# field.
|
|
4712
|
-
#
|
|
4724
|
+
# - WEIGHTED_MAGLEV: Per-endpoint weighted load balancing via
|
|
4725
|
+
# health check reported weights. If set, the backend service must configure
|
|
4726
|
+
# an HTTP-based Health Check, and health check replies are expected to
|
|
4727
|
+
# contain the non-standard HTTP response header fieldX-Load-Balancing-
|
|
4728
|
+
# Endpoint-Weight to specify the per-endpoint
|
|
4729
|
+
# weights. If set, load balancing is weighted based on the per-endpoint
|
|
4730
|
+
# weights reported in the last processed health check replies, as long as
|
|
4731
|
+
# every instance either reported a valid weight or had UNAVAILABLE_WEIGHT.
|
|
4732
|
+
# Otherwise, load balancing remains equal-weight.
|
|
4713
4733
|
# This field is applicable to either:
|
|
4734
|
+
#
|
|
4714
4735
|
# - A regional backend service with the service protocol set to HTTP,
|
|
4715
4736
|
# HTTPS, HTTP2 or H2C, and load_balancing_scheme set to
|
|
4716
4737
|
# INTERNAL_MANAGED.
|
|
4717
4738
|
# - A global backend service with the
|
|
4718
4739
|
# load_balancing_scheme set to INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or
|
|
4719
4740
|
# EXTERNAL_MANAGED.
|
|
4720
|
-
#
|
|
4721
|
-
#
|
|
4722
4741
|
# If sessionAffinity is not configured—that is, if session
|
|
4723
4742
|
# affinity remains at the default value of NONE—then the
|
|
4724
4743
|
# default value for localityLbPolicy
|
|
4725
4744
|
# is ROUND_ROBIN. If session affinity is set to a value other
|
|
4726
4745
|
# than NONE,
|
|
4727
4746
|
# then the default value for localityLbPolicy isMAGLEV.
|
|
4728
|
-
#
|
|
4729
4747
|
# Only ROUND_ROBIN and RING_HASH are supported
|
|
4730
4748
|
# when the backend service is referenced by a URL map that is bound to
|
|
4731
4749
|
# target gRPC proxy that has validateForProxyless field set to true.
|
|
4732
|
-
#
|
|
4733
4750
|
# localityLbPolicy cannot be specified with haPolicy.
|
|
4734
4751
|
# Corresponds to the JSON property `localityLbPolicy`
|
|
4735
4752
|
# @return [String]
|
|
@@ -4821,12 +4838,12 @@ module Google
|
|
|
4821
4838
|
# @return [String]
|
|
4822
4839
|
attr_accessor :port_name
|
|
4823
4840
|
|
|
4824
|
-
# The protocol this BackendService uses to communicate
|
|
4825
|
-
#
|
|
4826
|
-
#
|
|
4827
|
-
#
|
|
4828
|
-
# Refer to
|
|
4829
|
-
# for more information.
|
|
4841
|
+
# The protocol this BackendService uses to communicate with backends.
|
|
4842
|
+
# Possible values are HTTP, HTTPS, HTTP2, H2C, TCP, SSL, UDP, GRPC, or
|
|
4843
|
+
# UNSPECIFIED, depending on the chosen load balancer or Traffic Director
|
|
4844
|
+
# configuration.
|
|
4845
|
+
# Refer to
|
|
4846
|
+
# Load balancing features for more information.
|
|
4830
4847
|
# Must be set to GRPC when the backend service is referenced by a URL map
|
|
4831
4848
|
# that is bound to target gRPC proxy.
|
|
4832
4849
|
# Corresponds to the JSON property `protocol`
|
|
@@ -5136,16 +5153,17 @@ module Google
|
|
|
5136
5153
|
attr_accessor :cache_key_policy
|
|
5137
5154
|
|
|
5138
5155
|
# Specifies the cache setting for all responses from this backend.
|
|
5139
|
-
# The possible values are:
|
|
5140
|
-
# caching
|
|
5156
|
+
# The possible values are:
|
|
5157
|
+
# USE_ORIGIN_HEADERS Requires the origin to set valid caching
|
|
5141
5158
|
# headers to cache content. Responses without these headers will not be
|
|
5142
5159
|
# cached at Google's edge, and will require a full trip to the origin on
|
|
5143
5160
|
# every request, potentially impacting performance and increasing load on
|
|
5144
|
-
# the origin server.
|
|
5161
|
+
# the origin server.
|
|
5162
|
+
# FORCE_CACHE_ALL Cache all content, ignoring any "private",
|
|
5145
5163
|
# "no-store" or "no-cache" directives in Cache-Control response headers.
|
|
5146
5164
|
# Warning: this may result in Cloud CDN caching private,
|
|
5147
|
-
# per-user (user identifiable) content.
|
|
5148
|
-
# static content,
|
|
5165
|
+
# per-user (user identifiable) content.
|
|
5166
|
+
# CACHE_ALL_STATIC Automatically cache static content,
|
|
5149
5167
|
# including common image formats, media (video and audio), and web assets
|
|
5150
5168
|
# (JavaScript and CSS). Requests and responses that are marked as
|
|
5151
5169
|
# uncacheable, as well as dynamic content (including HTML), will not be
|
|
@@ -6376,6 +6394,39 @@ module Google
|
|
|
6376
6394
|
# @return [String]
|
|
6377
6395
|
attr_accessor :authentication_config
|
|
6378
6396
|
|
|
6397
|
+
# Assigns the Managed Identity for the BackendService Workload.
|
|
6398
|
+
# Use this property to configure the load balancer back-end to use
|
|
6399
|
+
# certificates and roots of trust provisioned by the Managed Workload
|
|
6400
|
+
# Identity system.
|
|
6401
|
+
# The `identity` property is the
|
|
6402
|
+
# fully-specified SPIFFE ID to use in the SVID presented by the Load
|
|
6403
|
+
# Balancer Workload.
|
|
6404
|
+
# The SPIFFE ID must be a resource starting with the
|
|
6405
|
+
# `trustDomain` property value, followed by the path to the Managed
|
|
6406
|
+
# Workload Identity.
|
|
6407
|
+
# Supported SPIFFE ID format:
|
|
6408
|
+
#
|
|
6409
|
+
# - //<trust_domain>/ns/<namespace>/sa/<subject>
|
|
6410
|
+
# The Trust Domain within the Managed Identity must refer to a valid
|
|
6411
|
+
# Workload Identity Pool. The TrustConfig and CertificateIssuanceConfig
|
|
6412
|
+
# will be inherited from the Workload Identity Pool.
|
|
6413
|
+
# Restrictions:
|
|
6414
|
+
#
|
|
6415
|
+
# - If you set the `identity` property, you cannot manually set
|
|
6416
|
+
# the following fields:
|
|
6417
|
+
# - tlsSettings.sni
|
|
6418
|
+
# - tlsSettings.subjectAltNames
|
|
6419
|
+
# - tlsSettings.authenticationConfig
|
|
6420
|
+
#
|
|
6421
|
+
# When defining a `identity` for a RegionBackendServices, the
|
|
6422
|
+
# corresponding Workload Identity Pool must have a ca_pool
|
|
6423
|
+
# configured in the same region.
|
|
6424
|
+
# The system will set up a read-onlytlsSettings.authenticationConfig for the
|
|
6425
|
+
# Managed Identity.
|
|
6426
|
+
# Corresponds to the JSON property `identity`
|
|
6427
|
+
# @return [String]
|
|
6428
|
+
attr_accessor :identity
|
|
6429
|
+
|
|
6379
6430
|
# Server Name Indication - see RFC3546 section 3.1. If set, the load
|
|
6380
6431
|
# balancer sends this string as the SNI hostname in the TLS connection to
|
|
6381
6432
|
# the backend, and requires that this string match a Subject Alternative
|
|
@@ -6407,6 +6458,7 @@ module Google
|
|
|
6407
6458
|
# Update properties of this object
|
|
6408
6459
|
def update!(**args)
|
|
6409
6460
|
@authentication_config = args[:authentication_config] if args.key?(:authentication_config)
|
|
6461
|
+
@identity = args[:identity] if args.key?(:identity)
|
|
6410
6462
|
@sni = args[:sni] if args.key?(:sni)
|
|
6411
6463
|
@subject_alt_names = args[:subject_alt_names] if args.key?(:subject_alt_names)
|
|
6412
6464
|
end
|
|
@@ -13690,6 +13742,7 @@ module Google
|
|
|
13690
13742
|
# - regions/region/addresses/address-name
|
|
13691
13743
|
# - global/addresses/address-name
|
|
13692
13744
|
# - address-name
|
|
13745
|
+
# The IP address can only be set at creation. Once set, it cannot be updated.
|
|
13693
13746
|
# The forwarding rule's target or backendService,
|
|
13694
13747
|
# and in most cases, also the loadBalancingScheme, determine the
|
|
13695
13748
|
# type of IP address that you can use. For detailed information, see
|
|
@@ -13698,6 +13751,11 @@ module Google
|
|
|
13698
13751
|
# concepts#ip_address_specifications).
|
|
13699
13752
|
# When reading an IPAddress, the API always returns the IP
|
|
13700
13753
|
# address number.
|
|
13754
|
+
# When creating a global external Passthrough Network Load Balancer
|
|
13755
|
+
# forwarding rule (a parent forwarding rule), you must use theIPAddresses field,
|
|
13756
|
+
# but the Google Cloud generated child
|
|
13757
|
+
# forwarding rules set the IPAddress field instead. Refer to
|
|
13758
|
+
# theavailabilityGroup field for further details.
|
|
13701
13759
|
# Corresponds to the JSON property `IPAddress`
|
|
13702
13760
|
# @return [String]
|
|
13703
13761
|
attr_accessor :ip_address
|
|
@@ -13759,8 +13817,14 @@ module Google
|
|
|
13759
13817
|
attr_accessor :attached_extensions
|
|
13760
13818
|
|
|
13761
13819
|
# Identifies the backend service to which the forwarding rule sends traffic.
|
|
13762
|
-
#
|
|
13763
|
-
#
|
|
13820
|
+
# It is a required field for the following load balancers:
|
|
13821
|
+
#
|
|
13822
|
+
# - Internal passthrough Network Load Balancers
|
|
13823
|
+
# - Backend service-based regional external passthrough Network Load
|
|
13824
|
+
# Balancers
|
|
13825
|
+
# - Global external passthrough Network Load Balancers
|
|
13826
|
+
# It cannot be set by other load balancer types and protocol forwarding
|
|
13827
|
+
# rules.
|
|
13764
13828
|
# Corresponds to the JSON property `backendService`
|
|
13765
13829
|
# @return [String]
|
|
13766
13830
|
attr_accessor :backend_service
|
|
@@ -13892,8 +13956,8 @@ module Google
|
|
|
13892
13956
|
attr_accessor :labels
|
|
13893
13957
|
|
|
13894
13958
|
# Specifies the forwarding rule type.
|
|
13895
|
-
# For more information
|
|
13896
|
-
# Forwarding rule
|
|
13959
|
+
# For more information, refer to
|
|
13960
|
+
# Forwarding rule product and scheme table.
|
|
13897
13961
|
# Corresponds to the JSON property `loadBalancingScheme`
|
|
13898
13962
|
# @return [String]
|
|
13899
13963
|
attr_accessor :load_balancing_scheme
|
|
@@ -13933,6 +13997,13 @@ module Google
|
|
|
13933
13997
|
# For Private Service Connect forwarding rules that forward traffic to Google
|
|
13934
13998
|
# APIs, the forwarding rule name must be a 1-20 characters string with
|
|
13935
13999
|
# lowercase letters and numbers and must start with a letter.
|
|
14000
|
+
# For global external Passthrough Network Load Balancer forwarding rules, the
|
|
14001
|
+
# forwarding rule name must be 1-43 characters long. For each global external
|
|
14002
|
+
# Passthrough Network Load Balancer forwarding rule (a parent forwarding
|
|
14003
|
+
# rule) that you create, Google Cloud generates two output-only child
|
|
14004
|
+
# forwarding rules that are named by concatenating the parent forwarding rule
|
|
14005
|
+
# name with the `-ag0` and `-ag1` suffixes, respectively. Refer to
|
|
14006
|
+
# theavailabilityGroup field for further details.
|
|
13936
14007
|
# Corresponds to the JSON property `name`
|
|
13937
14008
|
# @return [String]
|
|
13938
14009
|
attr_accessor :name
|
|
@@ -13984,7 +14055,9 @@ module Google
|
|
|
13984
14055
|
# - Some products have restrictions on what ports can be used. See
|
|
13985
14056
|
# port specifications for details.
|
|
13986
14057
|
# For external forwarding rules, two or more forwarding rules cannot use the
|
|
13987
|
-
# same [IPAddress, IPProtocol] pair
|
|
14058
|
+
# same [IPAddress, IPProtocol] pair (specified inIPAddress, IPAddresses,
|
|
14059
|
+
# IPProtocol
|
|
14060
|
+
# fields) if they have overlapping portRanges.
|
|
13988
14061
|
# For internal forwarding rules within the same VPC network, two or more
|
|
13989
14062
|
# forwarding rules cannot use the same [IPAddress, IPProtocol]
|
|
13990
14063
|
# pair, and cannot have overlapping portRanges.
|
|
@@ -14007,8 +14080,9 @@ module Google
|
|
|
14007
14080
|
# - You can specify a list of up to five ports by number, separated by
|
|
14008
14081
|
# commas. The ports can be contiguous or discontiguous.
|
|
14009
14082
|
# For external forwarding rules, two or more forwarding rules cannot use the
|
|
14010
|
-
# same [IPAddress, IPProtocol] pair
|
|
14011
|
-
#
|
|
14083
|
+
# same [IPAddress, IPProtocol] pair (specified inIPAddress, IPAddresses,
|
|
14084
|
+
# IPProtocol
|
|
14085
|
+
# fields) if they share at least one port number.
|
|
14012
14086
|
# For internal forwarding rules within the same VPC network, two or more
|
|
14013
14087
|
# forwarding rules cannot use the same [IPAddress, IPProtocol]
|
|
14014
14088
|
# pair if they share at least one port number.
|
|
@@ -14116,6 +14190,13 @@ module Google
|
|
|
14116
14190
|
# - For Private Service Connect forwarding rules that forward traffic to
|
|
14117
14191
|
# managed services, the target must be a service attachment. The target is not
|
|
14118
14192
|
# mutable once set as a service attachment.
|
|
14193
|
+
# The following load balancers cannot set the target field (they should set the
|
|
14194
|
+
# backendService field instead):
|
|
14195
|
+
#
|
|
14196
|
+
# - Internal passthrough Network Load Balancers
|
|
14197
|
+
# - Backend service-based regional external passthrough Network Load
|
|
14198
|
+
# Balancers
|
|
14199
|
+
# - Global external passthrough Network Load Balancers
|
|
14119
14200
|
# Corresponds to the JSON property `target`
|
|
14120
14201
|
# @return [String]
|
|
14121
14202
|
attr_accessor :target
|
|
@@ -14731,6 +14812,13 @@ module Google
|
|
|
14731
14812
|
# @return [Google::Apis::ComputeV1::ResourceMetadata]
|
|
14732
14813
|
attr_accessor :resource_metadata
|
|
14733
14814
|
|
|
14815
|
+
# Name of the resource intended to be delivered. Name should conform to
|
|
14816
|
+
# RFC1035. This will be the name of storage pool or Exapool for persistent
|
|
14817
|
+
# disk FRs.
|
|
14818
|
+
# Corresponds to the JSON property `resourceName`
|
|
14819
|
+
# @return [String]
|
|
14820
|
+
attr_accessor :resource_name
|
|
14821
|
+
|
|
14734
14822
|
# Maintenance information for this reservation
|
|
14735
14823
|
# Corresponds to the JSON property `schedulingType`
|
|
14736
14824
|
# @return [String]
|
|
@@ -14772,6 +14860,11 @@ module Google
|
|
|
14772
14860
|
# @return [Google::Apis::ComputeV1::FutureReservationStatus]
|
|
14773
14861
|
attr_accessor :status
|
|
14774
14862
|
|
|
14863
|
+
# Storage pool properties for the future reservation.
|
|
14864
|
+
# Corresponds to the JSON property `storagePoolProperties`
|
|
14865
|
+
# @return [Google::Apis::ComputeV1::FutureReservationStoragePoolProperties]
|
|
14866
|
+
attr_accessor :storage_pool_properties
|
|
14867
|
+
|
|
14775
14868
|
# Time window for this Future Reservation.
|
|
14776
14869
|
# Corresponds to the JSON property `timeWindow`
|
|
14777
14870
|
# @return [Google::Apis::ComputeV1::FutureReservationTimeWindow]
|
|
@@ -14808,6 +14901,7 @@ module Google
|
|
|
14808
14901
|
@reservation_mode = args[:reservation_mode] if args.key?(:reservation_mode)
|
|
14809
14902
|
@reservation_name = args[:reservation_name] if args.key?(:reservation_name)
|
|
14810
14903
|
@resource_metadata = args[:resource_metadata] if args.key?(:resource_metadata)
|
|
14904
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
14811
14905
|
@scheduling_type = args[:scheduling_type] if args.key?(:scheduling_type)
|
|
14812
14906
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
14813
14907
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
@@ -14815,6 +14909,7 @@ module Google
|
|
|
14815
14909
|
@specific_reservation_required = args[:specific_reservation_required] if args.key?(:specific_reservation_required)
|
|
14816
14910
|
@specific_sku_properties = args[:specific_sku_properties] if args.key?(:specific_sku_properties)
|
|
14817
14911
|
@status = args[:status] if args.key?(:status)
|
|
14912
|
+
@storage_pool_properties = args[:storage_pool_properties] if args.key?(:storage_pool_properties)
|
|
14818
14913
|
@time_window = args[:time_window] if args.key?(:time_window)
|
|
14819
14914
|
@zone = args[:zone] if args.key?(:zone)
|
|
14820
14915
|
end
|
|
@@ -14930,6 +15025,11 @@ module Google
|
|
|
14930
15025
|
# @return [Array<String>]
|
|
14931
15026
|
attr_accessor :auto_created_reservations
|
|
14932
15027
|
|
|
15028
|
+
# Exapool provisioned capacities for each SKU type
|
|
15029
|
+
# Corresponds to the JSON property `exapoolProvisionedCapacityGb`
|
|
15030
|
+
# @return [Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb]
|
|
15031
|
+
attr_accessor :exapool_provisioned_capacity_gb
|
|
15032
|
+
|
|
14933
15033
|
# [Output Only] Represents the existing matching usage for the future
|
|
14934
15034
|
# reservation.
|
|
14935
15035
|
# Corresponds to the JSON property `existingMatchingUsageInfo`
|
|
@@ -14969,6 +15069,11 @@ module Google
|
|
|
14969
15069
|
# @return [Google::Apis::ComputeV1::FutureReservationStatusSpecificSkuProperties]
|
|
14970
15070
|
attr_accessor :specific_sku_properties
|
|
14971
15071
|
|
|
15072
|
+
# Storage pool provisioned capacities for each SKU type.
|
|
15073
|
+
# Corresponds to the JSON property `storagePoolProvisionedCapacity`
|
|
15074
|
+
# @return [Google::Apis::ComputeV1::FutureReservationStoragePoolProvisionedCapacity]
|
|
15075
|
+
attr_accessor :storage_pool_provisioned_capacity
|
|
15076
|
+
|
|
14972
15077
|
def initialize(**args)
|
|
14973
15078
|
update!(**args)
|
|
14974
15079
|
end
|
|
@@ -14977,12 +15082,14 @@ module Google
|
|
|
14977
15082
|
def update!(**args)
|
|
14978
15083
|
@amendment_status = args[:amendment_status] if args.key?(:amendment_status)
|
|
14979
15084
|
@auto_created_reservations = args[:auto_created_reservations] if args.key?(:auto_created_reservations)
|
|
15085
|
+
@exapool_provisioned_capacity_gb = args[:exapool_provisioned_capacity_gb] if args.key?(:exapool_provisioned_capacity_gb)
|
|
14980
15086
|
@existing_matching_usage_info = args[:existing_matching_usage_info] if args.key?(:existing_matching_usage_info)
|
|
14981
15087
|
@fulfilled_count = args[:fulfilled_count] if args.key?(:fulfilled_count)
|
|
14982
15088
|
@last_known_good_state = args[:last_known_good_state] if args.key?(:last_known_good_state)
|
|
14983
15089
|
@lock_time = args[:lock_time] if args.key?(:lock_time)
|
|
14984
15090
|
@procurement_status = args[:procurement_status] if args.key?(:procurement_status)
|
|
14985
15091
|
@specific_sku_properties = args[:specific_sku_properties] if args.key?(:specific_sku_properties)
|
|
15092
|
+
@storage_pool_provisioned_capacity = args[:storage_pool_provisioned_capacity] if args.key?(:storage_pool_provisioned_capacity)
|
|
14986
15093
|
end
|
|
14987
15094
|
end
|
|
14988
15095
|
|
|
@@ -15121,6 +15228,70 @@ module Google
|
|
|
15121
15228
|
end
|
|
15122
15229
|
end
|
|
15123
15230
|
|
|
15231
|
+
# Storage pool properties for the future reservation.
|
|
15232
|
+
class FutureReservationStoragePoolProperties
|
|
15233
|
+
include Google::Apis::Core::Hashable
|
|
15234
|
+
|
|
15235
|
+
# Exapool provisioned capacities for each SKU type
|
|
15236
|
+
# Corresponds to the JSON property `requestedExapoolProvisionedCapacityGb`
|
|
15237
|
+
# @return [Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb]
|
|
15238
|
+
attr_accessor :requested_exapool_provisioned_capacity_gb
|
|
15239
|
+
|
|
15240
|
+
# Storage pool provisioned capacities for each SKU type.
|
|
15241
|
+
# Corresponds to the JSON property `requestedStoragePoolProvisionedCapacity`
|
|
15242
|
+
# @return [Google::Apis::ComputeV1::FutureReservationStoragePoolProvisionedCapacity]
|
|
15243
|
+
attr_accessor :requested_storage_pool_provisioned_capacity
|
|
15244
|
+
|
|
15245
|
+
# Type of the storage pool.
|
|
15246
|
+
# Corresponds to the JSON property `storagePoolType`
|
|
15247
|
+
# @return [String]
|
|
15248
|
+
attr_accessor :storage_pool_type
|
|
15249
|
+
|
|
15250
|
+
def initialize(**args)
|
|
15251
|
+
update!(**args)
|
|
15252
|
+
end
|
|
15253
|
+
|
|
15254
|
+
# Update properties of this object
|
|
15255
|
+
def update!(**args)
|
|
15256
|
+
@requested_exapool_provisioned_capacity_gb = args[:requested_exapool_provisioned_capacity_gb] if args.key?(:requested_exapool_provisioned_capacity_gb)
|
|
15257
|
+
@requested_storage_pool_provisioned_capacity = args[:requested_storage_pool_provisioned_capacity] if args.key?(:requested_storage_pool_provisioned_capacity)
|
|
15258
|
+
@storage_pool_type = args[:storage_pool_type] if args.key?(:storage_pool_type)
|
|
15259
|
+
end
|
|
15260
|
+
end
|
|
15261
|
+
|
|
15262
|
+
# Storage pool provisioned capacities for each SKU type.
|
|
15263
|
+
class FutureReservationStoragePoolProvisionedCapacity
|
|
15264
|
+
include Google::Apis::Core::Hashable
|
|
15265
|
+
|
|
15266
|
+
# Size of the storage pool in GiB.
|
|
15267
|
+
# Corresponds to the JSON property `poolProvisionedCapacityGb`
|
|
15268
|
+
# @return [Fixnum]
|
|
15269
|
+
attr_accessor :pool_provisioned_capacity_gb
|
|
15270
|
+
|
|
15271
|
+
# Provisioned IOPS of the storage pool. Only relevant if the storage pool
|
|
15272
|
+
# type is hyperdisk-balanced.
|
|
15273
|
+
# Corresponds to the JSON property `poolProvisionedIops`
|
|
15274
|
+
# @return [Fixnum]
|
|
15275
|
+
attr_accessor :pool_provisioned_iops
|
|
15276
|
+
|
|
15277
|
+
# Provisioned throughput of the storage pool in MiB/s. Only relevant if
|
|
15278
|
+
# the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
|
|
15279
|
+
# Corresponds to the JSON property `poolProvisionedThroughput`
|
|
15280
|
+
# @return [Fixnum]
|
|
15281
|
+
attr_accessor :pool_provisioned_throughput
|
|
15282
|
+
|
|
15283
|
+
def initialize(**args)
|
|
15284
|
+
update!(**args)
|
|
15285
|
+
end
|
|
15286
|
+
|
|
15287
|
+
# Update properties of this object
|
|
15288
|
+
def update!(**args)
|
|
15289
|
+
@pool_provisioned_capacity_gb = args[:pool_provisioned_capacity_gb] if args.key?(:pool_provisioned_capacity_gb)
|
|
15290
|
+
@pool_provisioned_iops = args[:pool_provisioned_iops] if args.key?(:pool_provisioned_iops)
|
|
15291
|
+
@pool_provisioned_throughput = args[:pool_provisioned_throughput] if args.key?(:pool_provisioned_throughput)
|
|
15292
|
+
end
|
|
15293
|
+
end
|
|
15294
|
+
|
|
15124
15295
|
#
|
|
15125
15296
|
class FutureReservationTimeWindow
|
|
15126
15297
|
include Google::Apis::Core::Hashable
|
|
@@ -15940,6 +16111,68 @@ module Google
|
|
|
15940
16111
|
end
|
|
15941
16112
|
end
|
|
15942
16113
|
|
|
16114
|
+
# Metadata for GetHealth operations.
|
|
16115
|
+
class GetHealthOperationMetadata
|
|
16116
|
+
include Google::Apis::Core::Hashable
|
|
16117
|
+
|
|
16118
|
+
# Health information.
|
|
16119
|
+
# Corresponds to the JSON property `healthInfo`
|
|
16120
|
+
# @return [Google::Apis::ComputeV1::GetHealthOperationMetadataHealthInfo]
|
|
16121
|
+
attr_accessor :health_info
|
|
16122
|
+
|
|
16123
|
+
def initialize(**args)
|
|
16124
|
+
update!(**args)
|
|
16125
|
+
end
|
|
16126
|
+
|
|
16127
|
+
# Update properties of this object
|
|
16128
|
+
def update!(**args)
|
|
16129
|
+
@health_info = args[:health_info] if args.key?(:health_info)
|
|
16130
|
+
end
|
|
16131
|
+
end
|
|
16132
|
+
|
|
16133
|
+
# Health information.
|
|
16134
|
+
class GetHealthOperationMetadataHealthInfo
|
|
16135
|
+
include Google::Apis::Core::Hashable
|
|
16136
|
+
|
|
16137
|
+
# Output only. The availability SLO status.
|
|
16138
|
+
# Corresponds to the JSON property `availabilitySloStatus`
|
|
16139
|
+
# @return [String]
|
|
16140
|
+
attr_accessor :availability_slo_status
|
|
16141
|
+
|
|
16142
|
+
# Output only. The health status.
|
|
16143
|
+
# Corresponds to the JSON property `healthStatus`
|
|
16144
|
+
# @return [String]
|
|
16145
|
+
attr_accessor :health_status
|
|
16146
|
+
|
|
16147
|
+
# Output only. The repair category.
|
|
16148
|
+
# Corresponds to the JSON property `repairCategory`
|
|
16149
|
+
# @return [String]
|
|
16150
|
+
attr_accessor :repair_category
|
|
16151
|
+
|
|
16152
|
+
# Output only. The reason for unhealthy status.
|
|
16153
|
+
# Corresponds to the JSON property `unhealthyReason`
|
|
16154
|
+
# @return [String]
|
|
16155
|
+
attr_accessor :unhealthy_reason
|
|
16156
|
+
|
|
16157
|
+
# Output only. The time when health info was updated.
|
|
16158
|
+
# Corresponds to the JSON property `updateTime`
|
|
16159
|
+
# @return [String]
|
|
16160
|
+
attr_accessor :update_time
|
|
16161
|
+
|
|
16162
|
+
def initialize(**args)
|
|
16163
|
+
update!(**args)
|
|
16164
|
+
end
|
|
16165
|
+
|
|
16166
|
+
# Update properties of this object
|
|
16167
|
+
def update!(**args)
|
|
16168
|
+
@availability_slo_status = args[:availability_slo_status] if args.key?(:availability_slo_status)
|
|
16169
|
+
@health_status = args[:health_status] if args.key?(:health_status)
|
|
16170
|
+
@repair_category = args[:repair_category] if args.key?(:repair_category)
|
|
16171
|
+
@unhealthy_reason = args[:unhealthy_reason] if args.key?(:unhealthy_reason)
|
|
16172
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
16173
|
+
end
|
|
16174
|
+
end
|
|
16175
|
+
|
|
15943
16176
|
#
|
|
15944
16177
|
class GetVersionOperationMetadata
|
|
15945
16178
|
include Google::Apis::Core::Hashable
|
|
@@ -16976,6 +17209,7 @@ module Google
|
|
|
16976
17209
|
# - IDPF
|
|
16977
17210
|
# - SNP_SVSM_CAPABLE
|
|
16978
17211
|
# - CCA_CAPABLE
|
|
17212
|
+
# - SUSPEND_SAFE_FPR
|
|
16979
17213
|
# For more information, see
|
|
16980
17214
|
# Enabling guest operating system features.
|
|
16981
17215
|
# Corresponds to the JSON property `type`
|
|
@@ -22483,6 +22717,12 @@ module Google
|
|
|
22483
22717
|
# @return [Array<String>]
|
|
22484
22718
|
attr_accessor :machine_types
|
|
22485
22719
|
|
|
22720
|
+
# Name of the minimum CPU platform to be used by this instance selection.
|
|
22721
|
+
# e.g. 'Intel Ice Lake'.
|
|
22722
|
+
# Corresponds to the JSON property `minCpuPlatform`
|
|
22723
|
+
# @return [String]
|
|
22724
|
+
attr_accessor :min_cpu_platform
|
|
22725
|
+
|
|
22486
22726
|
# Rank when prioritizing the shape flexibilities.
|
|
22487
22727
|
# The instance selections with rank are considered
|
|
22488
22728
|
# first, in the ascending order of the rank.
|
|
@@ -22499,6 +22739,7 @@ module Google
|
|
|
22499
22739
|
def update!(**args)
|
|
22500
22740
|
@disks = args[:disks] if args.key?(:disks)
|
|
22501
22741
|
@machine_types = args[:machine_types] if args.key?(:machine_types)
|
|
22742
|
+
@min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
|
|
22502
22743
|
@rank = args[:rank] if args.key?(:rank)
|
|
22503
22744
|
end
|
|
22504
22745
|
end
|
|
@@ -28917,6 +29158,11 @@ module Google
|
|
|
28917
29158
|
# @return [String]
|
|
28918
29159
|
attr_accessor :self_link
|
|
28919
29160
|
|
|
29161
|
+
# Output only. Server-defined URL for this resource with the resource id.
|
|
29162
|
+
# Corresponds to the JSON property `selfLinkWithId`
|
|
29163
|
+
# @return [String]
|
|
29164
|
+
attr_accessor :self_link_with_id
|
|
29165
|
+
|
|
28920
29166
|
# Output only. [Output Only] The current state of Interconnect functionality,
|
|
28921
29167
|
# which can
|
|
28922
29168
|
# take one of the following values:
|
|
@@ -28985,6 +29231,7 @@ module Google
|
|
|
28985
29231
|
@requested_link_count = args[:requested_link_count] if args.key?(:requested_link_count)
|
|
28986
29232
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
28987
29233
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
29234
|
+
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
28988
29235
|
@state = args[:state] if args.key?(:state)
|
|
28989
29236
|
@subzone = args[:subzone] if args.key?(:subzone)
|
|
28990
29237
|
@wire_groups = args[:wire_groups] if args.key?(:wire_groups)
|
|
@@ -32296,6 +32543,19 @@ module Google
|
|
|
32296
32543
|
# @return [String]
|
|
32297
32544
|
attr_accessor :city
|
|
32298
32545
|
|
|
32546
|
+
# Output only. The maximum unmetered bandwidth for dynamic paths allowable per
|
|
32547
|
+
# WireGroup for this metro.
|
|
32548
|
+
# Corresponds to the JSON property `maxDynamicPathBandwidthGbps`
|
|
32549
|
+
# @return [Fixnum]
|
|
32550
|
+
attr_accessor :max_dynamic_path_bandwidth_gbps
|
|
32551
|
+
|
|
32552
|
+
# Output only. The maximum unmetered bandwidth for fixed paths allowable per
|
|
32553
|
+
# WireGroup
|
|
32554
|
+
# for this metro.
|
|
32555
|
+
# Corresponds to the JSON property `maxFixedPathBandwidthGbps`
|
|
32556
|
+
# @return [Fixnum]
|
|
32557
|
+
attr_accessor :max_fixed_path_bandwidth_gbps
|
|
32558
|
+
|
|
32299
32559
|
def initialize(**args)
|
|
32300
32560
|
update!(**args)
|
|
32301
32561
|
end
|
|
@@ -32303,6 +32563,8 @@ module Google
|
|
|
32303
32563
|
# Update properties of this object
|
|
32304
32564
|
def update!(**args)
|
|
32305
32565
|
@city = args[:city] if args.key?(:city)
|
|
32566
|
+
@max_dynamic_path_bandwidth_gbps = args[:max_dynamic_path_bandwidth_gbps] if args.key?(:max_dynamic_path_bandwidth_gbps)
|
|
32567
|
+
@max_fixed_path_bandwidth_gbps = args[:max_fixed_path_bandwidth_gbps] if args.key?(:max_fixed_path_bandwidth_gbps)
|
|
32306
32568
|
end
|
|
32307
32569
|
end
|
|
32308
32570
|
|
|
@@ -35023,6 +35285,13 @@ module Google
|
|
|
35023
35285
|
# @return [Google::Apis::ComputeV1::ManagedInstanceShutdownDetails]
|
|
35024
35286
|
attr_accessor :shutdown_details
|
|
35025
35287
|
|
|
35288
|
+
# Output only. The eventual status of the instance. The instance group
|
|
35289
|
+
# manager will not be identified as stable till each managed instance reaches
|
|
35290
|
+
# its targetStatus.
|
|
35291
|
+
# Corresponds to the JSON property `targetStatus`
|
|
35292
|
+
# @return [String]
|
|
35293
|
+
attr_accessor :target_status
|
|
35294
|
+
|
|
35026
35295
|
# Output only. [Output Only] Intended version of this instance.
|
|
35027
35296
|
# Corresponds to the JSON property `version`
|
|
35028
35297
|
# @return [Google::Apis::ComputeV1::ManagedInstanceVersion]
|
|
@@ -35046,6 +35315,7 @@ module Google
|
|
|
35046
35315
|
@properties_from_flexibility_policy = args[:properties_from_flexibility_policy] if args.key?(:properties_from_flexibility_policy)
|
|
35047
35316
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
|
35048
35317
|
@shutdown_details = args[:shutdown_details] if args.key?(:shutdown_details)
|
|
35318
|
+
@target_status = args[:target_status] if args.key?(:target_status)
|
|
35049
35319
|
@version = args[:version] if args.key?(:version)
|
|
35050
35320
|
end
|
|
35051
35321
|
end
|
|
@@ -41733,6 +42003,11 @@ module Google
|
|
|
41733
42003
|
# @return [Google::Apis::ComputeV1::Operation::Error]
|
|
41734
42004
|
attr_accessor :error
|
|
41735
42005
|
|
|
42006
|
+
# Metadata for GetHealth operations.
|
|
42007
|
+
# Corresponds to the JSON property `getHealthOperationMetadata`
|
|
42008
|
+
# @return [Google::Apis::ComputeV1::GetHealthOperationMetadata]
|
|
42009
|
+
attr_accessor :get_health_operation_metadata
|
|
42010
|
+
|
|
41736
42011
|
#
|
|
41737
42012
|
# Corresponds to the JSON property `getVersionOperationMetadata`
|
|
41738
42013
|
# @return [Google::Apis::ComputeV1::GetVersionOperationMetadata]
|
|
@@ -41885,6 +42160,7 @@ module Google
|
|
|
41885
42160
|
@description = args[:description] if args.key?(:description)
|
|
41886
42161
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
41887
42162
|
@error = args[:error] if args.key?(:error)
|
|
42163
|
+
@get_health_operation_metadata = args[:get_health_operation_metadata] if args.key?(:get_health_operation_metadata)
|
|
41888
42164
|
@get_version_operation_metadata = args[:get_version_operation_metadata] if args.key?(:get_version_operation_metadata)
|
|
41889
42165
|
@http_error_message = args[:http_error_message] if args.key?(:http_error_message)
|
|
41890
42166
|
@http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
|
|
@@ -45553,6 +45829,56 @@ module Google
|
|
|
45553
45829
|
end
|
|
45554
45830
|
end
|
|
45555
45831
|
|
|
45832
|
+
# The spec for modifying the path using a regular expression.
|
|
45833
|
+
class RegexRewrite
|
|
45834
|
+
include Google::Apis::Core::Hashable
|
|
45835
|
+
|
|
45836
|
+
# Required. The regular expression used to match against the URL path.
|
|
45837
|
+
# It uses RE2 syntax with the following constraints:
|
|
45838
|
+
#
|
|
45839
|
+
#
|
|
45840
|
+
# - Any single character operators
|
|
45841
|
+
# - Groups are allowed to have only submatch operator inside
|
|
45842
|
+
# - Groups are allowed only without any char repetition, e.g.
|
|
45843
|
+
# .*
|
|
45844
|
+
# - Any char repetition, e.g. .*, is
|
|
45845
|
+
# only allowed to be used in a single regex together with:
|
|
45846
|
+
#
|
|
45847
|
+
#
|
|
45848
|
+
# - Empty string operators
|
|
45849
|
+
# - Other repetitions
|
|
45850
|
+
# - Ranges
|
|
45851
|
+
# - Repetitions of ranges
|
|
45852
|
+
#
|
|
45853
|
+
#
|
|
45854
|
+
# - Ranges are only allowed to have:
|
|
45855
|
+
#
|
|
45856
|
+
#
|
|
45857
|
+
# - Character range
|
|
45858
|
+
# - Digits range
|
|
45859
|
+
# - Symbols listed in characters allowed for ranges
|
|
45860
|
+
# Corresponds to the JSON property `pathPattern`
|
|
45861
|
+
# @return [String]
|
|
45862
|
+
attr_accessor :path_pattern
|
|
45863
|
+
|
|
45864
|
+
# Required. Required when path pattern is specified. Used to rewrite matching
|
|
45865
|
+
# parts of
|
|
45866
|
+
# the path.
|
|
45867
|
+
# Corresponds to the JSON property `pathSubstitution`
|
|
45868
|
+
# @return [String]
|
|
45869
|
+
attr_accessor :path_substitution
|
|
45870
|
+
|
|
45871
|
+
def initialize(**args)
|
|
45872
|
+
update!(**args)
|
|
45873
|
+
end
|
|
45874
|
+
|
|
45875
|
+
# Update properties of this object
|
|
45876
|
+
def update!(**args)
|
|
45877
|
+
@path_pattern = args[:path_pattern] if args.key?(:path_pattern)
|
|
45878
|
+
@path_substitution = args[:path_substitution] if args.key?(:path_substitution)
|
|
45879
|
+
end
|
|
45880
|
+
end
|
|
45881
|
+
|
|
45556
45882
|
# Represents a Region resource.
|
|
45557
45883
|
# A region is a geographical area where a resource is located. For more
|
|
45558
45884
|
# information, readRegions
|
|
@@ -65181,7 +65507,8 @@ module Google
|
|
|
65181
65507
|
# The server-defined URL for the resource. This field is applicable only when
|
|
65182
65508
|
# the containing target pool is serving a forwarding rule as the primary
|
|
65183
65509
|
# pool, and its failoverRatio field is properly set to a value
|
|
65184
|
-
# between [0, 1].
|
|
65510
|
+
# between [0, 1].
|
|
65511
|
+
# backupPool and failoverRatio together define
|
|
65185
65512
|
# the fallback behavior of the primary target pool: if the ratio of the
|
|
65186
65513
|
# healthy instances in the primary pool is at or belowfailoverRatio, traffic
|
|
65187
65514
|
# arriving at the load-balanced
|
|
@@ -68174,6 +68501,11 @@ module Google
|
|
|
68174
68501
|
# @return [String]
|
|
68175
68502
|
attr_accessor :path_template_rewrite
|
|
68176
68503
|
|
|
68504
|
+
# The spec for modifying the path using a regular expression.
|
|
68505
|
+
# Corresponds to the JSON property `regexRewrite`
|
|
68506
|
+
# @return [Google::Apis::ComputeV1::RegexRewrite]
|
|
68507
|
+
attr_accessor :regex_rewrite
|
|
68508
|
+
|
|
68177
68509
|
def initialize(**args)
|
|
68178
68510
|
update!(**args)
|
|
68179
68511
|
end
|
|
@@ -68183,6 +68515,7 @@ module Google
|
|
|
68183
68515
|
@host_rewrite = args[:host_rewrite] if args.key?(:host_rewrite)
|
|
68184
68516
|
@path_prefix_rewrite = args[:path_prefix_rewrite] if args.key?(:path_prefix_rewrite)
|
|
68185
68517
|
@path_template_rewrite = args[:path_template_rewrite] if args.key?(:path_template_rewrite)
|
|
68518
|
+
@regex_rewrite = args[:regex_rewrite] if args.key?(:regex_rewrite)
|
|
68186
68519
|
end
|
|
68187
68520
|
end
|
|
68188
68521
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ComputeV1
|
|
18
18
|
# Version of the google-apis-compute_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.154.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 = "20260821"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -1684,6 +1684,18 @@ module Google
|
|
|
1684
1684
|
include Google::Apis::Core::JsonObjectSupport
|
|
1685
1685
|
end
|
|
1686
1686
|
|
|
1687
|
+
class FutureReservationStoragePoolProperties
|
|
1688
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1689
|
+
|
|
1690
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1691
|
+
end
|
|
1692
|
+
|
|
1693
|
+
class FutureReservationStoragePoolProvisionedCapacity
|
|
1694
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1695
|
+
|
|
1696
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1697
|
+
end
|
|
1698
|
+
|
|
1687
1699
|
class FutureReservationTimeWindow
|
|
1688
1700
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1689
1701
|
|
|
@@ -1810,6 +1822,18 @@ module Google
|
|
|
1810
1822
|
include Google::Apis::Core::JsonObjectSupport
|
|
1811
1823
|
end
|
|
1812
1824
|
|
|
1825
|
+
class GetHealthOperationMetadata
|
|
1826
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1827
|
+
|
|
1828
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1829
|
+
end
|
|
1830
|
+
|
|
1831
|
+
class GetHealthOperationMetadataHealthInfo
|
|
1832
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1833
|
+
|
|
1834
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1835
|
+
end
|
|
1836
|
+
|
|
1813
1837
|
class GetVersionOperationMetadata
|
|
1814
1838
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1815
1839
|
|
|
@@ -5500,6 +5524,12 @@ module Google
|
|
|
5500
5524
|
include Google::Apis::Core::JsonObjectSupport
|
|
5501
5525
|
end
|
|
5502
5526
|
|
|
5527
|
+
class RegexRewrite
|
|
5528
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
5529
|
+
|
|
5530
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
5531
|
+
end
|
|
5532
|
+
|
|
5503
5533
|
class Region
|
|
5504
5534
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
5505
5535
|
|
|
@@ -10272,6 +10302,7 @@ module Google
|
|
|
10272
10302
|
# @private
|
|
10273
10303
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10274
10304
|
property :authentication_config, as: 'authenticationConfig'
|
|
10305
|
+
property :identity, as: 'identity'
|
|
10275
10306
|
property :sni, as: 'sni'
|
|
10276
10307
|
collection :subject_alt_names, as: 'subjectAltNames', class: Google::Apis::ComputeV1::BackendServiceTlsSettingsSubjectAltName, decorator: Google::Apis::ComputeV1::BackendServiceTlsSettingsSubjectAltName::Representation
|
|
10277
10308
|
|
|
@@ -12038,6 +12069,7 @@ module Google
|
|
|
12038
12069
|
property :reservation_name, as: 'reservationName'
|
|
12039
12070
|
property :resource_metadata, as: 'resourceMetadata', class: Google::Apis::ComputeV1::ResourceMetadata, decorator: Google::Apis::ComputeV1::ResourceMetadata::Representation
|
|
12040
12071
|
|
|
12072
|
+
property :resource_name, as: 'resourceName'
|
|
12041
12073
|
property :scheduling_type, as: 'schedulingType'
|
|
12042
12074
|
property :self_link, as: 'selfLink'
|
|
12043
12075
|
property :self_link_with_id, as: 'selfLinkWithId'
|
|
@@ -12048,6 +12080,8 @@ module Google
|
|
|
12048
12080
|
|
|
12049
12081
|
property :status, as: 'status', class: Google::Apis::ComputeV1::FutureReservationStatus, decorator: Google::Apis::ComputeV1::FutureReservationStatus::Representation
|
|
12050
12082
|
|
|
12083
|
+
property :storage_pool_properties, as: 'storagePoolProperties', class: Google::Apis::ComputeV1::FutureReservationStoragePoolProperties, decorator: Google::Apis::ComputeV1::FutureReservationStoragePoolProperties::Representation
|
|
12084
|
+
|
|
12051
12085
|
property :time_window, as: 'timeWindow', class: Google::Apis::ComputeV1::FutureReservationTimeWindow, decorator: Google::Apis::ComputeV1::FutureReservationTimeWindow::Representation
|
|
12052
12086
|
|
|
12053
12087
|
property :zone, as: 'zone'
|
|
@@ -12085,6 +12119,8 @@ module Google
|
|
|
12085
12119
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
12086
12120
|
property :amendment_status, as: 'amendmentStatus'
|
|
12087
12121
|
collection :auto_created_reservations, as: 'autoCreatedReservations'
|
|
12122
|
+
property :exapool_provisioned_capacity_gb, as: 'exapoolProvisionedCapacityGb', class: Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb, decorator: Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb::Representation
|
|
12123
|
+
|
|
12088
12124
|
property :existing_matching_usage_info, as: 'existingMatchingUsageInfo', class: Google::Apis::ComputeV1::FutureReservationStatusExistingMatchingUsageInfo, decorator: Google::Apis::ComputeV1::FutureReservationStatusExistingMatchingUsageInfo::Representation
|
|
12089
12125
|
|
|
12090
12126
|
property :fulfilled_count, :numeric_string => true, as: 'fulfilledCount'
|
|
@@ -12094,6 +12130,8 @@ module Google
|
|
|
12094
12130
|
property :procurement_status, as: 'procurementStatus'
|
|
12095
12131
|
property :specific_sku_properties, as: 'specificSkuProperties', class: Google::Apis::ComputeV1::FutureReservationStatusSpecificSkuProperties, decorator: Google::Apis::ComputeV1::FutureReservationStatusSpecificSkuProperties::Representation
|
|
12096
12132
|
|
|
12133
|
+
property :storage_pool_provisioned_capacity, as: 'storagePoolProvisionedCapacity', class: Google::Apis::ComputeV1::FutureReservationStoragePoolProvisionedCapacity, decorator: Google::Apis::ComputeV1::FutureReservationStoragePoolProvisionedCapacity::Representation
|
|
12134
|
+
|
|
12097
12135
|
end
|
|
12098
12136
|
end
|
|
12099
12137
|
|
|
@@ -12138,6 +12176,26 @@ module Google
|
|
|
12138
12176
|
end
|
|
12139
12177
|
end
|
|
12140
12178
|
|
|
12179
|
+
class FutureReservationStoragePoolProperties
|
|
12180
|
+
# @private
|
|
12181
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
12182
|
+
property :requested_exapool_provisioned_capacity_gb, as: 'requestedExapoolProvisionedCapacityGb', class: Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb, decorator: Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb::Representation
|
|
12183
|
+
|
|
12184
|
+
property :requested_storage_pool_provisioned_capacity, as: 'requestedStoragePoolProvisionedCapacity', class: Google::Apis::ComputeV1::FutureReservationStoragePoolProvisionedCapacity, decorator: Google::Apis::ComputeV1::FutureReservationStoragePoolProvisionedCapacity::Representation
|
|
12185
|
+
|
|
12186
|
+
property :storage_pool_type, as: 'storagePoolType'
|
|
12187
|
+
end
|
|
12188
|
+
end
|
|
12189
|
+
|
|
12190
|
+
class FutureReservationStoragePoolProvisionedCapacity
|
|
12191
|
+
# @private
|
|
12192
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
12193
|
+
property :pool_provisioned_capacity_gb, :numeric_string => true, as: 'poolProvisionedCapacityGb'
|
|
12194
|
+
property :pool_provisioned_iops, :numeric_string => true, as: 'poolProvisionedIops'
|
|
12195
|
+
property :pool_provisioned_throughput, :numeric_string => true, as: 'poolProvisionedThroughput'
|
|
12196
|
+
end
|
|
12197
|
+
end
|
|
12198
|
+
|
|
12141
12199
|
class FutureReservationTimeWindow
|
|
12142
12200
|
# @private
|
|
12143
12201
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -12349,6 +12407,25 @@ module Google
|
|
|
12349
12407
|
end
|
|
12350
12408
|
end
|
|
12351
12409
|
|
|
12410
|
+
class GetHealthOperationMetadata
|
|
12411
|
+
# @private
|
|
12412
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
12413
|
+
property :health_info, as: 'healthInfo', class: Google::Apis::ComputeV1::GetHealthOperationMetadataHealthInfo, decorator: Google::Apis::ComputeV1::GetHealthOperationMetadataHealthInfo::Representation
|
|
12414
|
+
|
|
12415
|
+
end
|
|
12416
|
+
end
|
|
12417
|
+
|
|
12418
|
+
class GetHealthOperationMetadataHealthInfo
|
|
12419
|
+
# @private
|
|
12420
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
12421
|
+
property :availability_slo_status, as: 'availabilitySloStatus'
|
|
12422
|
+
property :health_status, as: 'healthStatus'
|
|
12423
|
+
property :repair_category, as: 'repairCategory'
|
|
12424
|
+
property :unhealthy_reason, as: 'unhealthyReason'
|
|
12425
|
+
property :update_time, as: 'updateTime'
|
|
12426
|
+
end
|
|
12427
|
+
end
|
|
12428
|
+
|
|
12352
12429
|
class GetVersionOperationMetadata
|
|
12353
12430
|
# @private
|
|
12354
12431
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -13800,6 +13877,7 @@ module Google
|
|
|
13800
13877
|
collection :disks, as: 'disks', class: Google::Apis::ComputeV1::AttachedDisk, decorator: Google::Apis::ComputeV1::AttachedDisk::Representation
|
|
13801
13878
|
|
|
13802
13879
|
collection :machine_types, as: 'machineTypes'
|
|
13880
|
+
property :min_cpu_platform, as: 'minCpuPlatform'
|
|
13803
13881
|
property :rank, :numeric_string => true, as: 'rank'
|
|
13804
13882
|
end
|
|
13805
13883
|
end
|
|
@@ -15400,6 +15478,7 @@ module Google
|
|
|
15400
15478
|
property :requested_link_count, as: 'requestedLinkCount'
|
|
15401
15479
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
15402
15480
|
property :self_link, as: 'selfLink'
|
|
15481
|
+
property :self_link_with_id, as: 'selfLinkWithId'
|
|
15403
15482
|
property :state, as: 'state'
|
|
15404
15483
|
property :subzone, as: 'subzone'
|
|
15405
15484
|
collection :wire_groups, as: 'wireGroups'
|
|
@@ -16189,6 +16268,8 @@ module Google
|
|
|
16189
16268
|
# @private
|
|
16190
16269
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
16191
16270
|
property :city, as: 'city'
|
|
16271
|
+
property :max_dynamic_path_bandwidth_gbps, :numeric_string => true, as: 'maxDynamicPathBandwidthGbps'
|
|
16272
|
+
property :max_fixed_path_bandwidth_gbps, :numeric_string => true, as: 'maxFixedPathBandwidthGbps'
|
|
16192
16273
|
end
|
|
16193
16274
|
end
|
|
16194
16275
|
|
|
@@ -16821,6 +16902,7 @@ module Google
|
|
|
16821
16902
|
|
|
16822
16903
|
property :shutdown_details, as: 'shutdownDetails', class: Google::Apis::ComputeV1::ManagedInstanceShutdownDetails, decorator: Google::Apis::ComputeV1::ManagedInstanceShutdownDetails::Representation
|
|
16823
16904
|
|
|
16905
|
+
property :target_status, as: 'targetStatus'
|
|
16824
16906
|
property :version, as: 'version', class: Google::Apis::ComputeV1::ManagedInstanceVersion, decorator: Google::Apis::ComputeV1::ManagedInstanceVersion::Representation
|
|
16825
16907
|
|
|
16826
16908
|
end
|
|
@@ -18423,6 +18505,8 @@ module Google
|
|
|
18423
18505
|
property :end_time, as: 'endTime'
|
|
18424
18506
|
property :error, as: 'error', class: Google::Apis::ComputeV1::Operation::Error, decorator: Google::Apis::ComputeV1::Operation::Error::Representation
|
|
18425
18507
|
|
|
18508
|
+
property :get_health_operation_metadata, as: 'getHealthOperationMetadata', class: Google::Apis::ComputeV1::GetHealthOperationMetadata, decorator: Google::Apis::ComputeV1::GetHealthOperationMetadata::Representation
|
|
18509
|
+
|
|
18426
18510
|
property :get_version_operation_metadata, as: 'getVersionOperationMetadata', class: Google::Apis::ComputeV1::GetVersionOperationMetadata, decorator: Google::Apis::ComputeV1::GetVersionOperationMetadata::Representation
|
|
18427
18511
|
|
|
18428
18512
|
property :http_error_message, as: 'httpErrorMessage'
|
|
@@ -19310,6 +19394,14 @@ module Google
|
|
|
19310
19394
|
end
|
|
19311
19395
|
end
|
|
19312
19396
|
|
|
19397
|
+
class RegexRewrite
|
|
19398
|
+
# @private
|
|
19399
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
19400
|
+
property :path_pattern, as: 'pathPattern'
|
|
19401
|
+
property :path_substitution, as: 'pathSubstitution'
|
|
19402
|
+
end
|
|
19403
|
+
end
|
|
19404
|
+
|
|
19313
19405
|
class Region
|
|
19314
19406
|
# @private
|
|
19315
19407
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -24715,6 +24807,8 @@ module Google
|
|
|
24715
24807
|
property :host_rewrite, as: 'hostRewrite'
|
|
24716
24808
|
property :path_prefix_rewrite, as: 'pathPrefixRewrite'
|
|
24717
24809
|
property :path_template_rewrite, as: 'pathTemplateRewrite'
|
|
24810
|
+
property :regex_rewrite, as: 'regexRewrite', class: Google::Apis::ComputeV1::RegexRewrite, decorator: Google::Apis::ComputeV1::RegexRewrite::Representation
|
|
24811
|
+
|
|
24718
24812
|
end
|
|
24719
24813
|
end
|
|
24720
24814
|
|
|
@@ -48072,6 +48072,55 @@ module Google
|
|
|
48072
48072
|
execute_or_queue_command(command, &block)
|
|
48073
48073
|
end
|
|
48074
48074
|
|
|
48075
|
+
# Get health info on a reservation slot.
|
|
48076
|
+
# @param [String] project
|
|
48077
|
+
# Project ID for this request.
|
|
48078
|
+
# @param [String] zone
|
|
48079
|
+
# Name of the zone for this request. Zone name should conform to RFC1035.
|
|
48080
|
+
# @param [String] parent_name
|
|
48081
|
+
# The name of the parent reservation, parent block and parent sub-block. In
|
|
48082
|
+
# the format of
|
|
48083
|
+
# reservations/`reservation_name`/reservationBlocks/`reservation_block_name`/
|
|
48084
|
+
# reservationSubBlocks/`reservation_sub_block_name`
|
|
48085
|
+
# @param [String] reservation_slot
|
|
48086
|
+
# The name of the reservation slot.
|
|
48087
|
+
# Name should conform to RFC1035 or be a resource ID.
|
|
48088
|
+
# @param [String] request_id
|
|
48089
|
+
# An optional request ID to identify requests.
|
|
48090
|
+
# @param [String] fields
|
|
48091
|
+
# Selector specifying which fields to include in a partial response.
|
|
48092
|
+
# @param [String] quota_user
|
|
48093
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
48094
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
48095
|
+
# @param [String] user_ip
|
|
48096
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
|
48097
|
+
# @param [Google::Apis::RequestOptions] options
|
|
48098
|
+
# Request-specific options
|
|
48099
|
+
#
|
|
48100
|
+
# @yield [result, err] Result & error if block supplied
|
|
48101
|
+
# @yieldparam result [Google::Apis::ComputeV1::Operation] parsed result object
|
|
48102
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
48103
|
+
#
|
|
48104
|
+
# @return [Google::Apis::ComputeV1::Operation]
|
|
48105
|
+
#
|
|
48106
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
48107
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
48108
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
48109
|
+
def get_reservation_slot_health(project, zone, parent_name, reservation_slot, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
48110
|
+
command = make_simple_command(:post, 'projects/{project}/zones/{zone}/{+parentName}/reservationSlots/{reservationSlot}/getHealth', options)
|
|
48111
|
+
command.response_representation = Google::Apis::ComputeV1::Operation::Representation
|
|
48112
|
+
command.response_class = Google::Apis::ComputeV1::Operation
|
|
48113
|
+
command.params['project'] = project unless project.nil?
|
|
48114
|
+
command.params['zone'] = zone unless zone.nil?
|
|
48115
|
+
command.params['parentName'] = parent_name unless parent_name.nil?
|
|
48116
|
+
command.params['reservationSlot'] = reservation_slot unless reservation_slot.nil?
|
|
48117
|
+
command.query['requestId'] = request_id unless request_id.nil?
|
|
48118
|
+
command.query['fields'] = fields unless fields.nil?
|
|
48119
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
48120
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
|
48121
|
+
execute_or_queue_command(command, &block)
|
|
48122
|
+
end
|
|
48123
|
+
|
|
48075
48124
|
# Allows customers to get SBOM versions of a reservation slot.
|
|
48076
48125
|
# @param [String] project
|
|
48077
48126
|
# Project ID for this request.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-compute_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.154.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_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.154.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|