google-apis-compute_beta 0.60.0 → 0.62.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: e2af83131a39466d0284c85bc53bc11617e00446e05faf94e35d158424d471f9
|
4
|
+
data.tar.gz: 560e225bd9e93c5d2cd374b1c3abd2732437ae5e4a48dab8f4dc3375146672b0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5a93d2d5cd038e163af10dcdddd3c6a72f54bf9d8b4a50703e3702a27424e4e12c64be37e39dfd99402ce5870ed3a3af7fc005a4c60971edcf48927166d36125
|
7
|
+
data.tar.gz: 623216aa60db50635627a0accb160d5348eaaeafbbaf4012abd417fd7eb8e3141b70969805601c54486b2982096cfd12ed7802e837a5556cf5950c1547291d97
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-compute_beta
|
2
2
|
|
3
|
+
### v0.62.0 (2023-03-05)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230221
|
6
|
+
|
7
|
+
### v0.61.0 (2023-02-19)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230210
|
10
|
+
* Regenerated using generator version 0.12.0
|
11
|
+
|
3
12
|
### v0.60.0 (2023-02-12)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20230201
|
@@ -513,7 +513,7 @@ module Google
|
|
513
513
|
# The first IPv6 address of the external IPv6 range associated with this
|
514
514
|
# instance, prefix length is stored in externalIpv6PrefixLength in
|
515
515
|
# ipv6AccessConfig. To use a static external IP address, it must be unused and
|
516
|
-
# in the same region as the instance's zone. If not specified,
|
516
|
+
# in the same region as the instance's zone. If not specified, Google Cloud will
|
517
517
|
# automatically assign an external IPv6 address from the instance's subnetwork.
|
518
518
|
# Corresponds to the JSON property `externalIpv6`
|
519
519
|
# @return [String]
|
@@ -5862,6 +5862,95 @@ module Google
|
|
5862
5862
|
end
|
5863
5863
|
end
|
5864
5864
|
|
5865
|
+
# Specifies the custom error response policy that must be applied when the
|
5866
|
+
# backend service or backend bucket responds with an error.
|
5867
|
+
class CustomErrorResponsePolicy
|
5868
|
+
include Google::Apis::Core::Hashable
|
5869
|
+
|
5870
|
+
# Specifies rules for returning error responses. In a given policy, if you
|
5871
|
+
# specify rules for both a range of error codes as well as rules for specific
|
5872
|
+
# error codes then rules with specific error codes have a higher priority. For
|
5873
|
+
# example, assume that you configure a rule for 401 (Un-authorized) code, and
|
5874
|
+
# another for all 4 series error codes (4XX). If the backend service returns a
|
5875
|
+
# 401, then the rule for 401 will be applied. However if the backend service
|
5876
|
+
# returns a 403, the rule for 4xx takes effect.
|
5877
|
+
# Corresponds to the JSON property `errorResponseRules`
|
5878
|
+
# @return [Array<Google::Apis::ComputeBeta::CustomErrorResponsePolicyCustomErrorResponseRule>]
|
5879
|
+
attr_accessor :error_response_rules
|
5880
|
+
|
5881
|
+
# The full or partial URL to the BackendBucket resource that contains the custom
|
5882
|
+
# error content. Examples are: - https://www.googleapis.com/compute/v1/projects/
|
5883
|
+
# project/global/backendBuckets/myBackendBucket - compute/v1/projects/project/
|
5884
|
+
# global/backendBuckets/myBackendBucket - global/backendBuckets/myBackendBucket
|
5885
|
+
# If errorService is not specified at lower levels like pathMatcher, pathRule
|
5886
|
+
# and routeRule, an errorService specified at a higher level in the UrlMap will
|
5887
|
+
# be used. If UrlMap.defaultCustomErrorResponsePolicy contains one or more
|
5888
|
+
# errorResponseRules[], it must specify errorService. If load balancer cannot
|
5889
|
+
# reach the backendBucket, a simple Not Found Error will be returned, with the
|
5890
|
+
# original response code (or overrideResponseCode if configured). errorService
|
5891
|
+
# is not supported for internal or regional HTTP/HTTPS load balancers.
|
5892
|
+
# Corresponds to the JSON property `errorService`
|
5893
|
+
# @return [String]
|
5894
|
+
attr_accessor :error_service
|
5895
|
+
|
5896
|
+
def initialize(**args)
|
5897
|
+
update!(**args)
|
5898
|
+
end
|
5899
|
+
|
5900
|
+
# Update properties of this object
|
5901
|
+
def update!(**args)
|
5902
|
+
@error_response_rules = args[:error_response_rules] if args.key?(:error_response_rules)
|
5903
|
+
@error_service = args[:error_service] if args.key?(:error_service)
|
5904
|
+
end
|
5905
|
+
end
|
5906
|
+
|
5907
|
+
# Specifies the mapping between the response code that will be returned along
|
5908
|
+
# with the custom error content and the response code returned by the backend
|
5909
|
+
# service.
|
5910
|
+
class CustomErrorResponsePolicyCustomErrorResponseRule
|
5911
|
+
include Google::Apis::Core::Hashable
|
5912
|
+
|
5913
|
+
# Valid values include: - A number between 400 and 599: For example 401 or 503,
|
5914
|
+
# in which case the load balancer applies the policy if the error code exactly
|
5915
|
+
# matches this value. - 5xx: Load Balancer will apply the policy if the backend
|
5916
|
+
# service responds with any response code in the range of 500 to 599. - 4xx:
|
5917
|
+
# Load Balancer will apply the policy if the backend service responds with any
|
5918
|
+
# response code in the range of 400 to 499. Values must be unique within
|
5919
|
+
# matchResponseCodes and across all errorResponseRules of
|
5920
|
+
# CustomErrorResponsePolicy.
|
5921
|
+
# Corresponds to the JSON property `matchResponseCodes`
|
5922
|
+
# @return [Array<String>]
|
5923
|
+
attr_accessor :match_response_codes
|
5924
|
+
|
5925
|
+
# The HTTP status code returned with the response containing the custom error
|
5926
|
+
# content. If overrideResponseCode is not supplied, the same response code
|
5927
|
+
# returned by the original backend bucket or backend service is returned to the
|
5928
|
+
# client.
|
5929
|
+
# Corresponds to the JSON property `overrideResponseCode`
|
5930
|
+
# @return [Fixnum]
|
5931
|
+
attr_accessor :override_response_code
|
5932
|
+
|
5933
|
+
# The full path to a file within backendBucket . For example: /errors/
|
5934
|
+
# defaultError.html path must start with a leading slash. path cannot have
|
5935
|
+
# trailing slashes. If the file is not available in backendBucket or the load
|
5936
|
+
# balancer cannot reach the BackendBucket, a simple Not Found Error is returned
|
5937
|
+
# to the client. The value must be from 1 to 1024 characters
|
5938
|
+
# Corresponds to the JSON property `path`
|
5939
|
+
# @return [String]
|
5940
|
+
attr_accessor :path
|
5941
|
+
|
5942
|
+
def initialize(**args)
|
5943
|
+
update!(**args)
|
5944
|
+
end
|
5945
|
+
|
5946
|
+
# Update properties of this object
|
5947
|
+
def update!(**args)
|
5948
|
+
@match_response_codes = args[:match_response_codes] if args.key?(:match_response_codes)
|
5949
|
+
@override_response_code = args[:override_response_code] if args.key?(:override_response_code)
|
5950
|
+
@path = args[:path] if args.key?(:path)
|
5951
|
+
end
|
5952
|
+
end
|
5953
|
+
|
5865
5954
|
#
|
5866
5955
|
class CustomerEncryptionKey
|
5867
5956
|
include Google::Apis::Core::Hashable
|
@@ -12211,6 +12300,12 @@ module Google
|
|
12211
12300
|
class HttpRouteRule
|
12212
12301
|
include Google::Apis::Core::Hashable
|
12213
12302
|
|
12303
|
+
# Specifies the custom error response policy that must be applied when the
|
12304
|
+
# backend service or backend bucket responds with an error.
|
12305
|
+
# Corresponds to the JSON property `customErrorResponsePolicy`
|
12306
|
+
# @return [Google::Apis::ComputeBeta::CustomErrorResponsePolicy]
|
12307
|
+
attr_accessor :custom_error_response_policy
|
12308
|
+
|
12214
12309
|
# The short description conveying the intent of this routeRule. The description
|
12215
12310
|
# can have a maximum length of 1024 characters.
|
12216
12311
|
# Corresponds to the JSON property `description`
|
@@ -12300,6 +12395,7 @@ module Google
|
|
12300
12395
|
|
12301
12396
|
# Update properties of this object
|
12302
12397
|
def update!(**args)
|
12398
|
+
@custom_error_response_policy = args[:custom_error_response_policy] if args.key?(:custom_error_response_policy)
|
12303
12399
|
@description = args[:description] if args.key?(:description)
|
12304
12400
|
@header_action = args[:header_action] if args.key?(:header_action)
|
12305
12401
|
@http_filter_configs = args[:http_filter_configs] if args.key?(:http_filter_configs)
|
@@ -12674,10 +12770,13 @@ module Google
|
|
12674
12770
|
# @return [Fixnum]
|
12675
12771
|
attr_accessor :disk_size_gb
|
12676
12772
|
|
12677
|
-
# The name of the image family to which this image belongs.
|
12678
|
-
#
|
12679
|
-
#
|
12680
|
-
# image family
|
12773
|
+
# The name of the image family to which this image belongs. The image family
|
12774
|
+
# name can be from a publicly managed image family provided by Compute Engine,
|
12775
|
+
# or from a custom image family you create. For example, centos-stream-9 is a
|
12776
|
+
# publicly available image family. For more information, see Image family best
|
12777
|
+
# practices. When creating disks, you can specify an image family instead of a
|
12778
|
+
# specific image name. The image family always returns its latest image that is
|
12779
|
+
# not deprecated. The name of the image family must comply with RFC1035.
|
12681
12780
|
# Corresponds to the JSON property `family`
|
12682
12781
|
# @return [String]
|
12683
12782
|
attr_accessor :family
|
@@ -16541,6 +16640,12 @@ module Google
|
|
16541
16640
|
# @return [Google::Apis::ComputeBeta::InstanceProperties]
|
16542
16641
|
attr_accessor :properties
|
16543
16642
|
|
16643
|
+
# [Output Only] URL of the region where the instance template resides. Only
|
16644
|
+
# applicable for regional resources.
|
16645
|
+
# Corresponds to the JSON property `region`
|
16646
|
+
# @return [String]
|
16647
|
+
attr_accessor :region
|
16648
|
+
|
16544
16649
|
# [Output Only] The URL for this instance template. The server defines this URL.
|
16545
16650
|
# Corresponds to the JSON property `selfLink`
|
16546
16651
|
# @return [String]
|
@@ -16572,12 +16677,130 @@ module Google
|
|
16572
16677
|
@kind = args[:kind] if args.key?(:kind)
|
16573
16678
|
@name = args[:name] if args.key?(:name)
|
16574
16679
|
@properties = args[:properties] if args.key?(:properties)
|
16680
|
+
@region = args[:region] if args.key?(:region)
|
16575
16681
|
@self_link = args[:self_link] if args.key?(:self_link)
|
16576
16682
|
@source_instance = args[:source_instance] if args.key?(:source_instance)
|
16577
16683
|
@source_instance_params = args[:source_instance_params] if args.key?(:source_instance_params)
|
16578
16684
|
end
|
16579
16685
|
end
|
16580
16686
|
|
16687
|
+
# Contains a list of InstanceTemplatesScopedList.
|
16688
|
+
class InstanceTemplateAggregatedList
|
16689
|
+
include Google::Apis::Core::Hashable
|
16690
|
+
|
16691
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
16692
|
+
# Corresponds to the JSON property `id`
|
16693
|
+
# @return [String]
|
16694
|
+
attr_accessor :id
|
16695
|
+
|
16696
|
+
# A list of InstanceTemplatesScopedList resources.
|
16697
|
+
# Corresponds to the JSON property `items`
|
16698
|
+
# @return [Hash<String,Google::Apis::ComputeBeta::InstanceTemplatesScopedList>]
|
16699
|
+
attr_accessor :items
|
16700
|
+
|
16701
|
+
# Type of resource.
|
16702
|
+
# Corresponds to the JSON property `kind`
|
16703
|
+
# @return [String]
|
16704
|
+
attr_accessor :kind
|
16705
|
+
|
16706
|
+
# [Output Only] This token allows you to get the next page of results for list
|
16707
|
+
# requests. If the number of results is larger than maxResults, use the
|
16708
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
16709
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
16710
|
+
# continue paging through the results.
|
16711
|
+
# Corresponds to the JSON property `nextPageToken`
|
16712
|
+
# @return [String]
|
16713
|
+
attr_accessor :next_page_token
|
16714
|
+
|
16715
|
+
# [Output Only] Server-defined URL for this resource.
|
16716
|
+
# Corresponds to the JSON property `selfLink`
|
16717
|
+
# @return [String]
|
16718
|
+
attr_accessor :self_link
|
16719
|
+
|
16720
|
+
# [Output Only] Informational warning message.
|
16721
|
+
# Corresponds to the JSON property `warning`
|
16722
|
+
# @return [Google::Apis::ComputeBeta::InstanceTemplateAggregatedList::Warning]
|
16723
|
+
attr_accessor :warning
|
16724
|
+
|
16725
|
+
def initialize(**args)
|
16726
|
+
update!(**args)
|
16727
|
+
end
|
16728
|
+
|
16729
|
+
# Update properties of this object
|
16730
|
+
def update!(**args)
|
16731
|
+
@id = args[:id] if args.key?(:id)
|
16732
|
+
@items = args[:items] if args.key?(:items)
|
16733
|
+
@kind = args[:kind] if args.key?(:kind)
|
16734
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
16735
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
16736
|
+
@warning = args[:warning] if args.key?(:warning)
|
16737
|
+
end
|
16738
|
+
|
16739
|
+
# [Output Only] Informational warning message.
|
16740
|
+
class Warning
|
16741
|
+
include Google::Apis::Core::Hashable
|
16742
|
+
|
16743
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
16744
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
16745
|
+
# Corresponds to the JSON property `code`
|
16746
|
+
# @return [String]
|
16747
|
+
attr_accessor :code
|
16748
|
+
|
16749
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
16750
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
16751
|
+
# Corresponds to the JSON property `data`
|
16752
|
+
# @return [Array<Google::Apis::ComputeBeta::InstanceTemplateAggregatedList::Warning::Datum>]
|
16753
|
+
attr_accessor :data
|
16754
|
+
|
16755
|
+
# [Output Only] A human-readable description of the warning code.
|
16756
|
+
# Corresponds to the JSON property `message`
|
16757
|
+
# @return [String]
|
16758
|
+
attr_accessor :message
|
16759
|
+
|
16760
|
+
def initialize(**args)
|
16761
|
+
update!(**args)
|
16762
|
+
end
|
16763
|
+
|
16764
|
+
# Update properties of this object
|
16765
|
+
def update!(**args)
|
16766
|
+
@code = args[:code] if args.key?(:code)
|
16767
|
+
@data = args[:data] if args.key?(:data)
|
16768
|
+
@message = args[:message] if args.key?(:message)
|
16769
|
+
end
|
16770
|
+
|
16771
|
+
#
|
16772
|
+
class Datum
|
16773
|
+
include Google::Apis::Core::Hashable
|
16774
|
+
|
16775
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
16776
|
+
# For example, for warnings where there are no results in a list request for a
|
16777
|
+
# particular zone, this key might be scope and the key value might be the zone
|
16778
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
16779
|
+
# suggested replacement, or a warning about invalid network settings (for
|
16780
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
16781
|
+
# for IP forwarding).
|
16782
|
+
# Corresponds to the JSON property `key`
|
16783
|
+
# @return [String]
|
16784
|
+
attr_accessor :key
|
16785
|
+
|
16786
|
+
# [Output Only] A warning data value corresponding to the key.
|
16787
|
+
# Corresponds to the JSON property `value`
|
16788
|
+
# @return [String]
|
16789
|
+
attr_accessor :value
|
16790
|
+
|
16791
|
+
def initialize(**args)
|
16792
|
+
update!(**args)
|
16793
|
+
end
|
16794
|
+
|
16795
|
+
# Update properties of this object
|
16796
|
+
def update!(**args)
|
16797
|
+
@key = args[:key] if args.key?(:key)
|
16798
|
+
@value = args[:value] if args.key?(:value)
|
16799
|
+
end
|
16800
|
+
end
|
16801
|
+
end
|
16802
|
+
end
|
16803
|
+
|
16581
16804
|
# A list of instance templates.
|
16582
16805
|
class InstanceTemplateList
|
16583
16806
|
include Google::Apis::Core::Hashable
|
@@ -16696,6 +16919,98 @@ module Google
|
|
16696
16919
|
end
|
16697
16920
|
end
|
16698
16921
|
|
16922
|
+
#
|
16923
|
+
class InstanceTemplatesScopedList
|
16924
|
+
include Google::Apis::Core::Hashable
|
16925
|
+
|
16926
|
+
# [Output Only] A list of instance templates that are contained within the
|
16927
|
+
# specified project and zone.
|
16928
|
+
# Corresponds to the JSON property `instanceTemplates`
|
16929
|
+
# @return [Array<Google::Apis::ComputeBeta::InstanceTemplate>]
|
16930
|
+
attr_accessor :instance_templates
|
16931
|
+
|
16932
|
+
# [Output Only] An informational warning that replaces the list of instance
|
16933
|
+
# templates when the list is empty.
|
16934
|
+
# Corresponds to the JSON property `warning`
|
16935
|
+
# @return [Google::Apis::ComputeBeta::InstanceTemplatesScopedList::Warning]
|
16936
|
+
attr_accessor :warning
|
16937
|
+
|
16938
|
+
def initialize(**args)
|
16939
|
+
update!(**args)
|
16940
|
+
end
|
16941
|
+
|
16942
|
+
# Update properties of this object
|
16943
|
+
def update!(**args)
|
16944
|
+
@instance_templates = args[:instance_templates] if args.key?(:instance_templates)
|
16945
|
+
@warning = args[:warning] if args.key?(:warning)
|
16946
|
+
end
|
16947
|
+
|
16948
|
+
# [Output Only] An informational warning that replaces the list of instance
|
16949
|
+
# templates when the list is empty.
|
16950
|
+
class Warning
|
16951
|
+
include Google::Apis::Core::Hashable
|
16952
|
+
|
16953
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
16954
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
16955
|
+
# Corresponds to the JSON property `code`
|
16956
|
+
# @return [String]
|
16957
|
+
attr_accessor :code
|
16958
|
+
|
16959
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
16960
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
16961
|
+
# Corresponds to the JSON property `data`
|
16962
|
+
# @return [Array<Google::Apis::ComputeBeta::InstanceTemplatesScopedList::Warning::Datum>]
|
16963
|
+
attr_accessor :data
|
16964
|
+
|
16965
|
+
# [Output Only] A human-readable description of the warning code.
|
16966
|
+
# Corresponds to the JSON property `message`
|
16967
|
+
# @return [String]
|
16968
|
+
attr_accessor :message
|
16969
|
+
|
16970
|
+
def initialize(**args)
|
16971
|
+
update!(**args)
|
16972
|
+
end
|
16973
|
+
|
16974
|
+
# Update properties of this object
|
16975
|
+
def update!(**args)
|
16976
|
+
@code = args[:code] if args.key?(:code)
|
16977
|
+
@data = args[:data] if args.key?(:data)
|
16978
|
+
@message = args[:message] if args.key?(:message)
|
16979
|
+
end
|
16980
|
+
|
16981
|
+
#
|
16982
|
+
class Datum
|
16983
|
+
include Google::Apis::Core::Hashable
|
16984
|
+
|
16985
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
16986
|
+
# For example, for warnings where there are no results in a list request for a
|
16987
|
+
# particular zone, this key might be scope and the key value might be the zone
|
16988
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
16989
|
+
# suggested replacement, or a warning about invalid network settings (for
|
16990
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
16991
|
+
# for IP forwarding).
|
16992
|
+
# Corresponds to the JSON property `key`
|
16993
|
+
# @return [String]
|
16994
|
+
attr_accessor :key
|
16995
|
+
|
16996
|
+
# [Output Only] A warning data value corresponding to the key.
|
16997
|
+
# Corresponds to the JSON property `value`
|
16998
|
+
# @return [String]
|
16999
|
+
attr_accessor :value
|
17000
|
+
|
17001
|
+
def initialize(**args)
|
17002
|
+
update!(**args)
|
17003
|
+
end
|
17004
|
+
|
17005
|
+
# Update properties of this object
|
17006
|
+
def update!(**args)
|
17007
|
+
@key = args[:key] if args.key?(:key)
|
17008
|
+
@value = args[:value] if args.key?(:value)
|
17009
|
+
end
|
17010
|
+
end
|
17011
|
+
end
|
17012
|
+
end
|
17013
|
+
|
16699
17014
|
#
|
16700
17015
|
class InstanceWithNamedPorts
|
16701
17016
|
include Google::Apis::Core::Hashable
|
@@ -17338,9 +17653,7 @@ module Google
|
|
17338
17653
|
# @return [Fixnum]
|
17339
17654
|
attr_accessor :requested_link_count
|
17340
17655
|
|
17341
|
-
# [Output Only]
|
17342
|
-
# organization policy constraints and false otherwise. Defaults to false if the
|
17343
|
-
# field is not present.
|
17656
|
+
# [Output Only] Reserved for future use.
|
17344
17657
|
# Corresponds to the JSON property `satisfiesPzs`
|
17345
17658
|
# @return [Boolean]
|
17346
17659
|
attr_accessor :satisfies_pzs
|
@@ -17645,9 +17958,7 @@ module Google
|
|
17645
17958
|
# @return [String]
|
17646
17959
|
attr_accessor :router
|
17647
17960
|
|
17648
|
-
# [Output Only]
|
17649
|
-
# organization policy constraints and false otherwise. Defaults to false if the
|
17650
|
-
# field is not present.
|
17961
|
+
# [Output Only] Reserved for future use.
|
17651
17962
|
# Corresponds to the JSON property `satisfiesPzs`
|
17652
17963
|
# @return [Boolean]
|
17653
17964
|
attr_accessor :satisfies_pzs
|
@@ -18584,8 +18895,7 @@ module Google
|
|
18584
18895
|
# @return [String]
|
18585
18896
|
attr_accessor :status
|
18586
18897
|
|
18587
|
-
# [Output Only]
|
18588
|
-
# Defaults to false if the field is not present.
|
18898
|
+
# [Output Only] Reserved for future use.
|
18589
18899
|
# Corresponds to the JSON property `supportsPzs`
|
18590
18900
|
# @return [Boolean]
|
18591
18901
|
attr_accessor :supports_pzs
|
@@ -22705,8 +23015,8 @@ module Google
|
|
22705
23015
|
|
22706
23016
|
# An IPv6 internal network address for this network interface. To use a static
|
22707
23017
|
# internal IP address, it must be unused and in the same region as the instance'
|
22708
|
-
# s zone. If not specified,
|
22709
|
-
# address from the instance's subnetwork.
|
23018
|
+
# s zone. If not specified, Google Cloud will automatically assign an internal
|
23019
|
+
# IPv6 address from the instance's subnetwork.
|
22710
23020
|
# Corresponds to the JSON property `ipv6Address`
|
22711
23021
|
# @return [String]
|
22712
23022
|
attr_accessor :ipv6_address
|
@@ -24151,10 +24461,7 @@ module Google
|
|
24151
24461
|
# @return [String]
|
24152
24462
|
attr_accessor :node_type
|
24153
24463
|
|
24154
|
-
#
|
24155
|
-
# node template will create nodes of a type that matches these properties. This
|
24156
|
-
# field is mutually exclusive with the node_type property; you can only define
|
24157
|
-
# one or the other, but not both.
|
24464
|
+
# Do not use. Instead, use the node_type property.
|
24158
24465
|
# Corresponds to the JSON property `nodeTypeFlexibility`
|
24159
24466
|
# @return [Google::Apis::ComputeBeta::NodeTemplateNodeTypeFlexibility]
|
24160
24467
|
attr_accessor :node_type_flexibility
|
@@ -26771,6 +27078,12 @@ module Google
|
|
26771
27078
|
class PathMatcher
|
26772
27079
|
include Google::Apis::Core::Hashable
|
26773
27080
|
|
27081
|
+
# Specifies the custom error response policy that must be applied when the
|
27082
|
+
# backend service or backend bucket responds with an error.
|
27083
|
+
# Corresponds to the JSON property `defaultCustomErrorResponsePolicy`
|
27084
|
+
# @return [Google::Apis::ComputeBeta::CustomErrorResponsePolicy]
|
27085
|
+
attr_accessor :default_custom_error_response_policy
|
27086
|
+
|
26774
27087
|
# defaultRouteAction takes effect when none of the pathRules or routeRules match.
|
26775
27088
|
# The load balancer performs advanced routing actions, such as URL rewrites and
|
26776
27089
|
# header transformations, before forwarding the request to the selected backend.
|
@@ -26849,6 +27162,7 @@ module Google
|
|
26849
27162
|
|
26850
27163
|
# Update properties of this object
|
26851
27164
|
def update!(**args)
|
27165
|
+
@default_custom_error_response_policy = args[:default_custom_error_response_policy] if args.key?(:default_custom_error_response_policy)
|
26852
27166
|
@default_route_action = args[:default_route_action] if args.key?(:default_route_action)
|
26853
27167
|
@default_service = args[:default_service] if args.key?(:default_service)
|
26854
27168
|
@default_url_redirect = args[:default_url_redirect] if args.key?(:default_url_redirect)
|
@@ -26865,6 +27179,12 @@ module Google
|
|
26865
27179
|
class PathRule
|
26866
27180
|
include Google::Apis::Core::Hashable
|
26867
27181
|
|
27182
|
+
# Specifies the custom error response policy that must be applied when the
|
27183
|
+
# backend service or backend bucket responds with an error.
|
27184
|
+
# Corresponds to the JSON property `customErrorResponsePolicy`
|
27185
|
+
# @return [Google::Apis::ComputeBeta::CustomErrorResponsePolicy]
|
27186
|
+
attr_accessor :custom_error_response_policy
|
27187
|
+
|
26868
27188
|
# The list of path patterns to match. Each must start with / and the only place
|
26869
27189
|
# a * is allowed is at the end following a /. The string fed to the path matcher
|
26870
27190
|
# does not include any text after the first ? or #, and those chars are not
|
@@ -26907,6 +27227,7 @@ module Google
|
|
26907
27227
|
|
26908
27228
|
# Update properties of this object
|
26909
27229
|
def update!(**args)
|
27230
|
+
@custom_error_response_policy = args[:custom_error_response_policy] if args.key?(:custom_error_response_policy)
|
26910
27231
|
@paths = args[:paths] if args.key?(:paths)
|
26911
27232
|
@route_action = args[:route_action] if args.key?(:route_action)
|
26912
27233
|
@service = args[:service] if args.key?(:service)
|
@@ -30980,7 +31301,7 @@ module Google
|
|
30980
31301
|
attr_accessor :start_time
|
30981
31302
|
|
30982
31303
|
# Specifies the time zone to be used in interpreting Schedule.schedule. The
|
30983
|
-
# value of this field must be a time zone name from the tz database:
|
31304
|
+
# value of this field must be a time zone name from the tz database: https://
|
30984
31305
|
# wikipedia.org/wiki/Tz_database.
|
30985
31306
|
# Corresponds to the JSON property `timeZone`
|
30986
31307
|
# @return [String]
|
@@ -32179,10 +32500,10 @@ module Google
|
|
32179
32500
|
# @return [String]
|
32180
32501
|
attr_accessor :advertise_mode
|
32181
32502
|
|
32182
|
-
# User-specified list of prefix groups to advertise in custom mode, which
|
32183
|
-
#
|
32184
|
-
#
|
32185
|
-
#
|
32503
|
+
# User-specified list of prefix groups to advertise in custom mode, which
|
32504
|
+
# currently supports the following option: - ALL_SUBNETS: Advertises all of the
|
32505
|
+
# router's own VPC subnets. This excludes any routes learned for subnets that
|
32506
|
+
# use VPC Network Peering. Note that this field can only be populated if
|
32186
32507
|
# advertise_mode is CUSTOM and overrides the list defined for the router (in the
|
32187
32508
|
# "bgp" message). These groups are advertised in addition to any specified
|
32188
32509
|
# prefixes. Leave this field blank to advertise no custom groups.
|
@@ -42463,6 +42784,12 @@ module Google
|
|
42463
42784
|
# @return [String]
|
42464
42785
|
attr_accessor :creation_timestamp
|
42465
42786
|
|
42787
|
+
# Specifies the custom error response policy that must be applied when the
|
42788
|
+
# backend service or backend bucket responds with an error.
|
42789
|
+
# Corresponds to the JSON property `defaultCustomErrorResponsePolicy`
|
42790
|
+
# @return [Google::Apis::ComputeBeta::CustomErrorResponsePolicy]
|
42791
|
+
attr_accessor :default_custom_error_response_policy
|
42792
|
+
|
42466
42793
|
# defaultRouteAction takes effect when none of the hostRules match. The load
|
42467
42794
|
# balancer performs advanced routing actions, such as URL rewrites and header
|
42468
42795
|
# transformations, before forwarding the request to the selected backend. If
|
@@ -42576,6 +42903,7 @@ module Google
|
|
42576
42903
|
# Update properties of this object
|
42577
42904
|
def update!(**args)
|
42578
42905
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
42906
|
+
@default_custom_error_response_policy = args[:default_custom_error_response_policy] if args.key?(:default_custom_error_response_policy)
|
42579
42907
|
@default_route_action = args[:default_route_action] if args.key?(:default_route_action)
|
42580
42908
|
@default_service = args[:default_service] if args.key?(:default_service)
|
42581
42909
|
@default_url_redirect = args[:default_url_redirect] if args.key?(:default_url_redirect)
|
@@ -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.62.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230221"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|