google-apis-compute_beta 0.90.0 → 0.91.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/compute_beta/classes.rb +44 -37
- data/lib/google/apis/compute_beta/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a81970e8ebc6d4fd6a9975a8fbfab464d42e0531ec44642f6b0f1c09ff200236
|
4
|
+
data.tar.gz: 48bde2080d62d95ec946510b9fc1e9f809eff779f3e1870b39c08231699f80de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7da8c1881b54f047b23edbdeb7a5aefded9b4d814269f5d268b912a73bb5975631fc3005fb45a187942163dbdbbfcdd186ec9c0fe31f6794db222ca3617a6b2c
|
7
|
+
data.tar.gz: 13e157bf3ea09bedf1936e41b1a2ca1acf6821729ef561bffb92ed4a69a26ba2c2bf6898ad32dde4dff880e2c6dbed8c926451a16e7c05f66d92f3df2ec03d06
|
data/CHANGELOG.md
CHANGED
@@ -25806,7 +25806,8 @@ module Google
|
|
25806
25806
|
attr_accessor :creation_timestamp
|
25807
25807
|
|
25808
25808
|
# The default port used if the port number is not specified in the network
|
25809
|
-
# endpoint.
|
25809
|
+
# endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
|
25810
|
+
# PRIVATE_SERVICE_CONNECT, this field must not be specified.
|
25810
25811
|
# Corresponds to the JSON property `defaultPort`
|
25811
25812
|
# @return [Fixnum]
|
25812
25813
|
attr_accessor :default_port
|
@@ -25844,8 +25845,8 @@ module Google
|
|
25844
25845
|
# @return [String]
|
25845
25846
|
attr_accessor :name
|
25846
25847
|
|
25847
|
-
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
25848
|
-
# default
|
25848
|
+
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
25849
|
+
# default project network if unspecified.
|
25849
25850
|
# Corresponds to the JSON property `network`
|
25850
25851
|
# @return [String]
|
25851
25852
|
attr_accessor :network
|
@@ -25864,8 +25865,8 @@ module Google
|
|
25864
25865
|
attr_accessor :psc_data
|
25865
25866
|
|
25866
25867
|
# The target service url used to set up private service connection to a Google
|
25867
|
-
# API or a PSC Producer Service Attachment. An example value is:
|
25868
|
-
#
|
25868
|
+
# API or a PSC Producer Service Attachment. An example value is: asia-northeast3-
|
25869
|
+
# cloudkms.googleapis.com
|
25869
25870
|
# Corresponds to the JSON property `pscTargetService`
|
25870
25871
|
# @return [String]
|
25871
25872
|
attr_accessor :psc_target_service
|
@@ -26068,24 +26069,25 @@ module Google
|
|
26068
26069
|
include Google::Apis::Core::Hashable
|
26069
26070
|
|
26070
26071
|
# Optional serving service. The service name is case-sensitive and must be 1-63
|
26071
|
-
# characters long. Example value:
|
26072
|
+
# characters long. Example value: default, my-service.
|
26072
26073
|
# Corresponds to the JSON property `service`
|
26073
26074
|
# @return [String]
|
26074
26075
|
attr_accessor :service
|
26075
26076
|
|
26076
|
-
#
|
26077
|
-
#
|
26078
|
-
# multiple
|
26079
|
-
#
|
26080
|
-
# com/v2
|
26081
|
-
#
|
26082
|
-
#
|
26077
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26078
|
+
# parse service and version fields from a request URL. URL mask allows for
|
26079
|
+
# routing to multiple App Engine services without having to create multiple
|
26080
|
+
# Network Endpoint Groups and backend services. For example, the request URLs
|
26081
|
+
# foo1-dot-appname.appspot.com/v1 and foo1-dot-appname.appspot.com/v2 can be
|
26082
|
+
# backed by the same Serverless NEG with URL mask <service>-dot-appname.appspot.
|
26083
|
+
# com/<version>. The URL mask will parse them to ` service = "foo1", version = "
|
26084
|
+
# v1" ` and ` service = "foo1", version = "v2" ` respectively.
|
26083
26085
|
# Corresponds to the JSON property `urlMask`
|
26084
26086
|
# @return [String]
|
26085
26087
|
attr_accessor :url_mask
|
26086
26088
|
|
26087
26089
|
# Optional serving version. The version name is case-sensitive and must be 1-100
|
26088
|
-
# characters long. Example value:
|
26090
|
+
# characters long. Example value: v1, v2.
|
26089
26091
|
# Corresponds to the JSON property `version`
|
26090
26092
|
# @return [String]
|
26091
26093
|
attr_accessor :version
|
@@ -26109,17 +26111,18 @@ module Google
|
|
26109
26111
|
include Google::Apis::Core::Hashable
|
26110
26112
|
|
26111
26113
|
# A user-defined name of the Cloud Function. The function name is case-sensitive
|
26112
|
-
# and must be 1-63 characters long. Example value:
|
26114
|
+
# and must be 1-63 characters long. Example value: func1.
|
26113
26115
|
# Corresponds to the JSON property `function`
|
26114
26116
|
# @return [String]
|
26115
26117
|
attr_accessor :function
|
26116
26118
|
|
26117
|
-
#
|
26118
|
-
#
|
26119
|
-
#
|
26120
|
-
#
|
26121
|
-
#
|
26122
|
-
#
|
26119
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26120
|
+
# parse function field from a request URL. URL mask allows for routing to
|
26121
|
+
# multiple Cloud Functions without having to create multiple Network Endpoint
|
26122
|
+
# Groups and backend services. For example, request URLs mydomain.com/function1
|
26123
|
+
# and mydomain.com/function2 can be backed by the same Serverless NEG with URL
|
26124
|
+
# mask /<function>. The URL mask will parse them to ` function = "function1" `
|
26125
|
+
# and ` function = "function2" ` respectively.
|
26123
26126
|
# Corresponds to the JSON property `urlMask`
|
26124
26127
|
# @return [String]
|
26125
26128
|
attr_accessor :url_mask
|
@@ -26155,13 +26158,14 @@ module Google
|
|
26155
26158
|
# @return [String]
|
26156
26159
|
attr_accessor :tag
|
26157
26160
|
|
26158
|
-
#
|
26159
|
-
#
|
26160
|
-
#
|
26161
|
-
#
|
26162
|
-
#
|
26163
|
-
#
|
26164
|
-
# service="
|
26161
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26162
|
+
# parse <service> and <tag> fields from a request URL. URL mask allows for
|
26163
|
+
# routing to multiple Run services without having to create multiple network
|
26164
|
+
# endpoint groups and backend services. For example, request URLs foo1.domain.
|
26165
|
+
# com/bar1 and foo1.domain.com/bar2 can be backed by the same Serverless Network
|
26166
|
+
# Endpoint Group (NEG) with URL mask <tag>.domain.com/<service>. The URL mask
|
26167
|
+
# will parse them to ` service="bar1", tag="foo1" ` and ` service="bar2", tag="
|
26168
|
+
# foo2" ` respectively.
|
26165
26169
|
# Corresponds to the JSON property `urlMask`
|
26166
26170
|
# @return [String]
|
26167
26171
|
attr_accessor :url_mask
|
@@ -26183,13 +26187,15 @@ module Google
|
|
26183
26187
|
include Google::Apis::Core::Hashable
|
26184
26188
|
|
26185
26189
|
# The default port used if the port number is not specified in the network
|
26186
|
-
# endpoint.
|
26190
|
+
# endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
|
26191
|
+
# PRIVATE_SERVICE_CONNECT, this field must not be specified. [Deprecated] This
|
26192
|
+
# field is deprecated.
|
26187
26193
|
# Corresponds to the JSON property `defaultPort`
|
26188
26194
|
# @return [Fixnum]
|
26189
26195
|
attr_accessor :default_port
|
26190
26196
|
|
26191
|
-
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
26192
|
-
# default
|
26197
|
+
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
26198
|
+
# default project network if unspecified. [Deprecated] This field is deprecated.
|
26193
26199
|
# Corresponds to the JSON property `network`
|
26194
26200
|
# @return [String]
|
26195
26201
|
attr_accessor :network
|
@@ -26391,12 +26397,13 @@ module Google
|
|
26391
26397
|
# @return [String]
|
26392
26398
|
attr_accessor :resource
|
26393
26399
|
|
26394
|
-
#
|
26395
|
-
#
|
26396
|
-
#
|
26397
|
-
# resources. The fields parsed by
|
26398
|
-
#
|
26399
|
-
#
|
26400
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26401
|
+
# parse platform-specific fields from a request URL. URL mask allows for routing
|
26402
|
+
# to multiple resources on the same serverless platform without having to create
|
26403
|
+
# multiple Network Endpoint Groups and backend resources. The fields parsed by
|
26404
|
+
# this template are platform-specific and are as follows: 1. API Gateway: The
|
26405
|
+
# gateway ID 2. App Engine: The service and version 3. Cloud Functions: The
|
26406
|
+
# function name 4. Cloud Run: The service and tag
|
26400
26407
|
# Corresponds to the JSON property `urlMask`
|
26401
26408
|
# @return [String]
|
26402
26409
|
attr_accessor :url_mask
|
@@ -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.91.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240130"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
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.91.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-02-
|
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_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.91.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: []
|