google-apis-compute_alpha 0.58.0 → 0.59.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: 5d7d98523decbe7118c81ee5dd01739981933ceb2af796d5a3a0200dc6bdee81
|
4
|
+
data.tar.gz: fb6f5abf76f0b512d89b9ad50e8ff8c86c9af2db3ed501230996cf5f903b4479
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3f475e0af4cf2679eef3657cf0c93b5247be5bc25857298c517b658f0ea3015e393652f7016961cc06bc3ef3157e85d3252452b9486715b4f3e9d862d004e6b
|
7
|
+
data.tar.gz: 1d80a19fac0e0bd7db94bdfe2f5f5b8e8ad72edb6d90db0287d0bbbbd1a67363559eb0033cef02735ef50d8085200470e6923a91fe507d24fe4db570af71f6d9
|
data/CHANGELOG.md
CHANGED
@@ -518,8 +518,9 @@ module Google
|
|
518
518
|
|
519
519
|
# The first IPv6 address of the external IPv6 range associated with this
|
520
520
|
# instance, prefix length is stored in externalIpv6PrefixLength in
|
521
|
-
# ipv6AccessConfig.
|
522
|
-
#
|
521
|
+
# ipv6AccessConfig. To use a static external IP address, it must be unused and
|
522
|
+
# in the same region as the instance's zone. If not specified, GCP will
|
523
|
+
# automatically assign an external IPv6 address from the instance's subnetwork.
|
523
524
|
# Corresponds to the JSON property `externalIpv6`
|
524
525
|
# @return [String]
|
525
526
|
attr_accessor :external_ipv6
|
@@ -5186,22 +5187,22 @@ module Google
|
|
5186
5187
|
# kubernetes-engine/docs/how-to/kubernetes-service-accounts). For example, `my-
|
5187
5188
|
# project.svc.id.goog[my-namespace/my-kubernetes-sa]`. * `group:`emailid``: An
|
5188
5189
|
# email address that represents a Google group. For example, `admins@example.com`
|
5189
|
-
# . * `
|
5190
|
-
#
|
5191
|
-
#
|
5192
|
-
#
|
5193
|
-
# the
|
5194
|
-
#
|
5195
|
-
#
|
5190
|
+
# . * `domain:`domain``: The G Suite domain (primary) that represents all the
|
5191
|
+
# users of that domain. For example, `google.com` or `example.com`. * `deleted:
|
5192
|
+
# user:`emailid`?uid=`uniqueid``: An email address (plus unique identifier)
|
5193
|
+
# representing a user that has been recently deleted. For example, `alice@
|
5194
|
+
# example.com?uid=123456789012345678901`. If the user is recovered, this value
|
5195
|
+
# reverts to `user:`emailid`` and the recovered user retains the role in the
|
5196
|
+
# binding. * `deleted:serviceAccount:`emailid`?uid=`uniqueid``: An email address
|
5197
|
+
# (plus unique identifier) representing a service account that has been recently
|
5198
|
+
# deleted. For example, `my-other-app@appspot.gserviceaccount.com?uid=
|
5196
5199
|
# 123456789012345678901`. If the service account is undeleted, this value
|
5197
5200
|
# reverts to `serviceAccount:`emailid`` and the undeleted service account
|
5198
5201
|
# retains the role in the binding. * `deleted:group:`emailid`?uid=`uniqueid``:
|
5199
5202
|
# An email address (plus unique identifier) representing a Google group that has
|
5200
5203
|
# been recently deleted. For example, `admins@example.com?uid=
|
5201
5204
|
# 123456789012345678901`. If the group is recovered, this value reverts to `
|
5202
|
-
# group:`emailid`` and the recovered group retains the role in the binding.
|
5203
|
-
# domain:`domain``: The G Suite domain (primary) that represents all the users
|
5204
|
-
# of that domain. For example, `google.com` or `example.com`.
|
5205
|
+
# group:`emailid`` and the recovered group retains the role in the binding.
|
5205
5206
|
# Corresponds to the JSON property `members`
|
5206
5207
|
# @return [Array<String>]
|
5207
5208
|
attr_accessor :members
|
@@ -8666,6 +8667,16 @@ module Google
|
|
8666
8667
|
# @return [String]
|
8667
8668
|
attr_accessor :ip_address
|
8668
8669
|
|
8670
|
+
# IPv6 address of the interface in the external VPN gateway. This IPv6 address
|
8671
|
+
# can be either from your on-premise gateway or another Cloud provider's VPN
|
8672
|
+
# gateway, it cannot be an IP address from Google Compute Engine. Must specify
|
8673
|
+
# an IPv6 address (not IPV4-mapped) using any format described in RFC 4291 (e.g.
|
8674
|
+
# 2001:db8:0:0:2d9:51:0:0). The output format is RFC 5952 format (e.g. 2001:db8::
|
8675
|
+
# 2d9:51:0:0).
|
8676
|
+
# Corresponds to the JSON property `ipv6Address`
|
8677
|
+
# @return [String]
|
8678
|
+
attr_accessor :ipv6_address
|
8679
|
+
|
8669
8680
|
def initialize(**args)
|
8670
8681
|
update!(**args)
|
8671
8682
|
end
|
@@ -8674,6 +8685,7 @@ module Google
|
|
8674
8685
|
def update!(**args)
|
8675
8686
|
@id = args[:id] if args.key?(:id)
|
8676
8687
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
8688
|
+
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
8677
8689
|
end
|
8678
8690
|
end
|
8679
8691
|
|
@@ -9674,6 +9686,14 @@ module Google
|
|
9674
9686
|
# @return [Array<String>]
|
9675
9687
|
attr_accessor :target_service_accounts
|
9676
9688
|
|
9689
|
+
# Boolean flag indicating if the traffic should be TLS decrypted. Can be set
|
9690
|
+
# only if action = 'apply_security_profile_group' and cannot be set for other
|
9691
|
+
# actions.
|
9692
|
+
# Corresponds to the JSON property `tlsInspect`
|
9693
|
+
# @return [Boolean]
|
9694
|
+
attr_accessor :tls_inspect
|
9695
|
+
alias_method :tls_inspect?, :tls_inspect
|
9696
|
+
|
9677
9697
|
def initialize(**args)
|
9678
9698
|
update!(**args)
|
9679
9699
|
end
|
@@ -9694,6 +9714,7 @@ module Google
|
|
9694
9714
|
@target_resources = args[:target_resources] if args.key?(:target_resources)
|
9695
9715
|
@target_secure_tags = args[:target_secure_tags] if args.key?(:target_secure_tags)
|
9696
9716
|
@target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts)
|
9717
|
+
@tls_inspect = args[:tls_inspect] if args.key?(:tls_inspect)
|
9697
9718
|
end
|
9698
9719
|
end
|
9699
9720
|
|
@@ -16808,7 +16829,8 @@ module Google
|
|
16808
16829
|
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatus]
|
16809
16830
|
attr_accessor :status
|
16810
16831
|
|
16811
|
-
# [Output Only] The URL of a zone where the resize request is located.
|
16832
|
+
# [Output Only] The URL of a zone where the resize request is located. Populated
|
16833
|
+
# only for zonal resize requests.
|
16812
16834
|
# Corresponds to the JSON property `zone`
|
16813
16835
|
# @return [String]
|
16814
16836
|
attr_accessor :zone
|
@@ -27247,7 +27269,10 @@ module Google
|
|
27247
27269
|
# @return [String]
|
27248
27270
|
attr_accessor :ipv6_access_type
|
27249
27271
|
|
27250
|
-
# An IPv6 internal network address for this network interface.
|
27272
|
+
# An IPv6 internal network address for this network interface. To use a static
|
27273
|
+
# internal IP address, it must be unused and in the same region as the instance'
|
27274
|
+
# s zone. If not specified, GCP will automatically assign an internal IPv6
|
27275
|
+
# address from the instance's subnetwork.
|
27251
27276
|
# Corresponds to the JSON property `ipv6Address`
|
27252
27277
|
# @return [String]
|
27253
27278
|
attr_accessor :ipv6_address
|
@@ -38559,6 +38584,18 @@ module Google
|
|
38559
38584
|
# @return [Google::Apis::ComputeAlpha::RouterBgpPeerBfd]
|
38560
38585
|
attr_accessor :bfd
|
38561
38586
|
|
38587
|
+
# User-defined Custom Learned Route IP range list for a BGP session.
|
38588
|
+
# Corresponds to the JSON property `customLearnedIpRanges`
|
38589
|
+
# @return [Array<Google::Apis::ComputeAlpha::RouterBgpPeerCustomLearnedIpRange>]
|
38590
|
+
attr_accessor :custom_learned_ip_ranges
|
38591
|
+
|
38592
|
+
# User-defined Custom Learned Route Priority for a BGP session. This will be
|
38593
|
+
# applied to all Custom Learned Route ranges of the BGP session, if not given,
|
38594
|
+
# google-managed priority of 100 is used.
|
38595
|
+
# Corresponds to the JSON property `customLearnedRoutePriority`
|
38596
|
+
# @return [Fixnum]
|
38597
|
+
attr_accessor :custom_learned_route_priority
|
38598
|
+
|
38562
38599
|
# The status of the BGP peer connection. If set to FALSE, any active session
|
38563
38600
|
# with the peer is terminated and all associated routing information is removed.
|
38564
38601
|
# If set to TRUE, the peer connection can be established with routing
|
@@ -38652,6 +38689,8 @@ module Google
|
|
38652
38689
|
@advertised_ip_ranges = args[:advertised_ip_ranges] if args.key?(:advertised_ip_ranges)
|
38653
38690
|
@advertised_route_priority = args[:advertised_route_priority] if args.key?(:advertised_route_priority)
|
38654
38691
|
@bfd = args[:bfd] if args.key?(:bfd)
|
38692
|
+
@custom_learned_ip_ranges = args[:custom_learned_ip_ranges] if args.key?(:custom_learned_ip_ranges)
|
38693
|
+
@custom_learned_route_priority = args[:custom_learned_route_priority] if args.key?(:custom_learned_route_priority)
|
38655
38694
|
@enable = args[:enable] if args.key?(:enable)
|
38656
38695
|
@enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
|
38657
38696
|
@interface_name = args[:interface_name] if args.key?(:interface_name)
|
@@ -38752,6 +38791,27 @@ module Google
|
|
38752
38791
|
end
|
38753
38792
|
end
|
38754
38793
|
|
38794
|
+
#
|
38795
|
+
class RouterBgpPeerCustomLearnedIpRange
|
38796
|
+
include Google::Apis::Core::Hashable
|
38797
|
+
|
38798
|
+
# The Custom Learned Route IP range. Must be a valid CIDR-formatted prefix. If
|
38799
|
+
# an IP is provided without a subnet mask, it is interpreted as a /32 singular
|
38800
|
+
# IP range for IPv4, and /128 for IPv6.
|
38801
|
+
# Corresponds to the JSON property `range`
|
38802
|
+
# @return [String]
|
38803
|
+
attr_accessor :range
|
38804
|
+
|
38805
|
+
def initialize(**args)
|
38806
|
+
update!(**args)
|
38807
|
+
end
|
38808
|
+
|
38809
|
+
# Update properties of this object
|
38810
|
+
def update!(**args)
|
38811
|
+
@range = args[:range] if args.key?(:range)
|
38812
|
+
end
|
38813
|
+
end
|
38814
|
+
|
38755
38815
|
#
|
38756
38816
|
class RouterInterface
|
38757
38817
|
include Google::Apis::Core::Hashable
|
@@ -40722,7 +40782,11 @@ module Google
|
|
40722
40782
|
# CLOUD_ARMOR_INTERNAL_SERVICE: Cloud Armor internal service policies can be
|
40723
40783
|
# configured to filter HTTP requests targeting services managed by Traffic
|
40724
40784
|
# Director in a service mesh. They filter requests before the request is served
|
40725
|
-
# from the application.
|
40785
|
+
# from the application. - CLOUD_ARMOR_NETWORK: Cloud Armor network policies can
|
40786
|
+
# be configured to filter packets targeting network load balancing resources
|
40787
|
+
# such as backend services, target pools, target instances, and instances with
|
40788
|
+
# external IPs. They filter requests before the request is served from the
|
40789
|
+
# application. This field can be set only at resource creation time.
|
40726
40790
|
# Corresponds to the JSON property `type`
|
40727
40791
|
# @return [String]
|
40728
40792
|
attr_accessor :type
|
@@ -51057,6 +51121,12 @@ module Google
|
|
51057
51121
|
# @return [String]
|
51058
51122
|
attr_accessor :description
|
51059
51123
|
|
51124
|
+
# The IP family of the gateway IPs for the HA-VPN gateway interfaces. If not
|
51125
|
+
# specified, IPV4 will be used.
|
51126
|
+
# Corresponds to the JSON property `gatewayIpVersion`
|
51127
|
+
# @return [String]
|
51128
|
+
attr_accessor :gateway_ip_version
|
51129
|
+
|
51060
51130
|
# [Output Only] The unique identifier for the resource. This identifier is
|
51061
51131
|
# defined by the server.
|
51062
51132
|
# Corresponds to the JSON property `id`
|
@@ -51074,7 +51144,7 @@ module Google
|
|
51074
51144
|
# request to modify or update labels. You must always provide an up-to-date
|
51075
51145
|
# fingerprint hash in order to update or change labels, otherwise the request
|
51076
51146
|
# will fail with error 412 conditionNotMet. To see the latest fingerprint, make
|
51077
|
-
# a get() request to retrieve
|
51147
|
+
# a get() request to retrieve a VpnGateway.
|
51078
51148
|
# Corresponds to the JSON property `labelFingerprint`
|
51079
51149
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
51080
51150
|
# @return [String]
|
@@ -51133,6 +51203,7 @@ module Google
|
|
51133
51203
|
def update!(**args)
|
51134
51204
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
51135
51205
|
@description = args[:description] if args.key?(:description)
|
51206
|
+
@gateway_ip_version = args[:gateway_ip_version] if args.key?(:gateway_ip_version)
|
51136
51207
|
@id = args[:id] if args.key?(:id)
|
51137
51208
|
@kind = args[:kind] if args.key?(:kind)
|
51138
51209
|
@label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
|
@@ -51541,6 +51612,13 @@ module Google
|
|
51541
51612
|
# @return [String]
|
51542
51613
|
attr_accessor :ip_address
|
51543
51614
|
|
51615
|
+
# [Output Only] IPv6 address for this VPN interface associated with the VPN
|
51616
|
+
# gateway. The IPv6 address must be a regional external IPv6 address. The format
|
51617
|
+
# is RFC 5952 format (e.g. 2001:db8::2d9:51:0:0).
|
51618
|
+
# Corresponds to the JSON property `ipv6Address`
|
51619
|
+
# @return [String]
|
51620
|
+
attr_accessor :ipv6_address
|
51621
|
+
|
51544
51622
|
def initialize(**args)
|
51545
51623
|
update!(**args)
|
51546
51624
|
end
|
@@ -51550,6 +51628,7 @@ module Google
|
|
51550
51628
|
@id = args[:id] if args.key?(:id)
|
51551
51629
|
@interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
|
51552
51630
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
51631
|
+
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
51553
51632
|
end
|
51554
51633
|
end
|
51555
51634
|
|
@@ -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.59.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.11.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230201"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -5092,6 +5092,12 @@ module Google
|
|
5092
5092
|
include Google::Apis::Core::JsonObjectSupport
|
5093
5093
|
end
|
5094
5094
|
|
5095
|
+
class RouterBgpPeerCustomLearnedIpRange
|
5096
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5097
|
+
|
5098
|
+
include Google::Apis::Core::JsonObjectSupport
|
5099
|
+
end
|
5100
|
+
|
5095
5101
|
class RouterInterface
|
5096
5102
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5097
5103
|
|
@@ -8948,6 +8954,7 @@ module Google
|
|
8948
8954
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8949
8955
|
property :id, as: 'id'
|
8950
8956
|
property :ip_address, as: 'ipAddress'
|
8957
|
+
property :ipv6_address, as: 'ipv6Address'
|
8951
8958
|
end
|
8952
8959
|
end
|
8953
8960
|
|
@@ -9172,6 +9179,7 @@ module Google
|
|
9172
9179
|
collection :target_secure_tags, as: 'targetSecureTags', class: Google::Apis::ComputeAlpha::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRuleSecureTag::Representation
|
9173
9180
|
|
9174
9181
|
collection :target_service_accounts, as: 'targetServiceAccounts'
|
9182
|
+
property :tls_inspect, as: 'tlsInspect'
|
9175
9183
|
end
|
9176
9184
|
end
|
9177
9185
|
|
@@ -16484,6 +16492,9 @@ module Google
|
|
16484
16492
|
property :advertised_route_priority, as: 'advertisedRoutePriority'
|
16485
16493
|
property :bfd, as: 'bfd', class: Google::Apis::ComputeAlpha::RouterBgpPeerBfd, decorator: Google::Apis::ComputeAlpha::RouterBgpPeerBfd::Representation
|
16486
16494
|
|
16495
|
+
collection :custom_learned_ip_ranges, as: 'customLearnedIpRanges', class: Google::Apis::ComputeAlpha::RouterBgpPeerCustomLearnedIpRange, decorator: Google::Apis::ComputeAlpha::RouterBgpPeerCustomLearnedIpRange::Representation
|
16496
|
+
|
16497
|
+
property :custom_learned_route_priority, as: 'customLearnedRoutePriority'
|
16487
16498
|
property :enable, as: 'enable'
|
16488
16499
|
property :enable_ipv6, as: 'enableIpv6'
|
16489
16500
|
property :interface_name, as: 'interfaceName'
|
@@ -16512,6 +16523,13 @@ module Google
|
|
16512
16523
|
end
|
16513
16524
|
end
|
16514
16525
|
|
16526
|
+
class RouterBgpPeerCustomLearnedIpRange
|
16527
|
+
# @private
|
16528
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
16529
|
+
property :range, as: 'range'
|
16530
|
+
end
|
16531
|
+
end
|
16532
|
+
|
16515
16533
|
class RouterInterface
|
16516
16534
|
# @private
|
16517
16535
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -19567,6 +19585,7 @@ module Google
|
|
19567
19585
|
class Representation < Google::Apis::Core::JsonRepresentation
|
19568
19586
|
property :creation_timestamp, as: 'creationTimestamp'
|
19569
19587
|
property :description, as: 'description'
|
19588
|
+
property :gateway_ip_version, as: 'gatewayIpVersion'
|
19570
19589
|
property :id, :numeric_string => true, as: 'id'
|
19571
19590
|
property :kind, as: 'kind'
|
19572
19591
|
property :label_fingerprint, :base64 => true, as: 'labelFingerprint'
|
@@ -19689,6 +19708,7 @@ module Google
|
|
19689
19708
|
property :id, as: 'id'
|
19690
19709
|
property :interconnect_attachment, as: 'interconnectAttachment'
|
19691
19710
|
property :ip_address, as: 'ipAddress'
|
19711
|
+
property :ipv6_address, as: 'ipv6Address'
|
19692
19712
|
end
|
19693
19713
|
end
|
19694
19714
|
|
@@ -10046,8 +10046,8 @@ module Google
|
|
10046
10046
|
# @param [String] project
|
10047
10047
|
# Project ID for this request.
|
10048
10048
|
# @param [String] zone
|
10049
|
-
#
|
10050
|
-
#
|
10049
|
+
# Name of the href="/compute/docs/regions-zones/#available">zone scoping this
|
10050
|
+
# request. Name should conform to RFC1035.
|
10051
10051
|
# @param [String] instance_group_manager
|
10052
10052
|
# The name of the managed instance group. Name should conform to RFC1035 or be a
|
10053
10053
|
# resource ID.
|
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.59.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: 2023-
|
11
|
+
date: 2023-02-12 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.59.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: []
|