google-apis-compute_v1 0.87.0 → 0.89.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: da7c435b443e7d9c02465e7892677fb6db7ab6bbd6c8447cedd2da091069547c
4
- data.tar.gz: 1cbe8ec410a2c11dbc87a0458a5e625c65abe0d7f95c71f6215f8853dccaf23b
3
+ metadata.gz: 45e9d07457db0490217955e6b5a67557336722fbd179e629f585cd24444adea4
4
+ data.tar.gz: 2167449b029e63e318c4eb0b7b13e4f84b90db041713c61798568ccc52a7ff55
5
5
  SHA512:
6
- metadata.gz: 5c298ad0e73db98e86ae14d074600ebf023641aba436899c87de0747def70dfe04cccf8262762e739e47f91d82285e9680b0a8c01b6fb3ee4df3612f5219aba3
7
- data.tar.gz: c295fb0295d44313c0b7ec4a9ef18667007c1b4cf5c58a7c4c9800e8266d344dbfe12b8d2ea669556d7bc94f35e8c91a7f8ef67e98e6d076773129f595b0a7da
6
+ metadata.gz: 561ebd5fd558b102f4ce6a48931ed8c3091a02d151161141d2551de601ba115231789091cc234d287ce4e951d470e0a668c53498e3a4557a69424e3b855313ec
7
+ data.tar.gz: 0cbc22b8b46ebfe464fb9318143d11a1068cd7a31597a707b5c7bdbeb1fd5304ad8ea06355c4c4853b19668fb72780ee8008f57cec68ea0a7734ce1be252082f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.89.0 (2024-02-11)
4
+
5
+ * Regenerated from discovery document revision 20240130
6
+
7
+ ### v0.88.0 (2024-02-04)
8
+
9
+ * Regenerated from discovery document revision 20240129
10
+ * Regenerated using generator version 0.13.1
11
+
3
12
  ### v0.87.0 (2024-01-22)
4
13
 
5
14
  * Regenerated from discovery document revision 20240109
@@ -5045,7 +5045,10 @@ module Google
5045
5045
  attr_accessor :members
5046
5046
 
5047
5047
  # Role that is assigned to the list of `members`, or principals. For example, `
5048
- # roles/viewer`, `roles/editor`, or `roles/owner`.
5048
+ # roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
5049
+ # roles and permissions, see the [IAM documentation](https://cloud.google.com/
5050
+ # iam/docs/roles-overview). For a list of the available pre-defined roles, see [
5051
+ # here](https://cloud.google.com/iam/docs/understanding-roles).
5049
5052
  # Corresponds to the JSON property `role`
5050
5053
  # @return [String]
5051
5054
  attr_accessor :role
@@ -9177,6 +9180,14 @@ module Google
9177
9180
  # @return [Fixnum]
9178
9181
  attr_accessor :rule_tuple_count
9179
9182
 
9183
+ # A fully-qualified URL of a SecurityProfile resource instance. Example: https://
9184
+ # networksecurity.googleapis.com/v1/projects/`project`/locations/`location`/
9185
+ # securityProfileGroups/my-security-profile-group Must be specified if action = '
9186
+ # apply_security_profile_group' and cannot be specified for other actions.
9187
+ # Corresponds to the JSON property `securityProfileGroup`
9188
+ # @return [String]
9189
+ attr_accessor :security_profile_group
9190
+
9180
9191
  # A list of network resource URLs to which this rule applies. This field allows
9181
9192
  # you to control which network's VMs get this rule. If this field is left blank,
9182
9193
  # all VMs within the organization will receive the rule.
@@ -9202,6 +9213,14 @@ module Google
9202
9213
  # @return [Array<String>]
9203
9214
  attr_accessor :target_service_accounts
9204
9215
 
9216
+ # Boolean flag indicating if the traffic should be TLS decrypted. Can be set
9217
+ # only if action = 'apply_security_profile_group' and cannot be set for other
9218
+ # actions.
9219
+ # Corresponds to the JSON property `tlsInspect`
9220
+ # @return [Boolean]
9221
+ attr_accessor :tls_inspect
9222
+ alias_method :tls_inspect?, :tls_inspect
9223
+
9205
9224
  def initialize(**args)
9206
9225
  update!(**args)
9207
9226
  end
@@ -9218,9 +9237,11 @@ module Google
9218
9237
  @priority = args[:priority] if args.key?(:priority)
9219
9238
  @rule_name = args[:rule_name] if args.key?(:rule_name)
9220
9239
  @rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
9240
+ @security_profile_group = args[:security_profile_group] if args.key?(:security_profile_group)
9221
9241
  @target_resources = args[:target_resources] if args.key?(:target_resources)
9222
9242
  @target_secure_tags = args[:target_secure_tags] if args.key?(:target_secure_tags)
9223
9243
  @target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts)
9244
+ @tls_inspect = args[:tls_inspect] if args.key?(:tls_inspect)
9224
9245
  end
9225
9246
  end
9226
9247
 
@@ -14422,6 +14443,12 @@ module Google
14422
14443
  class InstanceGroupManager
14423
14444
  include Google::Apis::Core::Hashable
14424
14445
 
14446
+ # Specifies configuration that overrides the instance template configuration for
14447
+ # the group.
14448
+ # Corresponds to the JSON property `allInstancesConfig`
14449
+ # @return [Google::Apis::ComputeV1::InstanceGroupManagerAllInstancesConfig]
14450
+ attr_accessor :all_instances_config
14451
+
14425
14452
  # The autohealing policy for this managed instance group. You can specify only
14426
14453
  # one value.
14427
14454
  # Corresponds to the JSON property `autoHealingPolicies`
@@ -14582,6 +14609,7 @@ module Google
14582
14609
 
14583
14610
  # Update properties of this object
14584
14611
  def update!(**args)
14612
+ @all_instances_config = args[:all_instances_config] if args.key?(:all_instances_config)
14585
14613
  @auto_healing_policies = args[:auto_healing_policies] if args.key?(:auto_healing_policies)
14586
14614
  @base_instance_name = args[:base_instance_name] if args.key?(:base_instance_name)
14587
14615
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
@@ -14848,6 +14876,25 @@ module Google
14848
14876
  end
14849
14877
  end
14850
14878
 
14879
+ #
14880
+ class InstanceGroupManagerAllInstancesConfig
14881
+ include Google::Apis::Core::Hashable
14882
+
14883
+ # Represents the change that you want to make to the instance properties.
14884
+ # Corresponds to the JSON property `properties`
14885
+ # @return [Google::Apis::ComputeV1::InstancePropertiesPatch]
14886
+ attr_accessor :properties
14887
+
14888
+ def initialize(**args)
14889
+ update!(**args)
14890
+ end
14891
+
14892
+ # Update properties of this object
14893
+ def update!(**args)
14894
+ @properties = args[:properties] if args.key?(:properties)
14895
+ end
14896
+ end
14897
+
14851
14898
  #
14852
14899
  class InstanceGroupManagerAutoHealingPolicy
14853
14900
  include Google::Apis::Core::Hashable
@@ -15024,6 +15071,11 @@ module Google
15024
15071
  class InstanceGroupManagerStatus
15025
15072
  include Google::Apis::Core::Hashable
15026
15073
 
15074
+ # [Output only] Status of all-instances configuration on the group.
15075
+ # Corresponds to the JSON property `allInstancesConfig`
15076
+ # @return [Google::Apis::ComputeV1::InstanceGroupManagerStatusAllInstancesConfig]
15077
+ attr_accessor :all_instances_config
15078
+
15027
15079
  # [Output Only] The URL of the Autoscaler that targets this instance group
15028
15080
  # manager.
15029
15081
  # Corresponds to the JSON property `autoscaler`
@@ -15058,6 +15110,7 @@ module Google
15058
15110
 
15059
15111
  # Update properties of this object
15060
15112
  def update!(**args)
15113
+ @all_instances_config = args[:all_instances_config] if args.key?(:all_instances_config)
15061
15114
  @autoscaler = args[:autoscaler] if args.key?(:autoscaler)
15062
15115
  @is_stable = args[:is_stable] if args.key?(:is_stable)
15063
15116
  @stateful = args[:stateful] if args.key?(:stateful)
@@ -15065,6 +15118,34 @@ module Google
15065
15118
  end
15066
15119
  end
15067
15120
 
15121
+ #
15122
+ class InstanceGroupManagerStatusAllInstancesConfig
15123
+ include Google::Apis::Core::Hashable
15124
+
15125
+ # [Output Only] Current all-instances configuration revision. This value is in
15126
+ # RFC3339 text format.
15127
+ # Corresponds to the JSON property `currentRevision`
15128
+ # @return [String]
15129
+ attr_accessor :current_revision
15130
+
15131
+ # [Output Only] A bit indicating whether this configuration has been applied to
15132
+ # all managed instances in the group.
15133
+ # Corresponds to the JSON property `effective`
15134
+ # @return [Boolean]
15135
+ attr_accessor :effective
15136
+ alias_method :effective?, :effective
15137
+
15138
+ def initialize(**args)
15139
+ update!(**args)
15140
+ end
15141
+
15142
+ # Update properties of this object
15143
+ def update!(**args)
15144
+ @current_revision = args[:current_revision] if args.key?(:current_revision)
15145
+ @effective = args[:effective] if args.key?(:effective)
15146
+ end
15147
+ end
15148
+
15068
15149
  #
15069
15150
  class InstanceGroupManagerStatusStateful
15070
15151
  include Google::Apis::Core::Hashable
@@ -16617,6 +16698,32 @@ module Google
16617
16698
  end
16618
16699
  end
16619
16700
 
16701
+ # Represents the change that you want to make to the instance properties.
16702
+ class InstancePropertiesPatch
16703
+ include Google::Apis::Core::Hashable
16704
+
16705
+ # The label key-value pairs that you want to patch onto the instance.
16706
+ # Corresponds to the JSON property `labels`
16707
+ # @return [Hash<String,String>]
16708
+ attr_accessor :labels
16709
+
16710
+ # The metadata key-value pairs that you want to patch onto the instance. For
16711
+ # more information, see Project and instance metadata.
16712
+ # Corresponds to the JSON property `metadata`
16713
+ # @return [Hash<String,String>]
16714
+ attr_accessor :metadata
16715
+
16716
+ def initialize(**args)
16717
+ update!(**args)
16718
+ end
16719
+
16720
+ # Update properties of this object
16721
+ def update!(**args)
16722
+ @labels = args[:labels] if args.key?(:labels)
16723
+ @metadata = args[:metadata] if args.key?(:metadata)
16724
+ end
16725
+ end
16726
+
16620
16727
  #
16621
16728
  class InstanceReference
16622
16729
  include Google::Apis::Core::Hashable
@@ -22804,11 +22911,12 @@ module Google
22804
22911
  # @return [String]
22805
22912
  attr_accessor :fqdn
22806
22913
 
22807
- # The name or a URL of a specific VM instance that the IP address belongs to.
22808
- # This is required for network endpoints of type GCE_VM_IP_PORT. The instance
22809
- # must be in the same zone of network endpoint group (for zonal NEGs) or in the
22810
- # zone within the region of the NEG (for regional NEGs). The name must be 1-63
22811
- # characters long, and comply with RFC1035 or be a valid URL pointing to an
22914
+ # The name or a URL of VM instance of this network endpoint. This field is
22915
+ # required for network endpoints of type GCE_VM_IP and GCE_VM_IP_PORT. The
22916
+ # instance must be in the same zone of network endpoint group (for zonal NEGs)
22917
+ # or in the zone within the region of the NEG (for regional NEGs). If the
22918
+ # ipAddress is specified, it must belongs to the VM instance. The name must be 1-
22919
+ # 63 characters long, and comply with RFC1035 or be a valid URL pointing to an
22812
22920
  # existing instance.
22813
22921
  # Corresponds to the JSON property `instance`
22814
22922
  # @return [String]
@@ -22818,13 +22926,18 @@ module Google
22818
22926
  # in Compute Engine (either the primary IP or as part of an aliased IP range).
22819
22927
  # If the IP address is not specified, then the primary IP address for the VM
22820
22928
  # instance in the network that the network endpoint group belongs to will be
22821
- # used.
22929
+ # used. This field is redundant and need not be set for network endpoints of
22930
+ # type GCE_VM_IP. If set, it must be set to the primary internal IP address of
22931
+ # the attached VM instance that matches the subnetwork of the NEG. The primary
22932
+ # internal IP address from any NIC of a multi-NIC VM instance can be added to a
22933
+ # NEG as long as it matches the NEG subnetwork.
22822
22934
  # Corresponds to the JSON property `ipAddress`
22823
22935
  # @return [String]
22824
22936
  attr_accessor :ip_address
22825
22937
 
22826
22938
  # Optional port number of network endpoint. If not specified, the defaultPort
22827
- # for the network endpoint group will be used.
22939
+ # for the network endpoint group will be used. This field can not be set for
22940
+ # network endpoints of type GCE_VM_IP.
22828
22941
  # Corresponds to the JSON property `port`
22829
22942
  # @return [Fixnum]
22830
22943
  attr_accessor :port
@@ -22885,7 +22998,8 @@ module Google
22885
22998
  attr_accessor :creation_timestamp
22886
22999
 
22887
23000
  # The default port used if the port number is not specified in the network
22888
- # endpoint.
23001
+ # endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
23002
+ # PRIVATE_SERVICE_CONNECT, this field must not be specified.
22889
23003
  # Corresponds to the JSON property `defaultPort`
22890
23004
  # @return [Fixnum]
22891
23005
  attr_accessor :default_port
@@ -22918,8 +23032,8 @@ module Google
22918
23032
  # @return [String]
22919
23033
  attr_accessor :name
22920
23034
 
22921
- # The URL of the network to which all network endpoints in the NEG belong. Uses "
22922
- # default" project network if unspecified.
23035
+ # The URL of the network to which all network endpoints in the NEG belong. Uses
23036
+ # default project network if unspecified.
22923
23037
  # Corresponds to the JSON property `network`
22924
23038
  # @return [String]
22925
23039
  attr_accessor :network
@@ -22938,8 +23052,8 @@ module Google
22938
23052
  attr_accessor :psc_data
22939
23053
 
22940
23054
  # The target service url used to set up private service connection to a Google
22941
- # API or a PSC Producer Service Attachment. An example value is: "asia-
22942
- # northeast3-cloudkms.googleapis.com"
23055
+ # API or a PSC Producer Service Attachment. An example value is: asia-northeast3-
23056
+ # cloudkms.googleapis.com
22943
23057
  # Corresponds to the JSON property `pscTargetService`
22944
23058
  # @return [String]
22945
23059
  attr_accessor :psc_target_service
@@ -23133,24 +23247,25 @@ module Google
23133
23247
  include Google::Apis::Core::Hashable
23134
23248
 
23135
23249
  # Optional serving service. The service name is case-sensitive and must be 1-63
23136
- # characters long. Example value: "default", "my-service".
23250
+ # characters long. Example value: default, my-service.
23137
23251
  # Corresponds to the JSON property `service`
23138
23252
  # @return [String]
23139
23253
  attr_accessor :service
23140
23254
 
23141
- # A template to parse service and version fields from a request URL. URL mask
23142
- # allows for routing to multiple App Engine services without having to create
23143
- # multiple Network Endpoint Groups and backend services. For example, the
23144
- # request URLs "foo1-dot-appname.appspot.com/v1" and "foo1-dot-appname.appspot.
23145
- # com/v2" can be backed by the same Serverless NEG with URL mask "<service>-dot-
23146
- # appname.appspot.com/<version>". The URL mask will parse them to ` service = "
23147
- # foo1", version = "v1" ` and ` service = "foo1", version = "v2" ` respectively.
23255
+ # An URL mask is one of the main components of the Cloud Function. A template to
23256
+ # parse service and version fields from a request URL. URL mask allows for
23257
+ # routing to multiple App Engine services without having to create multiple
23258
+ # Network Endpoint Groups and backend services. For example, the request URLs
23259
+ # foo1-dot-appname.appspot.com/v1 and foo1-dot-appname.appspot.com/v2 can be
23260
+ # backed by the same Serverless NEG with URL mask <service>-dot-appname.appspot.
23261
+ # com/<version>. The URL mask will parse them to ` service = "foo1", version = "
23262
+ # v1" ` and ` service = "foo1", version = "v2" ` respectively.
23148
23263
  # Corresponds to the JSON property `urlMask`
23149
23264
  # @return [String]
23150
23265
  attr_accessor :url_mask
23151
23266
 
23152
23267
  # Optional serving version. The version name is case-sensitive and must be 1-100
23153
- # characters long. Example value: "v1", "v2".
23268
+ # characters long. Example value: v1, v2.
23154
23269
  # Corresponds to the JSON property `version`
23155
23270
  # @return [String]
23156
23271
  attr_accessor :version
@@ -23174,17 +23289,18 @@ module Google
23174
23289
  include Google::Apis::Core::Hashable
23175
23290
 
23176
23291
  # A user-defined name of the Cloud Function. The function name is case-sensitive
23177
- # and must be 1-63 characters long. Example value: "func1".
23292
+ # and must be 1-63 characters long. Example value: func1.
23178
23293
  # Corresponds to the JSON property `function`
23179
23294
  # @return [String]
23180
23295
  attr_accessor :function
23181
23296
 
23182
- # A template to parse function field from a request URL. URL mask allows for
23183
- # routing to multiple Cloud Functions without having to create multiple Network
23184
- # Endpoint Groups and backend services. For example, request URLs " mydomain.com/
23185
- # function1" and "mydomain.com/function2" can be backed by the same Serverless
23186
- # NEG with URL mask "/<function>". The URL mask will parse them to ` function = "
23187
- # function1" ` and ` function = "function2" ` respectively.
23297
+ # An URL mask is one of the main components of the Cloud Function. A template to
23298
+ # parse function field from a request URL. URL mask allows for routing to
23299
+ # multiple Cloud Functions without having to create multiple Network Endpoint
23300
+ # Groups and backend services. For example, request URLs mydomain.com/function1
23301
+ # and mydomain.com/function2 can be backed by the same Serverless NEG with URL
23302
+ # mask /<function>. The URL mask will parse them to ` function = "function1" `
23303
+ # and ` function = "function2" ` respectively.
23188
23304
  # Corresponds to the JSON property `urlMask`
23189
23305
  # @return [String]
23190
23306
  attr_accessor :url_mask
@@ -23220,13 +23336,14 @@ module Google
23220
23336
  # @return [String]
23221
23337
  attr_accessor :tag
23222
23338
 
23223
- # A template to parse <service> and <tag> fields from a request URL. URL mask
23224
- # allows for routing to multiple Run services without having to create multiple
23225
- # network endpoint groups and backend services. For example, request URLs "foo1.
23226
- # domain.com/bar1" and "foo1.domain.com/bar2" can be backed by the same
23227
- # Serverless Network Endpoint Group (NEG) with URL mask "<tag>.domain.com/<
23228
- # service>". The URL mask will parse them to ` service="bar1", tag="foo1" ` and `
23229
- # service="bar2", tag="foo2" ` respectively.
23339
+ # An URL mask is one of the main components of the Cloud Function. A template to
23340
+ # parse <service> and <tag> fields from a request URL. URL mask allows for
23341
+ # routing to multiple Run services without having to create multiple network
23342
+ # endpoint groups and backend services. For example, request URLs foo1.domain.
23343
+ # com/bar1 and foo1.domain.com/bar2 can be backed by the same Serverless Network
23344
+ # Endpoint Group (NEG) with URL mask <tag>.domain.com/<service>. The URL mask
23345
+ # will parse them to ` service="bar1", tag="foo1" ` and ` service="bar2", tag="
23346
+ # foo2" ` respectively.
23230
23347
  # Corresponds to the JSON property `urlMask`
23231
23348
  # @return [String]
23232
23349
  attr_accessor :url_mask
@@ -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.87.0"
19
+ GEM_VERSION = "0.89.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.13.0"
22
+ GENERATOR_VERSION = "0.13.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240109"
25
+ REVISION = "20240130"
26
26
  end
27
27
  end
28
28
  end
@@ -1696,6 +1696,12 @@ module Google
1696
1696
  include Google::Apis::Core::JsonObjectSupport
1697
1697
  end
1698
1698
 
1699
+ class InstanceGroupManagerAllInstancesConfig
1700
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1701
+
1702
+ include Google::Apis::Core::JsonObjectSupport
1703
+ end
1704
+
1699
1705
  class InstanceGroupManagerAutoHealingPolicy
1700
1706
  class Representation < Google::Apis::Core::JsonRepresentation; end
1701
1707
 
@@ -1732,6 +1738,12 @@ module Google
1732
1738
  include Google::Apis::Core::JsonObjectSupport
1733
1739
  end
1734
1740
 
1741
+ class InstanceGroupManagerStatusAllInstancesConfig
1742
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1743
+
1744
+ include Google::Apis::Core::JsonObjectSupport
1745
+ end
1746
+
1735
1747
  class InstanceGroupManagerStatusStateful
1736
1748
  class Representation < Google::Apis::Core::JsonRepresentation; end
1737
1749
 
@@ -2002,6 +2014,12 @@ module Google
2002
2014
  include Google::Apis::Core::JsonObjectSupport
2003
2015
  end
2004
2016
 
2017
+ class InstancePropertiesPatch
2018
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2019
+
2020
+ include Google::Apis::Core::JsonObjectSupport
2021
+ end
2022
+
2005
2023
  class InstanceReference
2006
2024
  class Representation < Google::Apis::Core::JsonRepresentation; end
2007
2025
 
@@ -8257,10 +8275,12 @@ module Google
8257
8275
  property :priority, as: 'priority'
8258
8276
  property :rule_name, as: 'ruleName'
8259
8277
  property :rule_tuple_count, as: 'ruleTupleCount'
8278
+ property :security_profile_group, as: 'securityProfileGroup'
8260
8279
  collection :target_resources, as: 'targetResources'
8261
8280
  collection :target_secure_tags, as: 'targetSecureTags', class: Google::Apis::ComputeV1::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeV1::FirewallPolicyRuleSecureTag::Representation
8262
8281
 
8263
8282
  collection :target_service_accounts, as: 'targetServiceAccounts'
8283
+ property :tls_inspect, as: 'tlsInspect'
8264
8284
  end
8265
8285
  end
8266
8286
 
@@ -9425,6 +9445,8 @@ module Google
9425
9445
  class InstanceGroupManager
9426
9446
  # @private
9427
9447
  class Representation < Google::Apis::Core::JsonRepresentation
9448
+ property :all_instances_config, as: 'allInstancesConfig', class: Google::Apis::ComputeV1::InstanceGroupManagerAllInstancesConfig, decorator: Google::Apis::ComputeV1::InstanceGroupManagerAllInstancesConfig::Representation
9449
+
9428
9450
  collection :auto_healing_policies, as: 'autoHealingPolicies', class: Google::Apis::ComputeV1::InstanceGroupManagerAutoHealingPolicy, decorator: Google::Apis::ComputeV1::InstanceGroupManagerAutoHealingPolicy::Representation
9429
9451
 
9430
9452
  property :base_instance_name, as: 'baseInstanceName'
@@ -9513,6 +9535,14 @@ module Google
9513
9535
  end
9514
9536
  end
9515
9537
 
9538
+ class InstanceGroupManagerAllInstancesConfig
9539
+ # @private
9540
+ class Representation < Google::Apis::Core::JsonRepresentation
9541
+ property :properties, as: 'properties', class: Google::Apis::ComputeV1::InstancePropertiesPatch, decorator: Google::Apis::ComputeV1::InstancePropertiesPatch::Representation
9542
+
9543
+ end
9544
+ end
9545
+
9516
9546
  class InstanceGroupManagerAutoHealingPolicy
9517
9547
  # @private
9518
9548
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -9563,6 +9593,8 @@ module Google
9563
9593
  class InstanceGroupManagerStatus
9564
9594
  # @private
9565
9595
  class Representation < Google::Apis::Core::JsonRepresentation
9596
+ property :all_instances_config, as: 'allInstancesConfig', class: Google::Apis::ComputeV1::InstanceGroupManagerStatusAllInstancesConfig, decorator: Google::Apis::ComputeV1::InstanceGroupManagerStatusAllInstancesConfig::Representation
9597
+
9566
9598
  property :autoscaler, as: 'autoscaler'
9567
9599
  property :is_stable, as: 'isStable'
9568
9600
  property :stateful, as: 'stateful', class: Google::Apis::ComputeV1::InstanceGroupManagerStatusStateful, decorator: Google::Apis::ComputeV1::InstanceGroupManagerStatusStateful::Representation
@@ -9572,6 +9604,14 @@ module Google
9572
9604
  end
9573
9605
  end
9574
9606
 
9607
+ class InstanceGroupManagerStatusAllInstancesConfig
9608
+ # @private
9609
+ class Representation < Google::Apis::Core::JsonRepresentation
9610
+ property :current_revision, as: 'currentRevision'
9611
+ property :effective, as: 'effective'
9612
+ end
9613
+ end
9614
+
9575
9615
  class InstanceGroupManagerStatusStateful
9576
9616
  # @private
9577
9617
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -10012,6 +10052,14 @@ module Google
10012
10052
  end
10013
10053
  end
10014
10054
 
10055
+ class InstancePropertiesPatch
10056
+ # @private
10057
+ class Representation < Google::Apis::Core::JsonRepresentation
10058
+ hash :labels, as: 'labels'
10059
+ hash :metadata, as: 'metadata'
10060
+ end
10061
+ end
10062
+
10015
10063
  class InstanceReference
10016
10064
  # @private
10017
10065
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -117,6 +117,8 @@ module Google
117
117
  # Opt-in for partial success behavior which provides partial results in case of
118
118
  # failure. The default value is false.
119
119
  # @param [Fixnum] service_project_number
120
+ # The Shared VPC service project id or service project number for which
121
+ # aggregated list request is invoked for subnetworks list-usable api.
120
122
  # @param [String] fields
121
123
  # Selector specifying which fields to include in a partial response.
122
124
  # @param [String] quota_user
@@ -348,6 +350,8 @@ module Google
348
350
  # Opt-in for partial success behavior which provides partial results in case of
349
351
  # failure. The default value is false.
350
352
  # @param [Fixnum] service_project_number
353
+ # The Shared VPC service project id or service project number for which
354
+ # aggregated list request is invoked for subnetworks list-usable api.
351
355
  # @param [String] fields
352
356
  # Selector specifying which fields to include in a partial response.
353
357
  # @param [String] quota_user
@@ -786,6 +790,8 @@ module Google
786
790
  # Opt-in for partial success behavior which provides partial results in case of
787
791
  # failure. The default value is false.
788
792
  # @param [Fixnum] service_project_number
793
+ # The Shared VPC service project id or service project number for which
794
+ # aggregated list request is invoked for subnetworks list-usable api.
789
795
  # @param [String] fields
790
796
  # Selector specifying which fields to include in a partial response.
791
797
  # @param [String] quota_user
@@ -1874,6 +1880,8 @@ module Google
1874
1880
  # Opt-in for partial success behavior which provides partial results in case of
1875
1881
  # failure. The default value is false.
1876
1882
  # @param [Fixnum] service_project_number
1883
+ # The Shared VPC service project id or service project number for which
1884
+ # aggregated list request is invoked for subnetworks list-usable api.
1877
1885
  # @param [String] fields
1878
1886
  # Selector specifying which fields to include in a partial response.
1879
1887
  # @param [String] quota_user
@@ -2702,6 +2710,8 @@ module Google
2702
2710
  # Opt-in for partial success behavior which provides partial results in case of
2703
2711
  # failure. The default value is false.
2704
2712
  # @param [Fixnum] service_project_number
2713
+ # The Shared VPC service project id or service project number for which
2714
+ # aggregated list request is invoked for subnetworks list-usable api.
2705
2715
  # @param [String] fields
2706
2716
  # Selector specifying which fields to include in a partial response.
2707
2717
  # @param [String] quota_user
@@ -2986,6 +2996,8 @@ module Google
2986
2996
  # Opt-in for partial success behavior which provides partial results in case of
2987
2997
  # failure. The default value is false.
2988
2998
  # @param [Fixnum] service_project_number
2999
+ # The Shared VPC service project id or service project number for which
3000
+ # aggregated list request is invoked for subnetworks list-usable api.
2989
3001
  # @param [String] fields
2990
3002
  # Selector specifying which fields to include in a partial response.
2991
3003
  # @param [String] quota_user
@@ -5384,6 +5396,8 @@ module Google
5384
5396
  # Opt-in for partial success behavior which provides partial results in case of
5385
5397
  # failure. The default value is false.
5386
5398
  # @param [Fixnum] service_project_number
5399
+ # The Shared VPC service project id or service project number for which
5400
+ # aggregated list request is invoked for subnetworks list-usable api.
5387
5401
  # @param [String] fields
5388
5402
  # Selector specifying which fields to include in a partial response.
5389
5403
  # @param [String] quota_user
@@ -6972,6 +6986,8 @@ module Google
6972
6986
  # Opt-in for partial success behavior which provides partial results in case of
6973
6987
  # failure. The default value is false.
6974
6988
  # @param [Fixnum] service_project_number
6989
+ # The Shared VPC service project id or service project number for which
6990
+ # aggregated list request is invoked for subnetworks list-usable api.
6975
6991
  # @param [String] fields
6976
6992
  # Selector specifying which fields to include in a partial response.
6977
6993
  # @param [String] quota_user
@@ -7709,6 +7725,8 @@ module Google
7709
7725
  # Opt-in for partial success behavior which provides partial results in case of
7710
7726
  # failure. The default value is false.
7711
7727
  # @param [Fixnum] service_project_number
7728
+ # The Shared VPC service project id or service project number for which
7729
+ # aggregated list request is invoked for subnetworks list-usable api.
7712
7730
  # @param [String] fields
7713
7731
  # Selector specifying which fields to include in a partial response.
7714
7732
  # @param [String] quota_user
@@ -9411,6 +9429,8 @@ module Google
9411
9429
  # Opt-in for partial success behavior which provides partial results in case of
9412
9430
  # failure. The default value is false.
9413
9431
  # @param [Fixnum] service_project_number
9432
+ # The Shared VPC service project id or service project number for which
9433
+ # aggregated list request is invoked for subnetworks list-usable api.
9414
9434
  # @param [String] fields
9415
9435
  # Selector specifying which fields to include in a partial response.
9416
9436
  # @param [String] quota_user
@@ -10729,6 +10749,8 @@ module Google
10729
10749
  # Opt-in for partial success behavior which provides partial results in case of
10730
10750
  # failure. The default value is false.
10731
10751
  # @param [Fixnum] service_project_number
10752
+ # The Shared VPC service project id or service project number for which
10753
+ # aggregated list request is invoked for subnetworks list-usable api.
10732
10754
  # @param [String] fields
10733
10755
  # Selector specifying which fields to include in a partial response.
10734
10756
  # @param [String] quota_user
@@ -11277,6 +11299,8 @@ module Google
11277
11299
  # Opt-in for partial success behavior which provides partial results in case of
11278
11300
  # failure. The default value is false.
11279
11301
  # @param [Fixnum] service_project_number
11302
+ # The Shared VPC service project id or service project number for which
11303
+ # aggregated list request is invoked for subnetworks list-usable api.
11280
11304
  # @param [String] fields
11281
11305
  # Selector specifying which fields to include in a partial response.
11282
11306
  # @param [String] quota_user
@@ -11833,6 +11857,8 @@ module Google
11833
11857
  # Opt-in for partial success behavior which provides partial results in case of
11834
11858
  # failure. The default value is false.
11835
11859
  # @param [Fixnum] service_project_number
11860
+ # The Shared VPC service project id or service project number for which
11861
+ # aggregated list request is invoked for subnetworks list-usable api.
11836
11862
  # @param [String] fields
11837
11863
  # Selector specifying which fields to include in a partial response.
11838
11864
  # @param [String] quota_user
@@ -14371,6 +14397,8 @@ module Google
14371
14397
  # Opt-in for partial success behavior which provides partial results in case of
14372
14398
  # failure. The default value is false.
14373
14399
  # @param [Fixnum] service_project_number
14400
+ # The Shared VPC service project id or service project number for which
14401
+ # aggregated list request is invoked for subnetworks list-usable api.
14374
14402
  # @param [String] fields
14375
14403
  # Selector specifying which fields to include in a partial response.
14376
14404
  # @param [String] quota_user
@@ -16237,6 +16265,8 @@ module Google
16237
16265
  # Opt-in for partial success behavior which provides partial results in case of
16238
16266
  # failure. The default value is false.
16239
16267
  # @param [Fixnum] service_project_number
16268
+ # The Shared VPC service project id or service project number for which
16269
+ # aggregated list request is invoked for subnetworks list-usable api.
16240
16270
  # @param [String] fields
16241
16271
  # Selector specifying which fields to include in a partial response.
16242
16272
  # @param [String] quota_user
@@ -16468,6 +16498,8 @@ module Google
16468
16498
  # Opt-in for partial success behavior which provides partial results in case of
16469
16499
  # failure. The default value is false.
16470
16500
  # @param [Fixnum] service_project_number
16501
+ # The Shared VPC service project id or service project number for which
16502
+ # aggregated list request is invoked for subnetworks list-usable api.
16471
16503
  # @param [String] fields
16472
16504
  # Selector specifying which fields to include in a partial response.
16473
16505
  # @param [String] quota_user
@@ -16986,6 +17018,8 @@ module Google
16986
17018
  # Opt-in for partial success behavior which provides partial results in case of
16987
17019
  # failure. The default value is false.
16988
17020
  # @param [Fixnum] service_project_number
17021
+ # The Shared VPC service project id or service project number for which
17022
+ # aggregated list request is invoked for subnetworks list-usable api.
16989
17023
  # @param [String] fields
16990
17024
  # Selector specifying which fields to include in a partial response.
16991
17025
  # @param [String] quota_user
@@ -17286,6 +17320,8 @@ module Google
17286
17320
  # Opt-in for partial success behavior which provides partial results in case of
17287
17321
  # failure. The default value is false.
17288
17322
  # @param [Fixnum] service_project_number
17323
+ # The Shared VPC service project id or service project number for which
17324
+ # aggregated list request is invoked for subnetworks list-usable api.
17289
17325
  # @param [String] fields
17290
17326
  # Selector specifying which fields to include in a partial response.
17291
17327
  # @param [String] quota_user
@@ -19323,6 +19359,8 @@ module Google
19323
19359
  # Opt-in for partial success behavior which provides partial results in case of
19324
19360
  # failure. The default value is false.
19325
19361
  # @param [Fixnum] service_project_number
19362
+ # The Shared VPC service project id or service project number for which
19363
+ # aggregated list request is invoked for subnetworks list-usable api.
19326
19364
  # @param [String] fields
19327
19365
  # Selector specifying which fields to include in a partial response.
19328
19366
  # @param [String] quota_user
@@ -20096,6 +20134,8 @@ module Google
20096
20134
  # Opt-in for partial success behavior which provides partial results in case of
20097
20135
  # failure. The default value is false.
20098
20136
  # @param [Fixnum] service_project_number
20137
+ # The Shared VPC service project id or service project number for which
20138
+ # aggregated list request is invoked for subnetworks list-usable api.
20099
20139
  # @param [String] fields
20100
20140
  # Selector specifying which fields to include in a partial response.
20101
20141
  # @param [String] quota_user
@@ -20555,6 +20595,8 @@ module Google
20555
20595
  # Opt-in for partial success behavior which provides partial results in case of
20556
20596
  # failure. The default value is false.
20557
20597
  # @param [Fixnum] service_project_number
20598
+ # The Shared VPC service project id or service project number for which
20599
+ # aggregated list request is invoked for subnetworks list-usable api.
20558
20600
  # @param [String] fields
20559
20601
  # Selector specifying which fields to include in a partial response.
20560
20602
  # @param [String] quota_user
@@ -20785,6 +20827,8 @@ module Google
20785
20827
  # Opt-in for partial success behavior which provides partial results in case of
20786
20828
  # failure. The default value is false.
20787
20829
  # @param [Fixnum] service_project_number
20830
+ # The Shared VPC service project id or service project number for which
20831
+ # aggregated list request is invoked for subnetworks list-usable api.
20788
20832
  # @param [String] fields
20789
20833
  # Selector specifying which fields to include in a partial response.
20790
20834
  # @param [String] quota_user
@@ -22266,6 +22310,8 @@ module Google
22266
22310
  # Opt-in for partial success behavior which provides partial results in case of
22267
22311
  # failure. The default value is false.
22268
22312
  # @param [Fixnum] service_project_number
22313
+ # The Shared VPC service project id or service project number for which
22314
+ # aggregated list request is invoked for subnetworks list-usable api.
22269
22315
  # @param [String] fields
22270
22316
  # Selector specifying which fields to include in a partial response.
22271
22317
  # @param [String] quota_user
@@ -23757,6 +23803,8 @@ module Google
23757
23803
  # Opt-in for partial success behavior which provides partial results in case of
23758
23804
  # failure. The default value is false.
23759
23805
  # @param [Fixnum] service_project_number
23806
+ # The Shared VPC service project id or service project number for which
23807
+ # aggregated list request is invoked for subnetworks list-usable api.
23760
23808
  # @param [String] fields
23761
23809
  # Selector specifying which fields to include in a partial response.
23762
23810
  # @param [String] quota_user
@@ -31891,6 +31939,8 @@ module Google
31891
31939
  # Opt-in for partial success behavior which provides partial results in case of
31892
31940
  # failure. The default value is false.
31893
31941
  # @param [Fixnum] service_project_number
31942
+ # The Shared VPC service project id or service project number for which
31943
+ # aggregated list request is invoked for subnetworks list-usable api.
31894
31944
  # @param [String] fields
31895
31945
  # Selector specifying which fields to include in a partial response.
31896
31946
  # @param [String] quota_user
@@ -32463,6 +32513,8 @@ module Google
32463
32513
  # Opt-in for partial success behavior which provides partial results in case of
32464
32514
  # failure. The default value is false.
32465
32515
  # @param [Fixnum] service_project_number
32516
+ # The Shared VPC service project id or service project number for which
32517
+ # aggregated list request is invoked for subnetworks list-usable api.
32466
32518
  # @param [String] fields
32467
32519
  # Selector specifying which fields to include in a partial response.
32468
32520
  # @param [String] quota_user
@@ -32978,6 +33030,8 @@ module Google
32978
33030
  # Opt-in for partial success behavior which provides partial results in case of
32979
33031
  # failure. The default value is false.
32980
33032
  # @param [Fixnum] service_project_number
33033
+ # The Shared VPC service project id or service project number for which
33034
+ # aggregated list request is invoked for subnetworks list-usable api.
32981
33035
  # @param [String] fields
32982
33036
  # Selector specifying which fields to include in a partial response.
32983
33037
  # @param [String] quota_user
@@ -33910,6 +33964,8 @@ module Google
33910
33964
  # Opt-in for partial success behavior which provides partial results in case of
33911
33965
  # failure. The default value is false.
33912
33966
  # @param [Fixnum] service_project_number
33967
+ # The Shared VPC service project id or service project number for which
33968
+ # aggregated list request is invoked for subnetworks list-usable api.
33913
33969
  # @param [String] fields
33914
33970
  # Selector specifying which fields to include in a partial response.
33915
33971
  # @param [String] quota_user
@@ -34546,6 +34602,8 @@ module Google
34546
34602
  # Opt-in for partial success behavior which provides partial results in case of
34547
34603
  # failure. The default value is false.
34548
34604
  # @param [Fixnum] service_project_number
34605
+ # The Shared VPC service project id or service project number for which
34606
+ # aggregated list request is invoked for subnetworks list-usable api.
34549
34607
  # @param [String] fields
34550
34608
  # Selector specifying which fields to include in a partial response.
34551
34609
  # @param [String] quota_user
@@ -35531,6 +35589,8 @@ module Google
35531
35589
  # Opt-in for partial success behavior which provides partial results in case of
35532
35590
  # failure. The default value is false.
35533
35591
  # @param [Fixnum] service_project_number
35592
+ # The Shared VPC service project id or service project number for which
35593
+ # aggregated list request is invoked for subnetworks list-usable api.
35534
35594
  # @param [String] fields
35535
35595
  # Selector specifying which fields to include in a partial response.
35536
35596
  # @param [String] quota_user
@@ -35852,6 +35912,8 @@ module Google
35852
35912
  # Opt-in for partial success behavior which provides partial results in case of
35853
35913
  # failure. The default value is false.
35854
35914
  # @param [Fixnum] service_project_number
35915
+ # The Shared VPC service project id or service project number for which
35916
+ # aggregated list request is invoked for subnetworks list-usable api.
35855
35917
  # @param [String] fields
35856
35918
  # Selector specifying which fields to include in a partial response.
35857
35919
  # @param [String] quota_user
@@ -36314,6 +36376,8 @@ module Google
36314
36376
  # Opt-in for partial success behavior which provides partial results in case of
36315
36377
  # failure. The default value is false.
36316
36378
  # @param [Fixnum] service_project_number
36379
+ # The Shared VPC service project id or service project number for which
36380
+ # aggregated list request is invoked for subnetworks list-usable api.
36317
36381
  # @param [String] fields
36318
36382
  # Selector specifying which fields to include in a partial response.
36319
36383
  # @param [String] quota_user
@@ -37307,6 +37371,8 @@ module Google
37307
37371
  # Opt-in for partial success behavior which provides partial results in case of
37308
37372
  # failure. The default value is false.
37309
37373
  # @param [Fixnum] service_project_number
37374
+ # The Shared VPC service project id or service project number for which
37375
+ # aggregated list request is invoked for subnetworks list-usable api.
37310
37376
  # @param [String] fields
37311
37377
  # Selector specifying which fields to include in a partial response.
37312
37378
  # @param [String] quota_user
@@ -37730,6 +37796,8 @@ module Google
37730
37796
  # Opt-in for partial success behavior which provides partial results in case of
37731
37797
  # failure. The default value is false.
37732
37798
  # @param [Fixnum] service_project_number
37799
+ # The Shared VPC service project id or service project number for which
37800
+ # aggregated list request is invoked for subnetworks list-usable api.
37733
37801
  # @param [String] fields
37734
37802
  # Selector specifying which fields to include in a partial response.
37735
37803
  # @param [String] quota_user
@@ -38358,6 +38426,8 @@ module Google
38358
38426
  # Opt-in for partial success behavior which provides partial results in case of
38359
38427
  # failure. The default value is false.
38360
38428
  # @param [Fixnum] service_project_number
38429
+ # The Shared VPC service project id or service project number for which
38430
+ # aggregated list request is invoked for subnetworks list-usable api.
38361
38431
  # @param [String] fields
38362
38432
  # Selector specifying which fields to include in a partial response.
38363
38433
  # @param [String] quota_user
@@ -38851,6 +38921,8 @@ module Google
38851
38921
  # Opt-in for partial success behavior which provides partial results in case of
38852
38922
  # failure. The default value is false.
38853
38923
  # @param [Fixnum] service_project_number
38924
+ # The Shared VPC service project id or service project number for which
38925
+ # aggregated list request is invoked for subnetworks list-usable api.
38854
38926
  # @param [String] fields
38855
38927
  # Selector specifying which fields to include in a partial response.
38856
38928
  # @param [String] quota_user
@@ -39919,6 +39991,8 @@ module Google
39919
39991
  # Opt-in for partial success behavior which provides partial results in case of
39920
39992
  # failure. The default value is false.
39921
39993
  # @param [Fixnum] service_project_number
39994
+ # The Shared VPC service project id or service project number for which
39995
+ # aggregated list request is invoked for subnetworks list-usable api.
39922
39996
  # @param [String] fields
39923
39997
  # Selector specifying which fields to include in a partial response.
39924
39998
  # @param [String] quota_user
@@ -40339,6 +40413,8 @@ module Google
40339
40413
  # Opt-in for partial success behavior which provides partial results in case of
40340
40414
  # failure. The default value is false.
40341
40415
  # @param [Fixnum] service_project_number
40416
+ # The Shared VPC service project id or service project number for which
40417
+ # aggregated list request is invoked for subnetworks list-usable api.
40342
40418
  # @param [String] fields
40343
40419
  # Selector specifying which fields to include in a partial response.
40344
40420
  # @param [String] quota_user
@@ -40726,6 +40802,8 @@ module Google
40726
40802
  # Opt-in for partial success behavior which provides partial results in case of
40727
40803
  # failure. The default value is false.
40728
40804
  # @param [Fixnum] service_project_number
40805
+ # The Shared VPC service project id or service project number for which
40806
+ # aggregated list request is invoked for subnetworks list-usable api.
40729
40807
  # @param [String] fields
40730
40808
  # Selector specifying which fields to include in a partial response.
40731
40809
  # @param [String] quota_user
@@ -41239,6 +41317,8 @@ module Google
41239
41317
  # Opt-in for partial success behavior which provides partial results in case of
41240
41318
  # failure. The default value is false.
41241
41319
  # @param [Fixnum] service_project_number
41320
+ # The Shared VPC service project id or service project number for which
41321
+ # aggregated list request is invoked for subnetworks list-usable api.
41242
41322
  # @param [String] fields
41243
41323
  # Selector specifying which fields to include in a partial response.
41244
41324
  # @param [String] quota_user
@@ -41705,6 +41785,8 @@ module Google
41705
41785
  # Opt-in for partial success behavior which provides partial results in case of
41706
41786
  # failure. The default value is false.
41707
41787
  # @param [Fixnum] service_project_number
41788
+ # The Shared VPC service project id or service project number for which
41789
+ # aggregated list request is invoked for subnetworks list-usable api.
41708
41790
  # @param [String] fields
41709
41791
  # Selector specifying which fields to include in a partial response.
41710
41792
  # @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.87.0
4
+ version: 0.89.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-01-23 00:00:00.000000000 Z
11
+ date: 2024-02-11 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.87.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.89.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: []