google-apis-compute_alpha 0.92.0 → 0.94.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: fbd422bb595f9a140f6e7ca34279f502b9b878477d4a681a3f519c3c76150e97
|
4
|
+
data.tar.gz: eaf0599d642a0df0ceef92c2cefba2c7d479655cbe91649314655bbae89e512d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 51f54ffdff79c6bef66ae83adc9a655144f5f61b98e9ef68b07eb0d1fa2d2466dcc13ae8758283b8d487afa48e2d301f29b95c0e271caa29431841dc466feb7d
|
7
|
+
data.tar.gz: 1906b658d94850e375e17ac2594342b4648f4791f3642bdffe6e608d369505e57fbb2919396f951b767df78c5287c8df1cb4a776912ffec776d39c74fcec1865
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-compute_alpha
|
2
2
|
|
3
|
+
### v0.94.0 (2024-03-17)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240305
|
6
|
+
|
7
|
+
### v0.93.0 (2024-03-10)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240227
|
10
|
+
|
3
11
|
### v0.92.0 (2024-03-03)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20240220
|
@@ -5493,12 +5493,6 @@ module Google
|
|
5493
5493
|
class BgpRouteNetworkLayerReachabilityInformation
|
5494
5494
|
include Google::Apis::Core::Hashable
|
5495
5495
|
|
5496
|
-
# Human readable CIDR notation for a prefix. E.g. 10.42.0.0/16. Deprecated in
|
5497
|
-
# favor of prefix.
|
5498
|
-
# Corresponds to the JSON property `destination`
|
5499
|
-
# @return [String]
|
5500
|
-
attr_accessor :destination
|
5501
|
-
|
5502
5496
|
# If the BGP session supports multiple paths (RFC 7911), the path identifier for
|
5503
5497
|
# this route.
|
5504
5498
|
# Corresponds to the JSON property `pathId`
|
@@ -5516,7 +5510,6 @@ module Google
|
|
5516
5510
|
|
5517
5511
|
# Update properties of this object
|
5518
5512
|
def update!(**args)
|
5519
|
-
@destination = args[:destination] if args.key?(:destination)
|
5520
5513
|
@path_id = args[:path_id] if args.key?(:path_id)
|
5521
5514
|
@prefix = args[:prefix] if args.key?(:prefix)
|
5522
5515
|
end
|
@@ -6864,10 +6857,10 @@ module Google
|
|
6864
6857
|
attr_accessor :allow_methods
|
6865
6858
|
|
6866
6859
|
# Specifies a regular expression that matches allowed origins. For more
|
6867
|
-
# information
|
6868
|
-
#
|
6869
|
-
#
|
6870
|
-
#
|
6860
|
+
# information, see regular expression syntax . An origin is allowed if it
|
6861
|
+
# matches either an item in allowOrigins or an item in allowOriginRegexes.
|
6862
|
+
# Regular expressions can only be used when the loadBalancingScheme is set to
|
6863
|
+
# INTERNAL_SELF_MANAGED.
|
6871
6864
|
# Corresponds to the JSON property `allowOriginRegexes`
|
6872
6865
|
# @return [Array<String>]
|
6873
6866
|
attr_accessor :allow_origin_regexes
|
@@ -6879,8 +6872,8 @@ module Google
|
|
6879
6872
|
# @return [Array<String>]
|
6880
6873
|
attr_accessor :allow_origins
|
6881
6874
|
|
6882
|
-
# If true,
|
6883
|
-
#
|
6875
|
+
# If true, disables the CORS policy. The default value is false, which indicates
|
6876
|
+
# that the CORS policy is in effect.
|
6884
6877
|
# Corresponds to the JSON property `disabled`
|
6885
6878
|
# @return [Boolean]
|
6886
6879
|
attr_accessor :disabled
|
@@ -12194,6 +12187,59 @@ module Google
|
|
12194
12187
|
end
|
12195
12188
|
end
|
12196
12189
|
|
12190
|
+
#
|
12191
|
+
class GrpctlsHealthCheck
|
12192
|
+
include Google::Apis::Core::Hashable
|
12193
|
+
|
12194
|
+
# The gRPC service name for the health check. This field is optional. The value
|
12195
|
+
# of grpc_service_name has the following meanings by convention: - Empty
|
12196
|
+
# service_name means the overall status of all services at the backend. - Non-
|
12197
|
+
# empty service_name means the health of that gRPC service, as defined by the
|
12198
|
+
# owner of the service. The grpc_service_name can only be ASCII.
|
12199
|
+
# Corresponds to the JSON property `grpcServiceName`
|
12200
|
+
# @return [String]
|
12201
|
+
attr_accessor :grpc_service_name
|
12202
|
+
|
12203
|
+
# The TCP port number to which the health check prober sends packets. Valid
|
12204
|
+
# values are 1 through 65535.
|
12205
|
+
# Corresponds to the JSON property `port`
|
12206
|
+
# @return [Fixnum]
|
12207
|
+
attr_accessor :port
|
12208
|
+
|
12209
|
+
# Specifies how a port is selected for health checking. Can be one of the
|
12210
|
+
# following values: USE_FIXED_PORT: Specifies a port number explicitly using the
|
12211
|
+
# port field in the health check. Supported by backend services for passthrough
|
12212
|
+
# load balancers and backend services for proxy load balancers. Not supported by
|
12213
|
+
# target pools. The health check supports all backends supported by the backend
|
12214
|
+
# service provided the backend can be health checked. For example, GCE_VM_IP
|
12215
|
+
# network endpoint groups, GCE_VM_IP_PORT network endpoint groups, and instance
|
12216
|
+
# group backends. USE_NAMED_PORT: Not supported. USE_SERVING_PORT: Provides an
|
12217
|
+
# indirect method of specifying the health check port by referring to the
|
12218
|
+
# backend service. Only supported by backend services for proxy load balancers.
|
12219
|
+
# Not supported by target pools. Not supported by backend services for
|
12220
|
+
# passthrough load balancers. Supports all backends that can be health checked;
|
12221
|
+
# for example, GCE_VM_IP_PORT network endpoint groups and instance group
|
12222
|
+
# backends. For GCE_VM_IP_PORT network endpoint group backends, the health check
|
12223
|
+
# uses the port number specified for each endpoint in the network endpoint group.
|
12224
|
+
# For instance group backends, the health check uses the port number determined
|
12225
|
+
# by looking up the backend service's named port in the instance group's list of
|
12226
|
+
# named ports.
|
12227
|
+
# Corresponds to the JSON property `portSpecification`
|
12228
|
+
# @return [String]
|
12229
|
+
attr_accessor :port_specification
|
12230
|
+
|
12231
|
+
def initialize(**args)
|
12232
|
+
update!(**args)
|
12233
|
+
end
|
12234
|
+
|
12235
|
+
# Update properties of this object
|
12236
|
+
def update!(**args)
|
12237
|
+
@grpc_service_name = args[:grpc_service_name] if args.key?(:grpc_service_name)
|
12238
|
+
@port = args[:port] if args.key?(:port)
|
12239
|
+
@port_specification = args[:port_specification] if args.key?(:port_specification)
|
12240
|
+
end
|
12241
|
+
end
|
12242
|
+
|
12197
12243
|
#
|
12198
12244
|
class GetOwnerInstanceResponse
|
12199
12245
|
include Google::Apis::Core::Hashable
|
@@ -12577,7 +12623,7 @@ module Google
|
|
12577
12623
|
# The ID of a supported feature. To add multiple values, use commas to separate
|
12578
12624
|
# values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE -
|
12579
12625
|
# WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE -
|
12580
|
-
# SUSPEND_RESUME_COMPATIBLE -
|
12626
|
+
# SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE_V2 - SEV_SNP_CAPABLE -
|
12581
12627
|
# TDX_CAPABLE - IDPF For more information, see Enabling guest operating system
|
12582
12628
|
# features.
|
12583
12629
|
# Corresponds to the JSON property `type`
|
@@ -12893,6 +12939,11 @@ module Google
|
|
12893
12939
|
# @return [Google::Apis::ComputeAlpha::GrpcHealthCheck]
|
12894
12940
|
attr_accessor :grpc_health_check
|
12895
12941
|
|
12942
|
+
#
|
12943
|
+
# Corresponds to the JSON property `grpcTlsHealthCheck`
|
12944
|
+
# @return [Google::Apis::ComputeAlpha::GrpctlsHealthCheck]
|
12945
|
+
attr_accessor :grpc_tls_health_check
|
12946
|
+
|
12896
12947
|
# A so-far unhealthy instance will be marked healthy after this many consecutive
|
12897
12948
|
# successes. The default value is 2.
|
12898
12949
|
# Corresponds to the JSON property `healthyThreshold`
|
@@ -13017,6 +13068,7 @@ module Google
|
|
13017
13068
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
13018
13069
|
@description = args[:description] if args.key?(:description)
|
13019
13070
|
@grpc_health_check = args[:grpc_health_check] if args.key?(:grpc_health_check)
|
13071
|
+
@grpc_tls_health_check = args[:grpc_tls_health_check] if args.key?(:grpc_tls_health_check)
|
13020
13072
|
@healthy_threshold = args[:healthy_threshold] if args.key?(:healthy_threshold)
|
13021
13073
|
@http2_health_check = args[:http2_health_check] if args.key?(:http2_health_check)
|
13022
13074
|
@http_health_check = args[:http_health_check] if args.key?(:http_health_check)
|
@@ -17805,7 +17857,8 @@ module Google
|
|
17805
17857
|
class InstanceGroupManagerResizeRequest
|
17806
17858
|
include Google::Apis::Core::Hashable
|
17807
17859
|
|
17808
|
-
#
|
17860
|
+
# This field is deprecated, please use resize_by instead. The count of instances
|
17861
|
+
# to create as part of this resize request.
|
17809
17862
|
# Corresponds to the JSON property `count`
|
17810
17863
|
# @return [Fixnum]
|
17811
17864
|
attr_accessor :count
|
@@ -23981,10 +24034,10 @@ module Google
|
|
23981
24034
|
|
23982
24035
|
# [Output Only] Port pair remote location constraints, which can take one of the
|
23983
24036
|
# following values: PORT_PAIR_UNCONSTRAINED_REMOTE_LOCATION,
|
23984
|
-
# PORT_PAIR_MATCHING_REMOTE_LOCATION.
|
23985
|
-
# but the UI uses this field when ordering a pair of ports, to prevent
|
23986
|
-
# from accidentally ordering something that is incompatible with their
|
23987
|
-
# provider. Specifically, when ordering a redundant pair of Cross-Cloud
|
24037
|
+
# PORT_PAIR_MATCHING_REMOTE_LOCATION. Google Cloud API refers only to individual
|
24038
|
+
# ports, but the UI uses this field when ordering a pair of ports, to prevent
|
24039
|
+
# users from accidentally ordering something that is incompatible with their
|
24040
|
+
# cloud provider. Specifically, when ordering a redundant pair of Cross-Cloud
|
23988
24041
|
# Interconnect ports, and one of them uses a remote location with
|
23989
24042
|
# portPairMatchingRemoteLocation set to matching, the UI requires that both
|
23990
24043
|
# ports use the same remote location.
|
@@ -26885,6 +26938,15 @@ module Google
|
|
26885
26938
|
# @return [String]
|
26886
26939
|
attr_accessor :network_firewall_policy_enforcement_order
|
26887
26940
|
|
26941
|
+
# A full or partial URL of the network placement to apply to this network. This
|
26942
|
+
# field can be set only at resource creation time. For example, the following
|
26943
|
+
# are valid URLs: - https://www.googleapis.com/compute/alpha/projects/`
|
26944
|
+
# project_id`/global/networkPlacements/`network_placement_name` - projects/`
|
26945
|
+
# project_id`/global/networkPlacements/`network_placement_name`
|
26946
|
+
# Corresponds to the JSON property `networkPlacement`
|
26947
|
+
# @return [String]
|
26948
|
+
attr_accessor :network_placement
|
26949
|
+
|
26888
26950
|
# [Output Only] A list of network peerings for the resource.
|
26889
26951
|
# Corresponds to the JSON property `peerings`
|
26890
26952
|
# @return [Array<Google::Apis::ComputeAlpha::NetworkPeering>]
|
@@ -26939,6 +27001,7 @@ module Google
|
|
26939
27001
|
@mtu = args[:mtu] if args.key?(:mtu)
|
26940
27002
|
@name = args[:name] if args.key?(:name)
|
26941
27003
|
@network_firewall_policy_enforcement_order = args[:network_firewall_policy_enforcement_order] if args.key?(:network_firewall_policy_enforcement_order)
|
27004
|
+
@network_placement = args[:network_placement] if args.key?(:network_placement)
|
26942
27005
|
@peerings = args[:peerings] if args.key?(:peerings)
|
26943
27006
|
@region = args[:region] if args.key?(:region)
|
26944
27007
|
@routing_config = args[:routing_config] if args.key?(:routing_config)
|
@@ -28459,6 +28522,12 @@ module Google
|
|
28459
28522
|
# @return [String]
|
28460
28523
|
attr_accessor :consumer_psc_address
|
28461
28524
|
|
28525
|
+
# The psc producer port is used to connect PSC NEG with specific port on the PSC
|
28526
|
+
# Producer side; should only be used for the PRIVATE_SERVICE_CONNECT NEG type
|
28527
|
+
# Corresponds to the JSON property `producerPort`
|
28528
|
+
# @return [Fixnum]
|
28529
|
+
attr_accessor :producer_port
|
28530
|
+
|
28462
28531
|
# [Output Only] The PSC connection id of the PSC Network Endpoint Group Consumer.
|
28463
28532
|
# Corresponds to the JSON property `pscConnectionId`
|
28464
28533
|
# @return [Fixnum]
|
@@ -28476,6 +28545,7 @@ module Google
|
|
28476
28545
|
# Update properties of this object
|
28477
28546
|
def update!(**args)
|
28478
28547
|
@consumer_psc_address = args[:consumer_psc_address] if args.key?(:consumer_psc_address)
|
28548
|
+
@producer_port = args[:producer_port] if args.key?(:producer_port)
|
28479
28549
|
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
28480
28550
|
@psc_connection_status = args[:psc_connection_status] if args.key?(:psc_connection_status)
|
28481
28551
|
end
|
@@ -36064,6 +36134,12 @@ module Google
|
|
36064
36134
|
# @return [String]
|
36065
36135
|
attr_accessor :name
|
36066
36136
|
|
36137
|
+
# [Output Only] Warning of fetching the `quotas` field for this region. This
|
36138
|
+
# field is populated only if fetching of the `quotas` field fails.
|
36139
|
+
# Corresponds to the JSON property `quotaStatusWarning`
|
36140
|
+
# @return [Google::Apis::ComputeAlpha::Region::QuotaStatusWarning]
|
36141
|
+
attr_accessor :quota_status_warning
|
36142
|
+
|
36067
36143
|
# [Output Only] Quotas assigned to this region.
|
36068
36144
|
# Corresponds to the JSON property `quotas`
|
36069
36145
|
# @return [Array<Google::Apis::ComputeAlpha::Quota>]
|
@@ -36108,6 +36184,7 @@ module Google
|
|
36108
36184
|
@id = args[:id] if args.key?(:id)
|
36109
36185
|
@kind = args[:kind] if args.key?(:kind)
|
36110
36186
|
@name = args[:name] if args.key?(:name)
|
36187
|
+
@quota_status_warning = args[:quota_status_warning] if args.key?(:quota_status_warning)
|
36111
36188
|
@quotas = args[:quotas] if args.key?(:quotas)
|
36112
36189
|
@self_link = args[:self_link] if args.key?(:self_link)
|
36113
36190
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -36115,6 +36192,71 @@ module Google
|
|
36115
36192
|
@supports_pzs = args[:supports_pzs] if args.key?(:supports_pzs)
|
36116
36193
|
@zones = args[:zones] if args.key?(:zones)
|
36117
36194
|
end
|
36195
|
+
|
36196
|
+
# [Output Only] Warning of fetching the `quotas` field for this region. This
|
36197
|
+
# field is populated only if fetching of the `quotas` field fails.
|
36198
|
+
class QuotaStatusWarning
|
36199
|
+
include Google::Apis::Core::Hashable
|
36200
|
+
|
36201
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
36202
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
36203
|
+
# Corresponds to the JSON property `code`
|
36204
|
+
# @return [String]
|
36205
|
+
attr_accessor :code
|
36206
|
+
|
36207
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
36208
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
36209
|
+
# Corresponds to the JSON property `data`
|
36210
|
+
# @return [Array<Google::Apis::ComputeAlpha::Region::QuotaStatusWarning::Datum>]
|
36211
|
+
attr_accessor :data
|
36212
|
+
|
36213
|
+
# [Output Only] A human-readable description of the warning code.
|
36214
|
+
# Corresponds to the JSON property `message`
|
36215
|
+
# @return [String]
|
36216
|
+
attr_accessor :message
|
36217
|
+
|
36218
|
+
def initialize(**args)
|
36219
|
+
update!(**args)
|
36220
|
+
end
|
36221
|
+
|
36222
|
+
# Update properties of this object
|
36223
|
+
def update!(**args)
|
36224
|
+
@code = args[:code] if args.key?(:code)
|
36225
|
+
@data = args[:data] if args.key?(:data)
|
36226
|
+
@message = args[:message] if args.key?(:message)
|
36227
|
+
end
|
36228
|
+
|
36229
|
+
#
|
36230
|
+
class Datum
|
36231
|
+
include Google::Apis::Core::Hashable
|
36232
|
+
|
36233
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
36234
|
+
# For example, for warnings where there are no results in a list request for a
|
36235
|
+
# particular zone, this key might be scope and the key value might be the zone
|
36236
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
36237
|
+
# suggested replacement, or a warning about invalid network settings (for
|
36238
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
36239
|
+
# for IP forwarding).
|
36240
|
+
# Corresponds to the JSON property `key`
|
36241
|
+
# @return [String]
|
36242
|
+
attr_accessor :key
|
36243
|
+
|
36244
|
+
# [Output Only] A warning data value corresponding to the key.
|
36245
|
+
# Corresponds to the JSON property `value`
|
36246
|
+
# @return [String]
|
36247
|
+
attr_accessor :value
|
36248
|
+
|
36249
|
+
def initialize(**args)
|
36250
|
+
update!(**args)
|
36251
|
+
end
|
36252
|
+
|
36253
|
+
# Update properties of this object
|
36254
|
+
def update!(**args)
|
36255
|
+
@key = args[:key] if args.key?(:key)
|
36256
|
+
@value = args[:value] if args.key?(:value)
|
36257
|
+
end
|
36258
|
+
end
|
36259
|
+
end
|
36118
36260
|
end
|
36119
36261
|
|
36120
36262
|
#
|
@@ -37680,7 +37822,7 @@ module Google
|
|
37680
37822
|
attr_accessor :rules
|
37681
37823
|
|
37682
37824
|
# [Output Only] The type of the firewall policy. Can be one of HIERARCHY,
|
37683
|
-
# NETWORK, NETWORK_REGIONAL.
|
37825
|
+
# NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
|
37684
37826
|
# Corresponds to the JSON property `type`
|
37685
37827
|
# @return [String]
|
37686
37828
|
attr_accessor :type
|
@@ -50432,6 +50574,95 @@ module Google
|
|
50432
50574
|
end
|
50433
50575
|
end
|
50434
50576
|
|
50577
|
+
#
|
50578
|
+
class SubnetworksScopedWarning
|
50579
|
+
include Google::Apis::Core::Hashable
|
50580
|
+
|
50581
|
+
# Name of the scope containing this set of Subnetworks.
|
50582
|
+
# Corresponds to the JSON property `scopeName`
|
50583
|
+
# @return [String]
|
50584
|
+
attr_accessor :scope_name
|
50585
|
+
|
50586
|
+
# An informational warning about unreachable scope
|
50587
|
+
# Corresponds to the JSON property `warning`
|
50588
|
+
# @return [Google::Apis::ComputeAlpha::SubnetworksScopedWarning::Warning]
|
50589
|
+
attr_accessor :warning
|
50590
|
+
|
50591
|
+
def initialize(**args)
|
50592
|
+
update!(**args)
|
50593
|
+
end
|
50594
|
+
|
50595
|
+
# Update properties of this object
|
50596
|
+
def update!(**args)
|
50597
|
+
@scope_name = args[:scope_name] if args.key?(:scope_name)
|
50598
|
+
@warning = args[:warning] if args.key?(:warning)
|
50599
|
+
end
|
50600
|
+
|
50601
|
+
# An informational warning about unreachable scope
|
50602
|
+
class Warning
|
50603
|
+
include Google::Apis::Core::Hashable
|
50604
|
+
|
50605
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
50606
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
50607
|
+
# Corresponds to the JSON property `code`
|
50608
|
+
# @return [String]
|
50609
|
+
attr_accessor :code
|
50610
|
+
|
50611
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
50612
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
50613
|
+
# Corresponds to the JSON property `data`
|
50614
|
+
# @return [Array<Google::Apis::ComputeAlpha::SubnetworksScopedWarning::Warning::Datum>]
|
50615
|
+
attr_accessor :data
|
50616
|
+
|
50617
|
+
# [Output Only] A human-readable description of the warning code.
|
50618
|
+
# Corresponds to the JSON property `message`
|
50619
|
+
# @return [String]
|
50620
|
+
attr_accessor :message
|
50621
|
+
|
50622
|
+
def initialize(**args)
|
50623
|
+
update!(**args)
|
50624
|
+
end
|
50625
|
+
|
50626
|
+
# Update properties of this object
|
50627
|
+
def update!(**args)
|
50628
|
+
@code = args[:code] if args.key?(:code)
|
50629
|
+
@data = args[:data] if args.key?(:data)
|
50630
|
+
@message = args[:message] if args.key?(:message)
|
50631
|
+
end
|
50632
|
+
|
50633
|
+
#
|
50634
|
+
class Datum
|
50635
|
+
include Google::Apis::Core::Hashable
|
50636
|
+
|
50637
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
50638
|
+
# For example, for warnings where there are no results in a list request for a
|
50639
|
+
# particular zone, this key might be scope and the key value might be the zone
|
50640
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
50641
|
+
# suggested replacement, or a warning about invalid network settings (for
|
50642
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
50643
|
+
# for IP forwarding).
|
50644
|
+
# Corresponds to the JSON property `key`
|
50645
|
+
# @return [String]
|
50646
|
+
attr_accessor :key
|
50647
|
+
|
50648
|
+
# [Output Only] A warning data value corresponding to the key.
|
50649
|
+
# Corresponds to the JSON property `value`
|
50650
|
+
# @return [String]
|
50651
|
+
attr_accessor :value
|
50652
|
+
|
50653
|
+
def initialize(**args)
|
50654
|
+
update!(**args)
|
50655
|
+
end
|
50656
|
+
|
50657
|
+
# Update properties of this object
|
50658
|
+
def update!(**args)
|
50659
|
+
@key = args[:key] if args.key?(:key)
|
50660
|
+
@value = args[:value] if args.key?(:value)
|
50661
|
+
end
|
50662
|
+
end
|
50663
|
+
end
|
50664
|
+
end
|
50665
|
+
|
50435
50666
|
#
|
50436
50667
|
class SubnetworksSetPrivateIpGoogleAccessRequest
|
50437
50668
|
include Google::Apis::Core::Hashable
|
@@ -55500,11 +55731,22 @@ module Google
|
|
55500
55731
|
# @return [String]
|
55501
55732
|
attr_accessor :next_page_token
|
55502
55733
|
|
55734
|
+
# [Output Only] Informational warning messages for failures encountered from
|
55735
|
+
# scopes.
|
55736
|
+
# Corresponds to the JSON property `scoped_warnings`
|
55737
|
+
# @return [Array<Google::Apis::ComputeAlpha::SubnetworksScopedWarning>]
|
55738
|
+
attr_accessor :scoped_warnings
|
55739
|
+
|
55503
55740
|
# [Output Only] Server-defined URL for this resource.
|
55504
55741
|
# Corresponds to the JSON property `selfLink`
|
55505
55742
|
# @return [String]
|
55506
55743
|
attr_accessor :self_link
|
55507
55744
|
|
55745
|
+
# [Output Only] Unreachable resources.
|
55746
|
+
# Corresponds to the JSON property `unreachables`
|
55747
|
+
# @return [Array<String>]
|
55748
|
+
attr_accessor :unreachables
|
55749
|
+
|
55508
55750
|
# [Output Only] Informational warning message.
|
55509
55751
|
# Corresponds to the JSON property `warning`
|
55510
55752
|
# @return [Google::Apis::ComputeAlpha::UsableSubnetworksAggregatedList::Warning]
|
@@ -55520,7 +55762,9 @@ module Google
|
|
55520
55762
|
@items = args[:items] if args.key?(:items)
|
55521
55763
|
@kind = args[:kind] if args.key?(:kind)
|
55522
55764
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
55765
|
+
@scoped_warnings = args[:scoped_warnings] if args.key?(:scoped_warnings)
|
55523
55766
|
@self_link = args[:self_link] if args.key?(:self_link)
|
55767
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
55524
55768
|
@warning = args[:warning] if args.key?(:warning)
|
55525
55769
|
end
|
55526
55770
|
|
@@ -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.94.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 = "20240305"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1444,6 +1444,12 @@ module Google
|
|
1444
1444
|
include Google::Apis::Core::JsonObjectSupport
|
1445
1445
|
end
|
1446
1446
|
|
1447
|
+
class GrpctlsHealthCheck
|
1448
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1449
|
+
|
1450
|
+
include Google::Apis::Core::JsonObjectSupport
|
1451
|
+
end
|
1452
|
+
|
1447
1453
|
class GetOwnerInstanceResponse
|
1448
1454
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1449
1455
|
|
@@ -4602,6 +4608,18 @@ module Google
|
|
4602
4608
|
|
4603
4609
|
class Region
|
4604
4610
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4611
|
+
|
4612
|
+
class QuotaStatusWarning
|
4613
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4614
|
+
|
4615
|
+
class Datum
|
4616
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4617
|
+
|
4618
|
+
include Google::Apis::Core::JsonObjectSupport
|
4619
|
+
end
|
4620
|
+
|
4621
|
+
include Google::Apis::Core::JsonObjectSupport
|
4622
|
+
end
|
4605
4623
|
|
4606
4624
|
include Google::Apis::Core::JsonObjectSupport
|
4607
4625
|
end
|
@@ -6586,6 +6604,24 @@ module Google
|
|
6586
6604
|
include Google::Apis::Core::JsonObjectSupport
|
6587
6605
|
end
|
6588
6606
|
|
6607
|
+
class SubnetworksScopedWarning
|
6608
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6609
|
+
|
6610
|
+
class Warning
|
6611
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6612
|
+
|
6613
|
+
class Datum
|
6614
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6615
|
+
|
6616
|
+
include Google::Apis::Core::JsonObjectSupport
|
6617
|
+
end
|
6618
|
+
|
6619
|
+
include Google::Apis::Core::JsonObjectSupport
|
6620
|
+
end
|
6621
|
+
|
6622
|
+
include Google::Apis::Core::JsonObjectSupport
|
6623
|
+
end
|
6624
|
+
|
6589
6625
|
class SubnetworksSetPrivateIpGoogleAccessRequest
|
6590
6626
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6591
6627
|
|
@@ -8811,7 +8847,6 @@ module Google
|
|
8811
8847
|
class BgpRouteNetworkLayerReachabilityInformation
|
8812
8848
|
# @private
|
8813
8849
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8814
|
-
property :destination, as: 'destination'
|
8815
8850
|
property :path_id, as: 'pathId'
|
8816
8851
|
property :prefix, as: 'prefix'
|
8817
8852
|
end
|
@@ -10350,6 +10385,15 @@ module Google
|
|
10350
10385
|
end
|
10351
10386
|
end
|
10352
10387
|
|
10388
|
+
class GrpctlsHealthCheck
|
10389
|
+
# @private
|
10390
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10391
|
+
property :grpc_service_name, as: 'grpcServiceName'
|
10392
|
+
property :port, as: 'port'
|
10393
|
+
property :port_specification, as: 'portSpecification'
|
10394
|
+
end
|
10395
|
+
end
|
10396
|
+
|
10353
10397
|
class GetOwnerInstanceResponse
|
10354
10398
|
# @private
|
10355
10399
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10509,6 +10553,8 @@ module Google
|
|
10509
10553
|
property :description, as: 'description'
|
10510
10554
|
property :grpc_health_check, as: 'grpcHealthCheck', class: Google::Apis::ComputeAlpha::GrpcHealthCheck, decorator: Google::Apis::ComputeAlpha::GrpcHealthCheck::Representation
|
10511
10555
|
|
10556
|
+
property :grpc_tls_health_check, as: 'grpcTlsHealthCheck', class: Google::Apis::ComputeAlpha::GrpctlsHealthCheck, decorator: Google::Apis::ComputeAlpha::GrpctlsHealthCheck::Representation
|
10557
|
+
|
10512
10558
|
property :healthy_threshold, as: 'healthyThreshold'
|
10513
10559
|
property :http2_health_check, as: 'http2HealthCheck', class: Google::Apis::ComputeAlpha::Http2HealthCheck, decorator: Google::Apis::ComputeAlpha::Http2HealthCheck::Representation
|
10514
10560
|
|
@@ -14015,6 +14061,7 @@ module Google
|
|
14015
14061
|
property :mtu, as: 'mtu'
|
14016
14062
|
property :name, as: 'name'
|
14017
14063
|
property :network_firewall_policy_enforcement_order, as: 'networkFirewallPolicyEnforcementOrder'
|
14064
|
+
property :network_placement, as: 'networkPlacement'
|
14018
14065
|
collection :peerings, as: 'peerings', class: Google::Apis::ComputeAlpha::NetworkPeering, decorator: Google::Apis::ComputeAlpha::NetworkPeering::Representation
|
14019
14066
|
|
14020
14067
|
property :region, as: 'region'
|
@@ -14386,6 +14433,7 @@ module Google
|
|
14386
14433
|
# @private
|
14387
14434
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14388
14435
|
property :consumer_psc_address, as: 'consumerPscAddress'
|
14436
|
+
property :producer_port, as: 'producerPort'
|
14389
14437
|
property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
|
14390
14438
|
property :psc_connection_status, as: 'pscConnectionStatus'
|
14391
14439
|
end
|
@@ -16344,6 +16392,8 @@ module Google
|
|
16344
16392
|
property :id, :numeric_string => true, as: 'id'
|
16345
16393
|
property :kind, as: 'kind'
|
16346
16394
|
property :name, as: 'name'
|
16395
|
+
property :quota_status_warning, as: 'quotaStatusWarning', class: Google::Apis::ComputeAlpha::Region::QuotaStatusWarning, decorator: Google::Apis::ComputeAlpha::Region::QuotaStatusWarning::Representation
|
16396
|
+
|
16347
16397
|
collection :quotas, as: 'quotas', class: Google::Apis::ComputeAlpha::Quota, decorator: Google::Apis::ComputeAlpha::Quota::Representation
|
16348
16398
|
|
16349
16399
|
property :self_link, as: 'selfLink'
|
@@ -16352,6 +16402,24 @@ module Google
|
|
16352
16402
|
property :supports_pzs, as: 'supportsPzs'
|
16353
16403
|
collection :zones, as: 'zones'
|
16354
16404
|
end
|
16405
|
+
|
16406
|
+
class QuotaStatusWarning
|
16407
|
+
# @private
|
16408
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
16409
|
+
property :code, as: 'code'
|
16410
|
+
collection :data, as: 'data', class: Google::Apis::ComputeAlpha::Region::QuotaStatusWarning::Datum, decorator: Google::Apis::ComputeAlpha::Region::QuotaStatusWarning::Datum::Representation
|
16411
|
+
|
16412
|
+
property :message, as: 'message'
|
16413
|
+
end
|
16414
|
+
|
16415
|
+
class Datum
|
16416
|
+
# @private
|
16417
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
16418
|
+
property :key, as: 'key'
|
16419
|
+
property :value, as: 'value'
|
16420
|
+
end
|
16421
|
+
end
|
16422
|
+
end
|
16355
16423
|
end
|
16356
16424
|
|
16357
16425
|
class RegionAddressesMoveRequest
|
@@ -19990,6 +20058,33 @@ module Google
|
|
19990
20058
|
end
|
19991
20059
|
end
|
19992
20060
|
|
20061
|
+
class SubnetworksScopedWarning
|
20062
|
+
# @private
|
20063
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
20064
|
+
property :scope_name, as: 'scopeName'
|
20065
|
+
property :warning, as: 'warning', class: Google::Apis::ComputeAlpha::SubnetworksScopedWarning::Warning, decorator: Google::Apis::ComputeAlpha::SubnetworksScopedWarning::Warning::Representation
|
20066
|
+
|
20067
|
+
end
|
20068
|
+
|
20069
|
+
class Warning
|
20070
|
+
# @private
|
20071
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
20072
|
+
property :code, as: 'code'
|
20073
|
+
collection :data, as: 'data', class: Google::Apis::ComputeAlpha::SubnetworksScopedWarning::Warning::Datum, decorator: Google::Apis::ComputeAlpha::SubnetworksScopedWarning::Warning::Datum::Representation
|
20074
|
+
|
20075
|
+
property :message, as: 'message'
|
20076
|
+
end
|
20077
|
+
|
20078
|
+
class Datum
|
20079
|
+
# @private
|
20080
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
20081
|
+
property :key, as: 'key'
|
20082
|
+
property :value, as: 'value'
|
20083
|
+
end
|
20084
|
+
end
|
20085
|
+
end
|
20086
|
+
end
|
20087
|
+
|
19993
20088
|
class SubnetworksSetPrivateIpGoogleAccessRequest
|
19994
20089
|
# @private
|
19995
20090
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -21245,7 +21340,10 @@ module Google
|
|
21245
21340
|
|
21246
21341
|
property :kind, as: 'kind'
|
21247
21342
|
property :next_page_token, as: 'nextPageToken'
|
21343
|
+
collection :scoped_warnings, as: 'scoped_warnings', class: Google::Apis::ComputeAlpha::SubnetworksScopedWarning, decorator: Google::Apis::ComputeAlpha::SubnetworksScopedWarning::Representation
|
21344
|
+
|
21248
21345
|
property :self_link, as: 'selfLink'
|
21346
|
+
collection :unreachables, as: 'unreachables'
|
21249
21347
|
property :warning, as: 'warning', class: Google::Apis::ComputeAlpha::UsableSubnetworksAggregatedList::Warning, decorator: Google::Apis::ComputeAlpha::UsableSubnetworksAggregatedList::Warning::Representation
|
21250
21348
|
|
21251
21349
|
end
|
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.94.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-17 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.94.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: []
|