google-apis-compute_beta 0.148.0 → 0.149.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: 30cd74ee89010992bbd6109dd539299db9facf6e4281e8f62ce901077b723832
|
|
4
|
+
data.tar.gz: 8e2b07275be0b5f19989ae54b7af5812e95a38fc6bc1a3ab8f5498c251486b56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b3944ae0b968a57cb296e5be5f0ee94d580e1fe98c6965dc78eaf79ac94c65ff4586cf750f5866988821ad05c3801c0363a2df608725dc67444f9e72574ce4cd
|
|
7
|
+
data.tar.gz: e39c838e5d3908f21c6ee031db63c8b7874c3882d18225fec6117aa9057ef6e07bda99e96d7a20f32674376f805691faae96a5798926e082d17f2bdf8c96f95a
|
data/CHANGELOG.md
CHANGED
|
@@ -7628,6 +7628,16 @@ module Google
|
|
|
7628
7628
|
class CacheInvalidationRule
|
|
7629
7629
|
include Google::Apis::Core::Hashable
|
|
7630
7630
|
|
|
7631
|
+
# If set, this invalidation rule will only apply to requests routed to the
|
|
7632
|
+
# given backend service or backend bucket.
|
|
7633
|
+
# For example, for a backend bucket `bb1` in the same scope as the URL map,
|
|
7634
|
+
# the path would be `projects/my-project/global/backendBuckets/bb1`; and
|
|
7635
|
+
# for a backend service `bs1` in the same scope as the URL map, the path
|
|
7636
|
+
# would be `projects/my-project/global/backendServices/bs1`.
|
|
7637
|
+
# Corresponds to the JSON property `backendService`
|
|
7638
|
+
# @return [String]
|
|
7639
|
+
attr_accessor :backend_service
|
|
7640
|
+
|
|
7631
7641
|
# A list of cache tags used to identify cached objects.
|
|
7632
7642
|
#
|
|
7633
7643
|
# - Cache tags are specified when the response is first cached, by setting
|
|
@@ -7641,12 +7651,25 @@ module Google
|
|
|
7641
7651
|
# @return [Array<String>]
|
|
7642
7652
|
attr_accessor :cache_tags
|
|
7643
7653
|
|
|
7654
|
+
# If set, this invalidation rule will only apply to responses with the given
|
|
7655
|
+
# content-type. Parameters are not allowed and are ignored from the response
|
|
7656
|
+
# when matching. Wildcards are not allowed.
|
|
7657
|
+
# Corresponds to the JSON property `contentType`
|
|
7658
|
+
# @return [String]
|
|
7659
|
+
attr_accessor :content_type
|
|
7660
|
+
|
|
7644
7661
|
# If set, this invalidation rule will only apply to requests with a Host
|
|
7645
7662
|
# header matching host.
|
|
7646
7663
|
# Corresponds to the JSON property `host`
|
|
7647
7664
|
# @return [String]
|
|
7648
7665
|
attr_accessor :host
|
|
7649
7666
|
|
|
7667
|
+
# If set, this invalidation rule will only apply to responses with the
|
|
7668
|
+
# given HTTP status. Valid range is 200-599.
|
|
7669
|
+
# Corresponds to the JSON property `httpStatus`
|
|
7670
|
+
# @return [Fixnum]
|
|
7671
|
+
attr_accessor :http_status
|
|
7672
|
+
|
|
7650
7673
|
#
|
|
7651
7674
|
# Corresponds to the JSON property `path`
|
|
7652
7675
|
# @return [String]
|
|
@@ -7658,8 +7681,11 @@ module Google
|
|
|
7658
7681
|
|
|
7659
7682
|
# Update properties of this object
|
|
7660
7683
|
def update!(**args)
|
|
7684
|
+
@backend_service = args[:backend_service] if args.key?(:backend_service)
|
|
7661
7685
|
@cache_tags = args[:cache_tags] if args.key?(:cache_tags)
|
|
7686
|
+
@content_type = args[:content_type] if args.key?(:content_type)
|
|
7662
7687
|
@host = args[:host] if args.key?(:host)
|
|
7688
|
+
@http_status = args[:http_status] if args.key?(:http_status)
|
|
7663
7689
|
@path = args[:path] if args.key?(:path)
|
|
7664
7690
|
end
|
|
7665
7691
|
end
|
|
@@ -13014,6 +13040,11 @@ module Google
|
|
|
13014
13040
|
class DistributionPolicyZoneConfiguration
|
|
13015
13041
|
include Google::Apis::Core::Hashable
|
|
13016
13042
|
|
|
13043
|
+
# Encapsulates numeric value that can be either absolute or relative.
|
|
13044
|
+
# Corresponds to the JSON property `maxSize`
|
|
13045
|
+
# @return [Google::Apis::ComputeBeta::FixedOrPercent]
|
|
13046
|
+
attr_accessor :max_size
|
|
13047
|
+
|
|
13017
13048
|
# The URL of thezone.
|
|
13018
13049
|
# The zone must exist in the region where the managed instance group is
|
|
13019
13050
|
# located.
|
|
@@ -13027,6 +13058,7 @@ module Google
|
|
|
13027
13058
|
|
|
13028
13059
|
# Update properties of this object
|
|
13029
13060
|
def update!(**args)
|
|
13061
|
+
@max_size = args[:max_size] if args.key?(:max_size)
|
|
13030
13062
|
@zone = args[:zone] if args.key?(:zone)
|
|
13031
13063
|
end
|
|
13032
13064
|
end
|
|
@@ -16308,6 +16340,13 @@ module Google
|
|
|
16308
16340
|
attr_accessor :auto_delete_auto_created_reservations
|
|
16309
16341
|
alias_method :auto_delete_auto_created_reservations?, :auto_delete_auto_created_reservations
|
|
16310
16342
|
|
|
16343
|
+
# Full or partial URL of an existing future reservation to indicate
|
|
16344
|
+
# intent for reserving capacity in the same cluster as the colocation
|
|
16345
|
+
# resource.
|
|
16346
|
+
# Corresponds to the JSON property `colocationResource`
|
|
16347
|
+
# @return [String]
|
|
16348
|
+
attr_accessor :colocation_resource
|
|
16349
|
+
|
|
16311
16350
|
# If not present, then FR will not deliver a new commitment or update an
|
|
16312
16351
|
# existing commitment.
|
|
16313
16352
|
# Corresponds to the JSON property `commitmentInfo`
|
|
@@ -16481,6 +16520,7 @@ module Google
|
|
|
16481
16520
|
@auto_created_reservations_delete_time = args[:auto_created_reservations_delete_time] if args.key?(:auto_created_reservations_delete_time)
|
|
16482
16521
|
@auto_created_reservations_duration = args[:auto_created_reservations_duration] if args.key?(:auto_created_reservations_duration)
|
|
16483
16522
|
@auto_delete_auto_created_reservations = args[:auto_delete_auto_created_reservations] if args.key?(:auto_delete_auto_created_reservations)
|
|
16523
|
+
@colocation_resource = args[:colocation_resource] if args.key?(:colocation_resource)
|
|
16484
16524
|
@commitment_info = args[:commitment_info] if args.key?(:commitment_info)
|
|
16485
16525
|
@confidential_compute_type = args[:confidential_compute_type] if args.key?(:confidential_compute_type)
|
|
16486
16526
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
@@ -17866,7 +17906,7 @@ module Google
|
|
|
17866
17906
|
# @return [String]
|
|
17867
17907
|
attr_accessor :description
|
|
17868
17908
|
|
|
17869
|
-
# Output only. For optimistic locking
|
|
17909
|
+
# Output only. For optimistic locking.
|
|
17870
17910
|
# Corresponds to the JSON property `etag`
|
|
17871
17911
|
# @return [String]
|
|
17872
17912
|
attr_accessor :etag
|
|
@@ -23914,6 +23954,137 @@ module Google
|
|
|
23914
23954
|
end
|
|
23915
23955
|
end
|
|
23916
23956
|
|
|
23957
|
+
# Response message for ImageViewsService.List
|
|
23958
|
+
class ImageViewsListResponse
|
|
23959
|
+
include Google::Apis::Core::Hashable
|
|
23960
|
+
|
|
23961
|
+
# Etag of the resource.
|
|
23962
|
+
# Corresponds to the JSON property `etag`
|
|
23963
|
+
# @return [String]
|
|
23964
|
+
attr_accessor :etag
|
|
23965
|
+
|
|
23966
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
|
23967
|
+
# Corresponds to the JSON property `id`
|
|
23968
|
+
# @return [String]
|
|
23969
|
+
attr_accessor :id
|
|
23970
|
+
|
|
23971
|
+
# A list of Image resources.
|
|
23972
|
+
# Corresponds to the JSON property `items`
|
|
23973
|
+
# @return [Array<Google::Apis::ComputeBeta::ImageView>]
|
|
23974
|
+
attr_accessor :items
|
|
23975
|
+
|
|
23976
|
+
#
|
|
23977
|
+
# Corresponds to the JSON property `kind`
|
|
23978
|
+
# @return [String]
|
|
23979
|
+
attr_accessor :kind
|
|
23980
|
+
|
|
23981
|
+
#
|
|
23982
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
23983
|
+
# @return [String]
|
|
23984
|
+
attr_accessor :next_page_token
|
|
23985
|
+
|
|
23986
|
+
# Output only. [Output Only] Server-defined URL for this resource.
|
|
23987
|
+
# Corresponds to the JSON property `selfLink`
|
|
23988
|
+
# @return [String]
|
|
23989
|
+
attr_accessor :self_link
|
|
23990
|
+
|
|
23991
|
+
# Output only. [Output Only] Unreachable resources.
|
|
23992
|
+
# Corresponds to the JSON property `unreachables`
|
|
23993
|
+
# @return [Array<String>]
|
|
23994
|
+
attr_accessor :unreachables
|
|
23995
|
+
|
|
23996
|
+
# [Output Only] Informational warning message.
|
|
23997
|
+
# Corresponds to the JSON property `warning`
|
|
23998
|
+
# @return [Google::Apis::ComputeBeta::ImageViewsListResponse::Warning]
|
|
23999
|
+
attr_accessor :warning
|
|
24000
|
+
|
|
24001
|
+
def initialize(**args)
|
|
24002
|
+
update!(**args)
|
|
24003
|
+
end
|
|
24004
|
+
|
|
24005
|
+
# Update properties of this object
|
|
24006
|
+
def update!(**args)
|
|
24007
|
+
@etag = args[:etag] if args.key?(:etag)
|
|
24008
|
+
@id = args[:id] if args.key?(:id)
|
|
24009
|
+
@items = args[:items] if args.key?(:items)
|
|
24010
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
24011
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
24012
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
24013
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
|
24014
|
+
@warning = args[:warning] if args.key?(:warning)
|
|
24015
|
+
end
|
|
24016
|
+
|
|
24017
|
+
# [Output Only] Informational warning message.
|
|
24018
|
+
class Warning
|
|
24019
|
+
include Google::Apis::Core::Hashable
|
|
24020
|
+
|
|
24021
|
+
# [Output Only] A warning code, if applicable. For example, Compute
|
|
24022
|
+
# Engine returns NO_RESULTS_ON_PAGE if there
|
|
24023
|
+
# are no results in the response.
|
|
24024
|
+
# Corresponds to the JSON property `code`
|
|
24025
|
+
# @return [String]
|
|
24026
|
+
attr_accessor :code
|
|
24027
|
+
|
|
24028
|
+
# [Output Only] Metadata about this warning in key:
|
|
24029
|
+
# value format. For example:
|
|
24030
|
+
# "data": [
|
|
24031
|
+
# `
|
|
24032
|
+
# "key": "scope",
|
|
24033
|
+
# "value": "zones/us-east1-d"
|
|
24034
|
+
# `]
|
|
24035
|
+
# Corresponds to the JSON property `data`
|
|
24036
|
+
# @return [Array<Google::Apis::ComputeBeta::ImageViewsListResponse::Warning::Datum>]
|
|
24037
|
+
attr_accessor :data
|
|
24038
|
+
|
|
24039
|
+
# [Output Only] A human-readable description of the warning code.
|
|
24040
|
+
# Corresponds to the JSON property `message`
|
|
24041
|
+
# @return [String]
|
|
24042
|
+
attr_accessor :message
|
|
24043
|
+
|
|
24044
|
+
def initialize(**args)
|
|
24045
|
+
update!(**args)
|
|
24046
|
+
end
|
|
24047
|
+
|
|
24048
|
+
# Update properties of this object
|
|
24049
|
+
def update!(**args)
|
|
24050
|
+
@code = args[:code] if args.key?(:code)
|
|
24051
|
+
@data = args[:data] if args.key?(:data)
|
|
24052
|
+
@message = args[:message] if args.key?(:message)
|
|
24053
|
+
end
|
|
24054
|
+
|
|
24055
|
+
#
|
|
24056
|
+
class Datum
|
|
24057
|
+
include Google::Apis::Core::Hashable
|
|
24058
|
+
|
|
24059
|
+
# [Output Only] A key that provides more detail on the warning being
|
|
24060
|
+
# returned. For example, for warnings where there are no results in a list
|
|
24061
|
+
# request for a particular zone, this key might be scope and
|
|
24062
|
+
# the key value might be the zone name. Other examples might be a key
|
|
24063
|
+
# indicating a deprecated resource and a suggested replacement, or a
|
|
24064
|
+
# warning about invalid network settings (for example, if an instance
|
|
24065
|
+
# attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
24066
|
+
# Corresponds to the JSON property `key`
|
|
24067
|
+
# @return [String]
|
|
24068
|
+
attr_accessor :key
|
|
24069
|
+
|
|
24070
|
+
# [Output Only] A warning data value corresponding to the key.
|
|
24071
|
+
# Corresponds to the JSON property `value`
|
|
24072
|
+
# @return [String]
|
|
24073
|
+
attr_accessor :value
|
|
24074
|
+
|
|
24075
|
+
def initialize(**args)
|
|
24076
|
+
update!(**args)
|
|
24077
|
+
end
|
|
24078
|
+
|
|
24079
|
+
# Update properties of this object
|
|
24080
|
+
def update!(**args)
|
|
24081
|
+
@key = args[:key] if args.key?(:key)
|
|
24082
|
+
@value = args[:value] if args.key?(:value)
|
|
24083
|
+
end
|
|
24084
|
+
end
|
|
24085
|
+
end
|
|
24086
|
+
end
|
|
24087
|
+
|
|
23917
24088
|
# Initial State for shielded instance,
|
|
23918
24089
|
# these are public keys which are safe to store in public
|
|
23919
24090
|
class InitialStateConfig
|
|
@@ -25678,6 +25849,11 @@ module Google
|
|
|
25678
25849
|
class InstanceGroupManagerInstanceFlexibilityPolicy
|
|
25679
25850
|
include Google::Apis::Core::Hashable
|
|
25680
25851
|
|
|
25852
|
+
# Constraints applied to instance flexibility spreading and selection.
|
|
25853
|
+
# Corresponds to the JSON property `constraints`
|
|
25854
|
+
# @return [Google::Apis::ComputeBeta::InstanceGroupManagerInstanceFlexibilityPolicyConstraints]
|
|
25855
|
+
attr_accessor :constraints
|
|
25856
|
+
|
|
25681
25857
|
# Named instance selections configuring properties that the group will use
|
|
25682
25858
|
# when creating new VMs.
|
|
25683
25859
|
# Corresponds to the JSON property `instanceSelections`
|
|
@@ -25696,11 +25872,34 @@ module Google
|
|
|
25696
25872
|
|
|
25697
25873
|
# Update properties of this object
|
|
25698
25874
|
def update!(**args)
|
|
25875
|
+
@constraints = args[:constraints] if args.key?(:constraints)
|
|
25699
25876
|
@instance_selections = args[:instance_selections] if args.key?(:instance_selections)
|
|
25700
25877
|
@provisioning_model_mix = args[:provisioning_model_mix] if args.key?(:provisioning_model_mix)
|
|
25701
25878
|
end
|
|
25702
25879
|
end
|
|
25703
25880
|
|
|
25881
|
+
# Constraints applied to instance flexibility spreading and selection.
|
|
25882
|
+
class InstanceGroupManagerInstanceFlexibilityPolicyConstraints
|
|
25883
|
+
include Google::Apis::Core::Hashable
|
|
25884
|
+
|
|
25885
|
+
# When set to true, all instances in the group will be provisioned with
|
|
25886
|
+
# the exact same machine type, ensuring cluster homogeneity across zones.
|
|
25887
|
+
# Defaults to false.
|
|
25888
|
+
# Corresponds to the JSON property `singleMachineType`
|
|
25889
|
+
# @return [Boolean]
|
|
25890
|
+
attr_accessor :single_machine_type
|
|
25891
|
+
alias_method :single_machine_type?, :single_machine_type
|
|
25892
|
+
|
|
25893
|
+
def initialize(**args)
|
|
25894
|
+
update!(**args)
|
|
25895
|
+
end
|
|
25896
|
+
|
|
25897
|
+
# Update properties of this object
|
|
25898
|
+
def update!(**args)
|
|
25899
|
+
@single_machine_type = args[:single_machine_type] if args.key?(:single_machine_type)
|
|
25900
|
+
end
|
|
25901
|
+
end
|
|
25902
|
+
|
|
25704
25903
|
#
|
|
25705
25904
|
class InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection
|
|
25706
25905
|
include Google::Apis::Core::Hashable
|
|
@@ -38584,7 +38783,7 @@ module Google
|
|
|
38584
38783
|
# @return [String]
|
|
38585
38784
|
attr_accessor :id
|
|
38586
38785
|
|
|
38587
|
-
#
|
|
38786
|
+
# The list of managed rulesets.
|
|
38588
38787
|
# Corresponds to the JSON property `items`
|
|
38589
38788
|
# @return [Array<Google::Apis::ComputeBeta::ManagedRuleset>]
|
|
38590
38789
|
attr_accessor :items
|
|
@@ -58859,6 +59058,14 @@ module Google
|
|
|
58859
59058
|
attr_accessor :encrypted_interconnect_router
|
|
58860
59059
|
alias_method :encrypted_interconnect_router?, :encrypted_interconnect_router
|
|
58861
59060
|
|
|
59061
|
+
# ETag for optimistic concurrency control as described by AIP 154. Used to
|
|
59062
|
+
# prevent conflicting updates. If provided, the request will succeed only if
|
|
59063
|
+
# the etag matches the current etag of the router; otherwise, the request
|
|
59064
|
+
# fails with an ABORTED error.
|
|
59065
|
+
# Corresponds to the JSON property `etag`
|
|
59066
|
+
# @return [String]
|
|
59067
|
+
attr_accessor :etag
|
|
59068
|
+
|
|
58862
59069
|
# [Output Only] The unique identifier for the resource. This identifier is
|
|
58863
59070
|
# defined by the server.
|
|
58864
59071
|
# Corresponds to the JSON property `id`
|
|
@@ -58943,6 +59150,7 @@ module Google
|
|
|
58943
59150
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
58944
59151
|
@description = args[:description] if args.key?(:description)
|
|
58945
59152
|
@encrypted_interconnect_router = args[:encrypted_interconnect_router] if args.key?(:encrypted_interconnect_router)
|
|
59153
|
+
@etag = args[:etag] if args.key?(:etag)
|
|
58946
59154
|
@id = args[:id] if args.key?(:id)
|
|
58947
59155
|
@interfaces = args[:interfaces] if args.key?(:interfaces)
|
|
58948
59156
|
@kind = args[:kind] if args.key?(:kind)
|
|
@@ -60042,6 +60250,11 @@ module Google
|
|
|
60042
60250
|
# @return [Fixnum]
|
|
60043
60251
|
attr_accessor :rule_number
|
|
60044
60252
|
|
|
60253
|
+
# A list of source workload identities.
|
|
60254
|
+
# Corresponds to the JSON property `sourceWorkloadIdentities`
|
|
60255
|
+
# @return [Array<String>]
|
|
60256
|
+
attr_accessor :source_workload_identities
|
|
60257
|
+
|
|
60045
60258
|
def initialize(**args)
|
|
60046
60259
|
update!(**args)
|
|
60047
60260
|
end
|
|
@@ -60052,6 +60265,7 @@ module Google
|
|
|
60052
60265
|
@description = args[:description] if args.key?(:description)
|
|
60053
60266
|
@match = args[:match] if args.key?(:match)
|
|
60054
60267
|
@rule_number = args[:rule_number] if args.key?(:rule_number)
|
|
60268
|
+
@source_workload_identities = args[:source_workload_identities] if args.key?(:source_workload_identities)
|
|
60055
60269
|
end
|
|
60056
60270
|
end
|
|
60057
60271
|
|
|
@@ -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.149.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 = "20260910"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -2758,6 +2758,24 @@ module Google
|
|
|
2758
2758
|
include Google::Apis::Core::JsonObjectSupport
|
|
2759
2759
|
end
|
|
2760
2760
|
|
|
2761
|
+
class ImageViewsListResponse
|
|
2762
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2763
|
+
|
|
2764
|
+
class Warning
|
|
2765
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2766
|
+
|
|
2767
|
+
class Datum
|
|
2768
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2769
|
+
|
|
2770
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2771
|
+
end
|
|
2772
|
+
|
|
2773
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2774
|
+
end
|
|
2775
|
+
|
|
2776
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2777
|
+
end
|
|
2778
|
+
|
|
2761
2779
|
class InitialStateConfig
|
|
2762
2780
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2763
2781
|
|
|
@@ -2902,6 +2920,12 @@ module Google
|
|
|
2902
2920
|
include Google::Apis::Core::JsonObjectSupport
|
|
2903
2921
|
end
|
|
2904
2922
|
|
|
2923
|
+
class InstanceGroupManagerInstanceFlexibilityPolicyConstraints
|
|
2924
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2925
|
+
|
|
2926
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2927
|
+
end
|
|
2928
|
+
|
|
2905
2929
|
class InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection
|
|
2906
2930
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2907
2931
|
|
|
@@ -11464,8 +11488,11 @@ module Google
|
|
|
11464
11488
|
class CacheInvalidationRule
|
|
11465
11489
|
# @private
|
|
11466
11490
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11491
|
+
property :backend_service, as: 'backendService'
|
|
11467
11492
|
collection :cache_tags, as: 'cacheTags'
|
|
11493
|
+
property :content_type, as: 'contentType'
|
|
11468
11494
|
property :host, as: 'host'
|
|
11495
|
+
property :http_status, as: 'httpStatus'
|
|
11469
11496
|
property :path, as: 'path'
|
|
11470
11497
|
end
|
|
11471
11498
|
end
|
|
@@ -12695,6 +12722,8 @@ module Google
|
|
|
12695
12722
|
class DistributionPolicyZoneConfiguration
|
|
12696
12723
|
# @private
|
|
12697
12724
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
12725
|
+
property :max_size, as: 'maxSize', class: Google::Apis::ComputeBeta::FixedOrPercent, decorator: Google::Apis::ComputeBeta::FixedOrPercent::Representation
|
|
12726
|
+
|
|
12698
12727
|
property :zone, as: 'zone'
|
|
12699
12728
|
end
|
|
12700
12729
|
end
|
|
@@ -13321,6 +13350,7 @@ module Google
|
|
|
13321
13350
|
property :auto_created_reservations_duration, as: 'autoCreatedReservationsDuration', class: Google::Apis::ComputeBeta::Duration, decorator: Google::Apis::ComputeBeta::Duration::Representation
|
|
13322
13351
|
|
|
13323
13352
|
property :auto_delete_auto_created_reservations, as: 'autoDeleteAutoCreatedReservations'
|
|
13353
|
+
property :colocation_resource, as: 'colocationResource'
|
|
13324
13354
|
property :commitment_info, as: 'commitmentInfo', class: Google::Apis::ComputeBeta::FutureReservationCommitmentInfo, decorator: Google::Apis::ComputeBeta::FutureReservationCommitmentInfo::Representation
|
|
13325
13355
|
|
|
13326
13356
|
property :confidential_compute_type, as: 'confidentialComputeType'
|
|
@@ -15050,6 +15080,40 @@ module Google
|
|
|
15050
15080
|
end
|
|
15051
15081
|
end
|
|
15052
15082
|
|
|
15083
|
+
class ImageViewsListResponse
|
|
15084
|
+
# @private
|
|
15085
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15086
|
+
property :etag, as: 'etag'
|
|
15087
|
+
property :id, as: 'id'
|
|
15088
|
+
collection :items, as: 'items', class: Google::Apis::ComputeBeta::ImageView, decorator: Google::Apis::ComputeBeta::ImageView::Representation
|
|
15089
|
+
|
|
15090
|
+
property :kind, as: 'kind'
|
|
15091
|
+
property :next_page_token, as: 'nextPageToken'
|
|
15092
|
+
property :self_link, as: 'selfLink'
|
|
15093
|
+
collection :unreachables, as: 'unreachables'
|
|
15094
|
+
property :warning, as: 'warning', class: Google::Apis::ComputeBeta::ImageViewsListResponse::Warning, decorator: Google::Apis::ComputeBeta::ImageViewsListResponse::Warning::Representation
|
|
15095
|
+
|
|
15096
|
+
end
|
|
15097
|
+
|
|
15098
|
+
class Warning
|
|
15099
|
+
# @private
|
|
15100
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15101
|
+
property :code, as: 'code'
|
|
15102
|
+
collection :data, as: 'data', class: Google::Apis::ComputeBeta::ImageViewsListResponse::Warning::Datum, decorator: Google::Apis::ComputeBeta::ImageViewsListResponse::Warning::Datum::Representation
|
|
15103
|
+
|
|
15104
|
+
property :message, as: 'message'
|
|
15105
|
+
end
|
|
15106
|
+
|
|
15107
|
+
class Datum
|
|
15108
|
+
# @private
|
|
15109
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15110
|
+
property :key, as: 'key'
|
|
15111
|
+
property :value, as: 'value'
|
|
15112
|
+
end
|
|
15113
|
+
end
|
|
15114
|
+
end
|
|
15115
|
+
end
|
|
15116
|
+
|
|
15053
15117
|
class InitialStateConfig
|
|
15054
15118
|
# @private
|
|
15055
15119
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -15432,6 +15496,8 @@ module Google
|
|
|
15432
15496
|
class InstanceGroupManagerInstanceFlexibilityPolicy
|
|
15433
15497
|
# @private
|
|
15434
15498
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15499
|
+
property :constraints, as: 'constraints', class: Google::Apis::ComputeBeta::InstanceGroupManagerInstanceFlexibilityPolicyConstraints, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerInstanceFlexibilityPolicyConstraints::Representation
|
|
15500
|
+
|
|
15435
15501
|
hash :instance_selections, as: 'instanceSelections', class: Google::Apis::ComputeBeta::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection::Representation
|
|
15436
15502
|
|
|
15437
15503
|
property :provisioning_model_mix, as: 'provisioningModelMix', class: Google::Apis::ComputeBeta::InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix::Representation
|
|
@@ -15439,6 +15505,13 @@ module Google
|
|
|
15439
15505
|
end
|
|
15440
15506
|
end
|
|
15441
15507
|
|
|
15508
|
+
class InstanceGroupManagerInstanceFlexibilityPolicyConstraints
|
|
15509
|
+
# @private
|
|
15510
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15511
|
+
property :single_machine_type, as: 'singleMachineType'
|
|
15512
|
+
end
|
|
15513
|
+
end
|
|
15514
|
+
|
|
15442
15515
|
class InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection
|
|
15443
15516
|
# @private
|
|
15444
15517
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -23499,6 +23572,7 @@ module Google
|
|
|
23499
23572
|
property :creation_timestamp, as: 'creationTimestamp'
|
|
23500
23573
|
property :description, as: 'description'
|
|
23501
23574
|
property :encrypted_interconnect_router, as: 'encryptedInterconnectRouter'
|
|
23575
|
+
property :etag, as: 'etag'
|
|
23502
23576
|
property :id, :numeric_string => true, as: 'id'
|
|
23503
23577
|
collection :interfaces, as: 'interfaces', class: Google::Apis::ComputeBeta::RouterInterface, decorator: Google::Apis::ComputeBeta::RouterInterface::Representation
|
|
23504
23578
|
|
|
@@ -23725,6 +23799,7 @@ module Google
|
|
|
23725
23799
|
property :description, as: 'description'
|
|
23726
23800
|
property :match, as: 'match'
|
|
23727
23801
|
property :rule_number, as: 'ruleNumber'
|
|
23802
|
+
collection :source_workload_identities, as: 'sourceWorkloadIdentities'
|
|
23728
23803
|
end
|
|
23729
23804
|
end
|
|
23730
23805
|
|
|
@@ -9485,6 +9485,7 @@ module Google
|
|
|
9485
9485
|
|
|
9486
9486
|
# Gets the Global Frontend Billing Bundle Settings for a project.
|
|
9487
9487
|
# @param [String] project
|
|
9488
|
+
# Required. Project ID for this request.
|
|
9488
9489
|
# @param [String] fields
|
|
9489
9490
|
# Selector specifying which fields to include in a partial response.
|
|
9490
9491
|
# @param [String] quota_user
|
|
@@ -9517,10 +9518,12 @@ module Google
|
|
|
9517
9518
|
|
|
9518
9519
|
# Updates the Global Frontend Billing Bundle Settings for a project.
|
|
9519
9520
|
# @param [String] project
|
|
9521
|
+
# Required. Project ID for this request.
|
|
9520
9522
|
# @param [Google::Apis::ComputeBeta::GlobalFrontendSettings] global_frontend_settings_object
|
|
9521
9523
|
# @param [String] request_id
|
|
9524
|
+
# An optional request ID to identify requests.
|
|
9522
9525
|
# @param [String] update_mask
|
|
9523
|
-
#
|
|
9526
|
+
# Field mask to support patch. E.g., "type".
|
|
9524
9527
|
# @param [String] fields
|
|
9525
9528
|
# Selector specifying which fields to include in a partial response.
|
|
9526
9529
|
# @param [String] quota_user
|
|
@@ -12968,6 +12971,124 @@ module Google
|
|
|
12968
12971
|
execute_or_queue_command(command, &block)
|
|
12969
12972
|
end
|
|
12970
12973
|
|
|
12974
|
+
# Returns a list of global ImageView resources, with a regional
|
|
12975
|
+
# context.
|
|
12976
|
+
# @param [String] project
|
|
12977
|
+
# Required. Project ID for this request.
|
|
12978
|
+
# @param [String] region
|
|
12979
|
+
# Required. Name of the region for this request.
|
|
12980
|
+
# @param [String] filter
|
|
12981
|
+
# A filter expression that filters resources listed in the response. Most
|
|
12982
|
+
# Compute resources support two types of filter expressions:
|
|
12983
|
+
# expressions that support regular expressions and expressions that follow
|
|
12984
|
+
# API improvement proposal AIP-160.
|
|
12985
|
+
# These two types of filter expressions cannot be mixed in one request.
|
|
12986
|
+
# If you want to use AIP-160, your expression must specify the field name, an
|
|
12987
|
+
# operator, and the value that you want to use for filtering. The value
|
|
12988
|
+
# must be a string, a number, or a boolean. The operator
|
|
12989
|
+
# must be either `=`, `!=`, `>`, `<`, `<=`, `>=` or `:`.
|
|
12990
|
+
# For example, if you are filtering Compute Engine instances, you can
|
|
12991
|
+
# exclude instances named `example-instance` by specifying
|
|
12992
|
+
# `name != example-instance`.
|
|
12993
|
+
# The `:*` comparison can be used to test whether a key has been defined.
|
|
12994
|
+
# For example, to find all objects with `owner` label use:
|
|
12995
|
+
# ```
|
|
12996
|
+
# labels.owner:*
|
|
12997
|
+
# ```
|
|
12998
|
+
# You can also filter nested fields. For example, you could specify
|
|
12999
|
+
# `scheduling.automaticRestart = false` to include instances only
|
|
13000
|
+
# if they are not scheduled for automatic restarts. You can use filtering
|
|
13001
|
+
# on nested fields to filter based onresource labels.
|
|
13002
|
+
# To filter on multiple expressions, provide each separate expression within
|
|
13003
|
+
# parentheses. For example:
|
|
13004
|
+
# ```
|
|
13005
|
+
# (scheduling.automaticRestart = true)
|
|
13006
|
+
# (cpuPlatform = "Intel Skylake")
|
|
13007
|
+
# ```
|
|
13008
|
+
# By default, each expression is an `AND` expression. However, you
|
|
13009
|
+
# can include `AND` and `OR` expressions explicitly.
|
|
13010
|
+
# For example:
|
|
13011
|
+
# ```
|
|
13012
|
+
# (cpuPlatform = "Intel Skylake") OR
|
|
13013
|
+
# (cpuPlatform = "Intel Broadwell") AND
|
|
13014
|
+
# (scheduling.automaticRestart = true)
|
|
13015
|
+
# ```
|
|
13016
|
+
# If you want to use a regular expression, use the `eq` (equal) or `ne`
|
|
13017
|
+
# (not equal) operator against a single un-parenthesized expression with or
|
|
13018
|
+
# without quotes or against multiple parenthesized expressions. Examples:
|
|
13019
|
+
# `fieldname eq unquoted literal`
|
|
13020
|
+
# `fieldname eq 'single quoted literal'`
|
|
13021
|
+
# `fieldname eq "double quoted literal"`
|
|
13022
|
+
# `(fieldname1 eq literal) (fieldname2 ne "literal")`
|
|
13023
|
+
# The literal value is interpreted as a regular expression using GoogleRE2
|
|
13024
|
+
# library syntax.
|
|
13025
|
+
# The literal value must match the entire field.
|
|
13026
|
+
# For example, to filter for instances that do not end with name "instance",
|
|
13027
|
+
# you would use `name ne .*instance`.
|
|
13028
|
+
# You cannot combine constraints on multiple fields using regular
|
|
13029
|
+
# expressions.
|
|
13030
|
+
# @param [Fixnum] max_results
|
|
13031
|
+
# The maximum number of results per page that should be returned.
|
|
13032
|
+
# If the number of available results is larger than `maxResults`,
|
|
13033
|
+
# Compute Engine returns a `nextPageToken` that can be used to get
|
|
13034
|
+
# the next page of results in subsequent list requests. Acceptable values are
|
|
13035
|
+
# `0` to `500`, inclusive. (Default: `500`)
|
|
13036
|
+
# @param [String] order_by
|
|
13037
|
+
# Sorts list results by a certain order. By default, results
|
|
13038
|
+
# are returned in alphanumerical order based on the resource name.
|
|
13039
|
+
# You can also sort results in descending order based on the creation
|
|
13040
|
+
# timestamp using `orderBy="creationTimestamp desc"`. This sorts
|
|
13041
|
+
# results based on the `creationTimestamp` field in
|
|
13042
|
+
# reverse chronological order (newest result first). Use this to sort
|
|
13043
|
+
# resources like operations so that the newest operation is returned first.
|
|
13044
|
+
# Currently, only sorting by `name` or
|
|
13045
|
+
# `creationTimestamp desc` is supported.
|
|
13046
|
+
# @param [String] page_token
|
|
13047
|
+
# Specifies a page token to use. Set `pageToken` to the
|
|
13048
|
+
# `nextPageToken` returned by a previous list request to get
|
|
13049
|
+
# the next page of results.
|
|
13050
|
+
# @param [Boolean] return_partial_success
|
|
13051
|
+
# Opt-in for partial success behavior which provides partial results in case
|
|
13052
|
+
# of failure. The default value is false.
|
|
13053
|
+
# For example, when partial success behavior is enabled, aggregatedList for a
|
|
13054
|
+
# single zone scope either returns all resources in the zone or no resources,
|
|
13055
|
+
# with an error code.
|
|
13056
|
+
# @param [String] fields
|
|
13057
|
+
# Selector specifying which fields to include in a partial response.
|
|
13058
|
+
# @param [String] quota_user
|
|
13059
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
|
13060
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
|
13061
|
+
# @param [String] user_ip
|
|
13062
|
+
# Legacy name for parameter that has been superseded by `quotaUser`.
|
|
13063
|
+
# @param [Google::Apis::RequestOptions] options
|
|
13064
|
+
# Request-specific options
|
|
13065
|
+
#
|
|
13066
|
+
# @yield [result, err] Result & error if block supplied
|
|
13067
|
+
# @yieldparam result [Google::Apis::ComputeBeta::ImageViewsListResponse] parsed result object
|
|
13068
|
+
# @yieldparam err [StandardError] error object if request failed
|
|
13069
|
+
#
|
|
13070
|
+
# @return [Google::Apis::ComputeBeta::ImageViewsListResponse]
|
|
13071
|
+
#
|
|
13072
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
13073
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
13074
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
13075
|
+
def list_image_views(project, region, filter: nil, max_results: nil, order_by: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
13076
|
+
command = make_simple_command(:get, 'projects/{project}/regions/{region}/imageViews', options)
|
|
13077
|
+
command.response_representation = Google::Apis::ComputeBeta::ImageViewsListResponse::Representation
|
|
13078
|
+
command.response_class = Google::Apis::ComputeBeta::ImageViewsListResponse
|
|
13079
|
+
command.params['project'] = project unless project.nil?
|
|
13080
|
+
command.params['region'] = region unless region.nil?
|
|
13081
|
+
command.query['filter'] = filter unless filter.nil?
|
|
13082
|
+
command.query['maxResults'] = max_results unless max_results.nil?
|
|
13083
|
+
command.query['orderBy'] = order_by unless order_by.nil?
|
|
13084
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
|
13085
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
13086
|
+
command.query['fields'] = fields unless fields.nil?
|
|
13087
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
13088
|
+
command.query['userIp'] = user_ip unless user_ip.nil?
|
|
13089
|
+
execute_or_queue_command(command, &block)
|
|
13090
|
+
end
|
|
13091
|
+
|
|
12971
13092
|
# Deletes the specified image.
|
|
12972
13093
|
# @param [String] project
|
|
12973
13094
|
# Project ID for this request.
|
|
@@ -56312,6 +56433,11 @@ module Google
|
|
|
56312
56433
|
# Name of the region for this request.
|
|
56313
56434
|
# @param [String] router
|
|
56314
56435
|
# Name of the Router resource to delete.
|
|
56436
|
+
# @param [String] etag
|
|
56437
|
+
# ETag for optimistic concurrency control as described by AIP 154. Used to
|
|
56438
|
+
# prevent conflicting updates. If provided, the request will succeed only if
|
|
56439
|
+
# the etag matches the current etag of the router; otherwise, the request
|
|
56440
|
+
# fails with an ABORTED error.
|
|
56315
56441
|
# @param [String] request_id
|
|
56316
56442
|
# An optional request ID to identify requests. Specify a unique request ID so
|
|
56317
56443
|
# that if you must retry your request, the server will know to ignore the
|
|
@@ -56343,13 +56469,14 @@ module Google
|
|
|
56343
56469
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
56344
56470
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
56345
56471
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
56346
|
-
def delete_router(project, region, router, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
56472
|
+
def delete_router(project, region, router, etag: nil, request_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
|
56347
56473
|
command = make_simple_command(:delete, 'projects/{project}/regions/{region}/routers/{router}', options)
|
|
56348
56474
|
command.response_representation = Google::Apis::ComputeBeta::Operation::Representation
|
|
56349
56475
|
command.response_class = Google::Apis::ComputeBeta::Operation
|
|
56350
56476
|
command.params['project'] = project unless project.nil?
|
|
56351
56477
|
command.params['region'] = region unless region.nil?
|
|
56352
56478
|
command.params['router'] = router unless router.nil?
|
|
56479
|
+
command.query['etag'] = etag unless etag.nil?
|
|
56353
56480
|
command.query['requestId'] = request_id unless request_id.nil?
|
|
56354
56481
|
command.query['fields'] = fields unless fields.nil?
|
|
56355
56482
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-compute_beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.149.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.149.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|