google-apis-compute_beta 0.81.0 → 0.82.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: c79881623027a5af91ebe47697e2b9b7163ece849a24ffaaa0fc72304ed59cbd
4
- data.tar.gz: baae874c5af2722404f82614d0ac44b44ec4846e8b5e99d8f4d26114a92f9575
3
+ metadata.gz: 372eaa962675e5cfad34301ee219b1f304452e24fe3184958236576edef16443
4
+ data.tar.gz: 610f59ca87f2788d309895b33513a771666e5c5d131b7db277b3eea19cd5e889
5
5
  SHA512:
6
- metadata.gz: 7327d99056b1a5b0bffbc56a79ee6dd3301b327620ecd642662f68ade7e66fcd9c9e7d40660de2a30c2eebbc3f6fdc6d4896e9b69339e0838e04965137d4dfdf
7
- data.tar.gz: 5cbf69372b7033d3e29d8d625ef68a8b56511847c11c366ec62af300fc363fb69954373da0bd1318b82fd58c361a5ec51357d48d619cc1a4a11e2b983f939f14
6
+ metadata.gz: 240b990e1313e51c89a14be1dcb45fc80e01a089afc805e38e038e1766139090c19f40bb8acf3782fabf3f44d71736c309998862ac4ce7ec90325c298c07a51c
7
+ data.tar.gz: f9f57d8408243057283e2d422ac416bff4ad8d417e71a7944e0b253f337a2d19430a910494d874732a563cc962290e724505cad23c284174e7099bf2488d05e6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_beta
2
2
 
3
+ ### v0.82.0 (2023-10-08)
4
+
5
+ * Regenerated from discovery document revision 20230923
6
+
3
7
  ### v0.81.0 (2023-10-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20230920
@@ -2815,7 +2815,7 @@ module Google
2815
2815
 
2816
2816
  # The time zone to use when interpreting the schedule. The value of this field
2817
2817
  # must be a time zone name from the tz database: https://en.wikipedia.org/wiki/
2818
- # Tz_database. This field is assigned a default value of UTC if left empty.
2818
+ # Tz_database. This field is assigned a default value of "UTC" if left empty.
2819
2819
  # Corresponds to the JSON property `timeZone`
2820
2820
  # @return [String]
2821
2821
  attr_accessor :time_zone
@@ -3561,6 +3561,27 @@ module Google
3561
3561
  # @return [Fixnum]
3562
3562
  attr_accessor :id
3563
3563
 
3564
+ # Specifies preference of traffic to the backend (from the proxy and from the
3565
+ # client for proxyless gRPC). The possible values are: - IPV4_ONLY: Only send
3566
+ # IPv4 traffic to the backends of the Backend Service (Instance Group, Managed
3567
+ # Instance Group, Network Endpoint Group) regardless of traffic from the client
3568
+ # to the proxy. Only IPv4 health-checks are used to check the health of the
3569
+ # backends. This is the default setting. - PREFER_IPV6: Prioritize the
3570
+ # connection to the endpoints IPv6 address over its IPv4 address (provided there
3571
+ # is a healthy IPv6 address). - IPV6_ONLY: Only send IPv6 traffic to the
3572
+ # backends of the Backend Service (Instance Group, Managed Instance Group,
3573
+ # Network Endpoint Group) regardless of traffic from the client to the proxy.
3574
+ # Only IPv6 health-checks are used to check the health of the backends. This
3575
+ # field is applicable to either: - Advanced Global External HTTPS Load Balancing
3576
+ # (load balancing scheme EXTERNAL_MANAGED), - Regional External HTTPS Load
3577
+ # Balancing, - Internal TCP Proxy (load balancing scheme INTERNAL_MANAGED), -
3578
+ # Regional Internal HTTPS Load Balancing (load balancing scheme INTERNAL_MANAGED)
3579
+ # , - Traffic Director with Envoy proxies and proxyless gRPC (load balancing
3580
+ # scheme INTERNAL_SELF_MANAGED).
3581
+ # Corresponds to the JSON property `ipAddressSelectionPolicy`
3582
+ # @return [String]
3583
+ attr_accessor :ip_address_selection_policy
3584
+
3564
3585
  # [Output Only] Type of resource. Always compute#backendService for backend
3565
3586
  # services.
3566
3587
  # Corresponds to the JSON property `kind`
@@ -3778,6 +3799,7 @@ module Google
3778
3799
  @health_checks = args[:health_checks] if args.key?(:health_checks)
3779
3800
  @iap = args[:iap] if args.key?(:iap)
3780
3801
  @id = args[:id] if args.key?(:id)
3802
+ @ip_address_selection_policy = args[:ip_address_selection_policy] if args.key?(:ip_address_selection_policy)
3781
3803
  @kind = args[:kind] if args.key?(:kind)
3782
3804
  @load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
3783
3805
  @locality_lb_policies = args[:locality_lb_policies] if args.key?(:locality_lb_policies)
@@ -43880,14 +43902,14 @@ module Google
43880
43902
  # Represents a Target HTTP Proxy resource. Google Compute Engine has two Target
43881
43903
  # HTTP Proxy resources: * [Global](/compute/docs/reference/rest/beta/
43882
43904
  # targetHttpProxies) * [Regional](/compute/docs/reference/rest/beta/
43883
- # regionTargetHttpProxies) A target HTTP proxy is a component of GCP HTTP load
43884
- # balancers. * targetHttpProxies are used by global external Application Load
43885
- # Balancers, classic Application Load Balancers, cross-region internal
43886
- # Application Load Balancers, and Traffic Director. * regionTargetHttpProxies
43887
- # are used by regional internal Application Load Balancers and regional external
43888
- # Application Load Balancers. Forwarding rules reference a target HTTP proxy,
43889
- # and the target proxy then references a URL map. For more information, read
43890
- # Using Target Proxies and Forwarding rule concepts.
43905
+ # regionTargetHttpProxies) A target HTTP proxy is a component of Google Cloud
43906
+ # HTTP load balancers. * targetHttpProxies are used by global external
43907
+ # Application Load Balancers, classic Application Load Balancers, cross-region
43908
+ # internal Application Load Balancers, and Traffic Director. *
43909
+ # regionTargetHttpProxies are used by regional internal Application Load
43910
+ # Balancers and regional external Application Load Balancers. Forwarding rules
43911
+ # reference a target HTTP proxy, and the target proxy then references a URL map.
43912
+ # For more information, read Using Target Proxies and Forwarding rule concepts.
43891
43913
  class TargetHttpProxy
43892
43914
  include Google::Apis::Core::Hashable
43893
43915
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeBeta
18
18
  # Version of the google-apis-compute_beta gem
19
- GEM_VERSION = "0.81.0"
19
+ GEM_VERSION = "0.82.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230920"
25
+ REVISION = "20230923"
26
26
  end
27
27
  end
28
28
  end
@@ -7454,6 +7454,7 @@ module Google
7454
7454
  property :iap, as: 'iap', class: Google::Apis::ComputeBeta::BackendServiceIap, decorator: Google::Apis::ComputeBeta::BackendServiceIap::Representation
7455
7455
 
7456
7456
  property :id, :numeric_string => true, as: 'id'
7457
+ property :ip_address_selection_policy, as: 'ipAddressSelectionPolicy'
7457
7458
  property :kind, as: 'kind'
7458
7459
  property :load_balancing_scheme, as: 'loadBalancingScheme'
7459
7460
  collection :locality_lb_policies, as: 'localityLbPolicies', class: Google::Apis::ComputeBeta::BackendServiceLocalityLoadBalancingPolicyConfig, decorator: Google::Apis::ComputeBeta::BackendServiceLocalityLoadBalancingPolicyConfig::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-compute_beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.81.0
4
+ version: 0.82.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: 2023-10-01 00:00:00.000000000 Z
11
+ date: 2023-10-15 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_beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.81.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.82.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
63
63
  post_install_message:
64
64
  rdoc_options: []