google-apis-compute_beta 0.132.0 → 0.133.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/classes.rb +564 -36
- data/lib/google/apis/compute_beta/gem_version.rb +2 -2
- data/lib/google/apis/compute_beta/representations.rb +198 -1
- data/lib/google/apis/compute_beta/service.rb +9129 -8344
- metadata +2 -2
|
@@ -7130,6 +7130,11 @@ module Google
|
|
|
7130
7130
|
class BulkInsertDiskResource
|
|
7131
7131
|
include Google::Apis::Core::Hashable
|
|
7132
7132
|
|
|
7133
|
+
# The parameters for the instant snapshot group.
|
|
7134
|
+
# Corresponds to the JSON property `instantSnapshotGroupParameters`
|
|
7135
|
+
# @return [Google::Apis::ComputeBeta::InstantSnapshotGroupParameters]
|
|
7136
|
+
attr_accessor :instant_snapshot_group_parameters
|
|
7137
|
+
|
|
7133
7138
|
# The URL of the DiskConsistencyGroupPolicy for the group of disks to clone.
|
|
7134
7139
|
# This may be a full or partial URL, such as:
|
|
7135
7140
|
#
|
|
@@ -7153,6 +7158,7 @@ module Google
|
|
|
7153
7158
|
|
|
7154
7159
|
# Update properties of this object
|
|
7155
7160
|
def update!(**args)
|
|
7161
|
+
@instant_snapshot_group_parameters = args[:instant_snapshot_group_parameters] if args.key?(:instant_snapshot_group_parameters)
|
|
7156
7162
|
@source_consistency_group_policy = args[:source_consistency_group_policy] if args.key?(:source_consistency_group_policy)
|
|
7157
7163
|
end
|
|
7158
7164
|
end
|
|
@@ -11774,6 +11780,13 @@ module Google
|
|
|
11774
11780
|
# @return [String]
|
|
11775
11781
|
attr_accessor :name
|
|
11776
11782
|
|
|
11783
|
+
# Input only. [Input Only] Additional params passed with the request, but not
|
|
11784
|
+
# persisted
|
|
11785
|
+
# as part of resource payload.
|
|
11786
|
+
# Corresponds to the JSON property `params`
|
|
11787
|
+
# @return [Google::Apis::ComputeBeta::ExternalVpnGatewayParams]
|
|
11788
|
+
attr_accessor :params
|
|
11789
|
+
|
|
11777
11790
|
# Indicates the user-supplied redundancy type of this external VPN gateway.
|
|
11778
11791
|
# Corresponds to the JSON property `redundancyType`
|
|
11779
11792
|
# @return [String]
|
|
@@ -11798,6 +11811,7 @@ module Google
|
|
|
11798
11811
|
@label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
|
|
11799
11812
|
@labels = args[:labels] if args.key?(:labels)
|
|
11800
11813
|
@name = args[:name] if args.key?(:name)
|
|
11814
|
+
@params = args[:params] if args.key?(:params)
|
|
11801
11815
|
@redundancy_type = args[:redundancy_type] if args.key?(:redundancy_type)
|
|
11802
11816
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
11803
11817
|
end
|
|
@@ -11979,6 +11993,38 @@ module Google
|
|
|
11979
11993
|
end
|
|
11980
11994
|
end
|
|
11981
11995
|
|
|
11996
|
+
#
|
|
11997
|
+
class ExternalVpnGatewayParams
|
|
11998
|
+
include Google::Apis::Core::Hashable
|
|
11999
|
+
|
|
12000
|
+
# Tag keys/values directly bound to this resource.
|
|
12001
|
+
# Tag keys and values have the same definition as resource
|
|
12002
|
+
# manager tags. The field is allowed for INSERT
|
|
12003
|
+
# only. The keys/values to set on the resource should be specified in
|
|
12004
|
+
# either ID ` : ` or Namespaced format
|
|
12005
|
+
# ` : `.
|
|
12006
|
+
# For example the following are valid inputs:
|
|
12007
|
+
# * `"tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/456"`
|
|
12008
|
+
# * `"123/environment" : "production", "345/abc" : "xyz"`
|
|
12009
|
+
# Note:
|
|
12010
|
+
# * Invalid combinations of ID & namespaced format is not supported. For
|
|
12011
|
+
# instance: `"123/environment" : "tagValues/444"` is invalid.
|
|
12012
|
+
# * Inconsistent format is not supported. For instance:
|
|
12013
|
+
# `"tagKeys/333" : "tagValues/444", "123/env" : "prod"` is invalid.
|
|
12014
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
|
12015
|
+
# @return [Hash<String,String>]
|
|
12016
|
+
attr_accessor :resource_manager_tags
|
|
12017
|
+
|
|
12018
|
+
def initialize(**args)
|
|
12019
|
+
update!(**args)
|
|
12020
|
+
end
|
|
12021
|
+
|
|
12022
|
+
# Update properties of this object
|
|
12023
|
+
def update!(**args)
|
|
12024
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
12025
|
+
end
|
|
12026
|
+
end
|
|
12027
|
+
|
|
11982
12028
|
#
|
|
11983
12029
|
class FileContentBuffer
|
|
11984
12030
|
include Google::Apis::Core::Hashable
|
|
@@ -13400,9 +13446,7 @@ module Google
|
|
|
13400
13446
|
end
|
|
13401
13447
|
end
|
|
13402
13448
|
|
|
13403
|
-
#
|
|
13404
|
-
# flexibility: (1) a flexible start time, (2) a flexible end time, (3) a
|
|
13405
|
-
# flexible duration.
|
|
13449
|
+
# Specifies a flexible time range with flexible start time and duration.
|
|
13406
13450
|
# It is possible to specify a contradictory time range that cannot be matched
|
|
13407
13451
|
# by any Interval. This causes a validation error.
|
|
13408
13452
|
class FlexibleTimeRange
|
|
@@ -13557,18 +13601,6 @@ module Google
|
|
|
13557
13601
|
attr_accessor :allow_psc_global_access
|
|
13558
13602
|
alias_method :allow_psc_global_access?, :allow_psc_global_access
|
|
13559
13603
|
|
|
13560
|
-
# This is used in PSC consumer ForwardingRule to control whether the producer
|
|
13561
|
-
# is allowed to inject packets into the consumer's network. If set to true,
|
|
13562
|
-
# the target service attachment must have tunneling enabled and
|
|
13563
|
-
# TunnelingConfig.RoutingMode set to PACKET_INJECTION
|
|
13564
|
-
# Non-PSC forwarding rules should not use this field.
|
|
13565
|
-
# This field was never released to any customers and is deprecated and
|
|
13566
|
-
# will be removed in the future.
|
|
13567
|
-
# Corresponds to the JSON property `allowPscPacketInjection`
|
|
13568
|
-
# @return [Boolean]
|
|
13569
|
-
attr_accessor :allow_psc_packet_injection
|
|
13570
|
-
alias_method :allow_psc_packet_injection?, :allow_psc_packet_injection
|
|
13571
|
-
|
|
13572
13604
|
# Identifies the backend service to which the forwarding rule sends traffic.
|
|
13573
13605
|
# Required for internal and external passthrough Network Load Balancers;
|
|
13574
13606
|
# must be omitted for all other load balancer types.
|
|
@@ -13942,7 +13974,6 @@ module Google
|
|
|
13942
13974
|
@all_ports = args[:all_ports] if args.key?(:all_ports)
|
|
13943
13975
|
@allow_global_access = args[:allow_global_access] if args.key?(:allow_global_access)
|
|
13944
13976
|
@allow_psc_global_access = args[:allow_psc_global_access] if args.key?(:allow_psc_global_access)
|
|
13945
|
-
@allow_psc_packet_injection = args[:allow_psc_packet_injection] if args.key?(:allow_psc_packet_injection)
|
|
13946
13977
|
@backend_service = args[:backend_service] if args.key?(:backend_service)
|
|
13947
13978
|
@base_forwarding_rule = args[:base_forwarding_rule] if args.key?(:base_forwarding_rule)
|
|
13948
13979
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
@@ -15389,9 +15420,7 @@ module Google
|
|
|
15389
15420
|
# @return [Google::Apis::ComputeBeta::FutureResourcesSpecTargetResources]
|
|
15390
15421
|
attr_accessor :target_resources
|
|
15391
15422
|
|
|
15392
|
-
#
|
|
15393
|
-
# flexibility: (1) a flexible start time, (2) a flexible end time, (3) a
|
|
15394
|
-
# flexible duration.
|
|
15423
|
+
# Specifies a flexible time range with flexible start time and duration.
|
|
15395
15424
|
# It is possible to specify a contradictory time range that cannot be matched
|
|
15396
15425
|
# by any Interval. This causes a validation error.
|
|
15397
15426
|
# Corresponds to the JSON property `timeRangeSpec`
|
|
@@ -27193,6 +27222,23 @@ module Google
|
|
|
27193
27222
|
# @return [String]
|
|
27194
27223
|
attr_accessor :source_disk_id
|
|
27195
27224
|
|
|
27225
|
+
# Output only. [Output Only] URL of the source instant snapshot this instant
|
|
27226
|
+
# snapshot is
|
|
27227
|
+
# part of. Note that the source instant snapshot group must be in the same
|
|
27228
|
+
# zone/region as the instant snapshot to be created. This can be a full or
|
|
27229
|
+
# valid partial URL.
|
|
27230
|
+
# Corresponds to the JSON property `sourceInstantSnapshotGroup`
|
|
27231
|
+
# @return [String]
|
|
27232
|
+
attr_accessor :source_instant_snapshot_group
|
|
27233
|
+
|
|
27234
|
+
# Output only. [Output Only] The ID value of the source instant snapshot group
|
|
27235
|
+
# this
|
|
27236
|
+
# InstantSnapshot is part of. This value may be used to determine whether the
|
|
27237
|
+
# InstantSnapshot was created as part of an InstantSnapshotGroup creation.
|
|
27238
|
+
# Corresponds to the JSON property `sourceInstantSnapshotGroupId`
|
|
27239
|
+
# @return [String]
|
|
27240
|
+
attr_accessor :source_instant_snapshot_group_id
|
|
27241
|
+
|
|
27196
27242
|
# Output only. [Output Only] The status of the instantSnapshot. This can
|
|
27197
27243
|
# beCREATING, DELETING, FAILED, orREADY.
|
|
27198
27244
|
# Corresponds to the JSON property `status`
|
|
@@ -27229,6 +27275,8 @@ module Google
|
|
|
27229
27275
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
27230
27276
|
@source_disk = args[:source_disk] if args.key?(:source_disk)
|
|
27231
27277
|
@source_disk_id = args[:source_disk_id] if args.key?(:source_disk_id)
|
|
27278
|
+
@source_instant_snapshot_group = args[:source_instant_snapshot_group] if args.key?(:source_instant_snapshot_group)
|
|
27279
|
+
@source_instant_snapshot_group_id = args[:source_instant_snapshot_group_id] if args.key?(:source_instant_snapshot_group_id)
|
|
27232
27280
|
@status = args[:status] if args.key?(:status)
|
|
27233
27281
|
@zone = args[:zone] if args.key?(:zone)
|
|
27234
27282
|
end
|
|
@@ -27366,6 +27414,190 @@ module Google
|
|
|
27366
27414
|
end
|
|
27367
27415
|
end
|
|
27368
27416
|
|
|
27417
|
+
# Represents an InstantSnapshotGroup resource.
|
|
27418
|
+
# An instant snapshot group is a set of instant snapshots that represents a
|
|
27419
|
+
# point in time state of a consistency group.
|
|
27420
|
+
class InstantSnapshotGroup
|
|
27421
|
+
include Google::Apis::Core::Hashable
|
|
27422
|
+
|
|
27423
|
+
# Output only. [Output Only] Creation timestamp inRFC3339
|
|
27424
|
+
# text format.
|
|
27425
|
+
# Corresponds to the JSON property `creationTimestamp`
|
|
27426
|
+
# @return [String]
|
|
27427
|
+
attr_accessor :creation_timestamp
|
|
27428
|
+
|
|
27429
|
+
# Optional. An optional description of this resource. Provide this property when
|
|
27430
|
+
# you
|
|
27431
|
+
# create the resource.
|
|
27432
|
+
# Corresponds to the JSON property `description`
|
|
27433
|
+
# @return [String]
|
|
27434
|
+
attr_accessor :description
|
|
27435
|
+
|
|
27436
|
+
# Output only. [Output Only] The unique identifier for the resource. This
|
|
27437
|
+
# identifier is
|
|
27438
|
+
# defined by the server.
|
|
27439
|
+
# Corresponds to the JSON property `id`
|
|
27440
|
+
# @return [Fixnum]
|
|
27441
|
+
attr_accessor :id
|
|
27442
|
+
|
|
27443
|
+
# Output only. [Output Only] Type of the resource. Alwayscompute#
|
|
27444
|
+
# instantSnapshotGroup for InstantSnapshotGroup
|
|
27445
|
+
# resources.
|
|
27446
|
+
# Corresponds to the JSON property `kind`
|
|
27447
|
+
# @return [String]
|
|
27448
|
+
attr_accessor :kind
|
|
27449
|
+
|
|
27450
|
+
# Identifier. Name of the resource; provided by the client when the resource is
|
|
27451
|
+
# created.
|
|
27452
|
+
# The name must be 1-63 characters long, and comply withRFC1035.
|
|
27453
|
+
# Specifically, the name must be 1-63 characters long and match the regular
|
|
27454
|
+
# expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
27455
|
+
# character must be a lowercase letter, and all following characters must be
|
|
27456
|
+
# a dash, lowercase letter, or digit, except the last character, which cannot
|
|
27457
|
+
# be a dash.
|
|
27458
|
+
# Corresponds to the JSON property `name`
|
|
27459
|
+
# @return [String]
|
|
27460
|
+
attr_accessor :name
|
|
27461
|
+
|
|
27462
|
+
# Output only. [Output Only] URL of the region where the instant snapshot group
|
|
27463
|
+
# resides.
|
|
27464
|
+
# You must specify this field as part of the HTTP request URL. It is
|
|
27465
|
+
# not settable as a field in the request body.
|
|
27466
|
+
# Corresponds to the JSON property `region`
|
|
27467
|
+
# @return [String]
|
|
27468
|
+
attr_accessor :region
|
|
27469
|
+
|
|
27470
|
+
#
|
|
27471
|
+
# Corresponds to the JSON property `resourceStatus`
|
|
27472
|
+
# @return [Google::Apis::ComputeBeta::InstantSnapshotGroupResourceStatus]
|
|
27473
|
+
attr_accessor :resource_status
|
|
27474
|
+
|
|
27475
|
+
# Output only. [Output Only] Server-defined URL for the resource.
|
|
27476
|
+
# Corresponds to the JSON property `selfLink`
|
|
27477
|
+
# @return [String]
|
|
27478
|
+
attr_accessor :self_link
|
|
27479
|
+
|
|
27480
|
+
# Output only. [Output Only] Server-defined URL for this resource's resource id.
|
|
27481
|
+
# Corresponds to the JSON property `selfLinkWithId`
|
|
27482
|
+
# @return [String]
|
|
27483
|
+
attr_accessor :self_link_with_id
|
|
27484
|
+
|
|
27485
|
+
#
|
|
27486
|
+
# Corresponds to the JSON property `sourceConsistencyGroup`
|
|
27487
|
+
# @return [String]
|
|
27488
|
+
attr_accessor :source_consistency_group
|
|
27489
|
+
|
|
27490
|
+
# Output only. [Output Only]
|
|
27491
|
+
# Corresponds to the JSON property `status`
|
|
27492
|
+
# @return [String]
|
|
27493
|
+
attr_accessor :status
|
|
27494
|
+
|
|
27495
|
+
# Output only. [Output Only] URL of the zone where the instant snapshot group
|
|
27496
|
+
# resides.
|
|
27497
|
+
# You must specify this field as part of the HTTP request URL. It is
|
|
27498
|
+
# not settable as a field in the request body.
|
|
27499
|
+
# Corresponds to the JSON property `zone`
|
|
27500
|
+
# @return [String]
|
|
27501
|
+
attr_accessor :zone
|
|
27502
|
+
|
|
27503
|
+
def initialize(**args)
|
|
27504
|
+
update!(**args)
|
|
27505
|
+
end
|
|
27506
|
+
|
|
27507
|
+
# Update properties of this object
|
|
27508
|
+
def update!(**args)
|
|
27509
|
+
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
27510
|
+
@description = args[:description] if args.key?(:description)
|
|
27511
|
+
@id = args[:id] if args.key?(:id)
|
|
27512
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
27513
|
+
@name = args[:name] if args.key?(:name)
|
|
27514
|
+
@region = args[:region] if args.key?(:region)
|
|
27515
|
+
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
|
27516
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
27517
|
+
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
27518
|
+
@source_consistency_group = args[:source_consistency_group] if args.key?(:source_consistency_group)
|
|
27519
|
+
@status = args[:status] if args.key?(:status)
|
|
27520
|
+
@zone = args[:zone] if args.key?(:zone)
|
|
27521
|
+
end
|
|
27522
|
+
end
|
|
27523
|
+
|
|
27524
|
+
#
|
|
27525
|
+
class InstantSnapshotGroupParameters
|
|
27526
|
+
include Google::Apis::Core::Hashable
|
|
27527
|
+
|
|
27528
|
+
# The source instant snapshot group used to create disks. You can provide
|
|
27529
|
+
# this as a partial or full URL to the resource. For example, the following
|
|
27530
|
+
# are valid values:
|
|
27531
|
+
#
|
|
27532
|
+
#
|
|
27533
|
+
# - https://www.googleapis.com/compute/v1/projects/project/zones/zone/
|
|
27534
|
+
# instantSnapshotGroups/instantSnapshotGroup
|
|
27535
|
+
# - projects/project/zones/zone/instantSnapshotGroups/instantSnapshotGroup
|
|
27536
|
+
# - zones/zone/instantSnapshotGroups/instantSnapshotGroup
|
|
27537
|
+
# Corresponds to the JSON property `sourceInstantSnapshotGroup`
|
|
27538
|
+
# @return [String]
|
|
27539
|
+
attr_accessor :source_instant_snapshot_group
|
|
27540
|
+
|
|
27541
|
+
def initialize(**args)
|
|
27542
|
+
update!(**args)
|
|
27543
|
+
end
|
|
27544
|
+
|
|
27545
|
+
# Update properties of this object
|
|
27546
|
+
def update!(**args)
|
|
27547
|
+
@source_instant_snapshot_group = args[:source_instant_snapshot_group] if args.key?(:source_instant_snapshot_group)
|
|
27548
|
+
end
|
|
27549
|
+
end
|
|
27550
|
+
|
|
27551
|
+
#
|
|
27552
|
+
class InstantSnapshotGroupResourceStatus
|
|
27553
|
+
include Google::Apis::Core::Hashable
|
|
27554
|
+
|
|
27555
|
+
# Output only. [Output Only]
|
|
27556
|
+
# Corresponds to the JSON property `consistencyMembershipResolutionTime`
|
|
27557
|
+
# @return [String]
|
|
27558
|
+
attr_accessor :consistency_membership_resolution_time
|
|
27559
|
+
|
|
27560
|
+
# Output only. [Output Only]
|
|
27561
|
+
# Corresponds to the JSON property `sourceInfo`
|
|
27562
|
+
# @return [Google::Apis::ComputeBeta::InstantSnapshotGroupSourceInfo]
|
|
27563
|
+
attr_accessor :source_info
|
|
27564
|
+
|
|
27565
|
+
def initialize(**args)
|
|
27566
|
+
update!(**args)
|
|
27567
|
+
end
|
|
27568
|
+
|
|
27569
|
+
# Update properties of this object
|
|
27570
|
+
def update!(**args)
|
|
27571
|
+
@consistency_membership_resolution_time = args[:consistency_membership_resolution_time] if args.key?(:consistency_membership_resolution_time)
|
|
27572
|
+
@source_info = args[:source_info] if args.key?(:source_info)
|
|
27573
|
+
end
|
|
27574
|
+
end
|
|
27575
|
+
|
|
27576
|
+
#
|
|
27577
|
+
class InstantSnapshotGroupSourceInfo
|
|
27578
|
+
include Google::Apis::Core::Hashable
|
|
27579
|
+
|
|
27580
|
+
#
|
|
27581
|
+
# Corresponds to the JSON property `consistencyGroup`
|
|
27582
|
+
# @return [String]
|
|
27583
|
+
attr_accessor :consistency_group
|
|
27584
|
+
|
|
27585
|
+
#
|
|
27586
|
+
# Corresponds to the JSON property `consistencyGroupId`
|
|
27587
|
+
# @return [String]
|
|
27588
|
+
attr_accessor :consistency_group_id
|
|
27589
|
+
|
|
27590
|
+
def initialize(**args)
|
|
27591
|
+
update!(**args)
|
|
27592
|
+
end
|
|
27593
|
+
|
|
27594
|
+
# Update properties of this object
|
|
27595
|
+
def update!(**args)
|
|
27596
|
+
@consistency_group = args[:consistency_group] if args.key?(:consistency_group)
|
|
27597
|
+
@consistency_group_id = args[:consistency_group_id] if args.key?(:consistency_group_id)
|
|
27598
|
+
end
|
|
27599
|
+
end
|
|
27600
|
+
|
|
27369
27601
|
# Contains a list of InstantSnapshot resources.
|
|
27370
27602
|
class InstantSnapshotList
|
|
27371
27603
|
include Google::Apis::Core::Hashable
|
|
@@ -32665,6 +32897,143 @@ module Google
|
|
|
32665
32897
|
end
|
|
32666
32898
|
end
|
|
32667
32899
|
|
|
32900
|
+
# Contains a list of InstantSnapshotGroup resources.
|
|
32901
|
+
class ListInstantSnapshotGroups
|
|
32902
|
+
include Google::Apis::Core::Hashable
|
|
32903
|
+
|
|
32904
|
+
#
|
|
32905
|
+
# Corresponds to the JSON property `etag`
|
|
32906
|
+
# @return [String]
|
|
32907
|
+
attr_accessor :etag
|
|
32908
|
+
|
|
32909
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
|
32910
|
+
# Corresponds to the JSON property `id`
|
|
32911
|
+
# @return [String]
|
|
32912
|
+
attr_accessor :id
|
|
32913
|
+
|
|
32914
|
+
# A list of InstantSnapshotGroup resources.
|
|
32915
|
+
# Corresponds to the JSON property `items`
|
|
32916
|
+
# @return [Array<Google::Apis::ComputeBeta::InstantSnapshotGroup>]
|
|
32917
|
+
attr_accessor :items
|
|
32918
|
+
|
|
32919
|
+
# Output only. Type of resource.
|
|
32920
|
+
# Corresponds to the JSON property `kind`
|
|
32921
|
+
# @return [String]
|
|
32922
|
+
attr_accessor :kind
|
|
32923
|
+
|
|
32924
|
+
# [Output Only] This token allows you to get the next page of results for
|
|
32925
|
+
# list requests. If the number of results is larger thanmaxResults, use the
|
|
32926
|
+
# nextPageToken as a value for
|
|
32927
|
+
# the query parameter pageToken in the next list request.
|
|
32928
|
+
# Subsequent list requests will have their own nextPageToken to
|
|
32929
|
+
# continue paging through the results.
|
|
32930
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
32931
|
+
# @return [String]
|
|
32932
|
+
attr_accessor :next_page_token
|
|
32933
|
+
|
|
32934
|
+
# Output only. [Output Only] Server-defined URL for this resource.
|
|
32935
|
+
# Corresponds to the JSON property `selfLink`
|
|
32936
|
+
# @return [String]
|
|
32937
|
+
attr_accessor :self_link
|
|
32938
|
+
|
|
32939
|
+
# Output only. [Output Only] Unreachable resources.
|
|
32940
|
+
# end_interface: MixerListResponseWithEtagBuilder
|
|
32941
|
+
# Corresponds to the JSON property `unreachables`
|
|
32942
|
+
# @return [Array<String>]
|
|
32943
|
+
attr_accessor :unreachables
|
|
32944
|
+
|
|
32945
|
+
# [Output Only] Informational warning message.
|
|
32946
|
+
# Corresponds to the JSON property `warning`
|
|
32947
|
+
# @return [Google::Apis::ComputeBeta::ListInstantSnapshotGroups::Warning]
|
|
32948
|
+
attr_accessor :warning
|
|
32949
|
+
|
|
32950
|
+
def initialize(**args)
|
|
32951
|
+
update!(**args)
|
|
32952
|
+
end
|
|
32953
|
+
|
|
32954
|
+
# Update properties of this object
|
|
32955
|
+
def update!(**args)
|
|
32956
|
+
@etag = args[:etag] if args.key?(:etag)
|
|
32957
|
+
@id = args[:id] if args.key?(:id)
|
|
32958
|
+
@items = args[:items] if args.key?(:items)
|
|
32959
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
32960
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
32961
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
32962
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
|
32963
|
+
@warning = args[:warning] if args.key?(:warning)
|
|
32964
|
+
end
|
|
32965
|
+
|
|
32966
|
+
# [Output Only] Informational warning message.
|
|
32967
|
+
class Warning
|
|
32968
|
+
include Google::Apis::Core::Hashable
|
|
32969
|
+
|
|
32970
|
+
# [Output Only] A warning code, if applicable. For example, Compute
|
|
32971
|
+
# Engine returns NO_RESULTS_ON_PAGE if there
|
|
32972
|
+
# are no results in the response.
|
|
32973
|
+
# Corresponds to the JSON property `code`
|
|
32974
|
+
# @return [String]
|
|
32975
|
+
attr_accessor :code
|
|
32976
|
+
|
|
32977
|
+
# [Output Only] Metadata about this warning in key:
|
|
32978
|
+
# value format. For example:
|
|
32979
|
+
# "data": [
|
|
32980
|
+
# `
|
|
32981
|
+
# "key": "scope",
|
|
32982
|
+
# "value": "zones/us-east1-d"
|
|
32983
|
+
# `
|
|
32984
|
+
# Corresponds to the JSON property `data`
|
|
32985
|
+
# @return [Array<Google::Apis::ComputeBeta::ListInstantSnapshotGroups::Warning::Datum>]
|
|
32986
|
+
attr_accessor :data
|
|
32987
|
+
|
|
32988
|
+
# [Output Only] A human-readable description of the warning code.
|
|
32989
|
+
# Corresponds to the JSON property `message`
|
|
32990
|
+
# @return [String]
|
|
32991
|
+
attr_accessor :message
|
|
32992
|
+
|
|
32993
|
+
def initialize(**args)
|
|
32994
|
+
update!(**args)
|
|
32995
|
+
end
|
|
32996
|
+
|
|
32997
|
+
# Update properties of this object
|
|
32998
|
+
def update!(**args)
|
|
32999
|
+
@code = args[:code] if args.key?(:code)
|
|
33000
|
+
@data = args[:data] if args.key?(:data)
|
|
33001
|
+
@message = args[:message] if args.key?(:message)
|
|
33002
|
+
end
|
|
33003
|
+
|
|
33004
|
+
#
|
|
33005
|
+
class Datum
|
|
33006
|
+
include Google::Apis::Core::Hashable
|
|
33007
|
+
|
|
33008
|
+
# [Output Only] A key that provides more detail on the warning being
|
|
33009
|
+
# returned. For example, for warnings where there are no results in a list
|
|
33010
|
+
# request for a particular zone, this key might be scope and
|
|
33011
|
+
# the key value might be the zone name. Other examples might be a key
|
|
33012
|
+
# indicating a deprecated resource and a suggested replacement, or a
|
|
33013
|
+
# warning about invalid network settings (for example, if an instance
|
|
33014
|
+
# attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
33015
|
+
# Corresponds to the JSON property `key`
|
|
33016
|
+
# @return [String]
|
|
33017
|
+
attr_accessor :key
|
|
33018
|
+
|
|
33019
|
+
# [Output Only] A warning data value corresponding to the key.
|
|
33020
|
+
# Corresponds to the JSON property `value`
|
|
33021
|
+
# @return [String]
|
|
33022
|
+
attr_accessor :value
|
|
33023
|
+
|
|
33024
|
+
def initialize(**args)
|
|
33025
|
+
update!(**args)
|
|
33026
|
+
end
|
|
33027
|
+
|
|
33028
|
+
# Update properties of this object
|
|
33029
|
+
def update!(**args)
|
|
33030
|
+
@key = args[:key] if args.key?(:key)
|
|
33031
|
+
@value = args[:value] if args.key?(:value)
|
|
33032
|
+
end
|
|
33033
|
+
end
|
|
33034
|
+
end
|
|
33035
|
+
end
|
|
33036
|
+
|
|
32668
33037
|
#
|
|
32669
33038
|
class LocalDisk
|
|
32670
33039
|
include Google::Apis::Core::Hashable
|
|
@@ -32890,6 +33259,11 @@ module Google
|
|
|
32890
33259
|
# @return [String]
|
|
32891
33260
|
attr_accessor :name
|
|
32892
33261
|
|
|
33262
|
+
# Machine Image parameters
|
|
33263
|
+
# Corresponds to the JSON property `params`
|
|
33264
|
+
# @return [Google::Apis::ComputeBeta::MachineImageParams]
|
|
33265
|
+
attr_accessor :params
|
|
33266
|
+
|
|
32893
33267
|
# Output only. Reserved for future use.
|
|
32894
33268
|
# Corresponds to the JSON property `satisfiesPzi`
|
|
32895
33269
|
# @return [Boolean]
|
|
@@ -32974,6 +33348,7 @@ module Google
|
|
|
32974
33348
|
@labels = args[:labels] if args.key?(:labels)
|
|
32975
33349
|
@machine_image_encryption_key = args[:machine_image_encryption_key] if args.key?(:machine_image_encryption_key)
|
|
32976
33350
|
@name = args[:name] if args.key?(:name)
|
|
33351
|
+
@params = args[:params] if args.key?(:params)
|
|
32977
33352
|
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
|
32978
33353
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
32979
33354
|
@saved_disks = args[:saved_disks] if args.key?(:saved_disks)
|
|
@@ -33112,6 +33487,32 @@ module Google
|
|
|
33112
33487
|
end
|
|
33113
33488
|
end
|
|
33114
33489
|
|
|
33490
|
+
# Machine Image parameters
|
|
33491
|
+
class MachineImageParams
|
|
33492
|
+
include Google::Apis::Core::Hashable
|
|
33493
|
+
|
|
33494
|
+
# Input only. Resource manager tags to be bound to the machine image. Tag keys
|
|
33495
|
+
# and values
|
|
33496
|
+
# have the same definition as resource
|
|
33497
|
+
# manager tags. Keys and values can be either in numeric format,
|
|
33498
|
+
# such as `tagKeys/`tag_key_id`` and `tagValues/`tag_value_id`` or in
|
|
33499
|
+
# namespaced format such as ``org_id|project_id`/`tag_key_short_name`` and
|
|
33500
|
+
# ``tag_value_short_name``. The field is ignored (both PUT &
|
|
33501
|
+
# PATCH) when empty.
|
|
33502
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
|
33503
|
+
# @return [Hash<String,String>]
|
|
33504
|
+
attr_accessor :resource_manager_tags
|
|
33505
|
+
|
|
33506
|
+
def initialize(**args)
|
|
33507
|
+
update!(**args)
|
|
33508
|
+
end
|
|
33509
|
+
|
|
33510
|
+
# Update properties of this object
|
|
33511
|
+
def update!(**args)
|
|
33512
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
33513
|
+
end
|
|
33514
|
+
end
|
|
33515
|
+
|
|
33115
33516
|
# Represents a Machine Type resource.
|
|
33116
33517
|
# You can use specific machine types for your VM instances based on performance
|
|
33117
33518
|
# and pricing requirements. For more information, readMachine Types.
|
|
@@ -37726,10 +38127,7 @@ module Google
|
|
|
37726
38127
|
# @return [String]
|
|
37727
38128
|
attr_accessor :stack_type
|
|
37728
38129
|
|
|
37729
|
-
# Output only. [Output Only] State for the peering
|
|
37730
|
-
# . The
|
|
37731
|
-
# peering is `ACTIVE` when there's a matching configuration in the peer
|
|
37732
|
-
# network.
|
|
38130
|
+
# Output only. [Output Only] State for the peering.
|
|
37733
38131
|
# Corresponds to the JSON property `state`
|
|
37734
38132
|
# @return [String]
|
|
37735
38133
|
attr_accessor :state
|
|
@@ -60915,20 +61313,17 @@ module Google
|
|
|
60915
61313
|
class StoragePoolExapoolProvisionedCapacityGb
|
|
60916
61314
|
include Google::Apis::Core::Hashable
|
|
60917
61315
|
|
|
60918
|
-
#
|
|
60919
|
-
# Exapool
|
|
61316
|
+
# Size, in GiB, of provisioned capacity-optimized capacity for this Exapool
|
|
60920
61317
|
# Corresponds to the JSON property `capacityOptimized`
|
|
60921
61318
|
# @return [Fixnum]
|
|
60922
61319
|
attr_accessor :capacity_optimized
|
|
60923
61320
|
|
|
60924
|
-
#
|
|
60925
|
-
# Exapool
|
|
61321
|
+
# Size, in GiB, of provisioned read-optimized capacity for this Exapool
|
|
60926
61322
|
# Corresponds to the JSON property `readOptimized`
|
|
60927
61323
|
# @return [Fixnum]
|
|
60928
61324
|
attr_accessor :read_optimized
|
|
60929
61325
|
|
|
60930
|
-
#
|
|
60931
|
-
# Exapool
|
|
61326
|
+
# Size, in GiB, of provisioned write-optimized capacity for this Exapool
|
|
60932
61327
|
# Corresponds to the JSON property `writeOptimized`
|
|
60933
61328
|
# @return [Fixnum]
|
|
60934
61329
|
attr_accessor :write_optimized
|
|
@@ -61954,9 +62349,9 @@ module Google
|
|
|
61954
62349
|
class Subnetwork
|
|
61955
62350
|
include Google::Apis::Core::Hashable
|
|
61956
62351
|
|
|
61957
|
-
# Whether this subnetwork's ranges can conflict with existing
|
|
62352
|
+
# Whether this subnetwork's ranges can conflict with existing custom routes.
|
|
61958
62353
|
# Setting this to true allows this subnetwork's primary and secondary ranges
|
|
61959
|
-
# to overlap with (and contain)
|
|
62354
|
+
# to overlap with (and contain) custom routes that have already been
|
|
61960
62355
|
# configured on the corresponding network.
|
|
61961
62356
|
# For example if a static route has range 10.1.0.0/16, a subnet
|
|
61962
62357
|
# range 10.0.0.0/8 could only be created if allow_conflicting_routes=true.
|
|
@@ -61968,7 +62363,6 @@ module Google
|
|
|
61968
62363
|
# Setting this field to true will disable this feature.
|
|
61969
62364
|
# The default value is false and applies to all existing subnetworks and
|
|
61970
62365
|
# automatically created subnetworks.
|
|
61971
|
-
# This field cannot be set to true at resource creation time.
|
|
61972
62366
|
# Corresponds to the JSON property `allowSubnetCidrRoutesOverlap`
|
|
61973
62367
|
# @return [Boolean]
|
|
61974
62368
|
attr_accessor :allow_subnet_cidr_routes_overlap
|
|
@@ -62178,6 +62572,7 @@ module Google
|
|
|
62178
62572
|
# contained in this subnetwork. The primary IP of such VM must belong to the
|
|
62179
62573
|
# primary ipCidrRange of the subnetwork. The alias IPs may belong to either
|
|
62180
62574
|
# primary or secondary ranges. This field can be updated with apatch request.
|
|
62575
|
+
# Supports both IPv4 and IPv6 ranges.
|
|
62181
62576
|
# Corresponds to the JSON property `secondaryIpRanges`
|
|
62182
62577
|
# @return [Array<Google::Apis::ComputeBeta::SubnetworkSecondaryRange>]
|
|
62183
62578
|
attr_accessor :secondary_ip_ranges
|
|
@@ -62631,22 +63026,34 @@ module Google
|
|
|
62631
63026
|
# The range of IP addresses belonging to this subnetwork secondary range.
|
|
62632
63027
|
# Provide this property when you create the subnetwork. Ranges must be
|
|
62633
63028
|
# unique and non-overlapping with all primary and secondary IP ranges
|
|
62634
|
-
# within a network.
|
|
62635
|
-
# listed in theValid
|
|
63029
|
+
# within a network. Both IPv4 and IPv6 ranges are supported. For IPv4,
|
|
63030
|
+
# the range can be any range listed in theValid
|
|
62636
63031
|
# ranges list.
|
|
63032
|
+
# For IPv6:
|
|
63033
|
+
# The range must have a /64 prefix length.
|
|
63034
|
+
# The range must be omitted, for auto-allocation from Google-defined ULA
|
|
63035
|
+
# IPv6 range.
|
|
63036
|
+
# For BYOGUA internal IPv6 secondary range, the range may be specified
|
|
63037
|
+
# along with the `ipCollection` field.
|
|
63038
|
+
# If an `ipCollection` is specified, the requested ip_cidr_range must lie
|
|
63039
|
+
# within the range of the PDP referenced by the `ipCollection` field for
|
|
63040
|
+
# allocation.
|
|
63041
|
+
# If `ipCollection` field is specified, but ip_cidr_range is not,
|
|
63042
|
+
# the range is auto-allocated from the PDP referenced by the `ipCollection`
|
|
63043
|
+
# field.
|
|
62637
63044
|
# Corresponds to the JSON property `ipCidrRange`
|
|
62638
63045
|
# @return [String]
|
|
62639
63046
|
attr_accessor :ip_cidr_range
|
|
62640
63047
|
|
|
62641
63048
|
# The name associated with this subnetwork secondary range, used when adding
|
|
62642
|
-
# an alias IP range to a VM instance.
|
|
63049
|
+
# an alias IP/IPv6 range to a VM instance.
|
|
62643
63050
|
# The name must be 1-63 characters long, and comply withRFC1035.
|
|
62644
63051
|
# The name must be unique within the subnetwork.
|
|
62645
63052
|
# Corresponds to the JSON property `rangeName`
|
|
62646
63053
|
# @return [String]
|
|
62647
63054
|
attr_accessor :range_name
|
|
62648
63055
|
|
|
62649
|
-
# The URL of the reserved internal range.
|
|
63056
|
+
# The URL of the reserved internal range. Only IPv4 is supported.
|
|
62650
63057
|
# Corresponds to the JSON property `reservedInternalRange`
|
|
62651
63058
|
# @return [String]
|
|
62652
63059
|
attr_accessor :reserved_internal_range
|
|
@@ -66546,6 +66953,13 @@ module Google
|
|
|
66546
66953
|
# @return [String]
|
|
66547
66954
|
attr_accessor :network
|
|
66548
66955
|
|
|
66956
|
+
# Input only. [Input Only] Additional params passed with the request, but not
|
|
66957
|
+
# persisted
|
|
66958
|
+
# as part of resource payload.
|
|
66959
|
+
# Corresponds to the JSON property `params`
|
|
66960
|
+
# @return [Google::Apis::ComputeBeta::TargetVpnGatewayParams]
|
|
66961
|
+
attr_accessor :params
|
|
66962
|
+
|
|
66549
66963
|
# [Output Only] URL of the region where the target VPN gateway resides.
|
|
66550
66964
|
# You must specify this field as part of the HTTP request URL. It is
|
|
66551
66965
|
# not settable as a field in the request body.
|
|
@@ -66586,6 +67000,7 @@ module Google
|
|
|
66586
67000
|
@labels = args[:labels] if args.key?(:labels)
|
|
66587
67001
|
@name = args[:name] if args.key?(:name)
|
|
66588
67002
|
@network = args[:network] if args.key?(:network)
|
|
67003
|
+
@params = args[:params] if args.key?(:params)
|
|
66589
67004
|
@region = args[:region] if args.key?(:region)
|
|
66590
67005
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
66591
67006
|
@status = args[:status] if args.key?(:status)
|
|
@@ -66849,6 +67264,38 @@ module Google
|
|
|
66849
67264
|
end
|
|
66850
67265
|
end
|
|
66851
67266
|
|
|
67267
|
+
#
|
|
67268
|
+
class TargetVpnGatewayParams
|
|
67269
|
+
include Google::Apis::Core::Hashable
|
|
67270
|
+
|
|
67271
|
+
# Tag keys/values directly bound to this resource.
|
|
67272
|
+
# Tag keys and values have the same definition as resource
|
|
67273
|
+
# manager tags. The field is allowed for INSERT
|
|
67274
|
+
# only. The keys/values to set on the resource should be specified in
|
|
67275
|
+
# either ID ` : ` or Namespaced format
|
|
67276
|
+
# ` : `.
|
|
67277
|
+
# For example the following are valid inputs:
|
|
67278
|
+
# * `"tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/456"`
|
|
67279
|
+
# * `"123/environment" : "production", "345/abc" : "xyz"`
|
|
67280
|
+
# Note:
|
|
67281
|
+
# * Invalid combinations of ID & namespaced format is not supported. For
|
|
67282
|
+
# instance: `"123/environment" : "tagValues/444"` is invalid.
|
|
67283
|
+
# * Inconsistent format is not supported. For instance:
|
|
67284
|
+
# `"tagKeys/333" : "tagValues/444", "123/env" : "prod"` is invalid.
|
|
67285
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
|
67286
|
+
# @return [Hash<String,String>]
|
|
67287
|
+
attr_accessor :resource_manager_tags
|
|
67288
|
+
|
|
67289
|
+
def initialize(**args)
|
|
67290
|
+
update!(**args)
|
|
67291
|
+
end
|
|
67292
|
+
|
|
67293
|
+
# Update properties of this object
|
|
67294
|
+
def update!(**args)
|
|
67295
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
67296
|
+
end
|
|
67297
|
+
end
|
|
67298
|
+
|
|
66852
67299
|
#
|
|
66853
67300
|
class TargetVpnGatewaysScopedList
|
|
66854
67301
|
include Google::Apis::Core::Hashable
|
|
@@ -68075,6 +68522,7 @@ module Google
|
|
|
68075
68522
|
include Google::Apis::Core::Hashable
|
|
68076
68523
|
|
|
68077
68524
|
# The range of IP addresses belonging to this subnetwork secondary range.
|
|
68525
|
+
# Can be Ipv4 or Ipv6 range.
|
|
68078
68526
|
# Corresponds to the JSON property `ipCidrRange`
|
|
68079
68527
|
# @return [String]
|
|
68080
68528
|
attr_accessor :ip_cidr_range
|
|
@@ -69212,6 +69660,13 @@ module Google
|
|
|
69212
69660
|
# @return [String]
|
|
69213
69661
|
attr_accessor :network
|
|
69214
69662
|
|
|
69663
|
+
# Input only. [Input Only] Additional params passed with the request, but not
|
|
69664
|
+
# persisted
|
|
69665
|
+
# as part of resource payload.
|
|
69666
|
+
# Corresponds to the JSON property `params`
|
|
69667
|
+
# @return [Google::Apis::ComputeBeta::VpnGatewayParams]
|
|
69668
|
+
attr_accessor :params
|
|
69669
|
+
|
|
69215
69670
|
# Output only. [Output Only] URL of the region where the VPN gateway resides.
|
|
69216
69671
|
# Corresponds to the JSON property `region`
|
|
69217
69672
|
# @return [String]
|
|
@@ -69250,6 +69705,7 @@ module Google
|
|
|
69250
69705
|
@labels = args[:labels] if args.key?(:labels)
|
|
69251
69706
|
@name = args[:name] if args.key?(:name)
|
|
69252
69707
|
@network = args[:network] if args.key?(:network)
|
|
69708
|
+
@params = args[:params] if args.key?(:params)
|
|
69253
69709
|
@region = args[:region] if args.key?(:region)
|
|
69254
69710
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
69255
69711
|
@stack_type = args[:stack_type] if args.key?(:stack_type)
|
|
@@ -69513,6 +69969,38 @@ module Google
|
|
|
69513
69969
|
end
|
|
69514
69970
|
end
|
|
69515
69971
|
|
|
69972
|
+
#
|
|
69973
|
+
class VpnGatewayParams
|
|
69974
|
+
include Google::Apis::Core::Hashable
|
|
69975
|
+
|
|
69976
|
+
# Tag keys/values directly bound to this resource.
|
|
69977
|
+
# Tag keys and values have the same definition as resource
|
|
69978
|
+
# manager tags. The field is allowed for INSERT
|
|
69979
|
+
# only. The keys/values to set on the resource should be specified in
|
|
69980
|
+
# either ID ` : ` or Namespaced format
|
|
69981
|
+
# ` : `.
|
|
69982
|
+
# For example the following are valid inputs:
|
|
69983
|
+
# * `"tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/456"`
|
|
69984
|
+
# * `"123/environment" : "production", "345/abc" : "xyz"`
|
|
69985
|
+
# Note:
|
|
69986
|
+
# * Invalid combinations of ID & namespaced format is not supported. For
|
|
69987
|
+
# instance: `"123/environment" : "tagValues/444"` is invalid.
|
|
69988
|
+
# * Inconsistent format is not supported. For instance:
|
|
69989
|
+
# `"tagKeys/333" : "tagValues/444", "123/env" : "prod"` is invalid.
|
|
69990
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
|
69991
|
+
# @return [Hash<String,String>]
|
|
69992
|
+
attr_accessor :resource_manager_tags
|
|
69993
|
+
|
|
69994
|
+
def initialize(**args)
|
|
69995
|
+
update!(**args)
|
|
69996
|
+
end
|
|
69997
|
+
|
|
69998
|
+
# Update properties of this object
|
|
69999
|
+
def update!(**args)
|
|
70000
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
70001
|
+
end
|
|
70002
|
+
end
|
|
70003
|
+
|
|
69516
70004
|
#
|
|
69517
70005
|
class VpnGatewayStatus
|
|
69518
70006
|
include Google::Apis::Core::Hashable
|
|
@@ -69909,6 +70397,13 @@ module Google
|
|
|
69909
70397
|
# @return [String]
|
|
69910
70398
|
attr_accessor :name
|
|
69911
70399
|
|
|
70400
|
+
# Input only. [Input Only] Additional params passed with the request, but not
|
|
70401
|
+
# persisted
|
|
70402
|
+
# as part of resource payload.
|
|
70403
|
+
# Corresponds to the JSON property `params`
|
|
70404
|
+
# @return [Google::Apis::ComputeBeta::VpnTunnelParams]
|
|
70405
|
+
attr_accessor :params
|
|
70406
|
+
|
|
69912
70407
|
# URL of the peer side external VPN gateway to which this VPN tunnel is
|
|
69913
70408
|
# connected.
|
|
69914
70409
|
# Provided by the client when the VPN tunnel is created.
|
|
@@ -70054,6 +70549,7 @@ module Google
|
|
|
70054
70549
|
@labels = args[:labels] if args.key?(:labels)
|
|
70055
70550
|
@local_traffic_selector = args[:local_traffic_selector] if args.key?(:local_traffic_selector)
|
|
70056
70551
|
@name = args[:name] if args.key?(:name)
|
|
70552
|
+
@params = args[:params] if args.key?(:params)
|
|
70057
70553
|
@peer_external_gateway = args[:peer_external_gateway] if args.key?(:peer_external_gateway)
|
|
70058
70554
|
@peer_external_gateway_interface = args[:peer_external_gateway_interface] if args.key?(:peer_external_gateway_interface)
|
|
70059
70555
|
@peer_gcp_gateway = args[:peer_gcp_gateway] if args.key?(:peer_gcp_gateway)
|
|
@@ -70352,6 +70848,38 @@ module Google
|
|
|
70352
70848
|
end
|
|
70353
70849
|
end
|
|
70354
70850
|
|
|
70851
|
+
#
|
|
70852
|
+
class VpnTunnelParams
|
|
70853
|
+
include Google::Apis::Core::Hashable
|
|
70854
|
+
|
|
70855
|
+
# Tag keys/values directly bound to this resource.
|
|
70856
|
+
# Tag keys and values have the same definition as resource
|
|
70857
|
+
# manager tags. The field is allowed for INSERT
|
|
70858
|
+
# only. The keys/values to set on the resource should be specified in
|
|
70859
|
+
# either ID ` : ` or Namespaced format
|
|
70860
|
+
# ` : `.
|
|
70861
|
+
# For example the following are valid inputs:
|
|
70862
|
+
# * `"tagKeys/333" : "tagValues/444", "tagKeys/123" : "tagValues/456"`
|
|
70863
|
+
# * `"123/environment" : "production", "345/abc" : "xyz"`
|
|
70864
|
+
# Note:
|
|
70865
|
+
# * Invalid combinations of ID & namespaced format is not supported. For
|
|
70866
|
+
# instance: `"123/environment" : "tagValues/444"` is invalid.
|
|
70867
|
+
# * Inconsistent format is not supported. For instance:
|
|
70868
|
+
# `"tagKeys/333" : "tagValues/444", "123/env" : "prod"` is invalid.
|
|
70869
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
|
70870
|
+
# @return [Hash<String,String>]
|
|
70871
|
+
attr_accessor :resource_manager_tags
|
|
70872
|
+
|
|
70873
|
+
def initialize(**args)
|
|
70874
|
+
update!(**args)
|
|
70875
|
+
end
|
|
70876
|
+
|
|
70877
|
+
# Update properties of this object
|
|
70878
|
+
def update!(**args)
|
|
70879
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
|
70880
|
+
end
|
|
70881
|
+
end
|
|
70882
|
+
|
|
70355
70883
|
#
|
|
70356
70884
|
class VpnTunnelPhase1Algorithms
|
|
70357
70885
|
include Google::Apis::Core::Hashable
|