google-apis-compute_v1 0.95.0 → 0.96.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 81070ba0b83873016a0221a3a538f1f0fd63188e20fdaf558a40f634f461d504
|
4
|
+
data.tar.gz: eb6a4aab37465f86d70ec9400d1f67f57c7aa3e27edad9b6037b449e0de6061c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b9853dbb34493083e0501f2835e8a9e7cbe4c5bf6de753491dc265015e99a2380d845b55059176cbb157f26e2a487496e1281ef4f2f6c1316cc426fb56f68685
|
7
|
+
data.tar.gz: d33e04a9037edac789145b20f2a7b474bcf9078484ed86012ce4243887e7227aaa63f65e03bda4db619731ef56fb7f4d2c99ea29c6a45fad5a53212a5551bc59
|
data/CHANGELOG.md
CHANGED
@@ -24198,7 +24198,7 @@ module Google
|
|
24198
24198
|
|
24199
24199
|
# Type of network endpoints in this network endpoint group. Can be one of
|
24200
24200
|
# GCE_VM_IP, GCE_VM_IP_PORT, NON_GCP_PRIVATE_IP_PORT, INTERNET_FQDN_PORT,
|
24201
|
-
# INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT.
|
24201
|
+
# INTERNET_IP_PORT, SERVERLESS, PRIVATE_SERVICE_CONNECT, GCE_VM_IP_PORTMAP.
|
24202
24202
|
# Corresponds to the JSON property `networkEndpointType`
|
24203
24203
|
# @return [String]
|
24204
24204
|
attr_accessor :network_endpoint_type
|
@@ -28646,8 +28646,7 @@ module Google
|
|
28646
28646
|
# ingress) or destination (egress) IP in the IP header. If no ranges are
|
28647
28647
|
# specified, all IPv4 traffic that matches the specified IPProtocols is mirrored.
|
28648
28648
|
# If neither cidrRanges nor IPProtocols is specified, all IPv4 traffic is
|
28649
|
-
# mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0".
|
28650
|
-
# Support for IPv6 traffic is in preview.
|
28649
|
+
# mirrored. To mirror all IPv4 and IPv6 traffic, use "0.0.0.0/0,::/0".
|
28651
28650
|
# Corresponds to the JSON property `cidrRanges`
|
28652
28651
|
# @return [Array<String>]
|
28653
28652
|
attr_accessor :cidr_ranges
|
@@ -30689,6 +30688,12 @@ module Google
|
|
30689
30688
|
# @return [String]
|
30690
30689
|
attr_accessor :name
|
30691
30690
|
|
30691
|
+
# [Output Only] Warning of fetching the `quotas` field for this region. This
|
30692
|
+
# field is populated only if fetching of the `quotas` field fails.
|
30693
|
+
# Corresponds to the JSON property `quotaStatusWarning`
|
30694
|
+
# @return [Google::Apis::ComputeV1::Region::QuotaStatusWarning]
|
30695
|
+
attr_accessor :quota_status_warning
|
30696
|
+
|
30692
30697
|
# [Output Only] Quotas assigned to this region.
|
30693
30698
|
# Corresponds to the JSON property `quotas`
|
30694
30699
|
# @return [Array<Google::Apis::ComputeV1::Quota>]
|
@@ -30728,12 +30733,78 @@ module Google
|
|
30728
30733
|
@id = args[:id] if args.key?(:id)
|
30729
30734
|
@kind = args[:kind] if args.key?(:kind)
|
30730
30735
|
@name = args[:name] if args.key?(:name)
|
30736
|
+
@quota_status_warning = args[:quota_status_warning] if args.key?(:quota_status_warning)
|
30731
30737
|
@quotas = args[:quotas] if args.key?(:quotas)
|
30732
30738
|
@self_link = args[:self_link] if args.key?(:self_link)
|
30733
30739
|
@status = args[:status] if args.key?(:status)
|
30734
30740
|
@supports_pzs = args[:supports_pzs] if args.key?(:supports_pzs)
|
30735
30741
|
@zones = args[:zones] if args.key?(:zones)
|
30736
30742
|
end
|
30743
|
+
|
30744
|
+
# [Output Only] Warning of fetching the `quotas` field for this region. This
|
30745
|
+
# field is populated only if fetching of the `quotas` field fails.
|
30746
|
+
class QuotaStatusWarning
|
30747
|
+
include Google::Apis::Core::Hashable
|
30748
|
+
|
30749
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
30750
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
30751
|
+
# Corresponds to the JSON property `code`
|
30752
|
+
# @return [String]
|
30753
|
+
attr_accessor :code
|
30754
|
+
|
30755
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
30756
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
30757
|
+
# Corresponds to the JSON property `data`
|
30758
|
+
# @return [Array<Google::Apis::ComputeV1::Region::QuotaStatusWarning::Datum>]
|
30759
|
+
attr_accessor :data
|
30760
|
+
|
30761
|
+
# [Output Only] A human-readable description of the warning code.
|
30762
|
+
# Corresponds to the JSON property `message`
|
30763
|
+
# @return [String]
|
30764
|
+
attr_accessor :message
|
30765
|
+
|
30766
|
+
def initialize(**args)
|
30767
|
+
update!(**args)
|
30768
|
+
end
|
30769
|
+
|
30770
|
+
# Update properties of this object
|
30771
|
+
def update!(**args)
|
30772
|
+
@code = args[:code] if args.key?(:code)
|
30773
|
+
@data = args[:data] if args.key?(:data)
|
30774
|
+
@message = args[:message] if args.key?(:message)
|
30775
|
+
end
|
30776
|
+
|
30777
|
+
#
|
30778
|
+
class Datum
|
30779
|
+
include Google::Apis::Core::Hashable
|
30780
|
+
|
30781
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
30782
|
+
# For example, for warnings where there are no results in a list request for a
|
30783
|
+
# particular zone, this key might be scope and the key value might be the zone
|
30784
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
30785
|
+
# suggested replacement, or a warning about invalid network settings (for
|
30786
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
30787
|
+
# for IP forwarding).
|
30788
|
+
# Corresponds to the JSON property `key`
|
30789
|
+
# @return [String]
|
30790
|
+
attr_accessor :key
|
30791
|
+
|
30792
|
+
# [Output Only] A warning data value corresponding to the key.
|
30793
|
+
# Corresponds to the JSON property `value`
|
30794
|
+
# @return [String]
|
30795
|
+
attr_accessor :value
|
30796
|
+
|
30797
|
+
def initialize(**args)
|
30798
|
+
update!(**args)
|
30799
|
+
end
|
30800
|
+
|
30801
|
+
# Update properties of this object
|
30802
|
+
def update!(**args)
|
30803
|
+
@key = args[:key] if args.key?(:key)
|
30804
|
+
@value = args[:value] if args.key?(:value)
|
30805
|
+
end
|
30806
|
+
end
|
30807
|
+
end
|
30737
30808
|
end
|
30738
30809
|
|
30739
30810
|
#
|
@@ -32988,7 +33059,7 @@ module Google
|
|
32988
33059
|
attr_accessor :disk_consistency_group_policy
|
32989
33060
|
|
32990
33061
|
# A GroupPlacementPolicy specifies resource placement configuration. It
|
32991
|
-
# specifies the failure bucket separation
|
33062
|
+
# specifies the failure bucket separation
|
32992
33063
|
# Corresponds to the JSON property `groupPlacementPolicy`
|
32993
33064
|
# @return [Google::Apis::ComputeV1::ResourcePolicyGroupPlacementPolicy]
|
32994
33065
|
attr_accessor :group_placement_policy
|
@@ -33251,7 +33322,7 @@ module Google
|
|
33251
33322
|
end
|
33252
33323
|
|
33253
33324
|
# A GroupPlacementPolicy specifies resource placement configuration. It
|
33254
|
-
# specifies the failure bucket separation
|
33325
|
+
# specifies the failure bucket separation
|
33255
33326
|
class ResourcePolicyGroupPlacementPolicy
|
33256
33327
|
include Google::Apis::Core::Hashable
|
33257
33328
|
|
@@ -37853,13 +37924,21 @@ module Google
|
|
37853
37924
|
# @return [String]
|
37854
37925
|
attr_accessor :connection_preference
|
37855
37926
|
|
37856
|
-
#
|
37927
|
+
# Specifies which consumer projects or networks are allowed to connect to the
|
37928
|
+
# service attachment. Each project or network has a connection limit. A given
|
37929
|
+
# service attachment can manage connections at either the project or network
|
37930
|
+
# level. Therefore, both the accept and reject lists for a given service
|
37931
|
+
# attachment must contain either only projects or only networks.
|
37857
37932
|
# Corresponds to the JSON property `consumerAcceptLists`
|
37858
37933
|
# @return [Array<Google::Apis::ComputeV1::ServiceAttachmentConsumerProjectLimit>]
|
37859
37934
|
attr_accessor :consumer_accept_lists
|
37860
37935
|
|
37861
|
-
#
|
37862
|
-
# project can be specified using its
|
37936
|
+
# Specifies a list of projects or networks that are not allowed to connect to
|
37937
|
+
# this service attachment. The project can be specified using its project ID or
|
37938
|
+
# project number and the network can be specified using its URL. A given service
|
37939
|
+
# attachment can manage connections at either the project or network level.
|
37940
|
+
# Therefore, both the reject and accept lists for a given service attachment
|
37941
|
+
# must contain either only projects or only networks.
|
37863
37942
|
# Corresponds to the JSON property `consumerRejectLists`
|
37864
37943
|
# @return [Array<String>]
|
37865
37944
|
attr_accessor :consumer_reject_lists
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeV1
|
18
18
|
# Version of the google-apis-compute_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.96.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
|
@@ -3906,6 +3906,18 @@ module Google
|
|
3906
3906
|
|
3907
3907
|
class Region
|
3908
3908
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3909
|
+
|
3910
|
+
class QuotaStatusWarning
|
3911
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3912
|
+
|
3913
|
+
class Datum
|
3914
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3915
|
+
|
3916
|
+
include Google::Apis::Core::JsonObjectSupport
|
3917
|
+
end
|
3918
|
+
|
3919
|
+
include Google::Apis::Core::JsonObjectSupport
|
3920
|
+
end
|
3909
3921
|
|
3910
3922
|
include Google::Apis::Core::JsonObjectSupport
|
3911
3923
|
end
|
@@ -13886,6 +13898,8 @@ module Google
|
|
13886
13898
|
property :id, :numeric_string => true, as: 'id'
|
13887
13899
|
property :kind, as: 'kind'
|
13888
13900
|
property :name, as: 'name'
|
13901
|
+
property :quota_status_warning, as: 'quotaStatusWarning', class: Google::Apis::ComputeV1::Region::QuotaStatusWarning, decorator: Google::Apis::ComputeV1::Region::QuotaStatusWarning::Representation
|
13902
|
+
|
13889
13903
|
collection :quotas, as: 'quotas', class: Google::Apis::ComputeV1::Quota, decorator: Google::Apis::ComputeV1::Quota::Representation
|
13890
13904
|
|
13891
13905
|
property :self_link, as: 'selfLink'
|
@@ -13893,6 +13907,24 @@ module Google
|
|
13893
13907
|
property :supports_pzs, as: 'supportsPzs'
|
13894
13908
|
collection :zones, as: 'zones'
|
13895
13909
|
end
|
13910
|
+
|
13911
|
+
class QuotaStatusWarning
|
13912
|
+
# @private
|
13913
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
13914
|
+
property :code, as: 'code'
|
13915
|
+
collection :data, as: 'data', class: Google::Apis::ComputeV1::Region::QuotaStatusWarning::Datum, decorator: Google::Apis::ComputeV1::Region::QuotaStatusWarning::Datum::Representation
|
13916
|
+
|
13917
|
+
property :message, as: 'message'
|
13918
|
+
end
|
13919
|
+
|
13920
|
+
class Datum
|
13921
|
+
# @private
|
13922
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
13923
|
+
property :key, as: 'key'
|
13924
|
+
property :value, as: 'value'
|
13925
|
+
end
|
13926
|
+
end
|
13927
|
+
end
|
13896
13928
|
end
|
13897
13929
|
|
13898
13930
|
class RegionAddressesMoveRequest
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.96.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_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.96.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|