google-apis-compute_v1 0.109.0 → 0.111.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/compute_v1/classes.rb +209 -250
- data/lib/google/apis/compute_v1/gem_version.rb +2 -2
- data/lib/google/apis/compute_v1/representations.rb +71 -115
- data/lib/google/apis/compute_v1/service.rb +3 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 820eb75413988fdd7d14fc5f4b4b3ee7897886ec91438e573c10455c63e59cf1
|
4
|
+
data.tar.gz: 420a4370a9121826bc7fca87d7a4b622f5cd4d0d38e7709e81305a85ffc0e1e6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f035689d462d9ccd8856a47c5b0969dd5a2692a6012b9ddaa9d09c03341359fa9312712a18a2afb126e780616e3effc8febb1aff3b702caa6f92788d98c81c9e
|
7
|
+
data.tar.gz: e9c457bb49f930a6f951e3e5b0986a554259262293f7914a119a53c784ed5e419c2e914441d475cb201def68dcf880d36f616221b8101f0905b0a5e8c3e4dd28
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-compute_v1
|
2
2
|
|
3
|
+
### v0.111.0 (2024-11-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241021
|
6
|
+
|
7
|
+
### v0.110.0 (2024-10-27)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241015
|
10
|
+
|
3
11
|
### v0.109.0 (2024-10-13)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241001
|
@@ -1833,8 +1833,8 @@ module Google
|
|
1833
1833
|
# "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
|
1834
1834
|
# , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
|
1835
1835
|
# this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
|
1836
|
-
# exempts jose@example.com from DATA_READ logging, and aliya@example.com
|
1837
|
-
# DATA_WRITE logging.
|
1836
|
+
# exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
|
1837
|
+
# from DATA_WRITE logging.
|
1838
1838
|
class AuditConfig
|
1839
1839
|
include Google::Apis::Core::Hashable
|
1840
1840
|
|
@@ -2991,7 +2991,8 @@ module Google
|
|
2991
2991
|
# CACHE_ALL_STATIC Automatically cache static content, including common image
|
2992
2992
|
# formats, media (video and audio), and web assets (JavaScript and CSS).
|
2993
2993
|
# Requests and responses that are marked as uncacheable, as well as dynamic
|
2994
|
-
# content (including HTML), will not be cached.
|
2994
|
+
# content (including HTML), will not be cached. If no value is provided for
|
2995
|
+
# cdnPolicy.cacheMode, it defaults to CACHE_ALL_STATIC.
|
2995
2996
|
# Corresponds to the JSON property `cacheMode`
|
2996
2997
|
# @return [String]
|
2997
2998
|
attr_accessor :cache_mode
|
@@ -3670,6 +3671,11 @@ module Google
|
|
3670
3671
|
# @return [String]
|
3671
3672
|
attr_accessor :session_affinity
|
3672
3673
|
|
3674
|
+
# The HTTP cookie used for stateful session affinity.
|
3675
|
+
# Corresponds to the JSON property `strongSessionAffinityCookie`
|
3676
|
+
# @return [Google::Apis::ComputeV1::BackendServiceHttpCookie]
|
3677
|
+
attr_accessor :strong_session_affinity_cookie
|
3678
|
+
|
3673
3679
|
# Subsetting configuration for this BackendService. Currently this is applicable
|
3674
3680
|
# only for Internal TCP/UDP load balancing, Internal HTTP(S) load balancing and
|
3675
3681
|
# Traffic Director.
|
@@ -3740,6 +3746,7 @@ module Google
|
|
3740
3746
|
@service_bindings = args[:service_bindings] if args.key?(:service_bindings)
|
3741
3747
|
@service_lb_policy = args[:service_lb_policy] if args.key?(:service_lb_policy)
|
3742
3748
|
@session_affinity = args[:session_affinity] if args.key?(:session_affinity)
|
3749
|
+
@strong_session_affinity_cookie = args[:strong_session_affinity_cookie] if args.key?(:strong_session_affinity_cookie)
|
3743
3750
|
@subsetting = args[:subsetting] if args.key?(:subsetting)
|
3744
3751
|
@timeout_sec = args[:timeout_sec] if args.key?(:timeout_sec)
|
3745
3752
|
@used_by = args[:used_by] if args.key?(:used_by)
|
@@ -3897,7 +3904,8 @@ module Google
|
|
3897
3904
|
# CACHE_ALL_STATIC Automatically cache static content, including common image
|
3898
3905
|
# formats, media (video and audio), and web assets (JavaScript and CSS).
|
3899
3906
|
# Requests and responses that are marked as uncacheable, as well as dynamic
|
3900
|
-
# content (including HTML), will not be cached.
|
3907
|
+
# content (including HTML), will not be cached. If no value is provided for
|
3908
|
+
# cdnPolicy.cacheMode, it defaults to CACHE_ALL_STATIC.
|
3901
3909
|
# Corresponds to the JSON property `cacheMode`
|
3902
3910
|
# @return [String]
|
3903
3911
|
attr_accessor :cache_mode
|
@@ -4232,6 +4240,40 @@ module Google
|
|
4232
4240
|
end
|
4233
4241
|
end
|
4234
4242
|
|
4243
|
+
# The HTTP cookie used for stateful session affinity.
|
4244
|
+
class BackendServiceHttpCookie
|
4245
|
+
include Google::Apis::Core::Hashable
|
4246
|
+
|
4247
|
+
# Name of the cookie.
|
4248
|
+
# Corresponds to the JSON property `name`
|
4249
|
+
# @return [String]
|
4250
|
+
attr_accessor :name
|
4251
|
+
|
4252
|
+
# Path to set for the cookie.
|
4253
|
+
# Corresponds to the JSON property `path`
|
4254
|
+
# @return [String]
|
4255
|
+
attr_accessor :path
|
4256
|
+
|
4257
|
+
# A Duration represents a fixed-length span of time represented as a count of
|
4258
|
+
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
4259
|
+
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
4260
|
+
# 000 years.
|
4261
|
+
# Corresponds to the JSON property `ttl`
|
4262
|
+
# @return [Google::Apis::ComputeV1::Duration]
|
4263
|
+
attr_accessor :ttl
|
4264
|
+
|
4265
|
+
def initialize(**args)
|
4266
|
+
update!(**args)
|
4267
|
+
end
|
4268
|
+
|
4269
|
+
# Update properties of this object
|
4270
|
+
def update!(**args)
|
4271
|
+
@name = args[:name] if args.key?(:name)
|
4272
|
+
@path = args[:path] if args.key?(:path)
|
4273
|
+
@ttl = args[:ttl] if args.key?(:ttl)
|
4274
|
+
end
|
4275
|
+
end
|
4276
|
+
|
4235
4277
|
# Identity-Aware Proxy
|
4236
4278
|
class BackendServiceIap
|
4237
4279
|
include Google::Apis::Core::Hashable
|
@@ -5025,11 +5067,6 @@ module Google
|
|
5025
5067
|
class Binding
|
5026
5068
|
include Google::Apis::Core::Hashable
|
5027
5069
|
|
5028
|
-
# This is deprecated and has no effect. Do not use.
|
5029
|
-
# Corresponds to the JSON property `bindingId`
|
5030
|
-
# @return [String]
|
5031
|
-
attr_accessor :binding_id
|
5032
|
-
|
5033
5070
|
# Represents a textual expression in the Common Expression Language (CEL) syntax.
|
5034
5071
|
# CEL is a C-like expression language. The syntax and semantics of CEL are
|
5035
5072
|
# documented at https://github.com/google/cel-spec. Example (Comparison): title:
|
@@ -5121,7 +5158,6 @@ module Google
|
|
5121
5158
|
|
5122
5159
|
# Update properties of this object
|
5123
5160
|
def update!(**args)
|
5124
|
-
@binding_id = args[:binding_id] if args.key?(:binding_id)
|
5125
5161
|
@condition = args[:condition] if args.key?(:condition)
|
5126
5162
|
@members = args[:members] if args.key?(:members)
|
5127
5163
|
@role = args[:role] if args.key?(:role)
|
@@ -5995,49 +6031,6 @@ module Google
|
|
5995
6031
|
end
|
5996
6032
|
end
|
5997
6033
|
|
5998
|
-
# This is deprecated and has no effect. Do not use.
|
5999
|
-
class Condition
|
6000
|
-
include Google::Apis::Core::Hashable
|
6001
|
-
|
6002
|
-
# This is deprecated and has no effect. Do not use.
|
6003
|
-
# Corresponds to the JSON property `iam`
|
6004
|
-
# @return [String]
|
6005
|
-
attr_accessor :iam
|
6006
|
-
|
6007
|
-
# This is deprecated and has no effect. Do not use.
|
6008
|
-
# Corresponds to the JSON property `op`
|
6009
|
-
# @return [String]
|
6010
|
-
attr_accessor :op
|
6011
|
-
|
6012
|
-
# This is deprecated and has no effect. Do not use.
|
6013
|
-
# Corresponds to the JSON property `svc`
|
6014
|
-
# @return [String]
|
6015
|
-
attr_accessor :svc
|
6016
|
-
|
6017
|
-
# This is deprecated and has no effect. Do not use.
|
6018
|
-
# Corresponds to the JSON property `sys`
|
6019
|
-
# @return [String]
|
6020
|
-
attr_accessor :sys
|
6021
|
-
|
6022
|
-
# This is deprecated and has no effect. Do not use.
|
6023
|
-
# Corresponds to the JSON property `values`
|
6024
|
-
# @return [Array<String>]
|
6025
|
-
attr_accessor :values
|
6026
|
-
|
6027
|
-
def initialize(**args)
|
6028
|
-
update!(**args)
|
6029
|
-
end
|
6030
|
-
|
6031
|
-
# Update properties of this object
|
6032
|
-
def update!(**args)
|
6033
|
-
@iam = args[:iam] if args.key?(:iam)
|
6034
|
-
@op = args[:op] if args.key?(:op)
|
6035
|
-
@svc = args[:svc] if args.key?(:svc)
|
6036
|
-
@sys = args[:sys] if args.key?(:sys)
|
6037
|
-
@values = args[:values] if args.key?(:values)
|
6038
|
-
end
|
6039
|
-
end
|
6040
|
-
|
6041
6034
|
# A set of Confidential Instance options.
|
6042
6035
|
class ConfidentialInstanceConfig
|
6043
6036
|
include Google::Apis::Core::Hashable
|
@@ -12069,6 +12062,12 @@ module Google
|
|
12069
12062
|
# @return [String]
|
12070
12063
|
attr_accessor :health_state
|
12071
12064
|
|
12065
|
+
# Health state of the ipv6 network endpoint determined based on the health
|
12066
|
+
# checks configured.
|
12067
|
+
# Corresponds to the JSON property `ipv6HealthState`
|
12068
|
+
# @return [String]
|
12069
|
+
attr_accessor :ipv6_health_state
|
12070
|
+
|
12072
12071
|
def initialize(**args)
|
12073
12072
|
update!(**args)
|
12074
12073
|
end
|
@@ -12080,6 +12079,7 @@ module Google
|
|
12080
12079
|
@health_check = args[:health_check] if args.key?(:health_check)
|
12081
12080
|
@health_check_service = args[:health_check_service] if args.key?(:health_check_service)
|
12082
12081
|
@health_state = args[:health_state] if args.key?(:health_state)
|
12082
|
+
@ipv6_health_state = args[:ipv6_health_state] if args.key?(:ipv6_health_state)
|
12083
12083
|
end
|
12084
12084
|
end
|
12085
12085
|
|
@@ -14805,6 +14805,13 @@ module Google
|
|
14805
14805
|
# @return [Fixnum]
|
14806
14806
|
attr_accessor :id
|
14807
14807
|
|
14808
|
+
# Instance flexibility allowing MIG to create VMs from multiple types of
|
14809
|
+
# machines. Instance flexibility configuration on MIG overrides instance
|
14810
|
+
# template configuration.
|
14811
|
+
# Corresponds to the JSON property `instanceFlexibilityPolicy`
|
14812
|
+
# @return [Google::Apis::ComputeV1::InstanceGroupManagerInstanceFlexibilityPolicy]
|
14813
|
+
attr_accessor :instance_flexibility_policy
|
14814
|
+
|
14808
14815
|
# [Output Only] The URL of the Instance Group resource.
|
14809
14816
|
# Corresponds to the JSON property `instanceGroup`
|
14810
14817
|
# @return [String]
|
@@ -14842,8 +14849,8 @@ module Google
|
|
14842
14849
|
# @return [String]
|
14843
14850
|
attr_accessor :name
|
14844
14851
|
|
14845
|
-
# Named ports configured
|
14846
|
-
# Group Manager.
|
14852
|
+
# [Output Only] Named ports configured on the Instance Groups complementary to
|
14853
|
+
# this Instance Group Manager.
|
14847
14854
|
# Corresponds to the JSON property `namedPorts`
|
14848
14855
|
# @return [Array<Google::Apis::ComputeV1::NamedPort>]
|
14849
14856
|
attr_accessor :named_ports
|
@@ -14933,6 +14940,7 @@ module Google
|
|
14933
14940
|
@distribution_policy = args[:distribution_policy] if args.key?(:distribution_policy)
|
14934
14941
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
14935
14942
|
@id = args[:id] if args.key?(:id)
|
14943
|
+
@instance_flexibility_policy = args[:instance_flexibility_policy] if args.key?(:instance_flexibility_policy)
|
14936
14944
|
@instance_group = args[:instance_group] if args.key?(:instance_group)
|
14937
14945
|
@instance_lifecycle_policy = args[:instance_lifecycle_policy] if args.key?(:instance_lifecycle_policy)
|
14938
14946
|
@instance_template = args[:instance_template] if args.key?(:instance_template)
|
@@ -15243,6 +15251,54 @@ module Google
|
|
15243
15251
|
end
|
15244
15252
|
end
|
15245
15253
|
|
15254
|
+
#
|
15255
|
+
class InstanceGroupManagerInstanceFlexibilityPolicy
|
15256
|
+
include Google::Apis::Core::Hashable
|
15257
|
+
|
15258
|
+
# Named instance selections configuring properties that the group will use when
|
15259
|
+
# creating new VMs.
|
15260
|
+
# Corresponds to the JSON property `instanceSelections`
|
15261
|
+
# @return [Hash<String,Google::Apis::ComputeV1::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection>]
|
15262
|
+
attr_accessor :instance_selections
|
15263
|
+
|
15264
|
+
def initialize(**args)
|
15265
|
+
update!(**args)
|
15266
|
+
end
|
15267
|
+
|
15268
|
+
# Update properties of this object
|
15269
|
+
def update!(**args)
|
15270
|
+
@instance_selections = args[:instance_selections] if args.key?(:instance_selections)
|
15271
|
+
end
|
15272
|
+
end
|
15273
|
+
|
15274
|
+
#
|
15275
|
+
class InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection
|
15276
|
+
include Google::Apis::Core::Hashable
|
15277
|
+
|
15278
|
+
# Full machine-type names, e.g. "n1-standard-16".
|
15279
|
+
# Corresponds to the JSON property `machineTypes`
|
15280
|
+
# @return [Array<String>]
|
15281
|
+
attr_accessor :machine_types
|
15282
|
+
|
15283
|
+
# Preference of this instance selection. Lower number means higher preference.
|
15284
|
+
# MIG will first try to create a VM based on the machine-type with lowest rank
|
15285
|
+
# and fallback to next rank based on availability. Machine types and instance
|
15286
|
+
# selections with the same rank have the same preference.
|
15287
|
+
# Corresponds to the JSON property `rank`
|
15288
|
+
# @return [Fixnum]
|
15289
|
+
attr_accessor :rank
|
15290
|
+
|
15291
|
+
def initialize(**args)
|
15292
|
+
update!(**args)
|
15293
|
+
end
|
15294
|
+
|
15295
|
+
# Update properties of this object
|
15296
|
+
def update!(**args)
|
15297
|
+
@machine_types = args[:machine_types] if args.key?(:machine_types)
|
15298
|
+
@rank = args[:rank] if args.key?(:rank)
|
15299
|
+
end
|
15300
|
+
end
|
15301
|
+
|
15246
15302
|
#
|
15247
15303
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
15248
15304
|
include Google::Apis::Core::Hashable
|
@@ -18136,7 +18192,7 @@ module Google
|
|
18136
18192
|
class InstancesGetEffectiveFirewallsResponse
|
18137
18193
|
include Google::Apis::Core::Hashable
|
18138
18194
|
|
18139
|
-
# Effective firewalls from firewall policies.
|
18195
|
+
# [Output Only] Effective firewalls from firewall policies.
|
18140
18196
|
# Corresponds to the JSON property `firewallPolicys`
|
18141
18197
|
# @return [Array<Google::Apis::ComputeV1::InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy>]
|
18142
18198
|
attr_accessor :firewall_policys
|
@@ -18178,7 +18234,9 @@ module Google
|
|
18178
18234
|
# @return [Fixnum]
|
18179
18235
|
attr_accessor :priority
|
18180
18236
|
|
18181
|
-
# The rules that apply to the
|
18237
|
+
# [Output Only] The rules that apply to the instance. Only rules that target the
|
18238
|
+
# specific VM instance are returned if target service accounts or target secure
|
18239
|
+
# tags are specified in the rules.
|
18182
18240
|
# Corresponds to the JSON property `rules`
|
18183
18241
|
# @return [Array<Google::Apis::ComputeV1::FirewallPolicyRule>]
|
18184
18242
|
attr_accessor :rules
|
@@ -21920,131 +21978,6 @@ module Google
|
|
21920
21978
|
end
|
21921
21979
|
end
|
21922
21980
|
|
21923
|
-
# This is deprecated and has no effect. Do not use.
|
21924
|
-
class LogConfig
|
21925
|
-
include Google::Apis::Core::Hashable
|
21926
|
-
|
21927
|
-
# This is deprecated and has no effect. Do not use.
|
21928
|
-
# Corresponds to the JSON property `cloudAudit`
|
21929
|
-
# @return [Google::Apis::ComputeV1::LogConfigCloudAuditOptions]
|
21930
|
-
attr_accessor :cloud_audit
|
21931
|
-
|
21932
|
-
# This is deprecated and has no effect. Do not use.
|
21933
|
-
# Corresponds to the JSON property `counter`
|
21934
|
-
# @return [Google::Apis::ComputeV1::LogConfigCounterOptions]
|
21935
|
-
attr_accessor :counter
|
21936
|
-
|
21937
|
-
# This is deprecated and has no effect. Do not use.
|
21938
|
-
# Corresponds to the JSON property `dataAccess`
|
21939
|
-
# @return [Google::Apis::ComputeV1::LogConfigDataAccessOptions]
|
21940
|
-
attr_accessor :data_access
|
21941
|
-
|
21942
|
-
def initialize(**args)
|
21943
|
-
update!(**args)
|
21944
|
-
end
|
21945
|
-
|
21946
|
-
# Update properties of this object
|
21947
|
-
def update!(**args)
|
21948
|
-
@cloud_audit = args[:cloud_audit] if args.key?(:cloud_audit)
|
21949
|
-
@counter = args[:counter] if args.key?(:counter)
|
21950
|
-
@data_access = args[:data_access] if args.key?(:data_access)
|
21951
|
-
end
|
21952
|
-
end
|
21953
|
-
|
21954
|
-
# This is deprecated and has no effect. Do not use.
|
21955
|
-
class LogConfigCloudAuditOptions
|
21956
|
-
include Google::Apis::Core::Hashable
|
21957
|
-
|
21958
|
-
# This is deprecated and has no effect. Do not use.
|
21959
|
-
# Corresponds to the JSON property `logName`
|
21960
|
-
# @return [String]
|
21961
|
-
attr_accessor :log_name
|
21962
|
-
|
21963
|
-
def initialize(**args)
|
21964
|
-
update!(**args)
|
21965
|
-
end
|
21966
|
-
|
21967
|
-
# Update properties of this object
|
21968
|
-
def update!(**args)
|
21969
|
-
@log_name = args[:log_name] if args.key?(:log_name)
|
21970
|
-
end
|
21971
|
-
end
|
21972
|
-
|
21973
|
-
# This is deprecated and has no effect. Do not use.
|
21974
|
-
class LogConfigCounterOptions
|
21975
|
-
include Google::Apis::Core::Hashable
|
21976
|
-
|
21977
|
-
# This is deprecated and has no effect. Do not use.
|
21978
|
-
# Corresponds to the JSON property `customFields`
|
21979
|
-
# @return [Array<Google::Apis::ComputeV1::LogConfigCounterOptionsCustomField>]
|
21980
|
-
attr_accessor :custom_fields
|
21981
|
-
|
21982
|
-
# This is deprecated and has no effect. Do not use.
|
21983
|
-
# Corresponds to the JSON property `field`
|
21984
|
-
# @return [String]
|
21985
|
-
attr_accessor :field
|
21986
|
-
|
21987
|
-
# This is deprecated and has no effect. Do not use.
|
21988
|
-
# Corresponds to the JSON property `metric`
|
21989
|
-
# @return [String]
|
21990
|
-
attr_accessor :metric
|
21991
|
-
|
21992
|
-
def initialize(**args)
|
21993
|
-
update!(**args)
|
21994
|
-
end
|
21995
|
-
|
21996
|
-
# Update properties of this object
|
21997
|
-
def update!(**args)
|
21998
|
-
@custom_fields = args[:custom_fields] if args.key?(:custom_fields)
|
21999
|
-
@field = args[:field] if args.key?(:field)
|
22000
|
-
@metric = args[:metric] if args.key?(:metric)
|
22001
|
-
end
|
22002
|
-
end
|
22003
|
-
|
22004
|
-
# This is deprecated and has no effect. Do not use.
|
22005
|
-
class LogConfigCounterOptionsCustomField
|
22006
|
-
include Google::Apis::Core::Hashable
|
22007
|
-
|
22008
|
-
# This is deprecated and has no effect. Do not use.
|
22009
|
-
# Corresponds to the JSON property `name`
|
22010
|
-
# @return [String]
|
22011
|
-
attr_accessor :name
|
22012
|
-
|
22013
|
-
# This is deprecated and has no effect. Do not use.
|
22014
|
-
# Corresponds to the JSON property `value`
|
22015
|
-
# @return [String]
|
22016
|
-
attr_accessor :value
|
22017
|
-
|
22018
|
-
def initialize(**args)
|
22019
|
-
update!(**args)
|
22020
|
-
end
|
22021
|
-
|
22022
|
-
# Update properties of this object
|
22023
|
-
def update!(**args)
|
22024
|
-
@name = args[:name] if args.key?(:name)
|
22025
|
-
@value = args[:value] if args.key?(:value)
|
22026
|
-
end
|
22027
|
-
end
|
22028
|
-
|
22029
|
-
# This is deprecated and has no effect. Do not use.
|
22030
|
-
class LogConfigDataAccessOptions
|
22031
|
-
include Google::Apis::Core::Hashable
|
22032
|
-
|
22033
|
-
# This is deprecated and has no effect. Do not use.
|
22034
|
-
# Corresponds to the JSON property `logMode`
|
22035
|
-
# @return [String]
|
22036
|
-
attr_accessor :log_mode
|
22037
|
-
|
22038
|
-
def initialize(**args)
|
22039
|
-
update!(**args)
|
22040
|
-
end
|
22041
|
-
|
22042
|
-
# Update properties of this object
|
22043
|
-
def update!(**args)
|
22044
|
-
@log_mode = args[:log_mode] if args.key?(:log_mode)
|
22045
|
-
end
|
22046
|
-
end
|
22047
|
-
|
22048
21981
|
# Represents a machine image resource. A machine image is a Compute Engine
|
22049
21982
|
# resource that stores all the configuration, metadata, permissions, and data
|
22050
21983
|
# from one or more disks required to create a Virtual machine (VM) instance. For
|
@@ -22890,6 +22823,12 @@ module Google
|
|
22890
22823
|
# @return [Google::Apis::ComputeV1::PreservedState]
|
22891
22824
|
attr_accessor :preserved_state_from_policy
|
22892
22825
|
|
22826
|
+
# [Output Only] Instance properties selected for this instance resulting from
|
22827
|
+
# InstanceFlexibilityPolicy.
|
22828
|
+
# Corresponds to the JSON property `propertiesFromFlexibilityPolicy`
|
22829
|
+
# @return [Google::Apis::ComputeV1::ManagedInstancePropertiesFromFlexibilityPolicy]
|
22830
|
+
attr_accessor :properties_from_flexibility_policy
|
22831
|
+
|
22893
22832
|
# [Output Only] Intended version of this instance.
|
22894
22833
|
# Corresponds to the JSON property `version`
|
22895
22834
|
# @return [Google::Apis::ComputeV1::ManagedInstanceVersion]
|
@@ -22910,6 +22849,7 @@ module Google
|
|
22910
22849
|
@name = args[:name] if args.key?(:name)
|
22911
22850
|
@preserved_state_from_config = args[:preserved_state_from_config] if args.key?(:preserved_state_from_config)
|
22912
22851
|
@preserved_state_from_policy = args[:preserved_state_from_policy] if args.key?(:preserved_state_from_policy)
|
22852
|
+
@properties_from_flexibility_policy = args[:properties_from_flexibility_policy] if args.key?(:properties_from_flexibility_policy)
|
22913
22853
|
@version = args[:version] if args.key?(:version)
|
22914
22854
|
end
|
22915
22855
|
end
|
@@ -23069,6 +23009,25 @@ module Google
|
|
23069
23009
|
end
|
23070
23010
|
end
|
23071
23011
|
|
23012
|
+
#
|
23013
|
+
class ManagedInstancePropertiesFromFlexibilityPolicy
|
23014
|
+
include Google::Apis::Core::Hashable
|
23015
|
+
|
23016
|
+
# The machine type to be used for this instance.
|
23017
|
+
# Corresponds to the JSON property `machineType`
|
23018
|
+
# @return [String]
|
23019
|
+
attr_accessor :machine_type
|
23020
|
+
|
23021
|
+
def initialize(**args)
|
23022
|
+
update!(**args)
|
23023
|
+
end
|
23024
|
+
|
23025
|
+
# Update properties of this object
|
23026
|
+
def update!(**args)
|
23027
|
+
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
23028
|
+
end
|
23029
|
+
end
|
23030
|
+
|
23072
23031
|
#
|
23073
23032
|
class ManagedInstanceVersion
|
23074
23033
|
include Google::Apis::Core::Hashable
|
@@ -24356,6 +24315,11 @@ module Google
|
|
24356
24315
|
# @return [String]
|
24357
24316
|
attr_accessor :ip_address
|
24358
24317
|
|
24318
|
+
# Optional IPv6 address of network endpoint.
|
24319
|
+
# Corresponds to the JSON property `ipv6Address`
|
24320
|
+
# @return [String]
|
24321
|
+
attr_accessor :ipv6_address
|
24322
|
+
|
24359
24323
|
# Optional port number of network endpoint. If not specified, the defaultPort
|
24360
24324
|
# for the network endpoint group will be used. This field can not be set for
|
24361
24325
|
# network endpoints of type GCE_VM_IP.
|
@@ -24374,6 +24338,7 @@ module Google
|
|
24374
24338
|
@fqdn = args[:fqdn] if args.key?(:fqdn)
|
24375
24339
|
@instance = args[:instance] if args.key?(:instance)
|
24376
24340
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
24341
|
+
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
24377
24342
|
@port = args[:port] if args.key?(:port)
|
24378
24343
|
end
|
24379
24344
|
end
|
@@ -25639,6 +25604,27 @@ module Google
|
|
25639
25604
|
class NetworkRoutingConfig
|
25640
25605
|
include Google::Apis::Core::Hashable
|
25641
25606
|
|
25607
|
+
# Enable comparison of Multi-Exit Discriminators (MED) across routes with
|
25608
|
+
# different neighbor ASNs when using the STANDARD BGP best path selection
|
25609
|
+
# algorithm.
|
25610
|
+
# Corresponds to the JSON property `bgpAlwaysCompareMed`
|
25611
|
+
# @return [Boolean]
|
25612
|
+
attr_accessor :bgp_always_compare_med
|
25613
|
+
alias_method :bgp_always_compare_med?, :bgp_always_compare_med
|
25614
|
+
|
25615
|
+
# The BGP best path selection algorithm to be employed within this network for
|
25616
|
+
# dynamic routes learned by Cloud Routers. Can be LEGACY (default) or STANDARD.
|
25617
|
+
# Corresponds to the JSON property `bgpBestPathSelectionMode`
|
25618
|
+
# @return [String]
|
25619
|
+
attr_accessor :bgp_best_path_selection_mode
|
25620
|
+
|
25621
|
+
# Allows to define a preferred approach for handling inter-region cost in the
|
25622
|
+
# selection process when using the STANDARD BGP best path selection algorithm.
|
25623
|
+
# Can be DEFAULT or ADD_COST_TO_MED.
|
25624
|
+
# Corresponds to the JSON property `bgpInterRegionCost`
|
25625
|
+
# @return [String]
|
25626
|
+
attr_accessor :bgp_inter_region_cost
|
25627
|
+
|
25642
25628
|
# The network-wide routing mode to use. If set to REGIONAL, this network's Cloud
|
25643
25629
|
# Routers will only advertise routes with subnets of this network in the same
|
25644
25630
|
# region as the router. If set to GLOBAL, this network's Cloud Routers will
|
@@ -25653,6 +25639,9 @@ module Google
|
|
25653
25639
|
|
25654
25640
|
# Update properties of this object
|
25655
25641
|
def update!(**args)
|
25642
|
+
@bgp_always_compare_med = args[:bgp_always_compare_med] if args.key?(:bgp_always_compare_med)
|
25643
|
+
@bgp_best_path_selection_mode = args[:bgp_best_path_selection_mode] if args.key?(:bgp_best_path_selection_mode)
|
25644
|
+
@bgp_inter_region_cost = args[:bgp_inter_region_cost] if args.key?(:bgp_inter_region_cost)
|
25656
25645
|
@routing_mode = args[:routing_mode] if args.key?(:routing_mode)
|
25657
25646
|
end
|
25658
25647
|
end
|
@@ -25708,7 +25697,10 @@ module Google
|
|
25708
25697
|
class NetworksGetEffectiveFirewallsResponse
|
25709
25698
|
include Google::Apis::Core::Hashable
|
25710
25699
|
|
25711
|
-
# Effective firewalls from firewall policy.
|
25700
|
+
# [Output Only] Effective firewalls from firewall policy. It returns Global
|
25701
|
+
# Network Firewall Policies and Hierarchical Firewall Policies. Use
|
25702
|
+
# regionNetworkFirewallPolicies.getEffectiveFirewalls to get Regional Network
|
25703
|
+
# Firewall Policies as well.
|
25712
25704
|
# Corresponds to the JSON property `firewallPolicys`
|
25713
25705
|
# @return [Array<Google::Apis::ComputeV1::NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy>]
|
25714
25706
|
attr_accessor :firewall_policys
|
@@ -25750,7 +25742,7 @@ module Google
|
|
25750
25742
|
# @return [Fixnum]
|
25751
25743
|
attr_accessor :priority
|
25752
25744
|
|
25753
|
-
# The rules that apply to the network.
|
25745
|
+
# [Output Only] The rules that apply to the network.
|
25754
25746
|
# Corresponds to the JSON property `rules`
|
25755
25747
|
# @return [Array<Google::Apis::ComputeV1::FirewallPolicyRule>]
|
25756
25748
|
attr_accessor :rules
|
@@ -29607,11 +29599,6 @@ module Google
|
|
29607
29599
|
# @return [String]
|
29608
29600
|
attr_accessor :etag
|
29609
29601
|
|
29610
|
-
# This is deprecated and has no effect. Do not use.
|
29611
|
-
# Corresponds to the JSON property `rules`
|
29612
|
-
# @return [Array<Google::Apis::ComputeV1::Rule>]
|
29613
|
-
attr_accessor :rules
|
29614
|
-
|
29615
29602
|
# Specifies the format of the policy. Valid values are `0`, `1`, and `3`.
|
29616
29603
|
# Requests that specify an invalid value are rejected. Any operation that
|
29617
29604
|
# affects conditional role bindings must specify version `3`. This requirement
|
@@ -29640,7 +29627,6 @@ module Google
|
|
29640
29627
|
@audit_configs = args[:audit_configs] if args.key?(:audit_configs)
|
29641
29628
|
@bindings = args[:bindings] if args.key?(:bindings)
|
29642
29629
|
@etag = args[:etag] if args.key?(:etag)
|
29643
|
-
@rules = args[:rules] if args.key?(:rules)
|
29644
29630
|
@version = args[:version] if args.key?(:version)
|
29645
29631
|
end
|
29646
29632
|
end
|
@@ -32493,7 +32479,10 @@ module Google
|
|
32493
32479
|
class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse
|
32494
32480
|
include Google::Apis::Core::Hashable
|
32495
32481
|
|
32496
|
-
# Effective firewalls from firewall policy.
|
32482
|
+
# [Output only] Effective firewalls from firewall policy. It applies to Regional
|
32483
|
+
# Network Firewall Policies in the specified region, Global Network Firewall
|
32484
|
+
# Policies and Hierachial Firewall Policies which are associated with the
|
32485
|
+
# network.
|
32497
32486
|
# Corresponds to the JSON property `firewallPolicys`
|
32498
32487
|
# @return [Array<Google::Apis::ComputeV1::RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy>]
|
32499
32488
|
attr_accessor :firewall_policys
|
@@ -32528,7 +32517,7 @@ module Google
|
|
32528
32517
|
# @return [String]
|
32529
32518
|
attr_accessor :name
|
32530
32519
|
|
32531
|
-
# The rules that apply to the network.
|
32520
|
+
# [Output only] The rules that apply to the network.
|
32532
32521
|
# Corresponds to the JSON property `rules`
|
32533
32522
|
# @return [Array<Google::Apis::ComputeV1::FirewallPolicyRule>]
|
32534
32523
|
attr_accessor :rules
|
@@ -32817,7 +32806,10 @@ module Google
|
|
32817
32806
|
attr_accessor :specific_reservation_required
|
32818
32807
|
alias_method :specific_reservation_required?, :specific_reservation_required
|
32819
32808
|
|
32820
|
-
# [Output Only] The status of the reservation.
|
32809
|
+
# [Output Only] The status of the reservation. - CREATING: Reservation resources
|
32810
|
+
# are being allocated. - READY: Reservation resources have been allocated, and
|
32811
|
+
# the reservation is ready for use. - DELETING: Reservation deletion is in
|
32812
|
+
# progress. - UPDATING: Reservation update is in progress.
|
32821
32813
|
# Corresponds to the JSON property `status`
|
32822
32814
|
# @return [String]
|
32823
32815
|
attr_accessor :status
|
@@ -34314,6 +34306,13 @@ module Google
|
|
34314
34306
|
# @return [String]
|
34315
34307
|
attr_accessor :next_hop_instance
|
34316
34308
|
|
34309
|
+
# [Output only] Internal fixed region-to-region cost that Google Cloud
|
34310
|
+
# calculates based on factors such as network performance, distance, and
|
34311
|
+
# available bandwidth between regions.
|
34312
|
+
# Corresponds to the JSON property `nextHopInterRegionCost`
|
34313
|
+
# @return [Fixnum]
|
34314
|
+
attr_accessor :next_hop_inter_region_cost
|
34315
|
+
|
34317
34316
|
# The network IP address of an instance that should handle matching packets.
|
34318
34317
|
# Both IPv6 address and IPv4 addresses are supported. Must specify an IPv4
|
34319
34318
|
# address in dot-decimal notation (e.g. 192.0.2.99) or an IPv6 address in RFC
|
@@ -34324,11 +34323,23 @@ module Google
|
|
34324
34323
|
# @return [String]
|
34325
34324
|
attr_accessor :next_hop_ip
|
34326
34325
|
|
34326
|
+
# [Output Only] Multi-Exit Discriminator, a BGP route metric that indicates the
|
34327
|
+
# desirability of a particular route in a network.
|
34328
|
+
# Corresponds to the JSON property `nextHopMed`
|
34329
|
+
# @return [Fixnum]
|
34330
|
+
attr_accessor :next_hop_med
|
34331
|
+
|
34327
34332
|
# The URL of the local network if it should handle matching packets.
|
34328
34333
|
# Corresponds to the JSON property `nextHopNetwork`
|
34329
34334
|
# @return [String]
|
34330
34335
|
attr_accessor :next_hop_network
|
34331
34336
|
|
34337
|
+
# [Output Only] Indicates the origin of the route. Can be IGP (Interior Gateway
|
34338
|
+
# Protocol), EGP (Exterior Gateway Protocol), or INCOMPLETE.
|
34339
|
+
# Corresponds to the JSON property `nextHopOrigin`
|
34340
|
+
# @return [String]
|
34341
|
+
attr_accessor :next_hop_origin
|
34342
|
+
|
34332
34343
|
# [Output Only] The network peering name that should handle matching packets,
|
34333
34344
|
# which should conform to RFC1035.
|
34334
34345
|
# Corresponds to the JSON property `nextHopPeering`
|
@@ -34397,8 +34408,11 @@ module Google
|
|
34397
34408
|
@next_hop_hub = args[:next_hop_hub] if args.key?(:next_hop_hub)
|
34398
34409
|
@next_hop_ilb = args[:next_hop_ilb] if args.key?(:next_hop_ilb)
|
34399
34410
|
@next_hop_instance = args[:next_hop_instance] if args.key?(:next_hop_instance)
|
34411
|
+
@next_hop_inter_region_cost = args[:next_hop_inter_region_cost] if args.key?(:next_hop_inter_region_cost)
|
34400
34412
|
@next_hop_ip = args[:next_hop_ip] if args.key?(:next_hop_ip)
|
34413
|
+
@next_hop_med = args[:next_hop_med] if args.key?(:next_hop_med)
|
34401
34414
|
@next_hop_network = args[:next_hop_network] if args.key?(:next_hop_network)
|
34415
|
+
@next_hop_origin = args[:next_hop_origin] if args.key?(:next_hop_origin)
|
34402
34416
|
@next_hop_peering = args[:next_hop_peering] if args.key?(:next_hop_peering)
|
34403
34417
|
@next_hop_vpn_tunnel = args[:next_hop_vpn_tunnel] if args.key?(:next_hop_vpn_tunnel)
|
34404
34418
|
@priority = args[:priority] if args.key?(:priority)
|
@@ -36256,61 +36270,6 @@ module Google
|
|
36256
36270
|
end
|
36257
36271
|
end
|
36258
36272
|
|
36259
|
-
# This is deprecated and has no effect. Do not use.
|
36260
|
-
class Rule
|
36261
|
-
include Google::Apis::Core::Hashable
|
36262
|
-
|
36263
|
-
# This is deprecated and has no effect. Do not use.
|
36264
|
-
# Corresponds to the JSON property `action`
|
36265
|
-
# @return [String]
|
36266
|
-
attr_accessor :action
|
36267
|
-
|
36268
|
-
# This is deprecated and has no effect. Do not use.
|
36269
|
-
# Corresponds to the JSON property `conditions`
|
36270
|
-
# @return [Array<Google::Apis::ComputeV1::Condition>]
|
36271
|
-
attr_accessor :conditions
|
36272
|
-
|
36273
|
-
# This is deprecated and has no effect. Do not use.
|
36274
|
-
# Corresponds to the JSON property `description`
|
36275
|
-
# @return [String]
|
36276
|
-
attr_accessor :description
|
36277
|
-
|
36278
|
-
# This is deprecated and has no effect. Do not use.
|
36279
|
-
# Corresponds to the JSON property `ins`
|
36280
|
-
# @return [Array<String>]
|
36281
|
-
attr_accessor :ins
|
36282
|
-
|
36283
|
-
# This is deprecated and has no effect. Do not use.
|
36284
|
-
# Corresponds to the JSON property `logConfigs`
|
36285
|
-
# @return [Array<Google::Apis::ComputeV1::LogConfig>]
|
36286
|
-
attr_accessor :log_configs
|
36287
|
-
|
36288
|
-
# This is deprecated and has no effect. Do not use.
|
36289
|
-
# Corresponds to the JSON property `notIns`
|
36290
|
-
# @return [Array<String>]
|
36291
|
-
attr_accessor :not_ins
|
36292
|
-
|
36293
|
-
# This is deprecated and has no effect. Do not use.
|
36294
|
-
# Corresponds to the JSON property `permissions`
|
36295
|
-
# @return [Array<String>]
|
36296
|
-
attr_accessor :permissions
|
36297
|
-
|
36298
|
-
def initialize(**args)
|
36299
|
-
update!(**args)
|
36300
|
-
end
|
36301
|
-
|
36302
|
-
# Update properties of this object
|
36303
|
-
def update!(**args)
|
36304
|
-
@action = args[:action] if args.key?(:action)
|
36305
|
-
@conditions = args[:conditions] if args.key?(:conditions)
|
36306
|
-
@description = args[:description] if args.key?(:description)
|
36307
|
-
@ins = args[:ins] if args.key?(:ins)
|
36308
|
-
@log_configs = args[:log_configs] if args.key?(:log_configs)
|
36309
|
-
@not_ins = args[:not_ins] if args.key?(:not_ins)
|
36310
|
-
@permissions = args[:permissions] if args.key?(:permissions)
|
36311
|
-
end
|
36312
|
-
end
|
36313
|
-
|
36314
36273
|
#
|
36315
36274
|
class SslHealthCheck
|
36316
36275
|
include Google::Apis::Core::Hashable
|
@@ -42559,7 +42518,7 @@ module Google
|
|
42559
42518
|
attr_accessor :private_ipv6_google_access
|
42560
42519
|
|
42561
42520
|
# The purpose of the resource. This field can be either PRIVATE,
|
42562
|
-
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT
|
42521
|
+
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, or PRIVATE_SERVICE_CONNECT.
|
42563
42522
|
# PRIVATE is the default purpose for user-created subnets or subnets that are
|
42564
42523
|
# automatically created in auto mode networks. Subnets with purpose set to
|
42565
42524
|
# GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks
|
@@ -47698,7 +47657,7 @@ module Google
|
|
47698
47657
|
attr_accessor :network
|
47699
47658
|
|
47700
47659
|
# The purpose of the resource. This field can be either PRIVATE,
|
47701
|
-
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, PRIVATE_SERVICE_CONNECT
|
47660
|
+
# GLOBAL_MANAGED_PROXY, REGIONAL_MANAGED_PROXY, or PRIVATE_SERVICE_CONNECT.
|
47702
47661
|
# PRIVATE is the default purpose for user-created subnets or subnets that are
|
47703
47662
|
# automatically created in auto mode networks. Subnets with purpose set to
|
47704
47663
|
# GLOBAL_MANAGED_PROXY or REGIONAL_MANAGED_PROXY are user-created subnetworks
|
@@ -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.111.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241021"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -466,6 +466,12 @@ module Google
|
|
466
466
|
include Google::Apis::Core::JsonObjectSupport
|
467
467
|
end
|
468
468
|
|
469
|
+
class BackendServiceHttpCookie
|
470
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
|
+
|
472
|
+
include Google::Apis::Core::JsonObjectSupport
|
473
|
+
end
|
474
|
+
|
469
475
|
class BackendServiceIap
|
470
476
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
471
477
|
|
@@ -694,12 +700,6 @@ module Google
|
|
694
700
|
include Google::Apis::Core::JsonObjectSupport
|
695
701
|
end
|
696
702
|
|
697
|
-
class Condition
|
698
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
699
|
-
|
700
|
-
include Google::Apis::Core::JsonObjectSupport
|
701
|
-
end
|
702
|
-
|
703
703
|
class ConfidentialInstanceConfig
|
704
704
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
705
705
|
|
@@ -1726,6 +1726,18 @@ module Google
|
|
1726
1726
|
include Google::Apis::Core::JsonObjectSupport
|
1727
1727
|
end
|
1728
1728
|
|
1729
|
+
class InstanceGroupManagerInstanceFlexibilityPolicy
|
1730
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1731
|
+
|
1732
|
+
include Google::Apis::Core::JsonObjectSupport
|
1733
|
+
end
|
1734
|
+
|
1735
|
+
class InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection
|
1736
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1737
|
+
|
1738
|
+
include Google::Apis::Core::JsonObjectSupport
|
1739
|
+
end
|
1740
|
+
|
1729
1741
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
1730
1742
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1731
1743
|
|
@@ -2704,36 +2716,6 @@ module Google
|
|
2704
2716
|
include Google::Apis::Core::JsonObjectSupport
|
2705
2717
|
end
|
2706
2718
|
|
2707
|
-
class LogConfig
|
2708
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2709
|
-
|
2710
|
-
include Google::Apis::Core::JsonObjectSupport
|
2711
|
-
end
|
2712
|
-
|
2713
|
-
class LogConfigCloudAuditOptions
|
2714
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2715
|
-
|
2716
|
-
include Google::Apis::Core::JsonObjectSupport
|
2717
|
-
end
|
2718
|
-
|
2719
|
-
class LogConfigCounterOptions
|
2720
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2721
|
-
|
2722
|
-
include Google::Apis::Core::JsonObjectSupport
|
2723
|
-
end
|
2724
|
-
|
2725
|
-
class LogConfigCounterOptionsCustomField
|
2726
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2727
|
-
|
2728
|
-
include Google::Apis::Core::JsonObjectSupport
|
2729
|
-
end
|
2730
|
-
|
2731
|
-
class LogConfigDataAccessOptions
|
2732
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2733
|
-
|
2734
|
-
include Google::Apis::Core::JsonObjectSupport
|
2735
|
-
end
|
2736
|
-
|
2737
2719
|
class MachineImage
|
2738
2720
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2739
2721
|
|
@@ -2866,6 +2848,12 @@ module Google
|
|
2866
2848
|
include Google::Apis::Core::JsonObjectSupport
|
2867
2849
|
end
|
2868
2850
|
|
2851
|
+
class ManagedInstancePropertiesFromFlexibilityPolicy
|
2852
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2853
|
+
|
2854
|
+
include Google::Apis::Core::JsonObjectSupport
|
2855
|
+
end
|
2856
|
+
|
2869
2857
|
class ManagedInstanceVersion
|
2870
2858
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2871
2859
|
|
@@ -4690,12 +4678,6 @@ module Google
|
|
4690
4678
|
include Google::Apis::Core::JsonObjectSupport
|
4691
4679
|
end
|
4692
4680
|
|
4693
|
-
class Rule
|
4694
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4695
|
-
|
4696
|
-
include Google::Apis::Core::JsonObjectSupport
|
4697
|
-
end
|
4698
|
-
|
4699
4681
|
class SslHealthCheck
|
4700
4682
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4701
4683
|
|
@@ -7344,6 +7326,8 @@ module Google
|
|
7344
7326
|
collection :service_bindings, as: 'serviceBindings'
|
7345
7327
|
property :service_lb_policy, as: 'serviceLbPolicy'
|
7346
7328
|
property :session_affinity, as: 'sessionAffinity'
|
7329
|
+
property :strong_session_affinity_cookie, as: 'strongSessionAffinityCookie', class: Google::Apis::ComputeV1::BackendServiceHttpCookie, decorator: Google::Apis::ComputeV1::BackendServiceHttpCookie::Representation
|
7330
|
+
|
7347
7331
|
property :subsetting, as: 'subsetting', class: Google::Apis::ComputeV1::Subsetting, decorator: Google::Apis::ComputeV1::Subsetting::Representation
|
7348
7332
|
|
7349
7333
|
property :timeout_sec, as: 'timeoutSec'
|
@@ -7450,6 +7434,16 @@ module Google
|
|
7450
7434
|
end
|
7451
7435
|
end
|
7452
7436
|
|
7437
|
+
class BackendServiceHttpCookie
|
7438
|
+
# @private
|
7439
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7440
|
+
property :name, as: 'name'
|
7441
|
+
property :path, as: 'path'
|
7442
|
+
property :ttl, as: 'ttl', class: Google::Apis::ComputeV1::Duration, decorator: Google::Apis::ComputeV1::Duration::Representation
|
7443
|
+
|
7444
|
+
end
|
7445
|
+
end
|
7446
|
+
|
7453
7447
|
class BackendServiceIap
|
7454
7448
|
# @private
|
7455
7449
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7656,7 +7650,6 @@ module Google
|
|
7656
7650
|
class Binding
|
7657
7651
|
# @private
|
7658
7652
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7659
|
-
property :binding_id, as: 'bindingId'
|
7660
7653
|
property :condition, as: 'condition', class: Google::Apis::ComputeV1::Expr, decorator: Google::Apis::ComputeV1::Expr::Representation
|
7661
7654
|
|
7662
7655
|
collection :members, as: 'members'
|
@@ -7871,17 +7864,6 @@ module Google
|
|
7871
7864
|
end
|
7872
7865
|
end
|
7873
7866
|
|
7874
|
-
class Condition
|
7875
|
-
# @private
|
7876
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
7877
|
-
property :iam, as: 'iam'
|
7878
|
-
property :op, as: 'op'
|
7879
|
-
property :svc, as: 'svc'
|
7880
|
-
property :sys, as: 'sys'
|
7881
|
-
collection :values, as: 'values'
|
7882
|
-
end
|
7883
|
-
end
|
7884
|
-
|
7885
7867
|
class ConfidentialInstanceConfig
|
7886
7868
|
# @private
|
7887
7869
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -9247,6 +9229,7 @@ module Google
|
|
9247
9229
|
property :health_check_service, as: 'healthCheckService', class: Google::Apis::ComputeV1::HealthCheckServiceReference, decorator: Google::Apis::ComputeV1::HealthCheckServiceReference::Representation
|
9248
9230
|
|
9249
9231
|
property :health_state, as: 'healthState'
|
9232
|
+
property :ipv6_health_state, as: 'ipv6HealthState'
|
9250
9233
|
end
|
9251
9234
|
end
|
9252
9235
|
|
@@ -9864,6 +9847,8 @@ module Google
|
|
9864
9847
|
|
9865
9848
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
9866
9849
|
property :id, :numeric_string => true, as: 'id'
|
9850
|
+
property :instance_flexibility_policy, as: 'instanceFlexibilityPolicy', class: Google::Apis::ComputeV1::InstanceGroupManagerInstanceFlexibilityPolicy, decorator: Google::Apis::ComputeV1::InstanceGroupManagerInstanceFlexibilityPolicy::Representation
|
9851
|
+
|
9867
9852
|
property :instance_group, as: 'instanceGroup'
|
9868
9853
|
property :instance_lifecycle_policy, as: 'instanceLifecyclePolicy', class: Google::Apis::ComputeV1::InstanceGroupManagerInstanceLifecyclePolicy, decorator: Google::Apis::ComputeV1::InstanceGroupManagerInstanceLifecyclePolicy::Representation
|
9869
9854
|
|
@@ -9959,6 +9944,22 @@ module Google
|
|
9959
9944
|
end
|
9960
9945
|
end
|
9961
9946
|
|
9947
|
+
class InstanceGroupManagerInstanceFlexibilityPolicy
|
9948
|
+
# @private
|
9949
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9950
|
+
hash :instance_selections, as: 'instanceSelections', class: Google::Apis::ComputeV1::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection, decorator: Google::Apis::ComputeV1::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection::Representation
|
9951
|
+
|
9952
|
+
end
|
9953
|
+
end
|
9954
|
+
|
9955
|
+
class InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection
|
9956
|
+
# @private
|
9957
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9958
|
+
collection :machine_types, as: 'machineTypes'
|
9959
|
+
property :rank, as: 'rank'
|
9960
|
+
end
|
9961
|
+
end
|
9962
|
+
|
9962
9963
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
9963
9964
|
# @private
|
9964
9965
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11689,50 +11690,6 @@ module Google
|
|
11689
11690
|
end
|
11690
11691
|
end
|
11691
11692
|
|
11692
|
-
class LogConfig
|
11693
|
-
# @private
|
11694
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
11695
|
-
property :cloud_audit, as: 'cloudAudit', class: Google::Apis::ComputeV1::LogConfigCloudAuditOptions, decorator: Google::Apis::ComputeV1::LogConfigCloudAuditOptions::Representation
|
11696
|
-
|
11697
|
-
property :counter, as: 'counter', class: Google::Apis::ComputeV1::LogConfigCounterOptions, decorator: Google::Apis::ComputeV1::LogConfigCounterOptions::Representation
|
11698
|
-
|
11699
|
-
property :data_access, as: 'dataAccess', class: Google::Apis::ComputeV1::LogConfigDataAccessOptions, decorator: Google::Apis::ComputeV1::LogConfigDataAccessOptions::Representation
|
11700
|
-
|
11701
|
-
end
|
11702
|
-
end
|
11703
|
-
|
11704
|
-
class LogConfigCloudAuditOptions
|
11705
|
-
# @private
|
11706
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
11707
|
-
property :log_name, as: 'logName'
|
11708
|
-
end
|
11709
|
-
end
|
11710
|
-
|
11711
|
-
class LogConfigCounterOptions
|
11712
|
-
# @private
|
11713
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
11714
|
-
collection :custom_fields, as: 'customFields', class: Google::Apis::ComputeV1::LogConfigCounterOptionsCustomField, decorator: Google::Apis::ComputeV1::LogConfigCounterOptionsCustomField::Representation
|
11715
|
-
|
11716
|
-
property :field, as: 'field'
|
11717
|
-
property :metric, as: 'metric'
|
11718
|
-
end
|
11719
|
-
end
|
11720
|
-
|
11721
|
-
class LogConfigCounterOptionsCustomField
|
11722
|
-
# @private
|
11723
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
11724
|
-
property :name, as: 'name'
|
11725
|
-
property :value, as: 'value'
|
11726
|
-
end
|
11727
|
-
end
|
11728
|
-
|
11729
|
-
class LogConfigDataAccessOptions
|
11730
|
-
# @private
|
11731
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
11732
|
-
property :log_mode, as: 'logMode'
|
11733
|
-
end
|
11734
|
-
end
|
11735
|
-
|
11736
11693
|
class MachineImage
|
11737
11694
|
# @private
|
11738
11695
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -11944,6 +11901,8 @@ module Google
|
|
11944
11901
|
|
11945
11902
|
property :preserved_state_from_policy, as: 'preservedStateFromPolicy', class: Google::Apis::ComputeV1::PreservedState, decorator: Google::Apis::ComputeV1::PreservedState::Representation
|
11946
11903
|
|
11904
|
+
property :properties_from_flexibility_policy, as: 'propertiesFromFlexibilityPolicy', class: Google::Apis::ComputeV1::ManagedInstancePropertiesFromFlexibilityPolicy, decorator: Google::Apis::ComputeV1::ManagedInstancePropertiesFromFlexibilityPolicy::Representation
|
11905
|
+
|
11947
11906
|
property :version, as: 'version', class: Google::Apis::ComputeV1::ManagedInstanceVersion, decorator: Google::Apis::ComputeV1::ManagedInstanceVersion::Representation
|
11948
11907
|
|
11949
11908
|
end
|
@@ -11998,6 +11957,13 @@ module Google
|
|
11998
11957
|
end
|
11999
11958
|
end
|
12000
11959
|
|
11960
|
+
class ManagedInstancePropertiesFromFlexibilityPolicy
|
11961
|
+
# @private
|
11962
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11963
|
+
property :machine_type, as: 'machineType'
|
11964
|
+
end
|
11965
|
+
end
|
11966
|
+
|
12001
11967
|
class ManagedInstanceVersion
|
12002
11968
|
# @private
|
12003
11969
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -12314,6 +12280,7 @@ module Google
|
|
12314
12280
|
property :fqdn, as: 'fqdn'
|
12315
12281
|
property :instance, as: 'instance'
|
12316
12282
|
property :ip_address, as: 'ipAddress'
|
12283
|
+
property :ipv6_address, as: 'ipv6Address'
|
12317
12284
|
property :port, as: 'port'
|
12318
12285
|
end
|
12319
12286
|
end
|
@@ -12625,6 +12592,9 @@ module Google
|
|
12625
12592
|
class NetworkRoutingConfig
|
12626
12593
|
# @private
|
12627
12594
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12595
|
+
property :bgp_always_compare_med, as: 'bgpAlwaysCompareMed'
|
12596
|
+
property :bgp_best_path_selection_mode, as: 'bgpBestPathSelectionMode'
|
12597
|
+
property :bgp_inter_region_cost, as: 'bgpInterRegionCost'
|
12628
12598
|
property :routing_mode, as: 'routingMode'
|
12629
12599
|
end
|
12630
12600
|
end
|
@@ -13642,8 +13612,6 @@ module Google
|
|
13642
13612
|
collection :bindings, as: 'bindings', class: Google::Apis::ComputeV1::Binding, decorator: Google::Apis::ComputeV1::Binding::Representation
|
13643
13613
|
|
13644
13614
|
property :etag, :base64 => true, as: 'etag'
|
13645
|
-
collection :rules, as: 'rules', class: Google::Apis::ComputeV1::Rule, decorator: Google::Apis::ComputeV1::Rule::Representation
|
13646
|
-
|
13647
13615
|
property :version, as: 'version'
|
13648
13616
|
end
|
13649
13617
|
end
|
@@ -14912,8 +14880,11 @@ module Google
|
|
14912
14880
|
property :next_hop_hub, as: 'nextHopHub'
|
14913
14881
|
property :next_hop_ilb, as: 'nextHopIlb'
|
14914
14882
|
property :next_hop_instance, as: 'nextHopInstance'
|
14883
|
+
property :next_hop_inter_region_cost, as: 'nextHopInterRegionCost'
|
14915
14884
|
property :next_hop_ip, as: 'nextHopIp'
|
14885
|
+
property :next_hop_med, as: 'nextHopMed'
|
14916
14886
|
property :next_hop_network, as: 'nextHopNetwork'
|
14887
|
+
property :next_hop_origin, as: 'nextHopOrigin'
|
14917
14888
|
property :next_hop_peering, as: 'nextHopPeering'
|
14918
14889
|
property :next_hop_vpn_tunnel, as: 'nextHopVpnTunnel'
|
14919
14890
|
property :priority, as: 'priority'
|
@@ -15350,21 +15321,6 @@ module Google
|
|
15350
15321
|
end
|
15351
15322
|
end
|
15352
15323
|
|
15353
|
-
class Rule
|
15354
|
-
# @private
|
15355
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
15356
|
-
property :action, as: 'action'
|
15357
|
-
collection :conditions, as: 'conditions', class: Google::Apis::ComputeV1::Condition, decorator: Google::Apis::ComputeV1::Condition::Representation
|
15358
|
-
|
15359
|
-
property :description, as: 'description'
|
15360
|
-
collection :ins, as: 'ins'
|
15361
|
-
collection :log_configs, as: 'logConfigs', class: Google::Apis::ComputeV1::LogConfig, decorator: Google::Apis::ComputeV1::LogConfig::Representation
|
15362
|
-
|
15363
|
-
collection :not_ins, as: 'notIns'
|
15364
|
-
collection :permissions, as: 'permissions'
|
15365
|
-
end
|
15366
|
-
end
|
15367
|
-
|
15368
15324
|
class SslHealthCheck
|
15369
15325
|
# @private
|
15370
15326
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -12903,7 +12903,9 @@ module Google
|
|
12903
12903
|
# and the adjusted start position is returned as the `start` property value. You
|
12904
12904
|
# can also provide a negative start position, which translates to the most
|
12905
12905
|
# recent number of bytes written to the serial port. For example, -3 is
|
12906
|
-
# interpreted as the most recent 3 bytes written to the serial console.
|
12906
|
+
# interpreted as the most recent 3 bytes written to the serial console. Note
|
12907
|
+
# that the negative start is bounded by the retained buffer size, and the
|
12908
|
+
# returned serial console output will not exceed the max buffer size.
|
12907
12909
|
# @param [String] fields
|
12908
12910
|
# Selector specifying which fields to include in a partial response.
|
12909
12911
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.111.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.111.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|