google-apis-compute_beta 0.96.0 → 0.97.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1fc0f6d5a0cc4accc7a2e8742bdce38e04f476e9063905dec14e2d445a227359
|
4
|
+
data.tar.gz: 2aed4b0d8c9f7cffb957b8bec9ef8ba1a01e669ed33a3d337bd9ca2431478b5a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c16d0552d71d46be9af4f8e98608315e0403db98a931556a946e815e5b79762672ce7dd3077f5aeac2260aeb245c2253bf1f023e223e1da66f37946540bf56a0
|
7
|
+
data.tar.gz: a7e206d697540a71a2249a342c2dcd9db761b68c214a5ce6b81b1123699999382fe416afbdaf069652c4f44ce0dca936d42d9b683466a4a36deded9978e574f1
|
data/CHANGELOG.md
CHANGED
@@ -8331,12 +8331,13 @@ module Google
|
|
8331
8331
|
# @return [String]
|
8332
8332
|
attr_accessor :domain
|
8333
8333
|
|
8334
|
-
# Additional structured details about this error. Keys
|
8335
|
-
#
|
8336
|
-
# value of an exceeded limit, the units
|
8337
|
-
# value. For example, rather than `"
|
8338
|
-
#
|
8339
|
-
#
|
8334
|
+
# Additional structured details about this error. Keys must match /a-z+/ but
|
8335
|
+
# should ideally be lowerCamelCase. Also they must be limited to 64 characters
|
8336
|
+
# in length. When identifying the current value of an exceeded limit, the units
|
8337
|
+
# should be contained in the key, not the value. For example, rather than `"
|
8338
|
+
# instanceLimit": "100/request"`, should be returned as, `"
|
8339
|
+
# instanceLimitPerRequest": "100"`, if the client exceeds the number of
|
8340
|
+
# instances that can be created in a single (batch) request.
|
8340
8341
|
# Corresponds to the JSON property `metadatas`
|
8341
8342
|
# @return [Hash<String,String>]
|
8342
8343
|
attr_accessor :metadatas
|
@@ -17234,7 +17235,7 @@ module Google
|
|
17234
17235
|
attr_accessor :is_stateful
|
17235
17236
|
alias_method :is_stateful?, :is_stateful
|
17236
17237
|
|
17237
|
-
# [Output Only] Status of per-instance configurations on the
|
17238
|
+
# [Output Only] Status of per-instance configurations on the instances.
|
17238
17239
|
# Corresponds to the JSON property `perInstanceConfigs`
|
17239
17240
|
# @return [Google::Apis::ComputeBeta::InstanceGroupManagerStatusStatefulPerInstanceConfigs]
|
17240
17241
|
attr_accessor :per_instance_configs
|
@@ -37072,6 +37073,20 @@ module Google
|
|
37072
37073
|
attr_accessor :enable_ipv6
|
37073
37074
|
alias_method :enable_ipv6?, :enable_ipv6
|
37074
37075
|
|
37076
|
+
# List of export policies applied to this peer, in the order they must be
|
37077
|
+
# evaluated. The name must correspond to an existing policy that has
|
37078
|
+
# ROUTE_POLICY_TYPE_EXPORT type.
|
37079
|
+
# Corresponds to the JSON property `exportPolicies`
|
37080
|
+
# @return [Array<String>]
|
37081
|
+
attr_accessor :export_policies
|
37082
|
+
|
37083
|
+
# List of import policies applied to this peer, in the order they must be
|
37084
|
+
# evaluated. The name must correspond to an existing policy that has
|
37085
|
+
# ROUTE_POLICY_TYPE_IMPORT type.
|
37086
|
+
# Corresponds to the JSON property `importPolicies`
|
37087
|
+
# @return [Array<String>]
|
37088
|
+
attr_accessor :import_policies
|
37089
|
+
|
37075
37090
|
# Name of the interface the BGP peer is associated with.
|
37076
37091
|
# Corresponds to the JSON property `interfaceName`
|
37077
37092
|
# @return [String]
|
@@ -37166,6 +37181,8 @@ module Google
|
|
37166
37181
|
@enable = args[:enable] if args.key?(:enable)
|
37167
37182
|
@enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
|
37168
37183
|
@enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
|
37184
|
+
@export_policies = args[:export_policies] if args.key?(:export_policies)
|
37185
|
+
@import_policies = args[:import_policies] if args.key?(:import_policies)
|
37169
37186
|
@interface_name = args[:interface_name] if args.key?(:interface_name)
|
37170
37187
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
37171
37188
|
@ipv4_nexthop_address = args[:ipv4_nexthop_address] if args.key?(:ipv4_nexthop_address)
|
@@ -41119,10 +41136,10 @@ module Google
|
|
41119
41136
|
# @return [String]
|
41120
41137
|
attr_accessor :producer_forwarding_rule
|
41121
41138
|
|
41122
|
-
# The number of consumer
|
41123
|
-
#
|
41124
|
-
# service producer
|
41125
|
-
#
|
41139
|
+
# The number of consumer spokes that connected Private Service Connect endpoints
|
41140
|
+
# can be propagated to through Network Connectivity Center. This limit lets the
|
41141
|
+
# service producer limit how many propagated Private Service Connect connections
|
41142
|
+
# can be established to this service attachment from a single consumer. If the
|
41126
41143
|
# connection preference of the service attachment is ACCEPT_MANUAL, the limit
|
41127
41144
|
# applies to each project or network that is listed in the consumer accept list.
|
41128
41145
|
# If the connection preference of the service attachment is ACCEPT_AUTOMATIC,
|
@@ -47024,6 +47041,25 @@ module Google
|
|
47024
47041
|
# @return [String]
|
47025
47042
|
attr_accessor :ssl_policy
|
47026
47043
|
|
47044
|
+
# Specifies whether TLS 1.3 0-RTT Data ("Early Data") should be accepted for
|
47045
|
+
# this service. Early Data allows a TLS resumption handshake to include the
|
47046
|
+
# initial application payload (a HTTP request) alongside the handshake, reducing
|
47047
|
+
# the effective round trips to "zero". This applies to TLS 1.3 connections over
|
47048
|
+
# TCP (HTTP/2) as well as over UDP (QUIC/h3). This can improve application
|
47049
|
+
# performance, especially on networks where interruptions may be common, such as
|
47050
|
+
# on mobile. Requests with Early Data will have the "Early-Data" HTTP header set
|
47051
|
+
# on the request, with a value of "1", to allow the backend to determine whether
|
47052
|
+
# Early Data was included. Note: TLS Early Data may allow requests to be
|
47053
|
+
# replayed, as the data is sent to the backend before the handshake has fully
|
47054
|
+
# completed. Applications that allow idempotent HTTP methods to make non-
|
47055
|
+
# idempotent changes, such as a GET request updating a database, should not
|
47056
|
+
# accept Early Data on those requests, and reject requests with the "Early-Data:
|
47057
|
+
# 1" HTTP header by returning a HTTP 425 (Too Early) status code, in order to
|
47058
|
+
# remain RFC compliant. The default value is DISABLED.
|
47059
|
+
# Corresponds to the JSON property `tlsEarlyData`
|
47060
|
+
# @return [String]
|
47061
|
+
attr_accessor :tls_early_data
|
47062
|
+
|
47027
47063
|
# A fully-qualified or valid partial URL to the UrlMap resource that defines the
|
47028
47064
|
# mapping from URL to the BackendService. For example, the following are all
|
47029
47065
|
# valid URLs for specifying a URL map: - https://www.googleapis.compute/v1/
|
@@ -47058,6 +47094,7 @@ module Google
|
|
47058
47094
|
@server_tls_policy = args[:server_tls_policy] if args.key?(:server_tls_policy)
|
47059
47095
|
@ssl_certificates = args[:ssl_certificates] if args.key?(:ssl_certificates)
|
47060
47096
|
@ssl_policy = args[:ssl_policy] if args.key?(:ssl_policy)
|
47097
|
+
@tls_early_data = args[:tls_early_data] if args.key?(:tls_early_data)
|
47061
47098
|
@url_map = args[:url_map] if args.key?(:url_map)
|
47062
47099
|
end
|
47063
47100
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.97.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240324"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -16034,6 +16034,8 @@ module Google
|
|
16034
16034
|
property :enable, as: 'enable'
|
16035
16035
|
property :enable_ipv4, as: 'enableIpv4'
|
16036
16036
|
property :enable_ipv6, as: 'enableIpv6'
|
16037
|
+
collection :export_policies, as: 'exportPolicies'
|
16038
|
+
collection :import_policies, as: 'importPolicies'
|
16037
16039
|
property :interface_name, as: 'interfaceName'
|
16038
16040
|
property :ip_address, as: 'ipAddress'
|
16039
16041
|
property :ipv4_nexthop_address, as: 'ipv4NexthopAddress'
|
@@ -18453,6 +18455,7 @@ module Google
|
|
18453
18455
|
property :server_tls_policy, as: 'serverTlsPolicy'
|
18454
18456
|
collection :ssl_certificates, as: 'sslCertificates'
|
18455
18457
|
property :ssl_policy, as: 'sslPolicy'
|
18458
|
+
property :tls_early_data, as: 'tlsEarlyData'
|
18456
18459
|
property :url_map, as: 'urlMap'
|
18457
18460
|
end
|
18458
18461
|
end
|
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.
|
4
|
+
version: 0.97.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-03-
|
11
|
+
date: 2024-03-31 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.97.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: []
|