google-apis-compute_alpha 0.89.0 → 0.90.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: 8c1bc6ca9a756ed3e8633aa78e9afe96879abe1ca00a63a7f7528bc1cb6e9a18
|
|
4
|
+
data.tar.gz: ce8ad5a290260702d4a3c63495763bb1ef8d2b909745150e7c74cf5411bde120
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15854f3865b6b81f3e48cebdcd2d8cf03e4eed2fba5713145985d6ad97c298c30b7c2a808cee193b2e40f2a742bd0707f23e94ffce7d7b2d6a970743fb4ed67f
|
|
7
|
+
data.tar.gz: e28a01f216ba7e998a7e5c4340f2a9cddcee1b85ad46b2d011f96c1e781c6cdee5e3cdb41db7172556c637d58d6c079f88330898061000c06e1bb74ff90a7341
|
data/CHANGELOG.md
CHANGED
|
@@ -27763,8 +27763,7 @@ module Google
|
|
|
27763
27763
|
# @return [Google::Apis::ComputeAlpha::NetworkEndpointGroupAppEngine]
|
|
27764
27764
|
attr_accessor :app_engine
|
|
27765
27765
|
|
|
27766
|
-
# Only valid when networkEndpointType is
|
|
27767
|
-
# regional.
|
|
27766
|
+
# Only valid when networkEndpointType is GCE_VM_IP_PORT and the NEG is regional.
|
|
27768
27767
|
# Corresponds to the JSON property `clientPortMappingMode`
|
|
27769
27768
|
# @return [String]
|
|
27770
27769
|
attr_accessor :client_port_mapping_mode
|
|
@@ -27790,7 +27789,8 @@ module Google
|
|
|
27790
27789
|
attr_accessor :creation_timestamp
|
|
27791
27790
|
|
|
27792
27791
|
# The default port used if the port number is not specified in the network
|
|
27793
|
-
# endpoint.
|
|
27792
|
+
# endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
|
|
27793
|
+
# PRIVATE_SERVICE_CONNECT, this field must not be specified.
|
|
27794
27794
|
# Corresponds to the JSON property `defaultPort`
|
|
27795
27795
|
# @return [Fixnum]
|
|
27796
27796
|
attr_accessor :default_port
|
|
@@ -27828,8 +27828,8 @@ module Google
|
|
|
27828
27828
|
# @return [String]
|
|
27829
27829
|
attr_accessor :name
|
|
27830
27830
|
|
|
27831
|
-
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
|
27832
|
-
# default
|
|
27831
|
+
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
|
27832
|
+
# default project network if unspecified.
|
|
27833
27833
|
# Corresponds to the JSON property `network`
|
|
27834
27834
|
# @return [String]
|
|
27835
27835
|
attr_accessor :network
|
|
@@ -27848,8 +27848,8 @@ module Google
|
|
|
27848
27848
|
attr_accessor :psc_data
|
|
27849
27849
|
|
|
27850
27850
|
# The target service url used to set up private service connection to a Google
|
|
27851
|
-
# API or a PSC Producer Service Attachment. An example value is:
|
|
27852
|
-
#
|
|
27851
|
+
# API or a PSC Producer Service Attachment. An example value is: asia-northeast3-
|
|
27852
|
+
# cloudkms.googleapis.com
|
|
27853
27853
|
# Corresponds to the JSON property `pscTargetService`
|
|
27854
27854
|
# @return [String]
|
|
27855
27855
|
attr_accessor :psc_target_service
|
|
@@ -28066,24 +28066,25 @@ module Google
|
|
|
28066
28066
|
include Google::Apis::Core::Hashable
|
|
28067
28067
|
|
|
28068
28068
|
# Optional serving service. The service name is case-sensitive and must be 1-63
|
|
28069
|
-
# characters long. Example value:
|
|
28069
|
+
# characters long. Example value: default, my-service.
|
|
28070
28070
|
# Corresponds to the JSON property `service`
|
|
28071
28071
|
# @return [String]
|
|
28072
28072
|
attr_accessor :service
|
|
28073
28073
|
|
|
28074
|
-
#
|
|
28075
|
-
#
|
|
28076
|
-
# multiple
|
|
28077
|
-
#
|
|
28078
|
-
# com/v2
|
|
28079
|
-
#
|
|
28080
|
-
#
|
|
28074
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
|
28075
|
+
# parse service and version fields from a request URL. URL mask allows for
|
|
28076
|
+
# routing to multiple App Engine services without having to create multiple
|
|
28077
|
+
# Network Endpoint Groups and backend services. For example, the request URLs
|
|
28078
|
+
# foo1-dot-appname.appspot.com/v1 and foo1-dot-appname.appspot.com/v2 can be
|
|
28079
|
+
# backed by the same Serverless NEG with URL mask <service>-dot-appname.appspot.
|
|
28080
|
+
# com/<version>. The URL mask will parse them to ` service = "foo1", version = "
|
|
28081
|
+
# v1" ` and ` service = "foo1", version = "v2" ` respectively.
|
|
28081
28082
|
# Corresponds to the JSON property `urlMask`
|
|
28082
28083
|
# @return [String]
|
|
28083
28084
|
attr_accessor :url_mask
|
|
28084
28085
|
|
|
28085
28086
|
# Optional serving version. The version name is case-sensitive and must be 1-100
|
|
28086
|
-
# characters long. Example value:
|
|
28087
|
+
# characters long. Example value: v1, v2.
|
|
28087
28088
|
# Corresponds to the JSON property `version`
|
|
28088
28089
|
# @return [String]
|
|
28089
28090
|
attr_accessor :version
|
|
@@ -28107,17 +28108,18 @@ module Google
|
|
|
28107
28108
|
include Google::Apis::Core::Hashable
|
|
28108
28109
|
|
|
28109
28110
|
# A user-defined name of the Cloud Function. The function name is case-sensitive
|
|
28110
|
-
# and must be 1-63 characters long. Example value:
|
|
28111
|
+
# and must be 1-63 characters long. Example value: func1.
|
|
28111
28112
|
# Corresponds to the JSON property `function`
|
|
28112
28113
|
# @return [String]
|
|
28113
28114
|
attr_accessor :function
|
|
28114
28115
|
|
|
28115
|
-
#
|
|
28116
|
-
#
|
|
28117
|
-
#
|
|
28118
|
-
#
|
|
28119
|
-
#
|
|
28120
|
-
#
|
|
28116
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
|
28117
|
+
# parse function field from a request URL. URL mask allows for routing to
|
|
28118
|
+
# multiple Cloud Functions without having to create multiple Network Endpoint
|
|
28119
|
+
# Groups and backend services. For example, request URLs mydomain.com/function1
|
|
28120
|
+
# and mydomain.com/function2 can be backed by the same Serverless NEG with URL
|
|
28121
|
+
# mask /<function>. The URL mask will parse them to ` function = "function1" `
|
|
28122
|
+
# and ` function = "function2" ` respectively.
|
|
28121
28123
|
# Corresponds to the JSON property `urlMask`
|
|
28122
28124
|
# @return [String]
|
|
28123
28125
|
attr_accessor :url_mask
|
|
@@ -28153,13 +28155,14 @@ module Google
|
|
|
28153
28155
|
# @return [String]
|
|
28154
28156
|
attr_accessor :tag
|
|
28155
28157
|
|
|
28156
|
-
#
|
|
28157
|
-
#
|
|
28158
|
-
#
|
|
28159
|
-
#
|
|
28160
|
-
#
|
|
28161
|
-
#
|
|
28162
|
-
# service="
|
|
28158
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
|
28159
|
+
# parse <service> and <tag> fields from a request URL. URL mask allows for
|
|
28160
|
+
# routing to multiple Run services without having to create multiple network
|
|
28161
|
+
# endpoint groups and backend services. For example, request URLs foo1.domain.
|
|
28162
|
+
# com/bar1 and foo1.domain.com/bar2 can be backed by the same Serverless Network
|
|
28163
|
+
# Endpoint Group (NEG) with URL mask <tag>.domain.com/<service>. The URL mask
|
|
28164
|
+
# will parse them to ` service="bar1", tag="foo1" ` and ` service="bar2", tag="
|
|
28165
|
+
# foo2" ` respectively.
|
|
28163
28166
|
# Corresponds to the JSON property `urlMask`
|
|
28164
28167
|
# @return [String]
|
|
28165
28168
|
attr_accessor :url_mask
|
|
@@ -28181,13 +28184,15 @@ module Google
|
|
|
28181
28184
|
include Google::Apis::Core::Hashable
|
|
28182
28185
|
|
|
28183
28186
|
# The default port used if the port number is not specified in the network
|
|
28184
|
-
# endpoint.
|
|
28187
|
+
# endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
|
|
28188
|
+
# PRIVATE_SERVICE_CONNECT, this field must not be specified. [Deprecated] This
|
|
28189
|
+
# field is deprecated.
|
|
28185
28190
|
# Corresponds to the JSON property `defaultPort`
|
|
28186
28191
|
# @return [Fixnum]
|
|
28187
28192
|
attr_accessor :default_port
|
|
28188
28193
|
|
|
28189
|
-
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
|
28190
|
-
# default
|
|
28194
|
+
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
|
28195
|
+
# default project network if unspecified. [Deprecated] This field is deprecated.
|
|
28191
28196
|
# Corresponds to the JSON property `network`
|
|
28192
28197
|
# @return [String]
|
|
28193
28198
|
attr_accessor :network
|
|
@@ -28389,12 +28394,13 @@ module Google
|
|
|
28389
28394
|
# @return [String]
|
|
28390
28395
|
attr_accessor :resource
|
|
28391
28396
|
|
|
28392
|
-
#
|
|
28393
|
-
#
|
|
28394
|
-
#
|
|
28395
|
-
# resources. The fields parsed by
|
|
28396
|
-
#
|
|
28397
|
-
#
|
|
28397
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
|
28398
|
+
# parse platform-specific fields from a request URL. URL mask allows for routing
|
|
28399
|
+
# to multiple resources on the same serverless platform without having to create
|
|
28400
|
+
# multiple Network Endpoint Groups and backend resources. The fields parsed by
|
|
28401
|
+
# this template are platform-specific and are as follows: 1. API Gateway: The
|
|
28402
|
+
# gateway ID 2. App Engine: The service and version 3. Cloud Functions: The
|
|
28403
|
+
# function name 4. Cloud Run: The service and tag
|
|
28398
28404
|
# Corresponds to the JSON property `urlMask`
|
|
28399
28405
|
# @return [String]
|
|
28400
28406
|
attr_accessor :url_mask
|
|
@@ -28762,6 +28768,12 @@ module Google
|
|
|
28762
28768
|
# @return [String]
|
|
28763
28769
|
attr_accessor :fingerprint
|
|
28764
28770
|
|
|
28771
|
+
# Indicate whether igmp query is enabled on the network interface or not. If
|
|
28772
|
+
# enabled, also indicates the version of IGMP supported.
|
|
28773
|
+
# Corresponds to the JSON property `igmpQuery`
|
|
28774
|
+
# @return [String]
|
|
28775
|
+
attr_accessor :igmp_query
|
|
28776
|
+
|
|
28765
28777
|
# The prefix length of the primary internal IPv6 range.
|
|
28766
28778
|
# Corresponds to the JSON property `internalIpv6PrefixLength`
|
|
28767
28779
|
# @return [Fixnum]
|
|
@@ -28891,6 +28903,7 @@ module Google
|
|
|
28891
28903
|
@access_configs = args[:access_configs] if args.key?(:access_configs)
|
|
28892
28904
|
@alias_ip_ranges = args[:alias_ip_ranges] if args.key?(:alias_ip_ranges)
|
|
28893
28905
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
|
28906
|
+
@igmp_query = args[:igmp_query] if args.key?(:igmp_query)
|
|
28894
28907
|
@internal_ipv6_prefix_length = args[:internal_ipv6_prefix_length] if args.key?(:internal_ipv6_prefix_length)
|
|
28895
28908
|
@ipv6_access_configs = args[:ipv6_access_configs] if args.key?(:ipv6_access_configs)
|
|
28896
28909
|
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
|
@@ -46101,6 +46114,11 @@ module Google
|
|
|
46101
46114
|
# @return [String]
|
|
46102
46115
|
attr_accessor :region
|
|
46103
46116
|
|
|
46117
|
+
# [Output only] ResourceStatus of the Snapshot resource
|
|
46118
|
+
# Corresponds to the JSON property `resourceStatus`
|
|
46119
|
+
# @return [Google::Apis::ComputeAlpha::SnapshotResourceStatus]
|
|
46120
|
+
attr_accessor :resource_status
|
|
46121
|
+
|
|
46104
46122
|
# Output only. Reserved for future use.
|
|
46105
46123
|
# Corresponds to the JSON property `satisfiesPzi`
|
|
46106
46124
|
# @return [Boolean]
|
|
@@ -46256,6 +46274,7 @@ module Google
|
|
|
46256
46274
|
@max_retention_days = args[:max_retention_days] if args.key?(:max_retention_days)
|
|
46257
46275
|
@name = args[:name] if args.key?(:name)
|
|
46258
46276
|
@region = args[:region] if args.key?(:region)
|
|
46277
|
+
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
|
46259
46278
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
46260
46279
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
46261
46280
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
@@ -46526,6 +46545,26 @@ module Google
|
|
|
46526
46545
|
end
|
|
46527
46546
|
end
|
|
46528
46547
|
|
|
46548
|
+
#
|
|
46549
|
+
class SnapshotResourceStatus
|
|
46550
|
+
include Google::Apis::Core::Hashable
|
|
46551
|
+
|
|
46552
|
+
# [Output only] Scheduled deletion time of the snapshot. The snapshot will be
|
|
46553
|
+
# deleted by the at any point within one hour after the deletion time.
|
|
46554
|
+
# Corresponds to the JSON property `scheduledDeletionTime`
|
|
46555
|
+
# @return [String]
|
|
46556
|
+
attr_accessor :scheduled_deletion_time
|
|
46557
|
+
|
|
46558
|
+
def initialize(**args)
|
|
46559
|
+
update!(**args)
|
|
46560
|
+
end
|
|
46561
|
+
|
|
46562
|
+
# Update properties of this object
|
|
46563
|
+
def update!(**args)
|
|
46564
|
+
@scheduled_deletion_time = args[:scheduled_deletion_time] if args.key?(:scheduled_deletion_time)
|
|
46565
|
+
end
|
|
46566
|
+
end
|
|
46567
|
+
|
|
46529
46568
|
#
|
|
46530
46569
|
class SnapshotSettings
|
|
46531
46570
|
include Google::Apis::Core::Hashable
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ComputeAlpha
|
|
18
18
|
# Version of the google-apis-compute_alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.90.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
|
|
@@ -6064,6 +6064,12 @@ module Google
|
|
|
6064
6064
|
include Google::Apis::Core::JsonObjectSupport
|
|
6065
6065
|
end
|
|
6066
6066
|
|
|
6067
|
+
class SnapshotResourceStatus
|
|
6068
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
6069
|
+
|
|
6070
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
6071
|
+
end
|
|
6072
|
+
|
|
6067
6073
|
class SnapshotSettings
|
|
6068
6074
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
6069
6075
|
|
|
@@ -14446,6 +14452,7 @@ module Google
|
|
|
14446
14452
|
collection :alias_ip_ranges, as: 'aliasIpRanges', class: Google::Apis::ComputeAlpha::AliasIpRange, decorator: Google::Apis::ComputeAlpha::AliasIpRange::Representation
|
|
14447
14453
|
|
|
14448
14454
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
|
14455
|
+
property :igmp_query, as: 'igmpQuery'
|
|
14449
14456
|
property :internal_ipv6_prefix_length, as: 'internalIpv6PrefixLength'
|
|
14450
14457
|
collection :ipv6_access_configs, as: 'ipv6AccessConfigs', class: Google::Apis::ComputeAlpha::AccessConfig, decorator: Google::Apis::ComputeAlpha::AccessConfig::Representation
|
|
14451
14458
|
|
|
@@ -18881,6 +18888,8 @@ module Google
|
|
|
18881
18888
|
property :max_retention_days, as: 'maxRetentionDays'
|
|
18882
18889
|
property :name, as: 'name'
|
|
18883
18890
|
property :region, as: 'region'
|
|
18891
|
+
property :resource_status, as: 'resourceStatus', class: Google::Apis::ComputeAlpha::SnapshotResourceStatus, decorator: Google::Apis::ComputeAlpha::SnapshotResourceStatus::Representation
|
|
18892
|
+
|
|
18884
18893
|
property :satisfies_pzi, as: 'satisfiesPzi'
|
|
18885
18894
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
18886
18895
|
property :self_link, as: 'selfLink'
|
|
@@ -18973,6 +18982,13 @@ module Google
|
|
|
18973
18982
|
end
|
|
18974
18983
|
end
|
|
18975
18984
|
|
|
18985
|
+
class SnapshotResourceStatus
|
|
18986
|
+
# @private
|
|
18987
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
18988
|
+
property :scheduled_deletion_time, as: 'scheduledDeletionTime'
|
|
18989
|
+
end
|
|
18990
|
+
end
|
|
18991
|
+
|
|
18976
18992
|
class SnapshotSettings
|
|
18977
18993
|
# @private
|
|
18978
18994
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-compute_alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.90.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_alpha/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.90.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|