google-apis-compute_v1 0.29.0 → 0.32.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: 9d1a2224043f0997198bfd0684082914df6a0f39412c0bab3412677e40eb640a
4
- data.tar.gz: 928052220dff1e84d0590255f84adb78117524c70d564a460d233a4fa2c49d60
3
+ metadata.gz: 235c3539d9112b0ca5cc08f43f374c033ac6f89d16fc53eea51d57776e8eac73
4
+ data.tar.gz: c4db73a9f126f0c852f85a8f3047c59c9d6129018add9e11bd5e879c4c528abe
5
5
  SHA512:
6
- metadata.gz: ea059ce0a2e7dc6c5fa6e18ee212ec4ba10704c6ba3f59ab3a3133314fafefa8d81103aaab96475c1c9d9ca528a4c90b706da1e23ac67ea4cc1b407a35cf5d9d
7
- data.tar.gz: 628c8cff9815bbf0d076631ef2e1fe4c771fbe37d2703f0e5084a0ce44ab4d762f445c8a87fbfe80fde7e96db0e1451950dc9380b04d825996bd0a19d544d070
6
+ metadata.gz: 9f41c5a71d42d27f5b59f8d3229f6eb9a66e47bc88fab7c8ef0cd765da081333e32ffe2dfa4cb9278e4aa89cad42e2ad165f37072d18923fa4d26c9ebca454f4
7
+ data.tar.gz: 24a633d9a50980bd611fab9a014d98f04310db9d00b5b1b4ea7542583c58a2d71a3a541f1287dc18b6709d49d996db186aacc41e5d055986d82cb9a24291acbb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.32.0 (2022-04-16)
4
+
5
+ * Regenerated from discovery document revision 20220405
6
+
7
+ ### v0.31.0 (2022-03-30)
8
+
9
+ * Regenerated from discovery document revision 20220322
10
+
11
+ ### v0.30.0 (2022-03-22)
12
+
13
+ * Regenerated from discovery document revision 20220315
14
+
3
15
  ### v0.29.0 (2022-03-18)
4
16
 
5
17
  * Regenerated from discovery document revision 20220312
@@ -3145,6 +3145,15 @@ module Google
3145
3145
  # @return [String]
3146
3146
  attr_accessor :load_balancing_scheme
3147
3147
 
3148
+ # A list of locality load balancing policies to be used in order of preference.
3149
+ # Either the policy or the customPolicy field should be set. Overrides any value
3150
+ # set in the localityLbPolicy field. localityLbPolicies is only supported when
3151
+ # the BackendService is referenced by a URL Map that is referenced by a target
3152
+ # gRPC proxy that has the validateForProxyless field set to true.
3153
+ # Corresponds to the JSON property `localityLbPolicies`
3154
+ # @return [Array<Google::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfig>]
3155
+ attr_accessor :locality_lb_policies
3156
+
3148
3157
  # The load balancing algorithm used within the scope of the locality. The
3149
3158
  # possible values are: - ROUND_ROBIN: This is a simple policy in which each
3150
3159
  # healthy backend is selected in round robin order. This is the default. -
@@ -3313,6 +3322,7 @@ module Google
3313
3322
  @id = args[:id] if args.key?(:id)
3314
3323
  @kind = args[:kind] if args.key?(:kind)
3315
3324
  @load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
3325
+ @locality_lb_policies = args[:locality_lb_policies] if args.key?(:locality_lb_policies)
3316
3326
  @locality_lb_policy = args[:locality_lb_policy] if args.key?(:locality_lb_policy)
3317
3327
  @log_config = args[:log_config] if args.key?(:log_config)
3318
3328
  @max_stream_duration = args[:max_stream_duration] if args.key?(:max_stream_duration)
@@ -3978,6 +3988,88 @@ module Google
3978
3988
  end
3979
3989
  end
3980
3990
 
3991
+ # Container for either a built-in LB policy supported by gRPC or Envoy or a
3992
+ # custom one implemented by the end user.
3993
+ class BackendServiceLocalityLoadBalancingPolicyConfig
3994
+ include Google::Apis::Core::Hashable
3995
+
3996
+ # The configuration for a custom policy implemented by the user and deployed
3997
+ # with the client.
3998
+ # Corresponds to the JSON property `customPolicy`
3999
+ # @return [Google::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy]
4000
+ attr_accessor :custom_policy
4001
+
4002
+ # The configuration for a built-in load balancing policy.
4003
+ # Corresponds to the JSON property `policy`
4004
+ # @return [Google::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfigPolicy]
4005
+ attr_accessor :policy
4006
+
4007
+ def initialize(**args)
4008
+ update!(**args)
4009
+ end
4010
+
4011
+ # Update properties of this object
4012
+ def update!(**args)
4013
+ @custom_policy = args[:custom_policy] if args.key?(:custom_policy)
4014
+ @policy = args[:policy] if args.key?(:policy)
4015
+ end
4016
+ end
4017
+
4018
+ # The configuration for a custom policy implemented by the user and deployed
4019
+ # with the client.
4020
+ class BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy
4021
+ include Google::Apis::Core::Hashable
4022
+
4023
+ # An optional, arbitrary JSON object with configuration data, understood by a
4024
+ # locally installed custom policy implementation.
4025
+ # Corresponds to the JSON property `data`
4026
+ # @return [String]
4027
+ attr_accessor :data
4028
+
4029
+ # Identifies the custom policy. The value should match the type the custom
4030
+ # implementation is registered with on the gRPC clients. It should follow
4031
+ # protocol buffer message naming conventions and include the full path (e.g.
4032
+ # myorg.CustomLbPolicy). The maximum length is 256 characters. Note that
4033
+ # specifying the same custom policy more than once for a backend is not a valid
4034
+ # configuration and will be rejected.
4035
+ # Corresponds to the JSON property `name`
4036
+ # @return [String]
4037
+ attr_accessor :name
4038
+
4039
+ def initialize(**args)
4040
+ update!(**args)
4041
+ end
4042
+
4043
+ # Update properties of this object
4044
+ def update!(**args)
4045
+ @data = args[:data] if args.key?(:data)
4046
+ @name = args[:name] if args.key?(:name)
4047
+ end
4048
+ end
4049
+
4050
+ # The configuration for a built-in load balancing policy.
4051
+ class BackendServiceLocalityLoadBalancingPolicyConfigPolicy
4052
+ include Google::Apis::Core::Hashable
4053
+
4054
+ # The name of a locality load balancer policy to be used. The value should be
4055
+ # one of the predefined ones as supported by localityLbPolicy, although at the
4056
+ # moment only ROUND_ROBIN is supported. This field should only be populated when
4057
+ # the customPolicy field is not used. Note that specifying the same policy more
4058
+ # than once for a backend is not a valid configuration and will be rejected.
4059
+ # Corresponds to the JSON property `name`
4060
+ # @return [String]
4061
+ attr_accessor :name
4062
+
4063
+ def initialize(**args)
4064
+ update!(**args)
4065
+ end
4066
+
4067
+ # Update properties of this object
4068
+ def update!(**args)
4069
+ @name = args[:name] if args.key?(:name)
4070
+ end
4071
+ end
4072
+
3981
4073
  # The available logging options for the load balancer traffic served by this
3982
4074
  # backend service.
3983
4075
  class BackendServiceLogConfig
@@ -4397,7 +4489,7 @@ module Google
4397
4489
  # @return [Google::Apis::ComputeV1::Expr]
4398
4490
  attr_accessor :condition
4399
4491
 
4400
- # Specifies the principals requesting access for a Cloud Platform resource. `
4492
+ # Specifies the principals requesting access for a Google Cloud resource. `
4401
4493
  # members` can have the following values: * `allUsers`: A special identifier
4402
4494
  # that represents anyone who is on the internet; with or without a Google
4403
4495
  # account. * `allAuthenticatedUsers`: A special identifier that represents
@@ -8149,6 +8241,12 @@ module Google
8149
8241
  # @return [Fixnum]
8150
8242
  attr_accessor :priority
8151
8243
 
8244
+ # An optional name for the rule. This field is not a unique identifier and can
8245
+ # be updated.
8246
+ # Corresponds to the JSON property `ruleName`
8247
+ # @return [String]
8248
+ attr_accessor :rule_name
8249
+
8152
8250
  # [Output Only] Calculation of the complexity of a single firewall policy rule.
8153
8251
  # Corresponds to the JSON property `ruleTupleCount`
8154
8252
  # @return [Fixnum]
@@ -8193,6 +8291,7 @@ module Google
8193
8291
  @kind = args[:kind] if args.key?(:kind)
8194
8292
  @match = args[:match] if args.key?(:match)
8195
8293
  @priority = args[:priority] if args.key?(:priority)
8294
+ @rule_name = args[:rule_name] if args.key?(:rule_name)
8196
8295
  @rule_tuple_count = args[:rule_tuple_count] if args.key?(:rule_tuple_count)
8197
8296
  @target_resources = args[:target_resources] if args.key?(:target_resources)
8198
8297
  @target_secure_tags = args[:target_secure_tags] if args.key?(:target_secure_tags)
@@ -9206,13 +9305,9 @@ module Google
9206
9305
  # @return [String]
9207
9306
  attr_accessor :label_fingerprint
9208
9307
 
9209
- # A list of labels to apply for this resource. Each label key & value must
9210
- # comply with RFC1035. Specifically, the name must be 1-63 characters long and
9211
- # match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the
9212
- # first character must be a lowercase letter, and all following characters must
9213
- # be a dash, lowercase letter, or digit, except the last character, which cannot
9214
- # be a dash. For example, "webserver-frontend": "images". A label value can also
9215
- # be empty (e.g. "my-label": "").
9308
+ # A list of labels to apply for this resource. Each label must comply with the
9309
+ # requirements for labels. For example, "webserver-frontend": "images". A label
9310
+ # value can also be empty (e.g. "my-label": "").
9216
9311
  # Corresponds to the JSON property `labels`
9217
9312
  # @return [Hash<String,String>]
9218
9313
  attr_accessor :labels
@@ -9395,9 +9490,9 @@ module Google
9395
9490
 
9396
9491
  # The ID of a supported feature. To add multiple values, use commas to separate
9397
9492
  # values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE -
9398
- # WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - SECURE_BOOT - GVNIC -
9399
- # SEV_CAPABLE - SUSPEND_RESUME_COMPATIBLE - SEV_SNP_CAPABLE For more information,
9400
- # see Enabling guest operating system features.
9493
+ # WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE -
9494
+ # SUSPEND_RESUME_COMPATIBLE - SEV_SNP_CAPABLE For more information, see Enabling
9495
+ # guest operating system features.
9401
9496
  # Corresponds to the JSON property `type`
9402
9497
  # @return [String]
9403
9498
  attr_accessor :type
@@ -13616,14 +13711,15 @@ module Google
13616
13711
  # [Output Only] A bit indicating whether the managed instance group has stateful
13617
13712
  # configuration, that is, if you have configured any items in a stateful policy
13618
13713
  # or in per-instance configs. The group might report that it has no stateful
13619
- # config even when there is still some preserved state on a managed instance,
13620
- # for example, if you have deleted all PICs but not yet applied those deletions.
13714
+ # configuration even when there is still some preserved state on a managed
13715
+ # instance, for example, if you have deleted all PICs but not yet applied those
13716
+ # deletions.
13621
13717
  # Corresponds to the JSON property `hasStatefulConfig`
13622
13718
  # @return [Boolean]
13623
13719
  attr_accessor :has_stateful_config
13624
13720
  alias_method :has_stateful_config?, :has_stateful_config
13625
13721
 
13626
- # [Output Only] Status of per-instance configs on the instance.
13722
+ # [Output Only] Status of per-instance configurations on the instance.
13627
13723
  # Corresponds to the JSON property `perInstanceConfigs`
13628
13724
  # @return [Google::Apis::ComputeV1::InstanceGroupManagerStatusStatefulPerInstanceConfigs]
13629
13725
  attr_accessor :per_instance_configs
@@ -13643,9 +13739,9 @@ module Google
13643
13739
  class InstanceGroupManagerStatusStatefulPerInstanceConfigs
13644
13740
  include Google::Apis::Core::Hashable
13645
13741
 
13646
- # A bit indicating if all of the group's per-instance configs (listed in the
13647
- # output of a listPerInstanceConfigs API call) have status EFFECTIVE or there
13648
- # are no per-instance-configs.
13742
+ # A bit indicating if all of the group's per-instance configurations (listed in
13743
+ # the output of a listPerInstanceConfigs API call) have status EFFECTIVE or
13744
+ # there are no per-instance-configs.
13649
13745
  # Corresponds to the JSON property `allEffective`
13650
13746
  # @return [Boolean]
13651
13747
  attr_accessor :all_effective
@@ -14099,8 +14195,8 @@ module Google
14099
14195
  class InstanceGroupManagersPatchPerInstanceConfigsReq
14100
14196
  include Google::Apis::Core::Hashable
14101
14197
 
14102
- # The list of per-instance configs to insert or patch on this managed instance
14103
- # group.
14198
+ # The list of per-instance configurations to insert or patch on this managed
14199
+ # instance group.
14104
14200
  # Corresponds to the JSON property `perInstanceConfigs`
14105
14201
  # @return [Array<Google::Apis::ComputeV1::PerInstanceConfig>]
14106
14202
  attr_accessor :per_instance_configs
@@ -14287,8 +14383,8 @@ module Google
14287
14383
  class InstanceGroupManagersUpdatePerInstanceConfigsReq
14288
14384
  include Google::Apis::Core::Hashable
14289
14385
 
14290
- # The list of per-instance configs to insert or patch on this managed instance
14291
- # group.
14386
+ # The list of per-instance configurations to insert or patch on this managed
14387
+ # instance group.
14292
14388
  # Corresponds to the JSON property `perInstanceConfigs`
14293
14389
  # @return [Array<Google::Apis::ComputeV1::PerInstanceConfig>]
14294
14390
  attr_accessor :per_instance_configs
@@ -24466,18 +24562,18 @@ module Google
24466
24562
  # Fingerprint of this per-instance config. This field can be used in optimistic
24467
24563
  # locking. It is ignored when inserting a per-instance config. An up-to-date
24468
24564
  # fingerprint must be provided in order to update an existing per-instance
24469
- # config or the field needs to be unset.
24565
+ # configuration or the field needs to be unset.
24470
24566
  # Corresponds to the JSON property `fingerprint`
24471
24567
  # NOTE: Values are automatically base64 encoded/decoded in the client library.
24472
24568
  # @return [String]
24473
24569
  attr_accessor :fingerprint
24474
24570
 
24475
- # The name of a per-instance config and its corresponding instance. Serves as a
24476
- # merge key during UpdatePerInstanceConfigs operations, that is, if a per-
24477
- # instance config with the same name exists then it will be updated, otherwise a
24478
- # new one will be created for the VM instance with the same name. An attempt to
24479
- # create a per-instance config for a VM instance that either doesn't exist or is
24480
- # not part of the group will result in an error.
24571
+ # The name of a per-instance configuration and its corresponding instance.
24572
+ # Serves as a merge key during UpdatePerInstanceConfigs operations, that is, if
24573
+ # a per-instance configuration with the same name exists then it will be updated,
24574
+ # otherwise a new one will be created for the VM instance with the same name.
24575
+ # An attempt to create a per-instance configconfiguration for a VM instance that
24576
+ # either doesn't exist or is not part of the group will result in an error.
24481
24577
  # Corresponds to the JSON property `name`
24482
24578
  # @return [String]
24483
24579
  attr_accessor :name
@@ -24487,8 +24583,8 @@ module Google
24487
24583
  # @return [Google::Apis::ComputeV1::PreservedState]
24488
24584
  attr_accessor :preserved_state
24489
24585
 
24490
- # The status of applying this per-instance config on the corresponding managed
24491
- # instance.
24586
+ # The status of applying this per-instance configuration on the corresponding
24587
+ # managed instance.
24492
24588
  # Corresponds to the JSON property `status`
24493
24589
  # @return [String]
24494
24590
  attr_accessor :status
@@ -26404,8 +26500,8 @@ module Google
26404
26500
  class RegionInstanceGroupManagerPatchInstanceConfigReq
26405
26501
  include Google::Apis::Core::Hashable
26406
26502
 
26407
- # The list of per-instance configs to insert or patch on this managed instance
26408
- # group.
26503
+ # The list of per-instance configurations to insert or patch on this managed
26504
+ # instance group.
26409
26505
  # Corresponds to the JSON property `perInstanceConfigs`
26410
26506
  # @return [Array<Google::Apis::ComputeV1::PerInstanceConfig>]
26411
26507
  attr_accessor :per_instance_configs
@@ -26424,8 +26520,8 @@ module Google
26424
26520
  class RegionInstanceGroupManagerUpdateInstanceConfigReq
26425
26521
  include Google::Apis::Core::Hashable
26426
26522
 
26427
- # The list of per-instance configs to insert or patch on this managed instance
26428
- # group.
26523
+ # The list of per-instance configurations to insert or patch on this managed
26524
+ # instance group.
26429
26525
  # Corresponds to the JSON property `perInstanceConfigs`
26430
26526
  # @return [Array<Google::Apis::ComputeV1::PerInstanceConfig>]
26431
26527
  attr_accessor :per_instance_configs
@@ -34201,7 +34297,7 @@ module Google
34201
34297
  attr_accessor :enable_flow_logs
34202
34298
  alias_method :enable_flow_logs?, :enable_flow_logs
34203
34299
 
34204
- # [Output Only] The range of external IPv6 addresses that are owned by this
34300
+ # [Output Only] The external IPv6 address range that is assigned to this
34205
34301
  # subnetwork.
34206
34302
  # Corresponds to the JSON property `externalIpv6Prefix`
34207
34303
  # @return [String]
@@ -34230,9 +34326,8 @@ module Google
34230
34326
  # @return [Fixnum]
34231
34327
  attr_accessor :id
34232
34328
 
34233
- # [Output Only] The range of internal IPv6 addresses that are owned by this
34234
- # subnetwork. Note this is for general VM to VM communication, not to be
34235
- # confused with the ipv6_cidr_range field.
34329
+ # [Output Only] The internal IPv6 address range that is assigned to this
34330
+ # subnetwork.
34236
34331
  # Corresponds to the JSON property `internalIpv6Prefix`
34237
34332
  # @return [String]
34238
34333
  attr_accessor :internal_ipv6_prefix
@@ -34249,14 +34344,12 @@ module Google
34249
34344
 
34250
34345
  # The access type of IPv6 address this subnet holds. It's immutable and can only
34251
34346
  # be specified during creation or the first time the subnet is updated into
34252
- # IPV4_IPV6 dual stack. If the ipv6_type is EXTERNAL then this subnet cannot
34253
- # enable direct path.
34347
+ # IPV4_IPV6 dual stack.
34254
34348
  # Corresponds to the JSON property `ipv6AccessType`
34255
34349
  # @return [String]
34256
34350
  attr_accessor :ipv6_access_type
34257
34351
 
34258
- # [Output Only] The range of internal IPv6 addresses that are owned by this
34259
- # subnetwork. Note this will be for private google access only eventually.
34352
+ # [Output Only] This field is for internal use.
34260
34353
  # Corresponds to the JSON property `ipv6CidrRange`
34261
34354
  # @return [String]
34262
34355
  attr_accessor :ipv6_cidr_range
@@ -34297,10 +34390,8 @@ module Google
34297
34390
  attr_accessor :private_ip_google_access
34298
34391
  alias_method :private_ip_google_access?, :private_ip_google_access
34299
34392
 
34300
- # The private IPv6 google access type for the VMs in this subnet. This is an
34301
- # expanded field of enablePrivateV6Access. If both fields are set,
34302
- # privateIpv6GoogleAccess will take priority. This field can be both set at
34303
- # resource creation time and updated using patch.
34393
+ # This field is for internal use. This field can be both set at resource
34394
+ # creation time and updated using patch.
34304
34395
  # Corresponds to the JSON property `privateIpv6GoogleAccess`
34305
34396
  # @return [String]
34306
34397
  attr_accessor :private_ipv6_google_access
@@ -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.29.0"
19
+ GEM_VERSION = "0.32.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220312"
25
+ REVISION = "20220405"
26
26
  end
27
27
  end
28
28
  end
@@ -454,6 +454,24 @@ module Google
454
454
  include Google::Apis::Core::JsonObjectSupport
455
455
  end
456
456
 
457
+ class BackendServiceLocalityLoadBalancingPolicyConfig
458
+ class Representation < Google::Apis::Core::JsonRepresentation; end
459
+
460
+ include Google::Apis::Core::JsonObjectSupport
461
+ end
462
+
463
+ class BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy
464
+ class Representation < Google::Apis::Core::JsonRepresentation; end
465
+
466
+ include Google::Apis::Core::JsonObjectSupport
467
+ end
468
+
469
+ class BackendServiceLocalityLoadBalancingPolicyConfigPolicy
470
+ class Representation < Google::Apis::Core::JsonRepresentation; end
471
+
472
+ include Google::Apis::Core::JsonObjectSupport
473
+ end
474
+
457
475
  class BackendServiceLogConfig
458
476
  class Representation < Google::Apis::Core::JsonRepresentation; end
459
477
 
@@ -6161,6 +6179,8 @@ module Google
6161
6179
  property :id, :numeric_string => true, as: 'id'
6162
6180
  property :kind, as: 'kind'
6163
6181
  property :load_balancing_scheme, as: 'loadBalancingScheme'
6182
+ collection :locality_lb_policies, as: 'localityLbPolicies', class: Google::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfig, decorator: Google::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfig::Representation
6183
+
6164
6184
  property :locality_lb_policy, as: 'localityLbPolicy'
6165
6185
  property :log_config, as: 'logConfig', class: Google::Apis::ComputeV1::BackendServiceLogConfig, decorator: Google::Apis::ComputeV1::BackendServiceLogConfig::Representation
6166
6186
 
@@ -6325,6 +6345,31 @@ module Google
6325
6345
  end
6326
6346
  end
6327
6347
 
6348
+ class BackendServiceLocalityLoadBalancingPolicyConfig
6349
+ # @private
6350
+ class Representation < Google::Apis::Core::JsonRepresentation
6351
+ property :custom_policy, as: 'customPolicy', class: Google::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy, decorator: Google::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy::Representation
6352
+
6353
+ property :policy, as: 'policy', class: Google::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfigPolicy, decorator: Google::Apis::ComputeV1::BackendServiceLocalityLoadBalancingPolicyConfigPolicy::Representation
6354
+
6355
+ end
6356
+ end
6357
+
6358
+ class BackendServiceLocalityLoadBalancingPolicyConfigCustomPolicy
6359
+ # @private
6360
+ class Representation < Google::Apis::Core::JsonRepresentation
6361
+ property :data, as: 'data'
6362
+ property :name, as: 'name'
6363
+ end
6364
+ end
6365
+
6366
+ class BackendServiceLocalityLoadBalancingPolicyConfigPolicy
6367
+ # @private
6368
+ class Representation < Google::Apis::Core::JsonRepresentation
6369
+ property :name, as: 'name'
6370
+ end
6371
+ end
6372
+
6328
6373
  class BackendServiceLogConfig
6329
6374
  # @private
6330
6375
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7305,6 +7350,7 @@ module Google
7305
7350
  property :match, as: 'match', class: Google::Apis::ComputeV1::FirewallPolicyRuleMatcher, decorator: Google::Apis::ComputeV1::FirewallPolicyRuleMatcher::Representation
7306
7351
 
7307
7352
  property :priority, as: 'priority'
7353
+ property :rule_name, as: 'ruleName'
7308
7354
  property :rule_tuple_count, as: 'ruleTupleCount'
7309
7355
  collection :target_resources, as: 'targetResources'
7310
7356
  collection :target_secure_tags, as: 'targetSecureTags', class: Google::Apis::ComputeV1::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeV1::FirewallPolicyRuleSecureTag::Representation
@@ -8299,8 +8299,8 @@ module Google
8299
8299
  execute_or_queue_command(command, &block)
8300
8300
  end
8301
8301
 
8302
- # Creates instances with per-instance configs in this managed instance group.
8303
- # Instances are created using the current instance template. The create
8302
+ # Creates instances with per-instance configurations in this managed instance
8303
+ # group. Instances are created using the current instance template. The create
8304
8304
  # instances operation is marked DONE if the createInstances request is
8305
8305
  # successful. The underlying actions take additional time. You must separately
8306
8306
  # verify the status of the creating or actions with the listmanagedinstances
@@ -8472,7 +8472,7 @@ module Google
8472
8472
  execute_or_queue_command(command, &block)
8473
8473
  end
8474
8474
 
8475
- # Deletes selected per-instance configs for the managed instance group.
8475
+ # Deletes selected per-instance configurations for the managed instance group.
8476
8476
  # @param [String] project
8477
8477
  # Project ID for this request.
8478
8478
  # @param [String] zone
@@ -8868,8 +8868,8 @@ module Google
8868
8868
  execute_or_queue_command(command, &block)
8869
8869
  end
8870
8870
 
8871
- # Lists all of the per-instance configs defined for the managed instance group.
8872
- # The orderBy query parameter is not supported.
8871
+ # Lists all of the per-instance configurations defined for the managed instance
8872
+ # group. The orderBy query parameter is not supported.
8873
8873
  # @param [String] project
8874
8874
  # Project ID for this request.
8875
8875
  # @param [String] zone
@@ -9015,7 +9015,7 @@ module Google
9015
9015
  execute_or_queue_command(command, &block)
9016
9016
  end
9017
9017
 
9018
- # Inserts or patches per-instance configs for the managed instance group.
9018
+ # Inserts or patches per-instance configurations for the managed instance group.
9019
9019
  # perInstanceConfig.name serves as a key used to distinguish whether to perform
9020
9020
  # insert or patch.
9021
9021
  # @param [String] project
@@ -9315,7 +9315,7 @@ module Google
9315
9315
  execute_or_queue_command(command, &block)
9316
9316
  end
9317
9317
 
9318
- # Inserts or updates per-instance configs for the managed instance group.
9318
+ # Inserts or updates per-instance configurations for the managed instance group.
9319
9319
  # perInstanceConfig.name serves as a key used to distinguish whether to perform
9320
9320
  # insert or patch.
9321
9321
  # @param [String] project
@@ -22166,9 +22166,9 @@ module Google
22166
22166
  execute_or_queue_command(command, &block)
22167
22167
  end
22168
22168
 
22169
- # Creates instances with per-instance configs in this regional managed instance
22170
- # group. Instances are created using the current instance template. The create
22171
- # instances operation is marked DONE if the createInstances request is
22169
+ # Creates instances with per-instance configurations in this regional managed
22170
+ # instance group. Instances are created using the current instance template. The
22171
+ # create instances operation is marked DONE if the createInstances request is
22172
22172
  # successful. The underlying actions take additional time. You must separately
22173
22173
  # verify the status of the creating or actions with the listmanagedinstances
22174
22174
  # method.
@@ -22338,7 +22338,7 @@ module Google
22338
22338
  execute_or_queue_command(command, &block)
22339
22339
  end
22340
22340
 
22341
- # Deletes selected per-instance configs for the managed instance group.
22341
+ # Deletes selected per-instance configurations for the managed instance group.
22342
22342
  # @param [String] project
22343
22343
  # Project ID for this request.
22344
22344
  # @param [String] region
@@ -22727,8 +22727,8 @@ module Google
22727
22727
  execute_or_queue_command(command, &block)
22728
22728
  end
22729
22729
 
22730
- # Lists all of the per-instance configs defined for the managed instance group.
22731
- # The orderBy query parameter is not supported.
22730
+ # Lists all of the per-instance configurations defined for the managed instance
22731
+ # group. The orderBy query parameter is not supported.
22732
22732
  # @param [String] project
22733
22733
  # Project ID for this request.
22734
22734
  # @param [String] region
@@ -22873,7 +22873,7 @@ module Google
22873
22873
  execute_or_queue_command(command, &block)
22874
22874
  end
22875
22875
 
22876
- # Inserts or patches per-instance configs for the managed instance group.
22876
+ # Inserts or patches per-instance configurations for the managed instance group.
22877
22877
  # perInstanceConfig.name serves as a key used to distinguish whether to perform
22878
22878
  # insert or patch.
22879
22879
  # @param [String] project
@@ -23159,7 +23159,7 @@ module Google
23159
23159
  execute_or_queue_command(command, &block)
23160
23160
  end
23161
23161
 
23162
- # Inserts or updates per-instance configs for the managed instance group.
23162
+ # Inserts or updates per-instance configurations for the managed instance group.
23163
23163
  # perInstanceConfig.name serves as a key used to distinguish whether to perform
23164
23164
  # insert or patch.
23165
23165
  # @param [String] project
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.29.0
4
+ version: 0.32.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: 2022-03-21 00:00:00.000000000 Z
11
+ date: 2022-04-18 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.29.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.32.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: []