google-apis-compute_beta 0.98.0 → 0.99.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: c0cd90f76e04ed02a41eceef7eb17dc56c90bd1fc10356b42c307b8ffc74f6fe
|
4
|
+
data.tar.gz: 06d5adca51a48a83b054c19f7b968568f9747e8d100e92c2f7ee2c425c7bf6e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 47d47f7ac3a5136efe3de953aed78bec6e8bc4e8e682bfafbaed8c0930c705ac39818175f93086e0b2e0323374e12a866d38fe7c52fcc51928f476d1b0517d03
|
7
|
+
data.tar.gz: 3b061fc25c8c178359e8790e15709189c9f40cae302f7a19f0b96940138fcfe44789e5011a08739b81e06ad0ecb8447cb37d278f447f782d20de9e5d124405c1
|
data/CHANGELOG.md
CHANGED
@@ -25880,6 +25880,12 @@ module Google
|
|
25880
25880
|
# @return [Hash<String,String>]
|
25881
25881
|
attr_accessor :annotations
|
25882
25882
|
|
25883
|
+
# Represents the port number to which PSC consumer sends packets. Only valid for
|
25884
|
+
# network endpoint groups created with GCE_VM_IP_PORTMAP endpoint type.
|
25885
|
+
# Corresponds to the JSON property `clientDestinationPort`
|
25886
|
+
# @return [Fixnum]
|
25887
|
+
attr_accessor :client_destination_port
|
25888
|
+
|
25883
25889
|
# Represents the port number to which PSC consumer sends packets. Only valid for
|
25884
25890
|
# network endpoint groups created with CLIENT_PORT_PER_ENDPOINT mapping mode.
|
25885
25891
|
# Corresponds to the JSON property `clientPort`
|
@@ -25935,6 +25941,7 @@ module Google
|
|
25935
25941
|
# Update properties of this object
|
25936
25942
|
def update!(**args)
|
25937
25943
|
@annotations = args[:annotations] if args.key?(:annotations)
|
25944
|
+
@client_destination_port = args[:client_destination_port] if args.key?(:client_destination_port)
|
25938
25945
|
@client_port = args[:client_port] if args.key?(:client_port)
|
25939
25946
|
@fqdn = args[:fqdn] if args.key?(:fqdn)
|
25940
25947
|
@instance = args[:instance] if args.key?(:instance)
|
@@ -26038,7 +26045,7 @@ module Google
|
|
26038
26045
|
|
26039
26046
|
# Type of network endpoints in this network endpoint group. Can be one of
|
26040
26047
|
# GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT,
|
26041
|
-
# INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT.
|
26048
|
+
# INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT, GCE_VM_IP_PORTMAP.
|
26042
26049
|
# Corresponds to the JSON property `networkEndpointType`
|
26043
26050
|
# @return [String]
|
26044
26051
|
attr_accessor :network_endpoint_type
|
@@ -30715,8 +30722,7 @@ module Google
|
|
30715
30722
|
# ingress) or destination (egress) IP in the IP header. If no ranges are
|
30716
30723
|
# specified, all IPv4 traffic that matches the specified IPProtocols is mirrored.
|
30717
30724
|
# If neither cidrRanges nor IPProtocols is specified, all IPv4 traffic is
|
30718
|
-
# mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0".
|
30719
|
-
# Support for IPv6 traffic is in preview.
|
30725
|
+
# mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0".
|
30720
30726
|
# Corresponds to the JSON property `cidrRanges`
|
30721
30727
|
# @return [Array<String>]
|
30722
30728
|
attr_accessor :cidr_ranges
|
@@ -32830,6 +32836,12 @@ module Google
|
|
32830
32836
|
# @return [String]
|
32831
32837
|
attr_accessor :name
|
32832
32838
|
|
32839
|
+
# [Output Only] Warning of fetching the `quotas` field for this region. This
|
32840
|
+
# field is populated only if fetching of the `quotas` field fails.
|
32841
|
+
# Corresponds to the JSON property `quotaStatusWarning`
|
32842
|
+
# @return [Google::Apis::ComputeBeta::Region::QuotaStatusWarning]
|
32843
|
+
attr_accessor :quota_status_warning
|
32844
|
+
|
32833
32845
|
# [Output Only] Quotas assigned to this region.
|
32834
32846
|
# Corresponds to the JSON property `quotas`
|
32835
32847
|
# @return [Array<Google::Apis::ComputeBeta::Quota>]
|
@@ -32869,12 +32881,78 @@ module Google
|
|
32869
32881
|
@id = args[:id] if args.key?(:id)
|
32870
32882
|
@kind = args[:kind] if args.key?(:kind)
|
32871
32883
|
@name = args[:name] if args.key?(:name)
|
32884
|
+
@quota_status_warning = args[:quota_status_warning] if args.key?(:quota_status_warning)
|
32872
32885
|
@quotas = args[:quotas] if args.key?(:quotas)
|
32873
32886
|
@self_link = args[:self_link] if args.key?(:self_link)
|
32874
32887
|
@status = args[:status] if args.key?(:status)
|
32875
32888
|
@supports_pzs = args[:supports_pzs] if args.key?(:supports_pzs)
|
32876
32889
|
@zones = args[:zones] if args.key?(:zones)
|
32877
32890
|
end
|
32891
|
+
|
32892
|
+
# [Output Only] Warning of fetching the `quotas` field for this region. This
|
32893
|
+
# field is populated only if fetching of the `quotas` field fails.
|
32894
|
+
class QuotaStatusWarning
|
32895
|
+
include Google::Apis::Core::Hashable
|
32896
|
+
|
32897
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
32898
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
32899
|
+
# Corresponds to the JSON property `code`
|
32900
|
+
# @return [String]
|
32901
|
+
attr_accessor :code
|
32902
|
+
|
32903
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
32904
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
32905
|
+
# Corresponds to the JSON property `data`
|
32906
|
+
# @return [Array<Google::Apis::ComputeBeta::Region::QuotaStatusWarning::Datum>]
|
32907
|
+
attr_accessor :data
|
32908
|
+
|
32909
|
+
# [Output Only] A human-readable description of the warning code.
|
32910
|
+
# Corresponds to the JSON property `message`
|
32911
|
+
# @return [String]
|
32912
|
+
attr_accessor :message
|
32913
|
+
|
32914
|
+
def initialize(**args)
|
32915
|
+
update!(**args)
|
32916
|
+
end
|
32917
|
+
|
32918
|
+
# Update properties of this object
|
32919
|
+
def update!(**args)
|
32920
|
+
@code = args[:code] if args.key?(:code)
|
32921
|
+
@data = args[:data] if args.key?(:data)
|
32922
|
+
@message = args[:message] if args.key?(:message)
|
32923
|
+
end
|
32924
|
+
|
32925
|
+
#
|
32926
|
+
class Datum
|
32927
|
+
include Google::Apis::Core::Hashable
|
32928
|
+
|
32929
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
32930
|
+
# For example, for warnings where there are no results in a list request for a
|
32931
|
+
# particular zone, this key might be scope and the key value might be the zone
|
32932
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
32933
|
+
# suggested replacement, or a warning about invalid network settings (for
|
32934
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
32935
|
+
# for IP forwarding).
|
32936
|
+
# Corresponds to the JSON property `key`
|
32937
|
+
# @return [String]
|
32938
|
+
attr_accessor :key
|
32939
|
+
|
32940
|
+
# [Output Only] A warning data value corresponding to the key.
|
32941
|
+
# Corresponds to the JSON property `value`
|
32942
|
+
# @return [String]
|
32943
|
+
attr_accessor :value
|
32944
|
+
|
32945
|
+
def initialize(**args)
|
32946
|
+
update!(**args)
|
32947
|
+
end
|
32948
|
+
|
32949
|
+
# Update properties of this object
|
32950
|
+
def update!(**args)
|
32951
|
+
@key = args[:key] if args.key?(:key)
|
32952
|
+
@value = args[:value] if args.key?(:value)
|
32953
|
+
end
|
32954
|
+
end
|
32955
|
+
end
|
32878
32956
|
end
|
32879
32957
|
|
32880
32958
|
#
|
@@ -35320,7 +35398,7 @@ module Google
|
|
35320
35398
|
attr_accessor :disk_consistency_group_policy
|
35321
35399
|
|
35322
35400
|
# A GroupPlacementPolicy specifies resource placement configuration. It
|
35323
|
-
# specifies the failure bucket separation
|
35401
|
+
# specifies the failure bucket separation
|
35324
35402
|
# Corresponds to the JSON property `groupPlacementPolicy`
|
35325
35403
|
# @return [Google::Apis::ComputeBeta::ResourcePolicyGroupPlacementPolicy]
|
35326
35404
|
attr_accessor :group_placement_policy
|
@@ -35583,7 +35661,7 @@ module Google
|
|
35583
35661
|
end
|
35584
35662
|
|
35585
35663
|
# A GroupPlacementPolicy specifies resource placement configuration. It
|
35586
|
-
# specifies the failure bucket separation
|
35664
|
+
# specifies the failure bucket separation
|
35587
35665
|
class ResourcePolicyGroupPlacementPolicy
|
35588
35666
|
include Google::Apis::Core::Hashable
|
35589
35667
|
|
@@ -41055,13 +41133,21 @@ module Google
|
|
41055
41133
|
# @return [String]
|
41056
41134
|
attr_accessor :connection_preference
|
41057
41135
|
|
41058
|
-
#
|
41136
|
+
# Specifies which consumer projects or networks are allowed to connect to the
|
41137
|
+
# service attachment. Each project or network has a connection limit. A given
|
41138
|
+
# service attachment can manage connections at either the project or network
|
41139
|
+
# level. Therefore, both the accept and reject lists for a given service
|
41140
|
+
# attachment must contain either only projects or only networks.
|
41059
41141
|
# Corresponds to the JSON property `consumerAcceptLists`
|
41060
41142
|
# @return [Array<Google::Apis::ComputeBeta::ServiceAttachmentConsumerProjectLimit>]
|
41061
41143
|
attr_accessor :consumer_accept_lists
|
41062
41144
|
|
41063
|
-
#
|
41064
|
-
# project can be specified using its
|
41145
|
+
# Specifies a list of projects or networks that are not allowed to connect to
|
41146
|
+
# this service attachment. The project can be specified using its project ID or
|
41147
|
+
# project number and the network can be specified using its URL. A given service
|
41148
|
+
# attachment can manage connections at either the project or network level.
|
41149
|
+
# Therefore, both the reject and accept lists for a given service attachment
|
41150
|
+
# must contain either only projects or only networks.
|
41065
41151
|
# Corresponds to the JSON property `consumerRejectLists`
|
41066
41152
|
# @return [Array<String>]
|
41067
41153
|
attr_accessor :consumer_reject_lists
|
@@ -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.99.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 = "20240407"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4182,6 +4182,18 @@ module Google
|
|
4182
4182
|
|
4183
4183
|
class Region
|
4184
4184
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4185
|
+
|
4186
|
+
class QuotaStatusWarning
|
4187
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4188
|
+
|
4189
|
+
class Datum
|
4190
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4191
|
+
|
4192
|
+
include Google::Apis::Core::JsonObjectSupport
|
4193
|
+
end
|
4194
|
+
|
4195
|
+
include Google::Apis::Core::JsonObjectSupport
|
4196
|
+
end
|
4185
4197
|
|
4186
4198
|
include Google::Apis::Core::JsonObjectSupport
|
4187
4199
|
end
|
@@ -13127,6 +13139,7 @@ module Google
|
|
13127
13139
|
# @private
|
13128
13140
|
class Representation < Google::Apis::Core::JsonRepresentation
|
13129
13141
|
hash :annotations, as: 'annotations'
|
13142
|
+
property :client_destination_port, as: 'clientDestinationPort'
|
13130
13143
|
property :client_port, as: 'clientPort'
|
13131
13144
|
property :fqdn, as: 'fqdn'
|
13132
13145
|
property :instance, as: 'instance'
|
@@ -14887,6 +14900,8 @@ module Google
|
|
14887
14900
|
property :id, :numeric_string => true, as: 'id'
|
14888
14901
|
property :kind, as: 'kind'
|
14889
14902
|
property :name, as: 'name'
|
14903
|
+
property :quota_status_warning, as: 'quotaStatusWarning', class: Google::Apis::ComputeBeta::Region::QuotaStatusWarning, decorator: Google::Apis::ComputeBeta::Region::QuotaStatusWarning::Representation
|
14904
|
+
|
14890
14905
|
collection :quotas, as: 'quotas', class: Google::Apis::ComputeBeta::Quota, decorator: Google::Apis::ComputeBeta::Quota::Representation
|
14891
14906
|
|
14892
14907
|
property :self_link, as: 'selfLink'
|
@@ -14894,6 +14909,24 @@ module Google
|
|
14894
14909
|
property :supports_pzs, as: 'supportsPzs'
|
14895
14910
|
collection :zones, as: 'zones'
|
14896
14911
|
end
|
14912
|
+
|
14913
|
+
class QuotaStatusWarning
|
14914
|
+
# @private
|
14915
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
14916
|
+
property :code, as: 'code'
|
14917
|
+
collection :data, as: 'data', class: Google::Apis::ComputeBeta::Region::QuotaStatusWarning::Datum, decorator: Google::Apis::ComputeBeta::Region::QuotaStatusWarning::Datum::Representation
|
14918
|
+
|
14919
|
+
property :message, as: 'message'
|
14920
|
+
end
|
14921
|
+
|
14922
|
+
class Datum
|
14923
|
+
# @private
|
14924
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
14925
|
+
property :key, as: 'key'
|
14926
|
+
property :value, as: 'value'
|
14927
|
+
end
|
14928
|
+
end
|
14929
|
+
end
|
14897
14930
|
end
|
14898
14931
|
|
14899
14932
|
class RegionAddressesMoveRequest
|
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.99.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-04-
|
11
|
+
date: 2024-04-21 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.99.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: []
|