google-apis-compute_beta 0.6.0 → 0.7.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 +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/compute_beta.rb +1 -1
- data/lib/google/apis/compute_beta/classes.rb +173 -26
- data/lib/google/apis/compute_beta/gem_version.rb +2 -2
- data/lib/google/apis/compute_beta/representations.rb +17 -0
- data/lib/google/apis/compute_beta/service.rb +1104 -319
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f1f6d35efad211a2c3b995234c787d51b604337ff1cf96f8fcbbb95208f8385
|
4
|
+
data.tar.gz: 9e7cdb0f61869f34ca6056f60b83bd1b7b37378cb9bd9ea08021414a2f2c449e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e11e6452aa1da80215ebf3a55fe5f28b299061c04f121a8d336bcf37f0659f83053f3aa6a85f93758935a25f65eccb4a7cc551ab862eb88f8a7d2a549ed939bc
|
7
|
+
data.tar.gz: 325ddae718b8b3895ba8655375b0ea4055bb67377cc514e542a76371335b901664a0e76ddd35e67f9b20a09757cffca7ff1e1fd8100bb986b8cbceaeae78ba10
|
data/CHANGELOG.md
CHANGED
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'Beta'
|
31
31
|
|
32
|
-
#
|
32
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
|
35
35
|
# View and manage your Google Compute Engine resources
|
@@ -2883,8 +2883,8 @@ module Google
|
|
2883
2883
|
include Google::Apis::Core::Hashable
|
2884
2884
|
|
2885
2885
|
# The HTTP status code to define a TTL against. Only HTTP status codes 300, 301,
|
2886
|
-
# 308, 404, 405, 410, 421, 451 and 501 are can be specified as values,
|
2887
|
-
# cannot specify a status code more than once.
|
2886
|
+
# 302, 307, 308, 404, 405, 410, 421, 451 and 501 are can be specified as values,
|
2887
|
+
# and you cannot specify a status code more than once.
|
2888
2888
|
# Corresponds to the JSON property `code`
|
2889
2889
|
# @return [Fixnum]
|
2890
2890
|
attr_accessor :code
|
@@ -3210,6 +3210,14 @@ module Google
|
|
3210
3210
|
# @return [Google::Apis::ComputeBeta::BackendServiceLogConfig]
|
3211
3211
|
attr_accessor :log_config
|
3212
3212
|
|
3213
|
+
# A Duration represents a fixed-length span of time represented as a count of
|
3214
|
+
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
3215
|
+
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
3216
|
+
# 000 years.
|
3217
|
+
# Corresponds to the JSON property `maxStreamDuration`
|
3218
|
+
# @return [Google::Apis::ComputeBeta::Duration]
|
3219
|
+
attr_accessor :max_stream_duration
|
3220
|
+
|
3213
3221
|
# Name of the resource. Provided by the client when the resource is created. The
|
3214
3222
|
# name must be 1-63 characters long, and comply with RFC1035. Specifically, the
|
3215
3223
|
# name must be 1-63 characters long and match the regular expression `[a-z]([-a-
|
@@ -3344,6 +3352,7 @@ module Google
|
|
3344
3352
|
@load_balancing_scheme = args[:load_balancing_scheme] if args.key?(:load_balancing_scheme)
|
3345
3353
|
@locality_lb_policy = args[:locality_lb_policy] if args.key?(:locality_lb_policy)
|
3346
3354
|
@log_config = args[:log_config] if args.key?(:log_config)
|
3355
|
+
@max_stream_duration = args[:max_stream_duration] if args.key?(:max_stream_duration)
|
3347
3356
|
@name = args[:name] if args.key?(:name)
|
3348
3357
|
@network = args[:network] if args.key?(:network)
|
3349
3358
|
@outlier_detection = args[:outlier_detection] if args.key?(:outlier_detection)
|
@@ -3665,8 +3674,8 @@ module Google
|
|
3665
3674
|
include Google::Apis::Core::Hashable
|
3666
3675
|
|
3667
3676
|
# The HTTP status code to define a TTL against. Only HTTP status codes 300, 301,
|
3668
|
-
# 308, 404, 405, 410, 421, 451 and 501 are can be specified as values,
|
3669
|
-
# cannot specify a status code more than once.
|
3677
|
+
# 302, 307, 308, 404, 405, 410, 421, 451 and 501 are can be specified as values,
|
3678
|
+
# and you cannot specify a status code more than once.
|
3670
3679
|
# Corresponds to the JSON property `code`
|
3671
3680
|
# @return [Fixnum]
|
3672
3681
|
attr_accessor :code
|
@@ -7868,13 +7877,14 @@ module Google
|
|
7868
7877
|
# @return [String]
|
7869
7878
|
attr_accessor :description
|
7870
7879
|
|
7871
|
-
#
|
7872
|
-
#
|
7873
|
-
# must be 1-63 characters long,
|
7874
|
-
# must be 1-63 characters long
|
7875
|
-
# [a-z0-9])?` which means the
|
7876
|
-
#
|
7877
|
-
# the last character, which cannot
|
7880
|
+
# Depreacted, please use short name instead. User-provided name of the
|
7881
|
+
# Organization firewall plicy. The name should be unique in the organization in
|
7882
|
+
# which the firewall policy is created. The name must be 1-63 characters long,
|
7883
|
+
# and comply with RFC1035. Specifically, the name must be 1-63 characters long
|
7884
|
+
# and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the
|
7885
|
+
# first character must be a lowercase letter, and all following characters must
|
7886
|
+
# be a dash, lowercase letter, or digit, except the last character, which cannot
|
7887
|
+
# be a dash.
|
7878
7888
|
# Corresponds to the JSON property `displayName`
|
7879
7889
|
# @return [String]
|
7880
7890
|
attr_accessor :display_name
|
@@ -7938,6 +7948,17 @@ module Google
|
|
7938
7948
|
# @return [String]
|
7939
7949
|
attr_accessor :self_link_with_id
|
7940
7950
|
|
7951
|
+
# User-provided name of the Organization firewall plicy. The name should be
|
7952
|
+
# unique in the organization in which the firewall policy is created. The name
|
7953
|
+
# must be 1-63 characters long, and comply with RFC1035. Specifically, the name
|
7954
|
+
# must be 1-63 characters long and match the regular expression `[a-z]([-a-z0-9]*
|
7955
|
+
# [a-z0-9])?` which means the first character must be a lowercase letter, and
|
7956
|
+
# all following characters must be a dash, lowercase letter, or digit, except
|
7957
|
+
# the last character, which cannot be a dash.
|
7958
|
+
# Corresponds to the JSON property `shortName`
|
7959
|
+
# @return [String]
|
7960
|
+
attr_accessor :short_name
|
7961
|
+
|
7941
7962
|
def initialize(**args)
|
7942
7963
|
update!(**args)
|
7943
7964
|
end
|
@@ -7957,6 +7978,7 @@ module Google
|
|
7957
7978
|
@rules = args[:rules] if args.key?(:rules)
|
7958
7979
|
@self_link = args[:self_link] if args.key?(:self_link)
|
7959
7980
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
7981
|
+
@short_name = args[:short_name] if args.key?(:short_name)
|
7960
7982
|
end
|
7961
7983
|
end
|
7962
7984
|
|
@@ -7969,7 +7991,8 @@ module Google
|
|
7969
7991
|
# @return [String]
|
7970
7992
|
attr_accessor :attachment_target
|
7971
7993
|
|
7972
|
-
# [Output Only]
|
7994
|
+
# [Output Only] Deprecated, please use short name instead. The display name of
|
7995
|
+
# the firewall policy of the association.
|
7973
7996
|
# Corresponds to the JSON property `displayName`
|
7974
7997
|
# @return [String]
|
7975
7998
|
attr_accessor :display_name
|
@@ -7984,6 +8007,11 @@ module Google
|
|
7984
8007
|
# @return [String]
|
7985
8008
|
attr_accessor :name
|
7986
8009
|
|
8010
|
+
# [Output Only] The short name of the firewall policy of the association.
|
8011
|
+
# Corresponds to the JSON property `shortName`
|
8012
|
+
# @return [String]
|
8013
|
+
attr_accessor :short_name
|
8014
|
+
|
7987
8015
|
def initialize(**args)
|
7988
8016
|
update!(**args)
|
7989
8017
|
end
|
@@ -7994,6 +8022,7 @@ module Google
|
|
7994
8022
|
@display_name = args[:display_name] if args.key?(:display_name)
|
7995
8023
|
@firewall_policy_id = args[:firewall_policy_id] if args.key?(:firewall_policy_id)
|
7996
8024
|
@name = args[:name] if args.key?(:name)
|
8025
|
+
@short_name = args[:short_name] if args.key?(:short_name)
|
7997
8026
|
end
|
7998
8027
|
end
|
7999
8028
|
|
@@ -11352,6 +11381,14 @@ module Google
|
|
11352
11381
|
# @return [Google::Apis::ComputeBeta::HttpFaultInjection]
|
11353
11382
|
attr_accessor :fault_injection_policy
|
11354
11383
|
|
11384
|
+
# A Duration represents a fixed-length span of time represented as a count of
|
11385
|
+
# seconds and fractions of seconds at nanosecond resolution. It is independent
|
11386
|
+
# of any calendar and concepts like "day" or "month". Range is approximately 10,
|
11387
|
+
# 000 years.
|
11388
|
+
# Corresponds to the JSON property `maxStreamDuration`
|
11389
|
+
# @return [Google::Apis::ComputeBeta::Duration]
|
11390
|
+
attr_accessor :max_stream_duration
|
11391
|
+
|
11355
11392
|
# A policy that specifies how requests intended for the route's backends are
|
11356
11393
|
# shadowed to a separate mirrored backend service. Loadbalancer does not wait
|
11357
11394
|
# for responses from the shadow service. Prior to sending traffic to the shadow
|
@@ -11400,6 +11437,7 @@ module Google
|
|
11400
11437
|
def update!(**args)
|
11401
11438
|
@cors_policy = args[:cors_policy] if args.key?(:cors_policy)
|
11402
11439
|
@fault_injection_policy = args[:fault_injection_policy] if args.key?(:fault_injection_policy)
|
11440
|
+
@max_stream_duration = args[:max_stream_duration] if args.key?(:max_stream_duration)
|
11403
11441
|
@request_mirror_policy = args[:request_mirror_policy] if args.key?(:request_mirror_policy)
|
11404
11442
|
@retry_policy = args[:retry_policy] if args.key?(:retry_policy)
|
11405
11443
|
@timeout = args[:timeout] if args.key?(:timeout)
|
@@ -12502,7 +12540,7 @@ module Google
|
|
12502
12540
|
attr_accessor :satisfies_pzs
|
12503
12541
|
alias_method :satisfies_pzs?, :satisfies_pzs
|
12504
12542
|
|
12505
|
-
# Sets the scheduling options for an Instance. NextID:
|
12543
|
+
# Sets the scheduling options for an Instance. NextID: 20
|
12506
12544
|
# Corresponds to the JSON property `scheduling`
|
12507
12545
|
# @return [Google::Apis::ComputeBeta::Scheduling]
|
12508
12546
|
attr_accessor :scheduling
|
@@ -15264,7 +15302,7 @@ module Google
|
|
15264
15302
|
# @return [Array<String>]
|
15265
15303
|
attr_accessor :resource_policies
|
15266
15304
|
|
15267
|
-
# Sets the scheduling options for an Instance. NextID:
|
15305
|
+
# Sets the scheduling options for an Instance. NextID: 20
|
15268
15306
|
# Corresponds to the JSON property `scheduling`
|
15269
15307
|
# @return [Google::Apis::ComputeBeta::Scheduling]
|
15270
15308
|
attr_accessor :scheduling
|
@@ -15630,7 +15668,8 @@ module Google
|
|
15630
15668
|
class InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
|
15631
15669
|
include Google::Apis::Core::Hashable
|
15632
15670
|
|
15633
|
-
# [Output Only] The display name of
|
15671
|
+
# [Output Only] Deprecated, please use short name instead. The display name of
|
15672
|
+
# the firewall policy.
|
15634
15673
|
# Corresponds to the JSON property `displayName`
|
15635
15674
|
# @return [String]
|
15636
15675
|
attr_accessor :display_name
|
@@ -15645,6 +15684,11 @@ module Google
|
|
15645
15684
|
# @return [Array<Google::Apis::ComputeBeta::FirewallPolicyRule>]
|
15646
15685
|
attr_accessor :rules
|
15647
15686
|
|
15687
|
+
# [Output Only] The short name of the firewall policy.
|
15688
|
+
# Corresponds to the JSON property `shortName`
|
15689
|
+
# @return [String]
|
15690
|
+
attr_accessor :short_name
|
15691
|
+
|
15648
15692
|
# [Output Only] The type of the firewall policy.
|
15649
15693
|
# Corresponds to the JSON property `type`
|
15650
15694
|
# @return [String]
|
@@ -15659,6 +15703,7 @@ module Google
|
|
15659
15703
|
@display_name = args[:display_name] if args.key?(:display_name)
|
15660
15704
|
@name = args[:name] if args.key?(:name)
|
15661
15705
|
@rules = args[:rules] if args.key?(:rules)
|
15706
|
+
@short_name = args[:short_name] if args.key?(:short_name)
|
15662
15707
|
@type = args[:type] if args.key?(:type)
|
15663
15708
|
end
|
15664
15709
|
end
|
@@ -16324,6 +16369,18 @@ module Google
|
|
16324
16369
|
# @return [String]
|
16325
16370
|
attr_accessor :edge_availability_domain
|
16326
16371
|
|
16372
|
+
# Indicates the user-supplied encryption option of this interconnect attachment:
|
16373
|
+
# - NONE is the default value, which means that the attachment carries
|
16374
|
+
# unencrypted traffic. VMs can send traffic to, or receive traffic from, this
|
16375
|
+
# type of attachment.
|
16376
|
+
# - IPSEC indicates that the attachment carries only traffic encrypted by an
|
16377
|
+
# IPsec device such as an HA VPN gateway. VMs cannot directly send traffic to,
|
16378
|
+
# or receive traffic from, such an attachment. To use IPsec-encrypted Cloud
|
16379
|
+
# Interconnect, create the attachment using this option.
|
16380
|
+
# Corresponds to the JSON property `encryption`
|
16381
|
+
# @return [String]
|
16382
|
+
attr_accessor :encryption
|
16383
|
+
|
16327
16384
|
# [Output Only] Google reference ID, to be used when raising support tickets
|
16328
16385
|
# with Google or otherwise to debug backend connectivity issues. [Deprecated]
|
16329
16386
|
# This field is not used.
|
@@ -16343,6 +16400,22 @@ module Google
|
|
16343
16400
|
# @return [String]
|
16344
16401
|
attr_accessor :interconnect
|
16345
16402
|
|
16403
|
+
# URL of addresses that have been reserved for the interconnect attachment, Used
|
16404
|
+
# only for interconnect attachment that has the encryption option as IPSEC. The
|
16405
|
+
# addresses must be RFC 1918 IP address ranges. When creating HA VPN gateway
|
16406
|
+
# over the interconnect attachment, if the attachment is configured to use an
|
16407
|
+
# RFC 1918 IP address, then the VPN gateway?s IP address will be allocated from
|
16408
|
+
# the IP address range specified here. For example, if the HA VPN gateway?s
|
16409
|
+
# interface 0 is paired to this interconnect attachment, then an RFC 1918 IP
|
16410
|
+
# address for the VPN gateway interface 0 will be allocated from the IP address
|
16411
|
+
# specified for this interconnect attachment. If this field is not specified for
|
16412
|
+
# interconnect attachment that has encryption option as IPSEC, later on when
|
16413
|
+
# creating HA VPN gateway on this interconnect attachment, the HA VPN gateway's
|
16414
|
+
# IP address will be allocated from regional external IP address pool.
|
16415
|
+
# Corresponds to the JSON property `ipsecInternalAddresses`
|
16416
|
+
# @return [Array<String>]
|
16417
|
+
attr_accessor :ipsec_internal_addresses
|
16418
|
+
|
16346
16419
|
# [Output Only] Type of the resource. Always compute#interconnectAttachment for
|
16347
16420
|
# interconnect attachments.
|
16348
16421
|
# Corresponds to the JSON property `kind`
|
@@ -16497,9 +16570,11 @@ module Google
|
|
16497
16570
|
@dataplane_version = args[:dataplane_version] if args.key?(:dataplane_version)
|
16498
16571
|
@description = args[:description] if args.key?(:description)
|
16499
16572
|
@edge_availability_domain = args[:edge_availability_domain] if args.key?(:edge_availability_domain)
|
16573
|
+
@encryption = args[:encryption] if args.key?(:encryption)
|
16500
16574
|
@google_reference_id = args[:google_reference_id] if args.key?(:google_reference_id)
|
16501
16575
|
@id = args[:id] if args.key?(:id)
|
16502
16576
|
@interconnect = args[:interconnect] if args.key?(:interconnect)
|
16577
|
+
@ipsec_internal_addresses = args[:ipsec_internal_addresses] if args.key?(:ipsec_internal_addresses)
|
16503
16578
|
@kind = args[:kind] if args.key?(:kind)
|
16504
16579
|
@label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
|
16505
16580
|
@labels = args[:labels] if args.key?(:labels)
|
@@ -20817,7 +20892,8 @@ module Google
|
|
20817
20892
|
class NetworksGetEffectiveFirewallsResponseEffectiveFirewallPolicy
|
20818
20893
|
include Google::Apis::Core::Hashable
|
20819
20894
|
|
20820
|
-
# [Output Only] The display name of
|
20895
|
+
# [Output Only] Deprecated, please use short name instead. The display name of
|
20896
|
+
# the firewall policy.
|
20821
20897
|
# Corresponds to the JSON property `displayName`
|
20822
20898
|
# @return [String]
|
20823
20899
|
attr_accessor :display_name
|
@@ -20832,6 +20908,11 @@ module Google
|
|
20832
20908
|
# @return [Array<Google::Apis::ComputeBeta::FirewallPolicyRule>]
|
20833
20909
|
attr_accessor :rules
|
20834
20910
|
|
20911
|
+
# [Output Only] The short name of the firewall policy.
|
20912
|
+
# Corresponds to the JSON property `shortName`
|
20913
|
+
# @return [String]
|
20914
|
+
attr_accessor :short_name
|
20915
|
+
|
20835
20916
|
# [Output Only] The type of the firewall policy.
|
20836
20917
|
# Corresponds to the JSON property `type`
|
20837
20918
|
# @return [String]
|
@@ -20846,6 +20927,7 @@ module Google
|
|
20846
20927
|
@display_name = args[:display_name] if args.key?(:display_name)
|
20847
20928
|
@name = args[:name] if args.key?(:name)
|
20848
20929
|
@rules = args[:rules] if args.key?(:rules)
|
20930
|
+
@short_name = args[:short_name] if args.key?(:short_name)
|
20849
20931
|
@type = args[:type] if args.key?(:type)
|
20850
20932
|
end
|
20851
20933
|
end
|
@@ -29066,6 +29148,13 @@ module Google
|
|
29066
29148
|
# @return [String]
|
29067
29149
|
attr_accessor :description
|
29068
29150
|
|
29151
|
+
# Field to indicate if a router is dedicated to use with encrypted Interconnect
|
29152
|
+
# Attachment (IPsec-encrypted Cloud Interconnect feature).
|
29153
|
+
# Corresponds to the JSON property `encryptedInterconnectRouter`
|
29154
|
+
# @return [Boolean]
|
29155
|
+
attr_accessor :encrypted_interconnect_router
|
29156
|
+
alias_method :encrypted_interconnect_router?, :encrypted_interconnect_router
|
29157
|
+
|
29069
29158
|
# [Output Only] The unique identifier for the resource. This identifier is
|
29070
29159
|
# defined by the server.
|
29071
29160
|
# Corresponds to the JSON property `id`
|
@@ -29126,6 +29215,7 @@ module Google
|
|
29126
29215
|
@bgp_peers = args[:bgp_peers] if args.key?(:bgp_peers)
|
29127
29216
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
29128
29217
|
@description = args[:description] if args.key?(:description)
|
29218
|
+
@encrypted_interconnect_router = args[:encrypted_interconnect_router] if args.key?(:encrypted_interconnect_router)
|
29129
29219
|
@id = args[:id] if args.key?(:id)
|
29130
29220
|
@interfaces = args[:interfaces] if args.key?(:interfaces)
|
29131
29221
|
@kind = args[:kind] if args.key?(:kind)
|
@@ -29326,7 +29416,7 @@ module Google
|
|
29326
29416
|
# successive keepalive messages that BGP receives from a peer.
|
29327
29417
|
# BGP will use the smaller of either the local hold time value or the peer's
|
29328
29418
|
# hold time value as the hold time for the BGP connection between the two peers.
|
29329
|
-
# If set, this value must be between
|
29419
|
+
# If set, this value must be between 20 and 60. The default is 20.
|
29330
29420
|
# Corresponds to the JSON property `keepaliveInterval`
|
29331
29421
|
# @return [Fixnum]
|
29332
29422
|
attr_accessor :keepalive_interval
|
@@ -29357,12 +29447,11 @@ module Google
|
|
29357
29447
|
# User-specified list of prefix groups to advertise in custom mode, which can
|
29358
29448
|
# take one of the following options:
|
29359
29449
|
# - ALL_SUBNETS: Advertises all available subnets, including peer VPC subnets.
|
29360
|
-
# - ALL_VPC_SUBNETS: Advertises the router's own VPC subnets.
|
29361
|
-
#
|
29362
|
-
#
|
29363
|
-
#
|
29364
|
-
#
|
29365
|
-
# to advertise no custom groups.
|
29450
|
+
# - ALL_VPC_SUBNETS: Advertises the router's own VPC subnets. Note that this
|
29451
|
+
# field can only be populated if advertise_mode is CUSTOM and overrides the list
|
29452
|
+
# defined for the router (in the "bgp" message). These groups are advertised in
|
29453
|
+
# addition to any specified prefixes. Leave this field blank to advertise no
|
29454
|
+
# custom groups.
|
29366
29455
|
# Corresponds to the JSON property `advertisedGroups`
|
29367
29456
|
# @return [Array<String>]
|
29368
29457
|
attr_accessor :advertised_groups
|
@@ -29442,6 +29531,14 @@ module Google
|
|
29442
29531
|
# @return [String]
|
29443
29532
|
attr_accessor :peer_ip_address
|
29444
29533
|
|
29534
|
+
# URI of the VM instance that is used as third-party router appliances such as
|
29535
|
+
# Next Gen Firewalls, Virtual Routers, or Router Appliances. The VM instance
|
29536
|
+
# must be located in zones contained in the same region as this Cloud Router.
|
29537
|
+
# The VM instance is the peer side of the BGP session.
|
29538
|
+
# Corresponds to the JSON property `routerApplianceInstance`
|
29539
|
+
# @return [String]
|
29540
|
+
attr_accessor :router_appliance_instance
|
29541
|
+
|
29445
29542
|
def initialize(**args)
|
29446
29543
|
update!(**args)
|
29447
29544
|
end
|
@@ -29460,6 +29557,7 @@ module Google
|
|
29460
29557
|
@name = args[:name] if args.key?(:name)
|
29461
29558
|
@peer_asn = args[:peer_asn] if args.key?(:peer_asn)
|
29462
29559
|
@peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
|
29560
|
+
@router_appliance_instance = args[:router_appliance_instance] if args.key?(:router_appliance_instance)
|
29463
29561
|
end
|
29464
29562
|
end
|
29465
29563
|
|
@@ -29567,6 +29665,35 @@ module Google
|
|
29567
29665
|
# @return [String]
|
29568
29666
|
attr_accessor :name
|
29569
29667
|
|
29668
|
+
# The regional private internal IP address that is used to establish BGP
|
29669
|
+
# sessions to a VM instance acting as a third-party Router Appliance, such as a
|
29670
|
+
# Next Gen Firewall, a Virtual Router, or an SD-WAN VM.
|
29671
|
+
# Corresponds to the JSON property `privateIpAddress`
|
29672
|
+
# @return [String]
|
29673
|
+
attr_accessor :private_ip_address
|
29674
|
+
|
29675
|
+
# Name of the interface that will be redundant with the current interface you
|
29676
|
+
# are creating. The redundantInterface must belong to the same Cloud Router as
|
29677
|
+
# the interface here. To establish the BGP session to a Router Appliance VM, you
|
29678
|
+
# must create two BGP peers. The two BGP peers must be attached to two separate
|
29679
|
+
# interfaces that are redundant with each other. The redundant_interface must be
|
29680
|
+
# 1-63 characters long, and comply with RFC1035. Specifically, the
|
29681
|
+
# redundant_interface must be 1-63 characters long and match the regular
|
29682
|
+
# expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must
|
29683
|
+
# be a lowercase letter, and all following characters must be a dash, lowercase
|
29684
|
+
# letter, or digit, except the last character, which cannot be a dash.
|
29685
|
+
# Corresponds to the JSON property `redundantInterface`
|
29686
|
+
# @return [String]
|
29687
|
+
attr_accessor :redundant_interface
|
29688
|
+
|
29689
|
+
# The URL of the subnetwork resource that this interface belongs to, which must
|
29690
|
+
# be in the same region as the Cloud Router. When you establish a BGP session to
|
29691
|
+
# a VM instance using this interface, the VM instance must belong to the same
|
29692
|
+
# subnetwork as the subnetwork specified here.
|
29693
|
+
# Corresponds to the JSON property `subnetwork`
|
29694
|
+
# @return [String]
|
29695
|
+
attr_accessor :subnetwork
|
29696
|
+
|
29570
29697
|
def initialize(**args)
|
29571
29698
|
update!(**args)
|
29572
29699
|
end
|
@@ -29578,6 +29705,9 @@ module Google
|
|
29578
29705
|
@linked_vpn_tunnel = args[:linked_vpn_tunnel] if args.key?(:linked_vpn_tunnel)
|
29579
29706
|
@management_type = args[:management_type] if args.key?(:management_type)
|
29580
29707
|
@name = args[:name] if args.key?(:name)
|
29708
|
+
@private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
|
29709
|
+
@redundant_interface = args[:redundant_interface] if args.key?(:redundant_interface)
|
29710
|
+
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
29581
29711
|
end
|
29582
29712
|
end
|
29583
29713
|
|
@@ -29968,6 +30098,13 @@ module Google
|
|
29968
30098
|
# @return [String]
|
29969
30099
|
attr_accessor :peer_ip_address
|
29970
30100
|
|
30101
|
+
# [Output only] URI of the VM instance that is used as third-party router
|
30102
|
+
# appliances such as Next Gen Firewalls, Virtual Routers, or Router Appliances.
|
30103
|
+
# The VM instance is the peer side of the BGP session.
|
30104
|
+
# Corresponds to the JSON property `routerApplianceInstance`
|
30105
|
+
# @return [String]
|
30106
|
+
attr_accessor :router_appliance_instance
|
30107
|
+
|
29971
30108
|
# BGP state as specified in RFC1771.
|
29972
30109
|
# Corresponds to the JSON property `state`
|
29973
30110
|
# @return [String]
|
@@ -30002,6 +30139,7 @@ module Google
|
|
30002
30139
|
@name = args[:name] if args.key?(:name)
|
30003
30140
|
@num_learned_routes = args[:num_learned_routes] if args.key?(:num_learned_routes)
|
30004
30141
|
@peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
|
30142
|
+
@router_appliance_instance = args[:router_appliance_instance] if args.key?(:router_appliance_instance)
|
30005
30143
|
@state = args[:state] if args.key?(:state)
|
30006
30144
|
@status = args[:status] if args.key?(:status)
|
30007
30145
|
@uptime = args[:uptime] if args.key?(:uptime)
|
@@ -30495,7 +30633,7 @@ module Google
|
|
30495
30633
|
end
|
30496
30634
|
end
|
30497
30635
|
|
30498
|
-
# Sets the scheduling options for an Instance. NextID:
|
30636
|
+
# Sets the scheduling options for an Instance. NextID: 20
|
30499
30637
|
class Scheduling
|
30500
30638
|
include Google::Apis::Core::Hashable
|
30501
30639
|
|
@@ -31400,7 +31538,7 @@ module Google
|
|
31400
31538
|
# A service attachment represents a service that a producer has exposed. It
|
31401
31539
|
# encapsulates the load balancer which fronts the service runs and a list of NAT
|
31402
31540
|
# IP ranges that the producers uses to represent the consumers connecting to the
|
31403
|
-
# service. next tag =
|
31541
|
+
# service. next tag = 17
|
31404
31542
|
class ServiceAttachment
|
31405
31543
|
include Google::Apis::Core::Hashable
|
31406
31544
|
|
@@ -32577,7 +32715,7 @@ module Google
|
|
32577
32715
|
# @return [String]
|
32578
32716
|
attr_accessor :post_key_revocation_action_type
|
32579
32717
|
|
32580
|
-
# Sets the scheduling options for an Instance. NextID:
|
32718
|
+
# Sets the scheduling options for an Instance. NextID: 20
|
32581
32719
|
# Corresponds to the JSON property `scheduling`
|
32582
32720
|
# @return [Google::Apis::ComputeBeta::Scheduling]
|
32583
32721
|
attr_accessor :scheduling
|
@@ -39279,6 +39417,14 @@ module Google
|
|
39279
39417
|
# @return [Fixnum]
|
39280
39418
|
attr_accessor :id
|
39281
39419
|
|
39420
|
+
# URL of the interconnect attachment resource. When the value of this field is
|
39421
|
+
# present, the VPN Gateway will be used for IPsec-encrypted Cloud Interconnect;
|
39422
|
+
# all Egress or Ingress traffic for this VPN Gateway interface will go through
|
39423
|
+
# the specified interconnect attachment resource.
|
39424
|
+
# Corresponds to the JSON property `interconnectAttachment`
|
39425
|
+
# @return [String]
|
39426
|
+
attr_accessor :interconnect_attachment
|
39427
|
+
|
39282
39428
|
# [Output Only] The external IP address for this VPN gateway interface.
|
39283
39429
|
# Corresponds to the JSON property `ipAddress`
|
39284
39430
|
# @return [String]
|
@@ -39291,6 +39437,7 @@ module Google
|
|
39291
39437
|
# Update properties of this object
|
39292
39438
|
def update!(**args)
|
39293
39439
|
@id = args[:id] if args.key?(:id)
|
39440
|
+
@interconnect_attachment = args[:interconnect_attachment] if args.key?(:interconnect_attachment)
|
39294
39441
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
39295
39442
|
end
|
39296
39443
|
end
|