google-apis-compute_v1 0.149.0 → 0.150.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_v1/classes.rb +363 -18
- data/lib/google/apis/compute_v1/gem_version.rb +2 -2
- data/lib/google/apis/compute_v1/representations.rb +124 -0
- data/lib/google/apis/compute_v1/service.rb +378 -11
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '079c413030ab5a9dedc531bdbefd61bc408607e32b65d86e25656dcb122304d0'
|
|
4
|
+
data.tar.gz: afd7d368d9fb7add1331cc72eea91f051c1a8da575779886f0dc9954d1d4bc9f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db2d128ffeb5897bff14ae4d6318e738a9b0d9e9a533570e6ecb1960db2c93308d7ef40b6cb8cff54ad22285002198bbd4b6668cf228a868230104254b5e3f90
|
|
7
|
+
data.tar.gz: 22ba7f6646caa57e7fb4a3ea9067c7dd85a3b610015d1cc91a58f57b06da34bc64694d92a689ba498712bcabd6c1968cccc2dc1b0c22e5a109f5c03a903e9a9e
|
data/CHANGELOG.md
CHANGED
|
@@ -750,21 +750,30 @@ module Google
|
|
|
750
750
|
# @return [Fixnum]
|
|
751
751
|
attr_accessor :id
|
|
752
752
|
|
|
753
|
-
# Reference to the source of
|
|
754
|
-
#
|
|
755
|
-
# The PDP must support enhanced IPv4 allocations.
|
|
756
|
-
# Use one of the following formats to specify a PDP when reserving an
|
|
757
|
-
# external IPv4 address using BYOIP.
|
|
753
|
+
# Reference to the source of IP addresses.
|
|
754
|
+
# It supports the following cases:
|
|
758
755
|
#
|
|
759
756
|
# -
|
|
760
|
-
#
|
|
761
|
-
#
|
|
757
|
+
# Case 1: PublicDelegatedPrefix (PDP) for BYOIP external IPv4
|
|
758
|
+
# addresses. The PDP must support enhanced IPv4 allocations.
|
|
762
759
|
# -
|
|
763
|
-
#
|
|
764
|
-
#
|
|
760
|
+
# Case 2: Internal Range for global internal addresses.
|
|
761
|
+
# Use one of the following formats to specify the resource:
|
|
762
|
+
# For a Public Delegated Prefix:
|
|
765
763
|
#
|
|
764
|
+
# -
|
|
765
|
+
# Full resource URL:https://www.googleapis.com/compute/v1/projects/projectId/
|
|
766
|
+
# regions/region/publicDelegatedPrefixes/pdp
|
|
767
|
+
# - Partial URL:
|
|
766
768
|
# - projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
|
|
767
769
|
# - regions/region/publicDelegatedPrefixes/pdp-name
|
|
770
|
+
#
|
|
771
|
+
# For an Internal Range:
|
|
772
|
+
#
|
|
773
|
+
# - Full URL:https://networkconnectivity.googleapis.com/v1/projects/project/
|
|
774
|
+
# locations/global/internalRanges/internal-range
|
|
775
|
+
# - Partial URL:projects/project/locations/global/internalRanges/internal-
|
|
776
|
+
# range
|
|
768
777
|
# Corresponds to the JSON property `ipCollection`
|
|
769
778
|
# @return [String]
|
|
770
779
|
attr_accessor :ip_collection
|
|
@@ -13115,7 +13124,9 @@ module Google
|
|
|
13115
13124
|
|
|
13116
13125
|
# The Action to perform when the client connection triggers the rule.
|
|
13117
13126
|
# Valid actions for firewall rules are: "allow", "deny",
|
|
13118
|
-
# "apply_security_profile_group" and "goto_next"
|
|
13127
|
+
# "apply_security_profile_group" and "goto_next" (
|
|
13128
|
+
# "apply_security_profile_group" can be specified only for global
|
|
13129
|
+
# network firewall policies or hierarchical firewall policies).
|
|
13119
13130
|
# Valid actions for packet mirroring rules are: "mirror", "do_not_mirror"
|
|
13120
13131
|
# and "goto_next".
|
|
13121
13132
|
# Corresponds to the JSON property `action`
|
|
@@ -13184,12 +13195,13 @@ module Google
|
|
|
13184
13195
|
# @return [Fixnum]
|
|
13185
13196
|
attr_accessor :rule_tuple_count
|
|
13186
13197
|
|
|
13187
|
-
# A fully-qualified URL of a
|
|
13198
|
+
# A fully-qualified URL of a SecurityProfileGroup resource instance.
|
|
13188
13199
|
# Example:
|
|
13189
13200
|
# https://networksecurity.googleapis.com/v1/projects/`project`/locations/`
|
|
13190
13201
|
# location`/securityProfileGroups/my-security-profile-group
|
|
13191
13202
|
# Must be specified if action is one of 'apply_security_profile_group' or
|
|
13192
|
-
# 'mirror'. Cannot be specified for other actions.
|
|
13203
|
+
# 'mirror'. Cannot be specified for other actions. Can be specified only
|
|
13204
|
+
# for global network firewall policies or hierarchical firewall policies.
|
|
13193
13205
|
# Corresponds to the JSON property `securityProfileGroup`
|
|
13194
13206
|
# @return [String]
|
|
13195
13207
|
attr_accessor :security_profile_group
|
|
@@ -21615,6 +21627,12 @@ module Google
|
|
|
21615
21627
|
# @return [String]
|
|
21616
21628
|
attr_accessor :last_suspended_timestamp
|
|
21617
21629
|
|
|
21630
|
+
# Specifies which method should be used for encrypting the
|
|
21631
|
+
# Local SSDs attached to the VM.
|
|
21632
|
+
# Corresponds to the JSON property `localSsdEncryptionMode`
|
|
21633
|
+
# @return [String]
|
|
21634
|
+
attr_accessor :local_ssd_encryption_mode
|
|
21635
|
+
|
|
21618
21636
|
# Full or partial URL of the machine type resource to use for this instance,
|
|
21619
21637
|
# in the format:zones/zone/machineTypes/machine-type. This is provided by the
|
|
21620
21638
|
# client
|
|
@@ -21825,6 +21843,7 @@ module Google
|
|
|
21825
21843
|
@last_start_timestamp = args[:last_start_timestamp] if args.key?(:last_start_timestamp)
|
|
21826
21844
|
@last_stop_timestamp = args[:last_stop_timestamp] if args.key?(:last_stop_timestamp)
|
|
21827
21845
|
@last_suspended_timestamp = args[:last_suspended_timestamp] if args.key?(:last_suspended_timestamp)
|
|
21846
|
+
@local_ssd_encryption_mode = args[:local_ssd_encryption_mode] if args.key?(:local_ssd_encryption_mode)
|
|
21828
21847
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
|
21829
21848
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
21830
21849
|
@min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
|
|
@@ -23386,6 +23405,14 @@ module Google
|
|
|
23386
23405
|
# @return [Fixnum]
|
|
23387
23406
|
attr_accessor :id
|
|
23388
23407
|
|
|
23408
|
+
# The names of instances to be created by this resize request. The number of
|
|
23409
|
+
# names specified determines the number of instances to create. The group's
|
|
23410
|
+
# target size will be increased by this number. This field cannot be used
|
|
23411
|
+
# together with 'resize_by'.
|
|
23412
|
+
# Corresponds to the JSON property `instances`
|
|
23413
|
+
# @return [Array<Google::Apis::ComputeV1::PerInstanceConfig>]
|
|
23414
|
+
attr_accessor :instances
|
|
23415
|
+
|
|
23389
23416
|
# Output only. The resource type, which is alwayscompute#
|
|
23390
23417
|
# instanceGroupManagerResizeRequest for resize requests.
|
|
23391
23418
|
# Corresponds to the JSON property `kind`
|
|
@@ -23456,6 +23483,7 @@ module Google
|
|
|
23456
23483
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
23457
23484
|
@description = args[:description] if args.key?(:description)
|
|
23458
23485
|
@id = args[:id] if args.key?(:id)
|
|
23486
|
+
@instances = args[:instances] if args.key?(:instances)
|
|
23459
23487
|
@kind = args[:kind] if args.key?(:kind)
|
|
23460
23488
|
@name = args[:name] if args.key?(:name)
|
|
23461
23489
|
@region = args[:region] if args.key?(:region)
|
|
@@ -26191,6 +26219,12 @@ module Google
|
|
|
26191
26219
|
# @return [Hash<String,String>]
|
|
26192
26220
|
attr_accessor :labels
|
|
26193
26221
|
|
|
26222
|
+
# Specifies which method should be used for encrypting the
|
|
26223
|
+
# Local SSDs attached to the VM.
|
|
26224
|
+
# Corresponds to the JSON property `localSsdEncryptionMode`
|
|
26225
|
+
# @return [String]
|
|
26226
|
+
attr_accessor :local_ssd_encryption_mode
|
|
26227
|
+
|
|
26194
26228
|
# The machine type to use for instances that are created from these
|
|
26195
26229
|
# properties.
|
|
26196
26230
|
# This field only accepts a machine type name, for example `n2-standard-4`.
|
|
@@ -26299,6 +26333,7 @@ module Google
|
|
|
26299
26333
|
@guest_accelerators = args[:guest_accelerators] if args.key?(:guest_accelerators)
|
|
26300
26334
|
@key_revocation_action_type = args[:key_revocation_action_type] if args.key?(:key_revocation_action_type)
|
|
26301
26335
|
@labels = args[:labels] if args.key?(:labels)
|
|
26336
|
+
@local_ssd_encryption_mode = args[:local_ssd_encryption_mode] if args.key?(:local_ssd_encryption_mode)
|
|
26302
26337
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
|
26303
26338
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
26304
26339
|
@min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
|
|
@@ -34604,6 +34639,18 @@ module Google
|
|
|
34604
34639
|
# @return [Google::Apis::ComputeV1::ManagedInstancePropertiesFromFlexibilityPolicy]
|
|
34605
34640
|
attr_accessor :properties_from_flexibility_policy
|
|
34606
34641
|
|
|
34642
|
+
# Output only. Information about the termination timestamp of the instance, if
|
|
34643
|
+
# applicable.
|
|
34644
|
+
# Corresponds to the JSON property `scheduling`
|
|
34645
|
+
# @return [Google::Apis::ComputeV1::ManagedInstanceScheduling]
|
|
34646
|
+
attr_accessor :scheduling
|
|
34647
|
+
|
|
34648
|
+
# Output only. Specifies the graceful shutdown details if the instance is in
|
|
34649
|
+
# `PENDING_STOP` state or there is a programmed stop scheduled.
|
|
34650
|
+
# Corresponds to the JSON property `shutdownDetails`
|
|
34651
|
+
# @return [Google::Apis::ComputeV1::ManagedInstanceShutdownDetails]
|
|
34652
|
+
attr_accessor :shutdown_details
|
|
34653
|
+
|
|
34607
34654
|
# Output only. [Output Only] Intended version of this instance.
|
|
34608
34655
|
# Corresponds to the JSON property `version`
|
|
34609
34656
|
# @return [Google::Apis::ComputeV1::ManagedInstanceVersion]
|
|
@@ -34625,6 +34672,8 @@ module Google
|
|
|
34625
34672
|
@preserved_state_from_config = args[:preserved_state_from_config] if args.key?(:preserved_state_from_config)
|
|
34626
34673
|
@preserved_state_from_policy = args[:preserved_state_from_policy] if args.key?(:preserved_state_from_policy)
|
|
34627
34674
|
@properties_from_flexibility_policy = args[:properties_from_flexibility_policy] if args.key?(:properties_from_flexibility_policy)
|
|
34675
|
+
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
|
34676
|
+
@shutdown_details = args[:shutdown_details] if args.key?(:shutdown_details)
|
|
34628
34677
|
@version = args[:version] if args.key?(:version)
|
|
34629
34678
|
end
|
|
34630
34679
|
end
|
|
@@ -34819,6 +34868,67 @@ module Google
|
|
|
34819
34868
|
end
|
|
34820
34869
|
end
|
|
34821
34870
|
|
|
34871
|
+
#
|
|
34872
|
+
class ManagedInstanceScheduling
|
|
34873
|
+
include Google::Apis::Core::Hashable
|
|
34874
|
+
|
|
34875
|
+
# Output only. The timestamp at which the underlying instance will be
|
|
34876
|
+
# triggered for graceful shutdown if it is configured. This is in RFC3339 text
|
|
34877
|
+
# format.
|
|
34878
|
+
# Corresponds to the JSON property `gracefulShutdownTimestamp`
|
|
34879
|
+
# @return [String]
|
|
34880
|
+
attr_accessor :graceful_shutdown_timestamp
|
|
34881
|
+
|
|
34882
|
+
# Output only. The timestamp at which the managed instance will be terminated.
|
|
34883
|
+
# This is
|
|
34884
|
+
# in RFC3339 text
|
|
34885
|
+
# format.
|
|
34886
|
+
# Corresponds to the JSON property `terminationTimestamp`
|
|
34887
|
+
# @return [String]
|
|
34888
|
+
attr_accessor :termination_timestamp
|
|
34889
|
+
|
|
34890
|
+
def initialize(**args)
|
|
34891
|
+
update!(**args)
|
|
34892
|
+
end
|
|
34893
|
+
|
|
34894
|
+
# Update properties of this object
|
|
34895
|
+
def update!(**args)
|
|
34896
|
+
@graceful_shutdown_timestamp = args[:graceful_shutdown_timestamp] if args.key?(:graceful_shutdown_timestamp)
|
|
34897
|
+
@termination_timestamp = args[:termination_timestamp] if args.key?(:termination_timestamp)
|
|
34898
|
+
end
|
|
34899
|
+
end
|
|
34900
|
+
|
|
34901
|
+
#
|
|
34902
|
+
class ManagedInstanceShutdownDetails
|
|
34903
|
+
include Google::Apis::Core::Hashable
|
|
34904
|
+
|
|
34905
|
+
# A Duration represents a fixed-length span of time represented
|
|
34906
|
+
# as a count of seconds and fractions of seconds at nanosecond
|
|
34907
|
+
# resolution. It is independent of any calendar and concepts like "day"
|
|
34908
|
+
# or "month". Range is approximately 10,000 years.
|
|
34909
|
+
# Corresponds to the JSON property `maxDuration`
|
|
34910
|
+
# @return [Google::Apis::ComputeV1::Duration]
|
|
34911
|
+
attr_accessor :max_duration
|
|
34912
|
+
|
|
34913
|
+
# Output only. Past timestamp indicating the beginning of `PENDING_STOP` state
|
|
34914
|
+
# of
|
|
34915
|
+
# instance in RFC3339
|
|
34916
|
+
# text format.
|
|
34917
|
+
# Corresponds to the JSON property `requestTimestamp`
|
|
34918
|
+
# @return [String]
|
|
34919
|
+
attr_accessor :request_timestamp
|
|
34920
|
+
|
|
34921
|
+
def initialize(**args)
|
|
34922
|
+
update!(**args)
|
|
34923
|
+
end
|
|
34924
|
+
|
|
34925
|
+
# Update properties of this object
|
|
34926
|
+
def update!(**args)
|
|
34927
|
+
@max_duration = args[:max_duration] if args.key?(:max_duration)
|
|
34928
|
+
@request_timestamp = args[:request_timestamp] if args.key?(:request_timestamp)
|
|
34929
|
+
end
|
|
34930
|
+
end
|
|
34931
|
+
|
|
34822
34932
|
#
|
|
34823
34933
|
class ManagedInstanceVersion
|
|
34824
34934
|
include Google::Apis::Core::Hashable
|
|
@@ -35024,6 +35134,59 @@ module Google
|
|
|
35024
35134
|
end
|
|
35025
35135
|
end
|
|
35026
35136
|
|
|
35137
|
+
#
|
|
35138
|
+
class NamedSet
|
|
35139
|
+
include Google::Apis::Core::Hashable
|
|
35140
|
+
|
|
35141
|
+
# An optional description of named set.
|
|
35142
|
+
# Corresponds to the JSON property `description`
|
|
35143
|
+
# @return [String]
|
|
35144
|
+
attr_accessor :description
|
|
35145
|
+
|
|
35146
|
+
# CEL expressions that are comparable to constructs of this set's type
|
|
35147
|
+
# (see Policy Language).
|
|
35148
|
+
# Corresponds to the JSON property `elements`
|
|
35149
|
+
# @return [Array<Google::Apis::ComputeV1::Expr>]
|
|
35150
|
+
attr_accessor :elements
|
|
35151
|
+
|
|
35152
|
+
# A fingerprint for the Named Set being applied to this Router, which is
|
|
35153
|
+
# essentially a hash of the Named Set used for optimistic locking.
|
|
35154
|
+
# The fingerprint is initially generated by Compute Engine and changes
|
|
35155
|
+
# after every request to modify or update the Named Set. You must always
|
|
35156
|
+
# provide an up-to-date fingerprint hash in order to update or change
|
|
35157
|
+
# labels.
|
|
35158
|
+
# To see the latest fingerprint, make a getNamedSet() request
|
|
35159
|
+
# to retrieve a Named Set.
|
|
35160
|
+
# Corresponds to the JSON property `fingerprint`
|
|
35161
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
35162
|
+
# @return [String]
|
|
35163
|
+
attr_accessor :fingerprint
|
|
35164
|
+
|
|
35165
|
+
# This set's name, which must be a resource ID segment and unique within all
|
|
35166
|
+
# named sets owned by the Router. Name should conform to RFC1035.
|
|
35167
|
+
# Corresponds to the JSON property `name`
|
|
35168
|
+
# @return [String]
|
|
35169
|
+
attr_accessor :name
|
|
35170
|
+
|
|
35171
|
+
# This named set's type
|
|
35172
|
+
# Corresponds to the JSON property `type`
|
|
35173
|
+
# @return [String]
|
|
35174
|
+
attr_accessor :type
|
|
35175
|
+
|
|
35176
|
+
def initialize(**args)
|
|
35177
|
+
update!(**args)
|
|
35178
|
+
end
|
|
35179
|
+
|
|
35180
|
+
# Update properties of this object
|
|
35181
|
+
def update!(**args)
|
|
35182
|
+
@description = args[:description] if args.key?(:description)
|
|
35183
|
+
@elements = args[:elements] if args.key?(:elements)
|
|
35184
|
+
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
|
35185
|
+
@name = args[:name] if args.key?(:name)
|
|
35186
|
+
@type = args[:type] if args.key?(:type)
|
|
35187
|
+
end
|
|
35188
|
+
end
|
|
35189
|
+
|
|
35027
35190
|
# Contains NAT IP information of a NAT config (i.e. usage status, mode).
|
|
35028
35191
|
class NatIpInfo
|
|
35029
35192
|
include Google::Apis::Core::Hashable
|
|
@@ -35355,14 +35518,16 @@ module Google
|
|
|
35355
35518
|
# @return [String]
|
|
35356
35519
|
attr_accessor :network
|
|
35357
35520
|
|
|
35358
|
-
# Projects that are allowed to connect to this network
|
|
35359
|
-
# The project can be specified using its id or number.
|
|
35521
|
+
# Projects or service class ids that are allowed to connect to this network
|
|
35522
|
+
# attachment. The project can be specified using its id or number. Service
|
|
35523
|
+
# class id can be specified as "serviceclasses/`service_class_id`".
|
|
35360
35524
|
# Corresponds to the JSON property `producerAcceptLists`
|
|
35361
35525
|
# @return [Array<String>]
|
|
35362
35526
|
attr_accessor :producer_accept_lists
|
|
35363
35527
|
|
|
35364
|
-
# Projects that are not allowed to connect to this
|
|
35365
|
-
# The project can be specified using its id or number.
|
|
35528
|
+
# Projects or service class ids that are not allowed to connect to this
|
|
35529
|
+
# network attachment. The project can be specified using its id or number.
|
|
35530
|
+
# Service class id can be specified as "serviceclasses/`service_class_id`".
|
|
35366
35531
|
# Corresponds to the JSON property `producerRejectLists`
|
|
35367
35532
|
# @return [Array<String>]
|
|
35368
35533
|
attr_accessor :producer_reject_lists
|
|
@@ -53577,6 +53742,31 @@ module Google
|
|
|
53577
53742
|
end
|
|
53578
53743
|
end
|
|
53579
53744
|
|
|
53745
|
+
#
|
|
53746
|
+
class RoutersGetNamedSetResponse
|
|
53747
|
+
include Google::Apis::Core::Hashable
|
|
53748
|
+
|
|
53749
|
+
# end_interface: MixerGetResponseWithEtagBuilder
|
|
53750
|
+
# Corresponds to the JSON property `etag`
|
|
53751
|
+
# @return [String]
|
|
53752
|
+
attr_accessor :etag
|
|
53753
|
+
|
|
53754
|
+
#
|
|
53755
|
+
# Corresponds to the JSON property `resource`
|
|
53756
|
+
# @return [Google::Apis::ComputeV1::NamedSet]
|
|
53757
|
+
attr_accessor :resource
|
|
53758
|
+
|
|
53759
|
+
def initialize(**args)
|
|
53760
|
+
update!(**args)
|
|
53761
|
+
end
|
|
53762
|
+
|
|
53763
|
+
# Update properties of this object
|
|
53764
|
+
def update!(**args)
|
|
53765
|
+
@etag = args[:etag] if args.key?(:etag)
|
|
53766
|
+
@resource = args[:resource] if args.key?(:resource)
|
|
53767
|
+
end
|
|
53768
|
+
end
|
|
53769
|
+
|
|
53580
53770
|
#
|
|
53581
53771
|
class RoutersGetRoutePolicyResponse
|
|
53582
53772
|
include Google::Apis::Core::Hashable
|
|
@@ -53734,6 +53924,144 @@ module Google
|
|
|
53734
53924
|
end
|
|
53735
53925
|
end
|
|
53736
53926
|
|
|
53927
|
+
#
|
|
53928
|
+
class RoutersListNamedSets
|
|
53929
|
+
include Google::Apis::Core::Hashable
|
|
53930
|
+
|
|
53931
|
+
#
|
|
53932
|
+
# Corresponds to the JSON property `etag`
|
|
53933
|
+
# @return [String]
|
|
53934
|
+
attr_accessor :etag
|
|
53935
|
+
|
|
53936
|
+
# [Output Only] The unique identifier for the resource. This identifier is
|
|
53937
|
+
# defined by the server.
|
|
53938
|
+
# Corresponds to the JSON property `id`
|
|
53939
|
+
# @return [String]
|
|
53940
|
+
attr_accessor :id
|
|
53941
|
+
|
|
53942
|
+
# Output only. [Output Only] Type of resource. Alwayscompute#
|
|
53943
|
+
# routersListNamedSets for lists of named sets.
|
|
53944
|
+
# Corresponds to the JSON property `kind`
|
|
53945
|
+
# @return [String]
|
|
53946
|
+
attr_accessor :kind
|
|
53947
|
+
|
|
53948
|
+
# [Output Only] This token allows you to get the next page of results for
|
|
53949
|
+
# list requests. If the number of results is larger thanmaxResults, use the
|
|
53950
|
+
# nextPageToken as a value for
|
|
53951
|
+
# the query parameter pageToken in the next list request.
|
|
53952
|
+
# Subsequent list requests will have their own nextPageToken to
|
|
53953
|
+
# continue paging through the results.
|
|
53954
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
53955
|
+
# @return [String]
|
|
53956
|
+
attr_accessor :next_page_token
|
|
53957
|
+
|
|
53958
|
+
# [Output Only] A list of named sets.
|
|
53959
|
+
# Corresponds to the JSON property `result`
|
|
53960
|
+
# @return [Array<Google::Apis::ComputeV1::NamedSet>]
|
|
53961
|
+
attr_accessor :result
|
|
53962
|
+
|
|
53963
|
+
# Output only. [Output Only] Server-defined URL for this resource.
|
|
53964
|
+
# Corresponds to the JSON property `selfLink`
|
|
53965
|
+
# @return [String]
|
|
53966
|
+
attr_accessor :self_link
|
|
53967
|
+
|
|
53968
|
+
# Output only. [Output Only] Unreachable resources.
|
|
53969
|
+
# Corresponds to the JSON property `unreachables`
|
|
53970
|
+
# @return [Array<String>]
|
|
53971
|
+
attr_accessor :unreachables
|
|
53972
|
+
|
|
53973
|
+
# [Output Only] Informational warning message.
|
|
53974
|
+
# Corresponds to the JSON property `warning`
|
|
53975
|
+
# @return [Google::Apis::ComputeV1::RoutersListNamedSets::Warning]
|
|
53976
|
+
attr_accessor :warning
|
|
53977
|
+
|
|
53978
|
+
def initialize(**args)
|
|
53979
|
+
update!(**args)
|
|
53980
|
+
end
|
|
53981
|
+
|
|
53982
|
+
# Update properties of this object
|
|
53983
|
+
def update!(**args)
|
|
53984
|
+
@etag = args[:etag] if args.key?(:etag)
|
|
53985
|
+
@id = args[:id] if args.key?(:id)
|
|
53986
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
53987
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
53988
|
+
@result = args[:result] if args.key?(:result)
|
|
53989
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
53990
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
|
53991
|
+
@warning = args[:warning] if args.key?(:warning)
|
|
53992
|
+
end
|
|
53993
|
+
|
|
53994
|
+
# [Output Only] Informational warning message.
|
|
53995
|
+
class Warning
|
|
53996
|
+
include Google::Apis::Core::Hashable
|
|
53997
|
+
|
|
53998
|
+
# [Output Only] A warning code, if applicable. For example, Compute
|
|
53999
|
+
# Engine returns NO_RESULTS_ON_PAGE if there
|
|
54000
|
+
# are no results in the response.
|
|
54001
|
+
# Corresponds to the JSON property `code`
|
|
54002
|
+
# @return [String]
|
|
54003
|
+
attr_accessor :code
|
|
54004
|
+
|
|
54005
|
+
# [Output Only] Metadata about this warning in key:
|
|
54006
|
+
# value format. For example:
|
|
54007
|
+
# "data": [
|
|
54008
|
+
# `
|
|
54009
|
+
# "key": "scope",
|
|
54010
|
+
# "value": "zones/us-east1-d"
|
|
54011
|
+
# `
|
|
54012
|
+
# Corresponds to the JSON property `data`
|
|
54013
|
+
# @return [Array<Google::Apis::ComputeV1::RoutersListNamedSets::Warning::Datum>]
|
|
54014
|
+
attr_accessor :data
|
|
54015
|
+
|
|
54016
|
+
# [Output Only] A human-readable description of the warning code.
|
|
54017
|
+
# Corresponds to the JSON property `message`
|
|
54018
|
+
# @return [String]
|
|
54019
|
+
attr_accessor :message
|
|
54020
|
+
|
|
54021
|
+
def initialize(**args)
|
|
54022
|
+
update!(**args)
|
|
54023
|
+
end
|
|
54024
|
+
|
|
54025
|
+
# Update properties of this object
|
|
54026
|
+
def update!(**args)
|
|
54027
|
+
@code = args[:code] if args.key?(:code)
|
|
54028
|
+
@data = args[:data] if args.key?(:data)
|
|
54029
|
+
@message = args[:message] if args.key?(:message)
|
|
54030
|
+
end
|
|
54031
|
+
|
|
54032
|
+
#
|
|
54033
|
+
class Datum
|
|
54034
|
+
include Google::Apis::Core::Hashable
|
|
54035
|
+
|
|
54036
|
+
# [Output Only] A key that provides more detail on the warning being
|
|
54037
|
+
# returned. For example, for warnings where there are no results in a list
|
|
54038
|
+
# request for a particular zone, this key might be scope and
|
|
54039
|
+
# the key value might be the zone name. Other examples might be a key
|
|
54040
|
+
# indicating a deprecated resource and a suggested replacement, or a
|
|
54041
|
+
# warning about invalid network settings (for example, if an instance
|
|
54042
|
+
# attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
54043
|
+
# Corresponds to the JSON property `key`
|
|
54044
|
+
# @return [String]
|
|
54045
|
+
attr_accessor :key
|
|
54046
|
+
|
|
54047
|
+
# [Output Only] A warning data value corresponding to the key.
|
|
54048
|
+
# Corresponds to the JSON property `value`
|
|
54049
|
+
# @return [String]
|
|
54050
|
+
attr_accessor :value
|
|
54051
|
+
|
|
54052
|
+
def initialize(**args)
|
|
54053
|
+
update!(**args)
|
|
54054
|
+
end
|
|
54055
|
+
|
|
54056
|
+
# Update properties of this object
|
|
54057
|
+
def update!(**args)
|
|
54058
|
+
@key = args[:key] if args.key?(:key)
|
|
54059
|
+
@value = args[:value] if args.key?(:value)
|
|
54060
|
+
end
|
|
54061
|
+
end
|
|
54062
|
+
end
|
|
54063
|
+
end
|
|
54064
|
+
|
|
53737
54065
|
#
|
|
53738
54066
|
class RoutersListRoutePolicies
|
|
53739
54067
|
include Google::Apis::Core::Hashable
|
|
@@ -59416,8 +59744,7 @@ module Google
|
|
|
59416
59744
|
class SslPolicyReference
|
|
59417
59745
|
include Google::Apis::Core::Hashable
|
|
59418
59746
|
|
|
59419
|
-
#
|
|
59420
|
-
# existing SSL policy associated with the target proxy resource.
|
|
59747
|
+
#
|
|
59421
59748
|
# Corresponds to the JSON property `sslPolicy`
|
|
59422
59749
|
# @return [String]
|
|
59423
59750
|
attr_accessor :ssl_policy
|
|
@@ -61683,6 +62010,22 @@ module Google
|
|
|
61683
62010
|
# @return [String]
|
|
61684
62011
|
attr_accessor :ip_cidr_range
|
|
61685
62012
|
|
|
62013
|
+
# Reference to a Public Delegated Prefix (PDP) for BYOIP.
|
|
62014
|
+
# This field should be specified for configuring BYOGUA internal IPv6
|
|
62015
|
+
# secondary range.
|
|
62016
|
+
# When specified along with the ip_cidr_range, the ip_cidr_range must lie
|
|
62017
|
+
# within the PDP referenced by the `ipCollection` field.
|
|
62018
|
+
# When specified without the ip_cidr_range, the range is auto-allocated
|
|
62019
|
+
# from the PDP referenced by the `ipCollection` field.
|
|
62020
|
+
# Corresponds to the JSON property `ipCollection`
|
|
62021
|
+
# @return [String]
|
|
62022
|
+
attr_accessor :ip_collection
|
|
62023
|
+
|
|
62024
|
+
#
|
|
62025
|
+
# Corresponds to the JSON property `ipVersion`
|
|
62026
|
+
# @return [String]
|
|
62027
|
+
attr_accessor :ip_version
|
|
62028
|
+
|
|
61686
62029
|
# The name associated with this subnetwork secondary range, used when adding
|
|
61687
62030
|
# an alias IP/IPv6 range to a VM instance.
|
|
61688
62031
|
# The name must be 1-63 characters long, and comply withRFC1035.
|
|
@@ -61703,6 +62046,8 @@ module Google
|
|
|
61703
62046
|
# Update properties of this object
|
|
61704
62047
|
def update!(**args)
|
|
61705
62048
|
@ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
|
|
62049
|
+
@ip_collection = args[:ip_collection] if args.key?(:ip_collection)
|
|
62050
|
+
@ip_version = args[:ip_version] if args.key?(:ip_version)
|
|
61706
62051
|
@range_name = args[:range_name] if args.key?(:range_name)
|
|
61707
62052
|
@reserved_internal_range = args[:reserved_internal_range] if args.key?(:reserved_internal_range)
|
|
61708
62053
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ComputeV1
|
|
18
18
|
# Version of the google-apis-compute_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.150.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260629"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|