google-apis-compute_v1 0.109.0 → 0.110.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: e85383a6daea15585b6f5bcbb1f20efea91b4876d4d1ceaf082baa72a7d58668
4
- data.tar.gz: ccbbc6286170eac539c7bab7e1cbe6a57b28228ae6e01396ad37a7e6d2ddcf62
3
+ metadata.gz: de8d4d81dc3c7f618a0bad1d61bcf69431056d43df54bb663efe0664686715e1
4
+ data.tar.gz: 5a95354cf866f42c94b11315d358d3a3684e3c17486101673941edab259630e3
5
5
  SHA512:
6
- metadata.gz: 61f02cf22652e4b68eeae0f4a54042262c2dd5b0506766725624daa88bd7b86734a6472075f32806e3fdc712de3b8d1020c2e4ebfad0a5d181356a12393a8f1d
7
- data.tar.gz: bb1cf5e52a536865517c7488b4d7c65a2d827040aab2be31da1c60c11e52c5a503b67c2b3f0dc9891337660d8888bc4e16e03d64b66761e8a2c17dec6af2166f
6
+ metadata.gz: 4a8a10dfdf91df2d01116e2e16ec28f2377de0b6dd9572c4ce03dfe17cc16d7512a0dea3715b74654adb2590b376e99453405b224e80c68dfa37355d5d29b21c
7
+ data.tar.gz: c71afc494e54fae1564e0d2de7afcaa9e5250298a18c4fac97a91c26d2995b6f56331ac50a7b91479db99450ff4a6b07f44feb8b8a1ee0be31eb3208a0f77b4e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.110.0 (2024-10-27)
4
+
5
+ * Regenerated from discovery document revision 20241015
6
+
3
7
  ### v0.109.0 (2024-10-13)
4
8
 
5
9
  * 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 from
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
 
@@ -3670,6 +3670,11 @@ module Google
3670
3670
  # @return [String]
3671
3671
  attr_accessor :session_affinity
3672
3672
 
3673
+ # The HTTP cookie used for stateful session affinity.
3674
+ # Corresponds to the JSON property `strongSessionAffinityCookie`
3675
+ # @return [Google::Apis::ComputeV1::BackendServiceHttpCookie]
3676
+ attr_accessor :strong_session_affinity_cookie
3677
+
3673
3678
  # Subsetting configuration for this BackendService. Currently this is applicable
3674
3679
  # only for Internal TCP/UDP load balancing, Internal HTTP(S) load balancing and
3675
3680
  # Traffic Director.
@@ -3740,6 +3745,7 @@ module Google
3740
3745
  @service_bindings = args[:service_bindings] if args.key?(:service_bindings)
3741
3746
  @service_lb_policy = args[:service_lb_policy] if args.key?(:service_lb_policy)
3742
3747
  @session_affinity = args[:session_affinity] if args.key?(:session_affinity)
3748
+ @strong_session_affinity_cookie = args[:strong_session_affinity_cookie] if args.key?(:strong_session_affinity_cookie)
3743
3749
  @subsetting = args[:subsetting] if args.key?(:subsetting)
3744
3750
  @timeout_sec = args[:timeout_sec] if args.key?(:timeout_sec)
3745
3751
  @used_by = args[:used_by] if args.key?(:used_by)
@@ -4232,6 +4238,40 @@ module Google
4232
4238
  end
4233
4239
  end
4234
4240
 
4241
+ # The HTTP cookie used for stateful session affinity.
4242
+ class BackendServiceHttpCookie
4243
+ include Google::Apis::Core::Hashable
4244
+
4245
+ # Name of the cookie.
4246
+ # Corresponds to the JSON property `name`
4247
+ # @return [String]
4248
+ attr_accessor :name
4249
+
4250
+ # Path to set for the cookie.
4251
+ # Corresponds to the JSON property `path`
4252
+ # @return [String]
4253
+ attr_accessor :path
4254
+
4255
+ # A Duration represents a fixed-length span of time represented as a count of
4256
+ # seconds and fractions of seconds at nanosecond resolution. It is independent
4257
+ # of any calendar and concepts like "day" or "month". Range is approximately 10,
4258
+ # 000 years.
4259
+ # Corresponds to the JSON property `ttl`
4260
+ # @return [Google::Apis::ComputeV1::Duration]
4261
+ attr_accessor :ttl
4262
+
4263
+ def initialize(**args)
4264
+ update!(**args)
4265
+ end
4266
+
4267
+ # Update properties of this object
4268
+ def update!(**args)
4269
+ @name = args[:name] if args.key?(:name)
4270
+ @path = args[:path] if args.key?(:path)
4271
+ @ttl = args[:ttl] if args.key?(:ttl)
4272
+ end
4273
+ end
4274
+
4235
4275
  # Identity-Aware Proxy
4236
4276
  class BackendServiceIap
4237
4277
  include Google::Apis::Core::Hashable
@@ -5025,11 +5065,6 @@ module Google
5025
5065
  class Binding
5026
5066
  include Google::Apis::Core::Hashable
5027
5067
 
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
5068
  # Represents a textual expression in the Common Expression Language (CEL) syntax.
5034
5069
  # CEL is a C-like expression language. The syntax and semantics of CEL are
5035
5070
  # documented at https://github.com/google/cel-spec. Example (Comparison): title:
@@ -5121,7 +5156,6 @@ module Google
5121
5156
 
5122
5157
  # Update properties of this object
5123
5158
  def update!(**args)
5124
- @binding_id = args[:binding_id] if args.key?(:binding_id)
5125
5159
  @condition = args[:condition] if args.key?(:condition)
5126
5160
  @members = args[:members] if args.key?(:members)
5127
5161
  @role = args[:role] if args.key?(:role)
@@ -5995,49 +6029,6 @@ module Google
5995
6029
  end
5996
6030
  end
5997
6031
 
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
6032
  # A set of Confidential Instance options.
6042
6033
  class ConfidentialInstanceConfig
6043
6034
  include Google::Apis::Core::Hashable
@@ -12069,6 +12060,12 @@ module Google
12069
12060
  # @return [String]
12070
12061
  attr_accessor :health_state
12071
12062
 
12063
+ # Health state of the ipv6 network endpoint determined based on the health
12064
+ # checks configured.
12065
+ # Corresponds to the JSON property `ipv6HealthState`
12066
+ # @return [String]
12067
+ attr_accessor :ipv6_health_state
12068
+
12072
12069
  def initialize(**args)
12073
12070
  update!(**args)
12074
12071
  end
@@ -12080,6 +12077,7 @@ module Google
12080
12077
  @health_check = args[:health_check] if args.key?(:health_check)
12081
12078
  @health_check_service = args[:health_check_service] if args.key?(:health_check_service)
12082
12079
  @health_state = args[:health_state] if args.key?(:health_state)
12080
+ @ipv6_health_state = args[:ipv6_health_state] if args.key?(:ipv6_health_state)
12083
12081
  end
12084
12082
  end
12085
12083
 
@@ -14805,6 +14803,13 @@ module Google
14805
14803
  # @return [Fixnum]
14806
14804
  attr_accessor :id
14807
14805
 
14806
+ # Instance flexibility allowing MIG to create VMs from multiple types of
14807
+ # machines. Instance flexibility configuration on MIG overrides instance
14808
+ # template configuration.
14809
+ # Corresponds to the JSON property `instanceFlexibilityPolicy`
14810
+ # @return [Google::Apis::ComputeV1::InstanceGroupManagerInstanceFlexibilityPolicy]
14811
+ attr_accessor :instance_flexibility_policy
14812
+
14808
14813
  # [Output Only] The URL of the Instance Group resource.
14809
14814
  # Corresponds to the JSON property `instanceGroup`
14810
14815
  # @return [String]
@@ -14842,8 +14847,8 @@ module Google
14842
14847
  # @return [String]
14843
14848
  attr_accessor :name
14844
14849
 
14845
- # Named ports configured for the Instance Groups complementary to this Instance
14846
- # Group Manager.
14850
+ # [Output Only] Named ports configured on the Instance Groups complementary to
14851
+ # this Instance Group Manager.
14847
14852
  # Corresponds to the JSON property `namedPorts`
14848
14853
  # @return [Array<Google::Apis::ComputeV1::NamedPort>]
14849
14854
  attr_accessor :named_ports
@@ -14933,6 +14938,7 @@ module Google
14933
14938
  @distribution_policy = args[:distribution_policy] if args.key?(:distribution_policy)
14934
14939
  @fingerprint = args[:fingerprint] if args.key?(:fingerprint)
14935
14940
  @id = args[:id] if args.key?(:id)
14941
+ @instance_flexibility_policy = args[:instance_flexibility_policy] if args.key?(:instance_flexibility_policy)
14936
14942
  @instance_group = args[:instance_group] if args.key?(:instance_group)
14937
14943
  @instance_lifecycle_policy = args[:instance_lifecycle_policy] if args.key?(:instance_lifecycle_policy)
14938
14944
  @instance_template = args[:instance_template] if args.key?(:instance_template)
@@ -15243,6 +15249,54 @@ module Google
15243
15249
  end
15244
15250
  end
15245
15251
 
15252
+ #
15253
+ class InstanceGroupManagerInstanceFlexibilityPolicy
15254
+ include Google::Apis::Core::Hashable
15255
+
15256
+ # Named instance selections configuring properties that the group will use when
15257
+ # creating new VMs.
15258
+ # Corresponds to the JSON property `instanceSelections`
15259
+ # @return [Hash<String,Google::Apis::ComputeV1::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection>]
15260
+ attr_accessor :instance_selections
15261
+
15262
+ def initialize(**args)
15263
+ update!(**args)
15264
+ end
15265
+
15266
+ # Update properties of this object
15267
+ def update!(**args)
15268
+ @instance_selections = args[:instance_selections] if args.key?(:instance_selections)
15269
+ end
15270
+ end
15271
+
15272
+ #
15273
+ class InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection
15274
+ include Google::Apis::Core::Hashable
15275
+
15276
+ # Full machine-type names, e.g. "n1-standard-16".
15277
+ # Corresponds to the JSON property `machineTypes`
15278
+ # @return [Array<String>]
15279
+ attr_accessor :machine_types
15280
+
15281
+ # Preference of this instance selection. Lower number means higher preference.
15282
+ # MIG will first try to create a VM based on the machine-type with lowest rank
15283
+ # and fallback to next rank based on availability. Machine types and instance
15284
+ # selections with the same rank have the same preference.
15285
+ # Corresponds to the JSON property `rank`
15286
+ # @return [Fixnum]
15287
+ attr_accessor :rank
15288
+
15289
+ def initialize(**args)
15290
+ update!(**args)
15291
+ end
15292
+
15293
+ # Update properties of this object
15294
+ def update!(**args)
15295
+ @machine_types = args[:machine_types] if args.key?(:machine_types)
15296
+ @rank = args[:rank] if args.key?(:rank)
15297
+ end
15298
+ end
15299
+
15246
15300
  #
15247
15301
  class InstanceGroupManagerInstanceLifecyclePolicy
15248
15302
  include Google::Apis::Core::Hashable
@@ -18136,7 +18190,7 @@ module Google
18136
18190
  class InstancesGetEffectiveFirewallsResponse
18137
18191
  include Google::Apis::Core::Hashable
18138
18192
 
18139
- # Effective firewalls from firewall policies.
18193
+ # [Output Only] Effective firewalls from firewall policies.
18140
18194
  # Corresponds to the JSON property `firewallPolicys`
18141
18195
  # @return [Array<Google::Apis::ComputeV1::InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy>]
18142
18196
  attr_accessor :firewall_policys
@@ -18178,7 +18232,9 @@ module Google
18178
18232
  # @return [Fixnum]
18179
18233
  attr_accessor :priority
18180
18234
 
18181
- # The rules that apply to the network.
18235
+ # [Output Only] The rules that apply to the instance. Only rules that target the
18236
+ # specific VM instance are returned if target service accounts or target secure
18237
+ # tags are specified in the rules.
18182
18238
  # Corresponds to the JSON property `rules`
18183
18239
  # @return [Array<Google::Apis::ComputeV1::FirewallPolicyRule>]
18184
18240
  attr_accessor :rules
@@ -21920,131 +21976,6 @@ module Google
21920
21976
  end
21921
21977
  end
21922
21978
 
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
21979
  # Represents a machine image resource. A machine image is a Compute Engine
22049
21980
  # resource that stores all the configuration, metadata, permissions, and data
22050
21981
  # from one or more disks required to create a Virtual machine (VM) instance. For
@@ -22890,6 +22821,12 @@ module Google
22890
22821
  # @return [Google::Apis::ComputeV1::PreservedState]
22891
22822
  attr_accessor :preserved_state_from_policy
22892
22823
 
22824
+ # [Output Only] Instance properties selected for this instance resulting from
22825
+ # InstanceFlexibilityPolicy.
22826
+ # Corresponds to the JSON property `propertiesFromFlexibilityPolicy`
22827
+ # @return [Google::Apis::ComputeV1::ManagedInstancePropertiesFromFlexibilityPolicy]
22828
+ attr_accessor :properties_from_flexibility_policy
22829
+
22893
22830
  # [Output Only] Intended version of this instance.
22894
22831
  # Corresponds to the JSON property `version`
22895
22832
  # @return [Google::Apis::ComputeV1::ManagedInstanceVersion]
@@ -22910,6 +22847,7 @@ module Google
22910
22847
  @name = args[:name] if args.key?(:name)
22911
22848
  @preserved_state_from_config = args[:preserved_state_from_config] if args.key?(:preserved_state_from_config)
22912
22849
  @preserved_state_from_policy = args[:preserved_state_from_policy] if args.key?(:preserved_state_from_policy)
22850
+ @properties_from_flexibility_policy = args[:properties_from_flexibility_policy] if args.key?(:properties_from_flexibility_policy)
22913
22851
  @version = args[:version] if args.key?(:version)
22914
22852
  end
22915
22853
  end
@@ -23069,6 +23007,25 @@ module Google
23069
23007
  end
23070
23008
  end
23071
23009
 
23010
+ #
23011
+ class ManagedInstancePropertiesFromFlexibilityPolicy
23012
+ include Google::Apis::Core::Hashable
23013
+
23014
+ # The machine type to be used for this instance.
23015
+ # Corresponds to the JSON property `machineType`
23016
+ # @return [String]
23017
+ attr_accessor :machine_type
23018
+
23019
+ def initialize(**args)
23020
+ update!(**args)
23021
+ end
23022
+
23023
+ # Update properties of this object
23024
+ def update!(**args)
23025
+ @machine_type = args[:machine_type] if args.key?(:machine_type)
23026
+ end
23027
+ end
23028
+
23072
23029
  #
23073
23030
  class ManagedInstanceVersion
23074
23031
  include Google::Apis::Core::Hashable
@@ -24356,6 +24313,11 @@ module Google
24356
24313
  # @return [String]
24357
24314
  attr_accessor :ip_address
24358
24315
 
24316
+ # Optional IPv6 address of network endpoint.
24317
+ # Corresponds to the JSON property `ipv6Address`
24318
+ # @return [String]
24319
+ attr_accessor :ipv6_address
24320
+
24359
24321
  # Optional port number of network endpoint. If not specified, the defaultPort
24360
24322
  # for the network endpoint group will be used. This field can not be set for
24361
24323
  # network endpoints of type GCE_VM_IP.
@@ -24374,6 +24336,7 @@ module Google
24374
24336
  @fqdn = args[:fqdn] if args.key?(:fqdn)
24375
24337
  @instance = args[:instance] if args.key?(:instance)
24376
24338
  @ip_address = args[:ip_address] if args.key?(:ip_address)
24339
+ @ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
24377
24340
  @port = args[:port] if args.key?(:port)
24378
24341
  end
24379
24342
  end
@@ -25708,7 +25671,10 @@ module Google
25708
25671
  class NetworksGetEffectiveFirewallsResponse
25709
25672
  include Google::Apis::Core::Hashable
25710
25673
 
25711
- # Effective firewalls from firewall policy.
25674
+ # [Output Only] Effective firewalls from firewall policy. It returns Global
25675
+ # Network Firewall Policies and Hierarchical Firewall Policies. Use
25676
+ # regionNetworkFirewallPolicies.getEffectiveFirewalls to get Regional Network
25677
+ # Firewall Policies as well.
25712
25678
  # Corresponds to the JSON property `firewallPolicys`
25713
25679
  # @return [Array<Google::Apis::ComputeV1::NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy>]
25714
25680
  attr_accessor :firewall_policys
@@ -25750,7 +25716,7 @@ module Google
25750
25716
  # @return [Fixnum]
25751
25717
  attr_accessor :priority
25752
25718
 
25753
- # The rules that apply to the network.
25719
+ # [Output Only] The rules that apply to the network.
25754
25720
  # Corresponds to the JSON property `rules`
25755
25721
  # @return [Array<Google::Apis::ComputeV1::FirewallPolicyRule>]
25756
25722
  attr_accessor :rules
@@ -29607,11 +29573,6 @@ module Google
29607
29573
  # @return [String]
29608
29574
  attr_accessor :etag
29609
29575
 
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
29576
  # Specifies the format of the policy. Valid values are `0`, `1`, and `3`.
29616
29577
  # Requests that specify an invalid value are rejected. Any operation that
29617
29578
  # affects conditional role bindings must specify version `3`. This requirement
@@ -29640,7 +29601,6 @@ module Google
29640
29601
  @audit_configs = args[:audit_configs] if args.key?(:audit_configs)
29641
29602
  @bindings = args[:bindings] if args.key?(:bindings)
29642
29603
  @etag = args[:etag] if args.key?(:etag)
29643
- @rules = args[:rules] if args.key?(:rules)
29644
29604
  @version = args[:version] if args.key?(:version)
29645
29605
  end
29646
29606
  end
@@ -32493,7 +32453,10 @@ module Google
32493
32453
  class RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponse
32494
32454
  include Google::Apis::Core::Hashable
32495
32455
 
32496
- # Effective firewalls from firewall policy.
32456
+ # [Output only] Effective firewalls from firewall policy. It applies to Regional
32457
+ # Network Firewall Policies in the specified region, Global Network Firewall
32458
+ # Policies and Hierachial Firewall Policies which are associated with the
32459
+ # network.
32497
32460
  # Corresponds to the JSON property `firewallPolicys`
32498
32461
  # @return [Array<Google::Apis::ComputeV1::RegionNetworkFirewallPoliciesGetEffectiveFirewallsResponseEffectiveFirewallPolicy>]
32499
32462
  attr_accessor :firewall_policys
@@ -32528,7 +32491,7 @@ module Google
32528
32491
  # @return [String]
32529
32492
  attr_accessor :name
32530
32493
 
32531
- # The rules that apply to the network.
32494
+ # [Output only] The rules that apply to the network.
32532
32495
  # Corresponds to the JSON property `rules`
32533
32496
  # @return [Array<Google::Apis::ComputeV1::FirewallPolicyRule>]
32534
32497
  attr_accessor :rules
@@ -32817,7 +32780,10 @@ module Google
32817
32780
  attr_accessor :specific_reservation_required
32818
32781
  alias_method :specific_reservation_required?, :specific_reservation_required
32819
32782
 
32820
- # [Output Only] The status of the reservation.
32783
+ # [Output Only] The status of the reservation. - CREATING: Reservation resources
32784
+ # are being allocated. - READY: Reservation resources have been allocated, and
32785
+ # the reservation is ready for use. - DELETING: Reservation deletion is in
32786
+ # progress. - UPDATING: Reservation update is in progress.
32821
32787
  # Corresponds to the JSON property `status`
32822
32788
  # @return [String]
32823
32789
  attr_accessor :status
@@ -36256,61 +36222,6 @@ module Google
36256
36222
  end
36257
36223
  end
36258
36224
 
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
36225
  #
36315
36226
  class SslHealthCheck
36316
36227
  include Google::Apis::Core::Hashable
@@ -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.109.0"
19
+ GEM_VERSION = "0.110.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 = "20241001"
25
+ REVISION = "20241015"
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
@@ -13642,8 +13609,6 @@ module Google
13642
13609
  collection :bindings, as: 'bindings', class: Google::Apis::ComputeV1::Binding, decorator: Google::Apis::ComputeV1::Binding::Representation
13643
13610
 
13644
13611
  property :etag, :base64 => true, as: 'etag'
13645
- collection :rules, as: 'rules', class: Google::Apis::ComputeV1::Rule, decorator: Google::Apis::ComputeV1::Rule::Representation
13646
-
13647
13612
  property :version, as: 'version'
13648
13613
  end
13649
13614
  end
@@ -15350,21 +15315,6 @@ module Google
15350
15315
  end
15351
15316
  end
15352
15317
 
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
15318
  class SslHealthCheck
15369
15319
  # @private
15370
15320
  class Representation < Google::Apis::Core::JsonRepresentation
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.109.0
4
+ version: 0.110.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-10-13 00:00:00.000000000 Z
11
+ date: 2024-10-27 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.109.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.110.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: []