google-apis-compute_v1 0.102.0 → 0.103.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffbf80047f6087069bff706b83cbfb8526909ba077048f99232bef45f49819cd
|
4
|
+
data.tar.gz: fe8dbd2ead0f066271381e06d361a89a98c94a90dc81881dcfd2ece0c5250435
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3637a28eb3c5da17ed97b6bc4908a489ae2429114ca16a9c94781db1c827c283d5aa97d0ffe0454e0a9a9304266cffd0a268d376499bdb3d8f0ba335ee94b7bf
|
7
|
+
data.tar.gz: 19da48e38c3de46197031e4318b7ec9b93ccf7e2500ec9b0dea90d7559238cf61676a2e15eed1f28ef52152ee92403a375aa35a6bfdedc6dc6f3df9e5df763bb
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-compute_v1
|
2
2
|
|
3
|
+
### v0.103.0 (2024-08-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240723
|
6
|
+
* Regenerated using generator version 0.15.1
|
7
|
+
|
3
8
|
### v0.102.0 (2024-07-25)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240702
|
@@ -3502,8 +3502,10 @@ module Google
|
|
3502
3502
|
# set to HTTP, HTTPS, or HTTP2, and load_balancing_scheme set to
|
3503
3503
|
# INTERNAL_MANAGED. - A global backend service with the load_balancing_scheme
|
3504
3504
|
# set to INTERNAL_SELF_MANAGED, INTERNAL_MANAGED, or EXTERNAL_MANAGED. If
|
3505
|
-
# sessionAffinity is not
|
3506
|
-
#
|
3505
|
+
# sessionAffinity is not configured—that is, if session affinity remains at the
|
3506
|
+
# default value of NONE—then the default value for localityLbPolicy is
|
3507
|
+
# ROUND_ROBIN. If session affinity is set to a value other than NONE, then the
|
3508
|
+
# default value for localityLbPolicy is MAGLEV. Only ROUND_ROBIN and RING_HASH
|
3507
3509
|
# are supported when the backend service is referenced by a URL map that is
|
3508
3510
|
# bound to target gRPC proxy that has validateForProxyless field set to true.
|
3509
3511
|
# Corresponds to the JSON property `localityLbPolicy`
|
@@ -11149,6 +11151,20 @@ module Google
|
|
11149
11151
|
# @return [String]
|
11150
11152
|
attr_accessor :self_link
|
11151
11153
|
|
11154
|
+
# The list of cloud regions from which health checks are performed. If any
|
11155
|
+
# regions are specified, then exactly 3 regions should be specified. The region
|
11156
|
+
# names must be valid names of Google Cloud regions. This can only be set for
|
11157
|
+
# global health check. If this list is non-empty, then there are restrictions on
|
11158
|
+
# what other health check fields are supported and what other resources can use
|
11159
|
+
# this health check: - SSL, HTTP2, and GRPC protocols are not supported. - The
|
11160
|
+
# TCP request field is not supported. - The proxyHeader field for HTTP, HTTPS,
|
11161
|
+
# and TCP is not supported. - The checkIntervalSec field must be at least 30. -
|
11162
|
+
# The health check cannot be used with BackendService nor with managed instance
|
11163
|
+
# group auto-healing.
|
11164
|
+
# Corresponds to the JSON property `sourceRegions`
|
11165
|
+
# @return [Array<String>]
|
11166
|
+
attr_accessor :source_regions
|
11167
|
+
|
11152
11168
|
#
|
11153
11169
|
# Corresponds to the JSON property `sslHealthCheck`
|
11154
11170
|
# @return [Google::Apis::ComputeV1::SslHealthCheck]
|
@@ -11199,6 +11215,7 @@ module Google
|
|
11199
11215
|
@name = args[:name] if args.key?(:name)
|
11200
11216
|
@region = args[:region] if args.key?(:region)
|
11201
11217
|
@self_link = args[:self_link] if args.key?(:self_link)
|
11218
|
+
@source_regions = args[:source_regions] if args.key?(:source_regions)
|
11202
11219
|
@ssl_health_check = args[:ssl_health_check] if args.key?(:ssl_health_check)
|
11203
11220
|
@tcp_health_check = args[:tcp_health_check] if args.key?(:tcp_health_check)
|
11204
11221
|
@timeout_sec = args[:timeout_sec] if args.key?(:timeout_sec)
|
@@ -14651,7 +14668,7 @@ module Google
|
|
14651
14668
|
# instance name with a hyphen followed by one or more hash symbols. The hash
|
14652
14669
|
# symbols indicate the number of digits. For example, a base instance name of "
|
14653
14670
|
# vm-###" results in "vm-001" as a VM name. @pattern [a-z](([-a-z0-9]`0,57`)|([-
|
14654
|
-
# a-z0-9]`0,
|
14671
|
+
# a-z0-9]`0,51`-#`1,10`(\\[[0-9]`1,10`\\])?))
|
14655
14672
|
# Corresponds to the JSON property `baseInstanceName`
|
14656
14673
|
# @return [String]
|
14657
14674
|
attr_accessor :base_instance_name
|
@@ -34036,6 +34053,11 @@ module Google
|
|
34036
34053
|
# @return [String]
|
34037
34054
|
attr_accessor :physical_host
|
34038
34055
|
|
34056
|
+
#
|
34057
|
+
# Corresponds to the JSON property `scheduling`
|
34058
|
+
# @return [Google::Apis::ComputeV1::ResourceStatusScheduling]
|
34059
|
+
attr_accessor :scheduling
|
34060
|
+
|
34039
34061
|
# Upcoming Maintenance notification information.
|
34040
34062
|
# Corresponds to the JSON property `upcomingMaintenance`
|
34041
34063
|
# @return [Google::Apis::ComputeV1::UpcomingMaintenance]
|
@@ -34048,10 +34070,32 @@ module Google
|
|
34048
34070
|
# Update properties of this object
|
34049
34071
|
def update!(**args)
|
34050
34072
|
@physical_host = args[:physical_host] if args.key?(:physical_host)
|
34073
|
+
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
34051
34074
|
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
34052
34075
|
end
|
34053
34076
|
end
|
34054
34077
|
|
34078
|
+
#
|
34079
|
+
class ResourceStatusScheduling
|
34080
|
+
include Google::Apis::Core::Hashable
|
34081
|
+
|
34082
|
+
# Specifies the availability domain to place the instance in. The value must be
|
34083
|
+
# a number between 1 and the number of availability domains specified in the
|
34084
|
+
# spread placement policy attached to the instance.
|
34085
|
+
# Corresponds to the JSON property `availabilityDomain`
|
34086
|
+
# @return [Fixnum]
|
34087
|
+
attr_accessor :availability_domain
|
34088
|
+
|
34089
|
+
def initialize(**args)
|
34090
|
+
update!(**args)
|
34091
|
+
end
|
34092
|
+
|
34093
|
+
# Update properties of this object
|
34094
|
+
def update!(**args)
|
34095
|
+
@availability_domain = args[:availability_domain] if args.key?(:availability_domain)
|
34096
|
+
end
|
34097
|
+
end
|
34098
|
+
|
34055
34099
|
# Represents a Route resource. A route defines a path from VM instances in the
|
34056
34100
|
# VPC network to a specific destination. This destination can be inside or
|
34057
34101
|
# outside the VPC network. For more information, read the Routes overview.
|
@@ -43845,10 +43889,11 @@ module Google
|
|
43845
43889
|
attr_accessor :authorization_policy
|
43846
43890
|
|
43847
43891
|
# URL of a certificate map that identifies a certificate map associated with the
|
43848
|
-
# given target proxy. This field can only be set for
|
43849
|
-
#
|
43850
|
-
#
|
43851
|
-
#
|
43892
|
+
# given target proxy. This field can only be set for Global external Application
|
43893
|
+
# Load Balancer or Classic Application Load Balancer. For other products use
|
43894
|
+
# Certificate Manager Certificates instead. If set, sslCertificates will be
|
43895
|
+
# ignored. Accepted format is //certificatemanager.googleapis.com/projects/`
|
43896
|
+
# project `/locations/`location`/certificateMaps/`resourceName`.
|
43852
43897
|
# Corresponds to the JSON property `certificateMap`
|
43853
43898
|
# @return [String]
|
43854
43899
|
attr_accessor :certificate_map
|
@@ -43956,9 +44001,18 @@ module Google
|
|
43956
44001
|
|
43957
44002
|
# URLs to SslCertificate resources that are used to authenticate connections
|
43958
44003
|
# between users and the load balancer. At least one SSL certificate must be
|
43959
|
-
# specified.
|
43960
|
-
#
|
43961
|
-
#
|
44004
|
+
# specified. SslCertificates do not apply when the load balancing scheme is set
|
44005
|
+
# to INTERNAL_SELF_MANAGED. The URLs should refer to a SSL Certificate resource
|
44006
|
+
# or Certificate Manager Certificate resource. Mixing Classic Certificates and
|
44007
|
+
# Certificate Manager Certificates is not allowed. Certificate Manager
|
44008
|
+
# Certificates must include the certificatemanager API. Certificate Manager
|
44009
|
+
# Certificates are not supported by Global external Application Load Balancer or
|
44010
|
+
# Classic Application Load Balancer, use certificate_map instead. Currently, you
|
44011
|
+
# may specify up to 15 Classic SSL Certificates. Certificate Manager
|
44012
|
+
# Certificates accepted formats are: - //certificatemanager.googleapis.com/
|
44013
|
+
# projects/`project`/locations/` location`/certificates/`resourceName`. - https:/
|
44014
|
+
# /certificatemanager.googleapis.com/v1alpha1/projects/`project `/locations/`
|
44015
|
+
# location`/certificates/`resourceName`.
|
43962
44016
|
# Corresponds to the JSON property `sslCertificates`
|
43963
44017
|
# @return [Array<String>]
|
43964
44018
|
attr_accessor :ssl_certificates
|
@@ -46742,8 +46796,9 @@ module Google
|
|
46742
46796
|
# directed if none of the hostRules match. If defaultRouteAction is also
|
46743
46797
|
# specified, advanced routing actions, such as URL rewrites, take effect before
|
46744
46798
|
# sending the request to the backend. However, if defaultService is specified,
|
46745
|
-
# defaultRouteAction cannot contain any
|
46746
|
-
#
|
46799
|
+
# defaultRouteAction cannot contain any defaultRouteAction.
|
46800
|
+
# weightedBackendServices. Conversely, if defaultRouteAction specifies any
|
46801
|
+
# defaultRouteAction.weightedBackendServices, defaultService must not be
|
46747
46802
|
# specified. If defaultService is specified, then set either defaultUrlRedirect ,
|
46748
46803
|
# or defaultRouteAction.weightedBackendService Don't set both. defaultService
|
46749
46804
|
# has no effect when the URL map is bound to a target gRPC proxy that has the
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeV1
|
18
18
|
# Version of the google-apis-compute_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.103.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.15.
|
22
|
+
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240723"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4462,6 +4462,12 @@ module Google
|
|
4462
4462
|
include Google::Apis::Core::JsonObjectSupport
|
4463
4463
|
end
|
4464
4464
|
|
4465
|
+
class ResourceStatusScheduling
|
4466
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4467
|
+
|
4468
|
+
include Google::Apis::Core::JsonObjectSupport
|
4469
|
+
end
|
4470
|
+
|
4465
4471
|
class Route
|
4466
4472
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4467
4473
|
|
@@ -9006,6 +9012,7 @@ module Google
|
|
9006
9012
|
property :name, as: 'name'
|
9007
9013
|
property :region, as: 'region'
|
9008
9014
|
property :self_link, as: 'selfLink'
|
9015
|
+
collection :source_regions, as: 'sourceRegions'
|
9009
9016
|
property :ssl_health_check, as: 'sslHealthCheck', class: Google::Apis::ComputeV1::SslHealthCheck, decorator: Google::Apis::ComputeV1::SslHealthCheck::Representation
|
9010
9017
|
|
9011
9018
|
property :tcp_health_check, as: 'tcpHealthCheck', class: Google::Apis::ComputeV1::TcpHealthCheck, decorator: Google::Apis::ComputeV1::TcpHealthCheck::Representation
|
@@ -14837,11 +14844,20 @@ module Google
|
|
14837
14844
|
# @private
|
14838
14845
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14839
14846
|
property :physical_host, as: 'physicalHost'
|
14847
|
+
property :scheduling, as: 'scheduling', class: Google::Apis::ComputeV1::ResourceStatusScheduling, decorator: Google::Apis::ComputeV1::ResourceStatusScheduling::Representation
|
14848
|
+
|
14840
14849
|
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::ComputeV1::UpcomingMaintenance, decorator: Google::Apis::ComputeV1::UpcomingMaintenance::Representation
|
14841
14850
|
|
14842
14851
|
end
|
14843
14852
|
end
|
14844
14853
|
|
14854
|
+
class ResourceStatusScheduling
|
14855
|
+
# @private
|
14856
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
14857
|
+
property :availability_domain, as: 'availabilityDomain'
|
14858
|
+
end
|
14859
|
+
end
|
14860
|
+
|
14845
14861
|
class Route
|
14846
14862
|
# @private
|
14847
14863
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7085,7 +7085,7 @@ module Google
|
|
7085
7085
|
# @param [String] project
|
7086
7086
|
# Project ID for this request.
|
7087
7087
|
# @param [String] operation
|
7088
|
-
# Name of the Operations resource to delete.
|
7088
|
+
# Name of the Operations resource to delete, or its unique numeric identifier.
|
7089
7089
|
# @param [String] fields
|
7090
7090
|
# Selector specifying which fields to include in a partial response.
|
7091
7091
|
# @param [String] quota_user
|
@@ -7119,7 +7119,7 @@ module Google
|
|
7119
7119
|
# @param [String] project
|
7120
7120
|
# Project ID for this request.
|
7121
7121
|
# @param [String] operation
|
7122
|
-
# Name of the Operations resource to return.
|
7122
|
+
# Name of the Operations resource to return, or its unique numeric identifier.
|
7123
7123
|
# @param [String] fields
|
7124
7124
|
# Selector specifying which fields to include in a partial response.
|
7125
7125
|
# @param [String] quota_user
|
@@ -7255,7 +7255,7 @@ module Google
|
|
7255
7255
|
# @param [String] project
|
7256
7256
|
# Project ID for this request.
|
7257
7257
|
# @param [String] operation
|
7258
|
-
# Name of the Operations resource to return.
|
7258
|
+
# Name of the Operations resource to return, or its unique numeric identifier.
|
7259
7259
|
# @param [String] fields
|
7260
7260
|
# Selector specifying which fields to include in a partial response.
|
7261
7261
|
# @param [String] quota_user
|
@@ -7289,7 +7289,7 @@ module Google
|
|
7289
7289
|
|
7290
7290
|
# Deletes the specified Operations resource.
|
7291
7291
|
# @param [String] operation
|
7292
|
-
# Name of the Operations resource to delete.
|
7292
|
+
# Name of the Operations resource to delete, or its unique numeric identifier.
|
7293
7293
|
# @param [String] parent_id
|
7294
7294
|
# Parent ID for this request.
|
7295
7295
|
# @param [String] fields
|
@@ -7324,7 +7324,7 @@ module Google
|
|
7324
7324
|
# Retrieves the specified Operations resource. Gets a list of operations by
|
7325
7325
|
# making a `list()` request.
|
7326
7326
|
# @param [String] operation
|
7327
|
-
# Name of the Operations resource to return.
|
7327
|
+
# Name of the Operations resource to return, or its unique numeric identifier.
|
7328
7328
|
# @param [String] parent_id
|
7329
7329
|
# Parent ID for this request.
|
7330
7330
|
# @param [String] fields
|
@@ -30753,7 +30753,7 @@ module Google
|
|
30753
30753
|
# @param [String] region
|
30754
30754
|
# Name of the region for this request.
|
30755
30755
|
# @param [String] operation
|
30756
|
-
# Name of the Operations resource to delete.
|
30756
|
+
# Name of the Operations resource to delete, or its unique numeric identifier.
|
30757
30757
|
# @param [String] fields
|
30758
30758
|
# Selector specifying which fields to include in a partial response.
|
30759
30759
|
# @param [String] quota_user
|
@@ -30790,7 +30790,7 @@ module Google
|
|
30790
30790
|
# @param [String] region
|
30791
30791
|
# Name of the region for this request.
|
30792
30792
|
# @param [String] operation
|
30793
|
-
# Name of the Operations resource to return.
|
30793
|
+
# Name of the Operations resource to return, or its unique numeric identifier.
|
30794
30794
|
# @param [String] fields
|
30795
30795
|
# Selector specifying which fields to include in a partial response.
|
30796
30796
|
# @param [String] quota_user
|
@@ -30932,7 +30932,7 @@ module Google
|
|
30932
30932
|
# @param [String] region
|
30933
30933
|
# Name of the region for this request.
|
30934
30934
|
# @param [String] operation
|
30935
|
-
# Name of the Operations resource to return.
|
30935
|
+
# Name of the Operations resource to return, or its unique numeric identifier.
|
30936
30936
|
# @param [String] fields
|
30937
30937
|
# Selector specifying which fields to include in a partial response.
|
30938
30938
|
# @param [String] quota_user
|
@@ -44789,7 +44789,7 @@ module Google
|
|
44789
44789
|
# @param [String] zone
|
44790
44790
|
# Name of the zone for this request.
|
44791
44791
|
# @param [String] operation
|
44792
|
-
# Name of the Operations resource to delete.
|
44792
|
+
# Name of the Operations resource to delete, or its unique numeric identifier.
|
44793
44793
|
# @param [String] fields
|
44794
44794
|
# Selector specifying which fields to include in a partial response.
|
44795
44795
|
# @param [String] quota_user
|
@@ -44826,7 +44826,7 @@ module Google
|
|
44826
44826
|
# @param [String] zone
|
44827
44827
|
# Name of the zone for this request.
|
44828
44828
|
# @param [String] operation
|
44829
|
-
# Name of the Operations resource to return.
|
44829
|
+
# Name of the Operations resource to return, or its unique numeric identifier.
|
44830
44830
|
# @param [String] fields
|
44831
44831
|
# Selector specifying which fields to include in a partial response.
|
44832
44832
|
# @param [String] quota_user
|
@@ -44968,7 +44968,7 @@ module Google
|
|
44968
44968
|
# @param [String] zone
|
44969
44969
|
# Name of the zone for this request.
|
44970
44970
|
# @param [String] operation
|
44971
|
-
# Name of the Operations resource to return.
|
44971
|
+
# Name of the Operations resource to return, or its unique numeric identifier.
|
44972
44972
|
# @param [String] fields
|
44973
44973
|
# Selector specifying which fields to include in a partial response.
|
44974
44974
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.103.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.103.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: []
|