google-apis-compute_beta 0.99.0 → 0.100.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: 7ed2c184a58b773410b99b9e1340b49d77a1577cb4377e99df0bfc034fab4acd
|
4
|
+
data.tar.gz: fba204fa62c8f0236dbf21a265ca454301aa2771d3ca1f865d57c3bfdf7358a5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4f046c2c76934bbd04039c362bcbb2ac1450daf0bc8f53e4725923e607189fe6ed9bd604735f08e5a522674ac171b5f17aee37bf3ce4e616fb40de0872d96a36
|
7
|
+
data.tar.gz: e4779c58a17b87ddfec1c78e23166d617ec41bd031ed26760045337c6189b148503d02435a4f19b0af0714fe288d10c1c28823276879d2735f1c7f1070d5c807
|
data/CHANGELOG.md
CHANGED
@@ -1415,7 +1415,6 @@ module Google
|
|
1415
1415
|
end
|
1416
1416
|
|
1417
1417
|
# This reservation type allows to pre allocate specific instance configuration.
|
1418
|
-
# Next ID: 6
|
1419
1418
|
class AllocationSpecificSkuReservation
|
1420
1419
|
include Google::Apis::Core::Hashable
|
1421
1420
|
|
@@ -10063,6 +10062,17 @@ module Google
|
|
10063
10062
|
# @return [Fixnum]
|
10064
10063
|
attr_accessor :id
|
10065
10064
|
|
10065
|
+
# Resource reference of a PublicDelegatedPrefix. The PDP must be a sub-PDP in
|
10066
|
+
# EXTERNAL_IPV6_FORWARDING_RULE_CREATION mode. Use one of the following formats
|
10067
|
+
# to specify a sub-PDP when creating an IPv6 NetLB forwarding rule using BYOIP:
|
10068
|
+
# Full resource URL, as in https://www.googleapis.com/compute/v1/projects/
|
10069
|
+
# project_id/regions/region /publicDelegatedPrefixes/sub-pdp-name Partial URL,
|
10070
|
+
# as in: - projects/project_id/regions/region/publicDelegatedPrefixes/sub-pdp-
|
10071
|
+
# name - regions/region/publicDelegatedPrefixes/sub-pdp-name
|
10072
|
+
# Corresponds to the JSON property `ipCollection`
|
10073
|
+
# @return [String]
|
10074
|
+
attr_accessor :ip_collection
|
10075
|
+
|
10066
10076
|
# The IP Version that will be used by this forwarding rule. Valid options are
|
10067
10077
|
# IPV4 or IPV6.
|
10068
10078
|
# Corresponds to the JSON property `ipVersion`
|
@@ -10308,6 +10318,7 @@ module Google
|
|
10308
10318
|
@description = args[:description] if args.key?(:description)
|
10309
10319
|
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
10310
10320
|
@id = args[:id] if args.key?(:id)
|
10321
|
+
@ip_collection = args[:ip_collection] if args.key?(:ip_collection)
|
10311
10322
|
@ip_version = args[:ip_version] if args.key?(:ip_version)
|
10312
10323
|
@is_mirroring_collector = args[:is_mirroring_collector] if args.key?(:is_mirroring_collector)
|
10313
10324
|
@kind = args[:kind] if args.key?(:kind)
|
@@ -30503,7 +30514,7 @@ module Google
|
|
30503
30514
|
# @return [String]
|
30504
30515
|
attr_accessor :enable
|
30505
30516
|
|
30506
|
-
# Filter for mirrored traffic. If unspecified, all traffic is mirrored.
|
30517
|
+
# Filter for mirrored traffic. If unspecified, all IPv4 traffic is mirrored.
|
30507
30518
|
# Corresponds to the JSON property `filter`
|
30508
30519
|
# @return [Google::Apis::ComputeBeta::PacketMirroringFilter]
|
30509
30520
|
attr_accessor :filter
|
@@ -30718,7 +30729,7 @@ module Google
|
|
30718
30729
|
# @return [Array<String>]
|
30719
30730
|
attr_accessor :ip_protocols
|
30720
30731
|
|
30721
|
-
# One or more IPv4 or IPv6 CIDR ranges that apply as
|
30732
|
+
# One or more IPv4 or IPv6 CIDR ranges that apply as filters on the source (
|
30722
30733
|
# ingress) or destination (egress) IP in the IP header. If no ranges are
|
30723
30734
|
# specified, all IPv4 traffic that matches the specified IPProtocols is mirrored.
|
30724
30735
|
# If neither cidrRanges nor IPProtocols is specified, all IPv4 traffic is
|
@@ -32160,6 +32171,13 @@ module Google
|
|
32160
32171
|
class PublicDelegatedPrefix
|
32161
32172
|
include Google::Apis::Core::Hashable
|
32162
32173
|
|
32174
|
+
# The allocatable prefix length supported by this public delegated prefix. This
|
32175
|
+
# field is optional and cannot be set for prefixes in DELEGATION mode. It cannot
|
32176
|
+
# be set for IPv4 prefixes either, and it always defaults to 32.
|
32177
|
+
# Corresponds to the JSON property `allocatablePrefixLength`
|
32178
|
+
# @return [Fixnum]
|
32179
|
+
attr_accessor :allocatable_prefix_length
|
32180
|
+
|
32163
32181
|
# [Output Only] The version of BYOIP API.
|
32164
32182
|
# Corresponds to the JSON property `byoipApiVersion`
|
32165
32183
|
# @return [String]
|
@@ -32211,6 +32229,11 @@ module Google
|
|
32211
32229
|
# @return [String]
|
32212
32230
|
attr_accessor :kind
|
32213
32231
|
|
32232
|
+
# The public delegated prefix mode for IPv6 only.
|
32233
|
+
# Corresponds to the JSON property `mode`
|
32234
|
+
# @return [String]
|
32235
|
+
attr_accessor :mode
|
32236
|
+
|
32214
32237
|
# Name of the resource. Provided by the client when the resource is created. The
|
32215
32238
|
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
32216
32239
|
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
@@ -32262,6 +32285,7 @@ module Google
|
|
32262
32285
|
|
32263
32286
|
# Update properties of this object
|
32264
32287
|
def update!(**args)
|
32288
|
+
@allocatable_prefix_length = args[:allocatable_prefix_length] if args.key?(:allocatable_prefix_length)
|
32265
32289
|
@byoip_api_version = args[:byoip_api_version] if args.key?(:byoip_api_version)
|
32266
32290
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
32267
32291
|
@description = args[:description] if args.key?(:description)
|
@@ -32270,6 +32294,7 @@ module Google
|
|
32270
32294
|
@ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
|
32271
32295
|
@is_live_migration = args[:is_live_migration] if args.key?(:is_live_migration)
|
32272
32296
|
@kind = args[:kind] if args.key?(:kind)
|
32297
|
+
@mode = args[:mode] if args.key?(:mode)
|
32273
32298
|
@name = args[:name] if args.key?(:name)
|
32274
32299
|
@parent_prefix = args[:parent_prefix] if args.key?(:parent_prefix)
|
32275
32300
|
@public_delegated_sub_prefixs = args[:public_delegated_sub_prefixs] if args.key?(:public_delegated_sub_prefixs)
|
@@ -32526,6 +32551,11 @@ module Google
|
|
32526
32551
|
class PublicDelegatedPrefixPublicDelegatedSubPrefix
|
32527
32552
|
include Google::Apis::Core::Hashable
|
32528
32553
|
|
32554
|
+
# The allocatable prefix length supported by this PublicDelegatedSubPrefix.
|
32555
|
+
# Corresponds to the JSON property `allocatablePrefixLength`
|
32556
|
+
# @return [Fixnum]
|
32557
|
+
attr_accessor :allocatable_prefix_length
|
32558
|
+
|
32529
32559
|
# Name of the project scoping this PublicDelegatedSubPrefix.
|
32530
32560
|
# Corresponds to the JSON property `delegateeProject`
|
32531
32561
|
# @return [String]
|
@@ -32550,6 +32580,11 @@ module Google
|
|
32550
32580
|
attr_accessor :is_address
|
32551
32581
|
alias_method :is_address?, :is_address
|
32552
32582
|
|
32583
|
+
# The PublicDelegatedSubPrefix mode for IPv6 only.
|
32584
|
+
# Corresponds to the JSON property `mode`
|
32585
|
+
# @return [String]
|
32586
|
+
attr_accessor :mode
|
32587
|
+
|
32553
32588
|
# The name of the sub public delegated prefix.
|
32554
32589
|
# Corresponds to the JSON property `name`
|
32555
32590
|
# @return [String]
|
@@ -32572,10 +32607,12 @@ module Google
|
|
32572
32607
|
|
32573
32608
|
# Update properties of this object
|
32574
32609
|
def update!(**args)
|
32610
|
+
@allocatable_prefix_length = args[:allocatable_prefix_length] if args.key?(:allocatable_prefix_length)
|
32575
32611
|
@delegatee_project = args[:delegatee_project] if args.key?(:delegatee_project)
|
32576
32612
|
@description = args[:description] if args.key?(:description)
|
32577
32613
|
@ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
|
32578
32614
|
@is_address = args[:is_address] if args.key?(:is_address)
|
32615
|
+
@mode = args[:mode] if args.key?(:mode)
|
32579
32616
|
@name = args[:name] if args.key?(:name)
|
32580
32617
|
@region = args[:region] if args.key?(:region)
|
32581
32618
|
@status = args[:status] if args.key?(:status)
|
@@ -34786,7 +34823,6 @@ module Google
|
|
34786
34823
|
attr_accessor :share_settings
|
34787
34824
|
|
34788
34825
|
# This reservation type allows to pre allocate specific instance configuration.
|
34789
|
-
# Next ID: 6
|
34790
34826
|
# Corresponds to the JSON property `specificReservation`
|
34791
34827
|
# @return [Google::Apis::ComputeBeta::AllocationSpecificSkuReservation]
|
34792
34828
|
attr_accessor :specific_reservation
|
@@ -37146,7 +37182,8 @@ module Google
|
|
37146
37182
|
attr_accessor :enable_ipv4
|
37147
37183
|
alias_method :enable_ipv4?, :enable_ipv4
|
37148
37184
|
|
37149
|
-
# Enable IPv6 traffic over BGP Peer.
|
37185
|
+
# Enable IPv6 traffic over BGP Peer. It is enabled by default if the
|
37186
|
+
# peerIpAddress is version 6.
|
37150
37187
|
# Corresponds to the JSON property `enableIpv6`
|
37151
37188
|
# @return [Boolean]
|
37152
37189
|
attr_accessor :enable_ipv6
|
@@ -37154,14 +37191,16 @@ module Google
|
|
37154
37191
|
|
37155
37192
|
# List of export policies applied to this peer, in the order they must be
|
37156
37193
|
# evaluated. The name must correspond to an existing policy that has
|
37157
|
-
# ROUTE_POLICY_TYPE_EXPORT type.
|
37194
|
+
# ROUTE_POLICY_TYPE_EXPORT type. Note that Route Policies are currently
|
37195
|
+
# available in preview. Please use Beta API to use Route Policies.
|
37158
37196
|
# Corresponds to the JSON property `exportPolicies`
|
37159
37197
|
# @return [Array<String>]
|
37160
37198
|
attr_accessor :export_policies
|
37161
37199
|
|
37162
37200
|
# List of import policies applied to this peer, in the order they must be
|
37163
37201
|
# evaluated. The name must correspond to an existing policy that has
|
37164
|
-
# ROUTE_POLICY_TYPE_IMPORT type.
|
37202
|
+
# ROUTE_POLICY_TYPE_IMPORT type. Note that Route Policies are currently
|
37203
|
+
# available in preview. Please use Beta API to use Route Policies.
|
37165
37204
|
# Corresponds to the JSON property `importPolicies`
|
37166
37205
|
# @return [Array<String>]
|
37167
37206
|
attr_accessor :import_policies
|
@@ -37171,8 +37210,7 @@ module Google
|
|
37171
37210
|
# @return [String]
|
37172
37211
|
attr_accessor :interface_name
|
37173
37212
|
|
37174
|
-
# IP address of the interface inside Google Cloud Platform.
|
37175
|
-
# supported.
|
37213
|
+
# IP address of the interface inside Google Cloud Platform.
|
37176
37214
|
# Corresponds to the JSON property `ipAddress`
|
37177
37215
|
# @return [String]
|
37178
37216
|
attr_accessor :ip_address
|
@@ -37220,8 +37258,7 @@ module Google
|
|
37220
37258
|
# @return [Fixnum]
|
37221
37259
|
attr_accessor :peer_asn
|
37222
37260
|
|
37223
|
-
# IP address of the BGP interface outside Google Cloud Platform.
|
37224
|
-
# supported.
|
37261
|
+
# IP address of the BGP interface outside Google Cloud Platform.
|
37225
37262
|
# Corresponds to the JSON property `peerIpAddress`
|
37226
37263
|
# @return [String]
|
37227
37264
|
attr_accessor :peer_ip_address
|
@@ -37353,10 +37390,15 @@ module Google
|
|
37353
37390
|
class RouterInterface
|
37354
37391
|
include Google::Apis::Core::Hashable
|
37355
37392
|
|
37356
|
-
# IP address and range of the interface.
|
37357
|
-
# link-local IP address space. The value
|
37358
|
-
# example
|
37359
|
-
# the IP address of the interface.
|
37393
|
+
# IP address and range of the interface. - For Internet Protocol version 4 (IPv4)
|
37394
|
+
# , the IP range must be in the RFC3927 link-local IP address space. The value
|
37395
|
+
# must be a CIDR-formatted string, for example, 169.254.0.1/30. Note: Do not
|
37396
|
+
# truncate the IP address, as it represents the IP address of the interface. -
|
37397
|
+
# For Internet Protocol version 6 (IPv6), the value must be a unique local
|
37398
|
+
# address (ULA) range from fdff:1::/64 with a mask length of 126 or less. This
|
37399
|
+
# value should be a CIDR-formatted string, for example, fc00:0:1:1::1/112.
|
37400
|
+
# Within the router's VPC, this IPv6 prefix will be reserved exclusively for
|
37401
|
+
# this connection and cannot be used for any other purpose.
|
37360
37402
|
# Corresponds to the JSON property `ipRange`
|
37361
37403
|
# @return [String]
|
37362
37404
|
attr_accessor :ip_range
|
@@ -37992,7 +38034,8 @@ module Google
|
|
37992
38034
|
attr_accessor :enable_ipv4
|
37993
38035
|
alias_method :enable_ipv4?, :enable_ipv4
|
37994
38036
|
|
37995
|
-
# Enable IPv6 traffic over BGP Peer.
|
38037
|
+
# Enable IPv6 traffic over BGP Peer. It is enabled by default if the
|
38038
|
+
# peerIpAddress is version 6.
|
37996
38039
|
# Corresponds to the JSON property `enableIpv6`
|
37997
38040
|
# @return [Boolean]
|
37998
38041
|
attr_accessor :enable_ipv6
|
@@ -47020,7 +47063,7 @@ module Google
|
|
47020
47063
|
|
47021
47064
|
# URLs to networkservices.HttpFilter resources enabled for xDS clients using
|
47022
47065
|
# this configuration. For example, https://networkservices.googleapis.com/beta/
|
47023
|
-
# projects/project/locations/
|
47066
|
+
# projects/project/locations/ location/httpFilters/httpFilter Only filters that
|
47024
47067
|
# handle outbound connection and stream events may be specified. These filters
|
47025
47068
|
# work in conjunction with a default set of HTTP filters that may already be
|
47026
47069
|
# configured by Traffic Director. Traffic Director will determine the final
|
@@ -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.100.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 = "20240421"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -9218,6 +9218,7 @@ module Google
|
|
9218
9218
|
property :description, as: 'description'
|
9219
9219
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
9220
9220
|
property :id, :numeric_string => true, as: 'id'
|
9221
|
+
property :ip_collection, as: 'ipCollection'
|
9221
9222
|
property :ip_version, as: 'ipVersion'
|
9222
9223
|
property :is_mirroring_collector, as: 'isMirroringCollector'
|
9223
9224
|
property :kind, as: 'kind'
|
@@ -14734,6 +14735,7 @@ module Google
|
|
14734
14735
|
class PublicDelegatedPrefix
|
14735
14736
|
# @private
|
14736
14737
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14738
|
+
property :allocatable_prefix_length, as: 'allocatablePrefixLength'
|
14737
14739
|
property :byoip_api_version, as: 'byoipApiVersion'
|
14738
14740
|
property :creation_timestamp, as: 'creationTimestamp'
|
14739
14741
|
property :description, as: 'description'
|
@@ -14742,6 +14744,7 @@ module Google
|
|
14742
14744
|
property :ip_cidr_range, as: 'ipCidrRange'
|
14743
14745
|
property :is_live_migration, as: 'isLiveMigration'
|
14744
14746
|
property :kind, as: 'kind'
|
14747
|
+
property :mode, as: 'mode'
|
14745
14748
|
property :name, as: 'name'
|
14746
14749
|
property :parent_prefix, as: 'parentPrefix'
|
14747
14750
|
collection :public_delegated_sub_prefixs, as: 'publicDelegatedSubPrefixs', class: Google::Apis::ComputeBeta::PublicDelegatedPrefixPublicDelegatedSubPrefix, decorator: Google::Apis::ComputeBeta::PublicDelegatedPrefixPublicDelegatedSubPrefix::Representation
|
@@ -14820,10 +14823,12 @@ module Google
|
|
14820
14823
|
class PublicDelegatedPrefixPublicDelegatedSubPrefix
|
14821
14824
|
# @private
|
14822
14825
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14826
|
+
property :allocatable_prefix_length, as: 'allocatablePrefixLength'
|
14823
14827
|
property :delegatee_project, as: 'delegateeProject'
|
14824
14828
|
property :description, as: 'description'
|
14825
14829
|
property :ip_cidr_range, as: 'ipCidrRange'
|
14826
14830
|
property :is_address, as: 'isAddress'
|
14831
|
+
property :mode, as: 'mode'
|
14827
14832
|
property :name, as: 'name'
|
14828
14833
|
property :region, as: 'region'
|
14829
14834
|
property :status, as: 'status'
|
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.100.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-28 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.100.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: []
|