google-apis-compute_alpha 0.140.0 → 0.141.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.
|
@@ -101,6 +101,209 @@ module Google
|
|
|
101
101
|
end
|
|
102
102
|
end
|
|
103
103
|
|
|
104
|
+
# Represents a controller for managing out-of-band access to an accelerator
|
|
105
|
+
# domain (e.g., NVLink Domain).
|
|
106
|
+
class AcceleratorPodController
|
|
107
|
+
include Google::Apis::Core::Hashable
|
|
108
|
+
|
|
109
|
+
# Output only. [Output Only] Creation timestamp inRFC3339 text format.
|
|
110
|
+
# Corresponds to the JSON property `creationTimestamp`
|
|
111
|
+
# @return [String]
|
|
112
|
+
attr_accessor :creation_timestamp
|
|
113
|
+
|
|
114
|
+
# An optional description of this resource.
|
|
115
|
+
# Corresponds to the JSON property `description`
|
|
116
|
+
# @return [String]
|
|
117
|
+
attr_accessor :description
|
|
118
|
+
|
|
119
|
+
# Output only. [Output Only] The unique identifier for the resource. This
|
|
120
|
+
# identifier is
|
|
121
|
+
# defined by the server.
|
|
122
|
+
# Corresponds to the JSON property `id`
|
|
123
|
+
# @return [Fixnum]
|
|
124
|
+
attr_accessor :id
|
|
125
|
+
|
|
126
|
+
#
|
|
127
|
+
# Corresponds to the JSON property `kind`
|
|
128
|
+
# @return [String]
|
|
129
|
+
attr_accessor :kind
|
|
130
|
+
|
|
131
|
+
# Map of management interfaces. Keys must be valid RFC1035 names and at most
|
|
132
|
+
# 63 characters long.
|
|
133
|
+
# Corresponds to the JSON property `managementInterfaces`
|
|
134
|
+
# @return [Hash<String,Google::Apis::ComputeAlpha::ManagementInterface>]
|
|
135
|
+
attr_accessor :management_interfaces
|
|
136
|
+
|
|
137
|
+
# Required. The name of the resource, provided by the client when initially
|
|
138
|
+
# creating
|
|
139
|
+
# the resource. The resource name must be 1-63 characters long, and comply
|
|
140
|
+
# withRFC1035.
|
|
141
|
+
# Specifically, the name must match the regular expression
|
|
142
|
+
# `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first character must be a
|
|
143
|
+
# lowercase letter, and all following characters must be a dash, lowercase
|
|
144
|
+
# letter, or digit, except the last character, which cannot be a dash.
|
|
145
|
+
# Corresponds to the JSON property `name`
|
|
146
|
+
# @return [String]
|
|
147
|
+
attr_accessor :name
|
|
148
|
+
|
|
149
|
+
# Output only. [Output Only] Server-defined URL for the resource.
|
|
150
|
+
# Corresponds to the JSON property `selfLink`
|
|
151
|
+
# @return [String]
|
|
152
|
+
attr_accessor :self_link
|
|
153
|
+
|
|
154
|
+
# Output only. [Output Only] Server-defined URL for the resource with the
|
|
155
|
+
# resource ID.
|
|
156
|
+
# Corresponds to the JSON property `selfLinkWithId`
|
|
157
|
+
# @return [String]
|
|
158
|
+
attr_accessor :self_link_with_id
|
|
159
|
+
|
|
160
|
+
# Required. The target accelerator domain this controller manages.
|
|
161
|
+
# This must be a resolvable identifier for the specific NVLink Domain or
|
|
162
|
+
# TPU system (e.g., a Reservation Sub-block URI).
|
|
163
|
+
# Example:
|
|
164
|
+
# "projects/my-project/reservations/my-reservation/subBlocks/subblock-1".
|
|
165
|
+
# Corresponds to the JSON property `target`
|
|
166
|
+
# @return [String]
|
|
167
|
+
attr_accessor :target
|
|
168
|
+
|
|
169
|
+
# Output only. [Output Only] URL of the zone where the accelerator pod
|
|
170
|
+
# controller resides.
|
|
171
|
+
# Corresponds to the JSON property `zone`
|
|
172
|
+
# @return [String]
|
|
173
|
+
attr_accessor :zone
|
|
174
|
+
|
|
175
|
+
def initialize(**args)
|
|
176
|
+
update!(**args)
|
|
177
|
+
end
|
|
178
|
+
|
|
179
|
+
# Update properties of this object
|
|
180
|
+
def update!(**args)
|
|
181
|
+
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
182
|
+
@description = args[:description] if args.key?(:description)
|
|
183
|
+
@id = args[:id] if args.key?(:id)
|
|
184
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
185
|
+
@management_interfaces = args[:management_interfaces] if args.key?(:management_interfaces)
|
|
186
|
+
@name = args[:name] if args.key?(:name)
|
|
187
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
188
|
+
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
189
|
+
@target = args[:target] if args.key?(:target)
|
|
190
|
+
@zone = args[:zone] if args.key?(:zone)
|
|
191
|
+
end
|
|
192
|
+
end
|
|
193
|
+
|
|
194
|
+
#
|
|
195
|
+
class AcceleratorPodControllersListResponse
|
|
196
|
+
include Google::Apis::Core::Hashable
|
|
197
|
+
|
|
198
|
+
#
|
|
199
|
+
# Corresponds to the JSON property `items`
|
|
200
|
+
# @return [Array<Google::Apis::ComputeAlpha::AcceleratorPodController>]
|
|
201
|
+
attr_accessor :items
|
|
202
|
+
|
|
203
|
+
#
|
|
204
|
+
# Corresponds to the JSON property `kind`
|
|
205
|
+
# @return [String]
|
|
206
|
+
attr_accessor :kind
|
|
207
|
+
|
|
208
|
+
#
|
|
209
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
210
|
+
# @return [String]
|
|
211
|
+
attr_accessor :next_page_token
|
|
212
|
+
|
|
213
|
+
#
|
|
214
|
+
# Corresponds to the JSON property `selfLink`
|
|
215
|
+
# @return [String]
|
|
216
|
+
attr_accessor :self_link
|
|
217
|
+
|
|
218
|
+
#
|
|
219
|
+
# Corresponds to the JSON property `warning`
|
|
220
|
+
# @return [Google::Apis::ComputeAlpha::AcceleratorPodControllersListResponse::Warning]
|
|
221
|
+
attr_accessor :warning
|
|
222
|
+
|
|
223
|
+
def initialize(**args)
|
|
224
|
+
update!(**args)
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
# Update properties of this object
|
|
228
|
+
def update!(**args)
|
|
229
|
+
@items = args[:items] if args.key?(:items)
|
|
230
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
231
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
232
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
233
|
+
@warning = args[:warning] if args.key?(:warning)
|
|
234
|
+
end
|
|
235
|
+
|
|
236
|
+
#
|
|
237
|
+
class Warning
|
|
238
|
+
include Google::Apis::Core::Hashable
|
|
239
|
+
|
|
240
|
+
# [Output Only] A warning code, if applicable. For example, Compute
|
|
241
|
+
# Engine returns NO_RESULTS_ON_PAGE if there
|
|
242
|
+
# are no results in the response.
|
|
243
|
+
# Corresponds to the JSON property `code`
|
|
244
|
+
# @return [String]
|
|
245
|
+
attr_accessor :code
|
|
246
|
+
|
|
247
|
+
# [Output Only] Metadata about this warning in key:
|
|
248
|
+
# value format. For example:
|
|
249
|
+
# "data": [
|
|
250
|
+
# `
|
|
251
|
+
# "key": "scope",
|
|
252
|
+
# "value": "zones/us-east1-d"
|
|
253
|
+
# `
|
|
254
|
+
# Corresponds to the JSON property `data`
|
|
255
|
+
# @return [Array<Google::Apis::ComputeAlpha::AcceleratorPodControllersListResponse::Warning::Datum>]
|
|
256
|
+
attr_accessor :data
|
|
257
|
+
|
|
258
|
+
# [Output Only] A human-readable description of the warning code.
|
|
259
|
+
# Corresponds to the JSON property `message`
|
|
260
|
+
# @return [String]
|
|
261
|
+
attr_accessor :message
|
|
262
|
+
|
|
263
|
+
def initialize(**args)
|
|
264
|
+
update!(**args)
|
|
265
|
+
end
|
|
266
|
+
|
|
267
|
+
# Update properties of this object
|
|
268
|
+
def update!(**args)
|
|
269
|
+
@code = args[:code] if args.key?(:code)
|
|
270
|
+
@data = args[:data] if args.key?(:data)
|
|
271
|
+
@message = args[:message] if args.key?(:message)
|
|
272
|
+
end
|
|
273
|
+
|
|
274
|
+
#
|
|
275
|
+
class Datum
|
|
276
|
+
include Google::Apis::Core::Hashable
|
|
277
|
+
|
|
278
|
+
# [Output Only] A key that provides more detail on the warning being
|
|
279
|
+
# returned. For example, for warnings where there are no results in a list
|
|
280
|
+
# request for a particular zone, this key might be scope and
|
|
281
|
+
# the key value might be the zone name. Other examples might be a key
|
|
282
|
+
# indicating a deprecated resource and a suggested replacement, or a
|
|
283
|
+
# warning about invalid network settings (for example, if an instance
|
|
284
|
+
# attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
285
|
+
# Corresponds to the JSON property `key`
|
|
286
|
+
# @return [String]
|
|
287
|
+
attr_accessor :key
|
|
288
|
+
|
|
289
|
+
# [Output Only] A warning data value corresponding to the key.
|
|
290
|
+
# Corresponds to the JSON property `value`
|
|
291
|
+
# @return [String]
|
|
292
|
+
attr_accessor :value
|
|
293
|
+
|
|
294
|
+
def initialize(**args)
|
|
295
|
+
update!(**args)
|
|
296
|
+
end
|
|
297
|
+
|
|
298
|
+
# Update properties of this object
|
|
299
|
+
def update!(**args)
|
|
300
|
+
@key = args[:key] if args.key?(:key)
|
|
301
|
+
@value = args[:value] if args.key?(:value)
|
|
302
|
+
end
|
|
303
|
+
end
|
|
304
|
+
end
|
|
305
|
+
end
|
|
306
|
+
|
|
104
307
|
# Info for accelerator topologies within a densely packed reservation.
|
|
105
308
|
class AcceleratorTopologiesInfo
|
|
106
309
|
include Google::Apis::Core::Hashable
|
|
@@ -771,21 +974,30 @@ module Google
|
|
|
771
974
|
# @return [Fixnum]
|
|
772
975
|
attr_accessor :id
|
|
773
976
|
|
|
774
|
-
# Reference to the source of
|
|
775
|
-
#
|
|
776
|
-
# The PDP must support enhanced IPv4 allocations.
|
|
777
|
-
# Use one of the following formats to specify a PDP when reserving an
|
|
778
|
-
# external IPv4 address using BYOIP.
|
|
977
|
+
# Reference to the source of IP addresses.
|
|
978
|
+
# It supports the following cases:
|
|
779
979
|
#
|
|
780
980
|
# -
|
|
781
|
-
#
|
|
782
|
-
#
|
|
981
|
+
# Case 1: PublicDelegatedPrefix (PDP) for BYOIP external IPv4
|
|
982
|
+
# addresses. The PDP must support enhanced IPv4 allocations.
|
|
783
983
|
# -
|
|
784
|
-
#
|
|
785
|
-
#
|
|
984
|
+
# Case 2: Internal Range for global internal addresses.
|
|
985
|
+
# Use one of the following formats to specify the resource:
|
|
986
|
+
# For a Public Delegated Prefix:
|
|
786
987
|
#
|
|
988
|
+
# -
|
|
989
|
+
# Full resource URL:https://www.googleapis.com/compute/v1/projects/projectId/
|
|
990
|
+
# regions/region/publicDelegatedPrefixes/pdp
|
|
991
|
+
# - Partial URL:
|
|
787
992
|
# - projects/projectId/regions/region/publicDelegatedPrefixes/pdp-name
|
|
788
993
|
# - regions/region/publicDelegatedPrefixes/pdp-name
|
|
994
|
+
#
|
|
995
|
+
# For an Internal Range:
|
|
996
|
+
#
|
|
997
|
+
# - Full URL:https://networkconnectivity.googleapis.com/v1/projects/project/
|
|
998
|
+
# locations/global/internalRanges/internal-range
|
|
999
|
+
# - Partial URL:projects/project/locations/global/internalRanges/internal-
|
|
1000
|
+
# range
|
|
789
1001
|
# Corresponds to the JSON property `ipCollection`
|
|
790
1002
|
# @return [String]
|
|
791
1003
|
attr_accessor :ip_collection
|
|
@@ -1401,6 +1613,21 @@ module Google
|
|
|
1401
1613
|
class AliasIpRange
|
|
1402
1614
|
include Google::Apis::Core::Hashable
|
|
1403
1615
|
|
|
1616
|
+
# Identifies the candidate subnetwork range names for the alias
|
|
1617
|
+
# IPs to be allocated from. When it is set, the IP would be allocated from
|
|
1618
|
+
# any subnetwork range defined here if the IPs are available.
|
|
1619
|
+
# Only one of subnetwork_range_name or candidate_subnetwork_range_names
|
|
1620
|
+
# should be set.
|
|
1621
|
+
# Corresponds to the JSON property `candidateSubnetworkRangeNames`
|
|
1622
|
+
# @return [Array<String>]
|
|
1623
|
+
attr_accessor :candidate_subnetwork_range_names
|
|
1624
|
+
|
|
1625
|
+
# Output only. [Output Only] The subnetwork range name where the IP is allocated.
|
|
1626
|
+
# It will be set to the subnetwork range where the IP is allocated only.
|
|
1627
|
+
# Corresponds to the JSON property `effectiveSubnetworkRangeName`
|
|
1628
|
+
# @return [String]
|
|
1629
|
+
attr_accessor :effective_subnetwork_range_name
|
|
1630
|
+
|
|
1404
1631
|
# The IP alias ranges to allocate for this interface. This IP CIDR range
|
|
1405
1632
|
# must belong to the specified subnetwork and cannot contain IP addresses
|
|
1406
1633
|
# reserved by system or used by other network interfaces. This range may be
|
|
@@ -1422,6 +1649,8 @@ module Google
|
|
|
1422
1649
|
|
|
1423
1650
|
# Update properties of this object
|
|
1424
1651
|
def update!(**args)
|
|
1652
|
+
@candidate_subnetwork_range_names = args[:candidate_subnetwork_range_names] if args.key?(:candidate_subnetwork_range_names)
|
|
1653
|
+
@effective_subnetwork_range_name = args[:effective_subnetwork_range_name] if args.key?(:effective_subnetwork_range_name)
|
|
1425
1654
|
@ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
|
|
1426
1655
|
@subnetwork_range_name = args[:subnetwork_range_name] if args.key?(:subnetwork_range_name)
|
|
1427
1656
|
end
|
|
@@ -2413,6 +2642,29 @@ module Google
|
|
|
2413
2642
|
end
|
|
2414
2643
|
end
|
|
2415
2644
|
|
|
2645
|
+
# Authentication configuration for the management interface, typically using
|
|
2646
|
+
# mTLS.
|
|
2647
|
+
class AuthenticationConfig
|
|
2648
|
+
include Google::Apis::Core::Hashable
|
|
2649
|
+
|
|
2650
|
+
# Required. Resource name of the Cloud Certificate Manager TrustConfig used to
|
|
2651
|
+
# validate
|
|
2652
|
+
# client certificates for mTLS.
|
|
2653
|
+
# Format: projects/`project`/locations/`location`/trustConfigs/`trust_config`
|
|
2654
|
+
# Corresponds to the JSON property `trustConfig`
|
|
2655
|
+
# @return [String]
|
|
2656
|
+
attr_accessor :trust_config
|
|
2657
|
+
|
|
2658
|
+
def initialize(**args)
|
|
2659
|
+
update!(**args)
|
|
2660
|
+
end
|
|
2661
|
+
|
|
2662
|
+
# Update properties of this object
|
|
2663
|
+
def update!(**args)
|
|
2664
|
+
@trust_config = args[:trust_config] if args.key?(:trust_config)
|
|
2665
|
+
end
|
|
2666
|
+
end
|
|
2667
|
+
|
|
2416
2668
|
# [Deprecated] The authentication settings for the backend service.
|
|
2417
2669
|
# The authentication settings for the backend service.
|
|
2418
2670
|
class AuthenticationPolicy
|
|
@@ -8747,22 +8999,25 @@ module Google
|
|
|
8747
8999
|
class CapacityHistoryResponse
|
|
8748
9000
|
include Google::Apis::Core::Hashable
|
|
8749
9001
|
|
|
8750
|
-
#
|
|
9002
|
+
# Output only. The location (region or zone) for which the capacity history is
|
|
9003
|
+
# returned.
|
|
9004
|
+
# It is returned as a URL - For example,https://www.googleapis.com/compute/v1/
|
|
9005
|
+
# projects/project/zones/zone.
|
|
8751
9006
|
# Corresponds to the JSON property `location`
|
|
8752
9007
|
# @return [String]
|
|
8753
9008
|
attr_accessor :location
|
|
8754
9009
|
|
|
8755
|
-
#
|
|
9010
|
+
# The machine type for which the capacity history is returned.
|
|
8756
9011
|
# Corresponds to the JSON property `machineType`
|
|
8757
9012
|
# @return [String]
|
|
8758
9013
|
attr_accessor :machine_type
|
|
8759
9014
|
|
|
8760
|
-
#
|
|
9015
|
+
# The preemption history for the requested machine type and location.
|
|
8761
9016
|
# Corresponds to the JSON property `preemptionHistory`
|
|
8762
9017
|
# @return [Array<Google::Apis::ComputeAlpha::CapacityHistoryResponsePreemptionRecord>]
|
|
8763
9018
|
attr_accessor :preemption_history
|
|
8764
9019
|
|
|
8765
|
-
#
|
|
9020
|
+
# The price history for the requested machine type and location.
|
|
8766
9021
|
# Corresponds to the JSON property `priceHistory`
|
|
8767
9022
|
# @return [Array<Google::Apis::ComputeAlpha::CapacityHistoryResponsePriceRecord>]
|
|
8768
9023
|
attr_accessor :price_history
|
|
@@ -8780,7 +9035,7 @@ module Google
|
|
|
8780
9035
|
end
|
|
8781
9036
|
end
|
|
8782
9037
|
|
|
8783
|
-
#
|
|
9038
|
+
# A record of Spot VM preemption history.
|
|
8784
9039
|
class CapacityHistoryResponsePreemptionRecord
|
|
8785
9040
|
include Google::Apis::Core::Hashable
|
|
8786
9041
|
|
|
@@ -8793,7 +9048,10 @@ module Google
|
|
|
8793
9048
|
# @return [Google::Apis::ComputeAlpha::Interval]
|
|
8794
9049
|
attr_accessor :interval
|
|
8795
9050
|
|
|
8796
|
-
#
|
|
9051
|
+
# The preemption rate during the interval, representing the fraction of
|
|
9052
|
+
# Spot VMs that were preempted. Range: 0.0 to 1.0. Preemption rate is
|
|
9053
|
+
# calculated as (total preempted Spots) / (total Spots that stopped
|
|
9054
|
+
# running).
|
|
8797
9055
|
# Corresponds to the JSON property `preemptionRate`
|
|
8798
9056
|
# @return [Float]
|
|
8799
9057
|
attr_accessor :preemption_rate
|
|
@@ -8809,7 +9067,7 @@ module Google
|
|
|
8809
9067
|
end
|
|
8810
9068
|
end
|
|
8811
9069
|
|
|
8812
|
-
#
|
|
9070
|
+
# A record of price history.
|
|
8813
9071
|
class CapacityHistoryResponsePriceRecord
|
|
8814
9072
|
include Google::Apis::Core::Hashable
|
|
8815
9073
|
|
|
@@ -11073,6 +11331,358 @@ module Google
|
|
|
11073
11331
|
end
|
|
11074
11332
|
end
|
|
11075
11333
|
|
|
11334
|
+
# A standalone, regional API resource that encapsulates a set of user-defined
|
|
11335
|
+
# DHCP configurations.
|
|
11336
|
+
class DhcpOptionsConfig
|
|
11337
|
+
include Google::Apis::Core::Hashable
|
|
11338
|
+
|
|
11339
|
+
# Mapping of user-defined keys to DhcpOptionsConfig to Network associations.
|
|
11340
|
+
# Corresponds to the JSON property `associations`
|
|
11341
|
+
# @return [Hash<String,Google::Apis::ComputeAlpha::DhcpOptionsConfigAssociation>]
|
|
11342
|
+
attr_accessor :associations
|
|
11343
|
+
|
|
11344
|
+
# The file path and name of the boot image/file on the TFTP server that the
|
|
11345
|
+
# client VM guest OS should download and execute during network boot. Used
|
|
11346
|
+
# when the standard DHCP header 'file' field is overloaded. Corresponds to
|
|
11347
|
+
# DHCPv4 Option 67.
|
|
11348
|
+
# Corresponds to the JSON property `bootFileIpv4Name`
|
|
11349
|
+
# @return [String]
|
|
11350
|
+
attr_accessor :boot_file_ipv4_name
|
|
11351
|
+
|
|
11352
|
+
# A list of UTF-8 encoded parameter strings to be passed as arguments to the
|
|
11353
|
+
# bootloader program or OS kernel after downloading the boot file.
|
|
11354
|
+
# Corresponds to DHCPv6 Option 60.
|
|
11355
|
+
# Corresponds to the JSON property `bootFileIpv6Parameters`
|
|
11356
|
+
# @return [Array<String>]
|
|
11357
|
+
attr_accessor :boot_file_ipv6_parameters
|
|
11358
|
+
|
|
11359
|
+
# The Uniform Resource Locator (URL) specifying the protocol, server address,
|
|
11360
|
+
# and file path of the boot file that the client VM guest OS should download
|
|
11361
|
+
# and execute for network boot (e.g., 'tftp://[2001:db8::1]/bootx64.efi' or
|
|
11362
|
+
# 'http://[2001:db8::1]/boot.img'). Corresponds to DHCPv6 Option 59.
|
|
11363
|
+
# Corresponds to the JSON property `bootFileIpv6Url`
|
|
11364
|
+
# @return [String]
|
|
11365
|
+
attr_accessor :boot_file_ipv6_url
|
|
11366
|
+
|
|
11367
|
+
# Output only. [Output Only] Creation timestamp inRFC3339
|
|
11368
|
+
# text format.
|
|
11369
|
+
# Corresponds to the JSON property `creationTimestamp`
|
|
11370
|
+
# @return [String]
|
|
11371
|
+
attr_accessor :creation_timestamp
|
|
11372
|
+
|
|
11373
|
+
# An optional description of this resource. Provide this property when you
|
|
11374
|
+
# create the resource.
|
|
11375
|
+
# Corresponds to the JSON property `description`
|
|
11376
|
+
# @return [String]
|
|
11377
|
+
attr_accessor :description
|
|
11378
|
+
|
|
11379
|
+
# An ordered list of domain suffixes (search paths) that the client VM guest
|
|
11380
|
+
# OS should append to resolve hostnames that are not fully qualified. Applies
|
|
11381
|
+
# to both DHCPv4 Option 119 and DHCPv6 Option 24.
|
|
11382
|
+
# Corresponds to the JSON property `dnsSearchPaths`
|
|
11383
|
+
# @return [Array<String>]
|
|
11384
|
+
attr_accessor :dns_search_paths
|
|
11385
|
+
|
|
11386
|
+
# An ordered list of IPv4 addresses of DNS recursive name servers available
|
|
11387
|
+
# to the client VM guest OS, specified in order of preference. Corresponds to
|
|
11388
|
+
# DHCPv4 Option 6.
|
|
11389
|
+
# Corresponds to the JSON property `dnsServerIpv4Addresses`
|
|
11390
|
+
# @return [Array<String>]
|
|
11391
|
+
attr_accessor :dns_server_ipv4_addresses
|
|
11392
|
+
|
|
11393
|
+
# An ordered list of IPv6 addresses of DNS recursive name servers available
|
|
11394
|
+
# to the client VM guest OS, specified in order of preference. Corresponds to
|
|
11395
|
+
# DHCPv6 Option 23.
|
|
11396
|
+
# Corresponds to the JSON property `dnsServerIpv6Addresses`
|
|
11397
|
+
# @return [Array<String>]
|
|
11398
|
+
attr_accessor :dns_server_ipv6_addresses
|
|
11399
|
+
|
|
11400
|
+
# The domain name that the client VM guest OS should use when resolving
|
|
11401
|
+
# hostnames via DNS (e.g., 'example.com'). It defines the default domain
|
|
11402
|
+
# suffix for the client. Corresponds to DHCPv4 Option 15.
|
|
11403
|
+
# Corresponds to the JSON property `domainName`
|
|
11404
|
+
# @return [String]
|
|
11405
|
+
attr_accessor :domain_name
|
|
11406
|
+
|
|
11407
|
+
# Output only. [Output Only] The unique identifier for the resource type. The
|
|
11408
|
+
# server
|
|
11409
|
+
# generates this identifier.
|
|
11410
|
+
# Corresponds to the JSON property `id`
|
|
11411
|
+
# @return [Fixnum]
|
|
11412
|
+
attr_accessor :id
|
|
11413
|
+
|
|
11414
|
+
# Output only. [Output Only] Type of the resource. Alwayscompute#
|
|
11415
|
+
# dhcpOptionsConfig for dhcp options configs.
|
|
11416
|
+
# Corresponds to the JSON property `kind`
|
|
11417
|
+
# @return [String]
|
|
11418
|
+
attr_accessor :kind
|
|
11419
|
+
|
|
11420
|
+
# The duration, in seconds, of the IPv4 address lease offered by the DHCP
|
|
11421
|
+
# server to the client VM guest OS. Corresponds to DHCPv4 Option 51.
|
|
11422
|
+
# Corresponds to the JSON property `leaseTimeSec`
|
|
11423
|
+
# @return [Fixnum]
|
|
11424
|
+
attr_accessor :lease_time_sec
|
|
11425
|
+
|
|
11426
|
+
# Name of the resource. Provided by the client when the resource is created.
|
|
11427
|
+
# The name must be 1-63 characters long, and comply withRFC1035.
|
|
11428
|
+
# Specifically, the name must be 1-63 characters long and match the regular
|
|
11429
|
+
# expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
11430
|
+
# character must be a lowercase letter, and all following characters must
|
|
11431
|
+
# be a dash, lowercase letter, or digit, except the last character, which
|
|
11432
|
+
# cannot be a dash.
|
|
11433
|
+
# Corresponds to the JSON property `name`
|
|
11434
|
+
# @return [String]
|
|
11435
|
+
attr_accessor :name
|
|
11436
|
+
|
|
11437
|
+
# An ordered list of IPv4 addresses of Network Time Protocol (NTP) servers
|
|
11438
|
+
# available to the client VM guest OS for system clock synchronization,
|
|
11439
|
+
# listed in order of preference. Corresponds to DHCPv4 Option 42.
|
|
11440
|
+
# Corresponds to the JSON property `ntpServerIpv4Addresses`
|
|
11441
|
+
# @return [Array<String>]
|
|
11442
|
+
attr_accessor :ntp_server_ipv4_addresses
|
|
11443
|
+
|
|
11444
|
+
# An ordered list of IPv6 addresses of Network Time Protocol (NTP) servers
|
|
11445
|
+
# available to the client VM guest OS for system clock synchronization.
|
|
11446
|
+
# Corresponds to DHCPv6 Option 56.
|
|
11447
|
+
# Corresponds to the JSON property `ntpServerIpv6Addresses`
|
|
11448
|
+
# @return [Array<String>]
|
|
11449
|
+
attr_accessor :ntp_server_ipv6_addresses
|
|
11450
|
+
|
|
11451
|
+
# Output only. [Output Only] URL of the region where the resource resides.
|
|
11452
|
+
# Corresponds to the JSON property `region`
|
|
11453
|
+
# @return [String]
|
|
11454
|
+
attr_accessor :region
|
|
11455
|
+
|
|
11456
|
+
# Output only. [Output Only] Server-defined URL for the resource.
|
|
11457
|
+
# Corresponds to the JSON property `selfLink`
|
|
11458
|
+
# @return [String]
|
|
11459
|
+
attr_accessor :self_link
|
|
11460
|
+
|
|
11461
|
+
# An ordered list of one or more IPv4 addresses of TFTP servers. Provides
|
|
11462
|
+
# server redundancy and failover support, and is generally prioritized by
|
|
11463
|
+
# clients over the single hostname specified in Option 66. Corresponds to
|
|
11464
|
+
# DHCPv4 Option 150.
|
|
11465
|
+
# Corresponds to the JSON property `tftpServerIpv4Addresses`
|
|
11466
|
+
# @return [Array<String>]
|
|
11467
|
+
attr_accessor :tftp_server_ipv4_addresses
|
|
11468
|
+
|
|
11469
|
+
# The hostname or IP address of the Trivial File Transfer Protocol (TFTP)
|
|
11470
|
+
# server from which the client VM guest OS can download boot files. Typically
|
|
11471
|
+
# used in network booting (PXE) when the standard DHCP header 'sname' field
|
|
11472
|
+
# is overloaded. Corresponds to DHCPv4 Option 66.
|
|
11473
|
+
# Corresponds to the JSON property `tftpServerIpv4Name`
|
|
11474
|
+
# @return [String]
|
|
11475
|
+
attr_accessor :tftp_server_ipv4_name
|
|
11476
|
+
|
|
11477
|
+
def initialize(**args)
|
|
11478
|
+
update!(**args)
|
|
11479
|
+
end
|
|
11480
|
+
|
|
11481
|
+
# Update properties of this object
|
|
11482
|
+
def update!(**args)
|
|
11483
|
+
@associations = args[:associations] if args.key?(:associations)
|
|
11484
|
+
@boot_file_ipv4_name = args[:boot_file_ipv4_name] if args.key?(:boot_file_ipv4_name)
|
|
11485
|
+
@boot_file_ipv6_parameters = args[:boot_file_ipv6_parameters] if args.key?(:boot_file_ipv6_parameters)
|
|
11486
|
+
@boot_file_ipv6_url = args[:boot_file_ipv6_url] if args.key?(:boot_file_ipv6_url)
|
|
11487
|
+
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
11488
|
+
@description = args[:description] if args.key?(:description)
|
|
11489
|
+
@dns_search_paths = args[:dns_search_paths] if args.key?(:dns_search_paths)
|
|
11490
|
+
@dns_server_ipv4_addresses = args[:dns_server_ipv4_addresses] if args.key?(:dns_server_ipv4_addresses)
|
|
11491
|
+
@dns_server_ipv6_addresses = args[:dns_server_ipv6_addresses] if args.key?(:dns_server_ipv6_addresses)
|
|
11492
|
+
@domain_name = args[:domain_name] if args.key?(:domain_name)
|
|
11493
|
+
@id = args[:id] if args.key?(:id)
|
|
11494
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
11495
|
+
@lease_time_sec = args[:lease_time_sec] if args.key?(:lease_time_sec)
|
|
11496
|
+
@name = args[:name] if args.key?(:name)
|
|
11497
|
+
@ntp_server_ipv4_addresses = args[:ntp_server_ipv4_addresses] if args.key?(:ntp_server_ipv4_addresses)
|
|
11498
|
+
@ntp_server_ipv6_addresses = args[:ntp_server_ipv6_addresses] if args.key?(:ntp_server_ipv6_addresses)
|
|
11499
|
+
@region = args[:region] if args.key?(:region)
|
|
11500
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
11501
|
+
@tftp_server_ipv4_addresses = args[:tftp_server_ipv4_addresses] if args.key?(:tftp_server_ipv4_addresses)
|
|
11502
|
+
@tftp_server_ipv4_name = args[:tftp_server_ipv4_name] if args.key?(:tftp_server_ipv4_name)
|
|
11503
|
+
end
|
|
11504
|
+
end
|
|
11505
|
+
|
|
11506
|
+
# Association represents the relationship between a DHCP options config and a
|
|
11507
|
+
# network. Association represents the relationship between a DHCP options
|
|
11508
|
+
# config and a network.
|
|
11509
|
+
class DhcpOptionsConfigAssociation
|
|
11510
|
+
include Google::Apis::Core::Hashable
|
|
11511
|
+
|
|
11512
|
+
# Required. The target network this DHCP option is attached to.
|
|
11513
|
+
# You can specify this as a full or partial URL. For example, the following
|
|
11514
|
+
# are all valid URLs:
|
|
11515
|
+
#
|
|
11516
|
+
#
|
|
11517
|
+
# - https://www.googleapis.com/compute/v1/projects/project/global/networks/
|
|
11518
|
+
# network
|
|
11519
|
+
#
|
|
11520
|
+
# - projects/project/global/networks/network
|
|
11521
|
+
# Corresponds to the JSON property `network`
|
|
11522
|
+
# @return [String]
|
|
11523
|
+
attr_accessor :network
|
|
11524
|
+
|
|
11525
|
+
# Output only. [Output Only] The server-defined ID of the associated Network.
|
|
11526
|
+
# Corresponds to the JSON property `networkId`
|
|
11527
|
+
# @return [Fixnum]
|
|
11528
|
+
attr_accessor :network_id
|
|
11529
|
+
|
|
11530
|
+
# Output only. [Output Only] State of the association.
|
|
11531
|
+
# Corresponds to the JSON property `state`
|
|
11532
|
+
# @return [String]
|
|
11533
|
+
attr_accessor :state
|
|
11534
|
+
|
|
11535
|
+
def initialize(**args)
|
|
11536
|
+
update!(**args)
|
|
11537
|
+
end
|
|
11538
|
+
|
|
11539
|
+
# Update properties of this object
|
|
11540
|
+
def update!(**args)
|
|
11541
|
+
@network = args[:network] if args.key?(:network)
|
|
11542
|
+
@network_id = args[:network_id] if args.key?(:network_id)
|
|
11543
|
+
@state = args[:state] if args.key?(:state)
|
|
11544
|
+
end
|
|
11545
|
+
end
|
|
11546
|
+
|
|
11547
|
+
#
|
|
11548
|
+
class DhcpOptionsConfigList
|
|
11549
|
+
include Google::Apis::Core::Hashable
|
|
11550
|
+
|
|
11551
|
+
# Server-defined ETag for optimistic concurrency control.
|
|
11552
|
+
# Corresponds to the JSON property `etag`
|
|
11553
|
+
# @return [String]
|
|
11554
|
+
attr_accessor :etag
|
|
11555
|
+
|
|
11556
|
+
# [Output Only] Unique identifier for the resource; defined by the server.
|
|
11557
|
+
# Corresponds to the JSON property `id`
|
|
11558
|
+
# @return [String]
|
|
11559
|
+
attr_accessor :id
|
|
11560
|
+
|
|
11561
|
+
# A list of DhcpOptionsConfig resources.
|
|
11562
|
+
# Corresponds to the JSON property `items`
|
|
11563
|
+
# @return [Array<Google::Apis::ComputeAlpha::DhcpOptionsConfig>]
|
|
11564
|
+
attr_accessor :items
|
|
11565
|
+
|
|
11566
|
+
# Output only. [Output Only] Type of the resource. Alwayscompute#
|
|
11567
|
+
# dhcpOptionsConfigList for a list of dhcp options
|
|
11568
|
+
# configs.
|
|
11569
|
+
# Corresponds to the JSON property `kind`
|
|
11570
|
+
# @return [String]
|
|
11571
|
+
attr_accessor :kind
|
|
11572
|
+
|
|
11573
|
+
# [Output Only] This token allows you to get the next page of results for
|
|
11574
|
+
# list requests. If the number of results is larger thanmaxResults, use the
|
|
11575
|
+
# nextPageToken as a value for
|
|
11576
|
+
# the query parameter pageToken in the next list request.
|
|
11577
|
+
# Subsequent list requests will have their own nextPageToken to
|
|
11578
|
+
# continue paging through the results.
|
|
11579
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
11580
|
+
# @return [String]
|
|
11581
|
+
attr_accessor :next_page_token
|
|
11582
|
+
|
|
11583
|
+
# [Output Only] Server-defined URL for this resource.
|
|
11584
|
+
# Corresponds to the JSON property `selfLink`
|
|
11585
|
+
# @return [String]
|
|
11586
|
+
attr_accessor :self_link
|
|
11587
|
+
|
|
11588
|
+
# Output only. [Output Only] Unreachable resources.
|
|
11589
|
+
# end_interface: MixerListResponseWithEtagBuilder
|
|
11590
|
+
# Corresponds to the JSON property `unreachables`
|
|
11591
|
+
# @return [Array<String>]
|
|
11592
|
+
attr_accessor :unreachables
|
|
11593
|
+
|
|
11594
|
+
# [Output Only] Informational warning message.
|
|
11595
|
+
# Corresponds to the JSON property `warning`
|
|
11596
|
+
# @return [Google::Apis::ComputeAlpha::DhcpOptionsConfigList::Warning]
|
|
11597
|
+
attr_accessor :warning
|
|
11598
|
+
|
|
11599
|
+
def initialize(**args)
|
|
11600
|
+
update!(**args)
|
|
11601
|
+
end
|
|
11602
|
+
|
|
11603
|
+
# Update properties of this object
|
|
11604
|
+
def update!(**args)
|
|
11605
|
+
@etag = args[:etag] if args.key?(:etag)
|
|
11606
|
+
@id = args[:id] if args.key?(:id)
|
|
11607
|
+
@items = args[:items] if args.key?(:items)
|
|
11608
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
11609
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
11610
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
11611
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
|
11612
|
+
@warning = args[:warning] if args.key?(:warning)
|
|
11613
|
+
end
|
|
11614
|
+
|
|
11615
|
+
# [Output Only] Informational warning message.
|
|
11616
|
+
class Warning
|
|
11617
|
+
include Google::Apis::Core::Hashable
|
|
11618
|
+
|
|
11619
|
+
# [Output Only] A warning code, if applicable. For example, Compute
|
|
11620
|
+
# Engine returns NO_RESULTS_ON_PAGE if there
|
|
11621
|
+
# are no results in the response.
|
|
11622
|
+
# Corresponds to the JSON property `code`
|
|
11623
|
+
# @return [String]
|
|
11624
|
+
attr_accessor :code
|
|
11625
|
+
|
|
11626
|
+
# [Output Only] Metadata about this warning in key:
|
|
11627
|
+
# value format. For example:
|
|
11628
|
+
# "data": [
|
|
11629
|
+
# `
|
|
11630
|
+
# "key": "scope",
|
|
11631
|
+
# "value": "zones/us-east1-d"
|
|
11632
|
+
# `
|
|
11633
|
+
# Corresponds to the JSON property `data`
|
|
11634
|
+
# @return [Array<Google::Apis::ComputeAlpha::DhcpOptionsConfigList::Warning::Datum>]
|
|
11635
|
+
attr_accessor :data
|
|
11636
|
+
|
|
11637
|
+
# [Output Only] A human-readable description of the warning code.
|
|
11638
|
+
# Corresponds to the JSON property `message`
|
|
11639
|
+
# @return [String]
|
|
11640
|
+
attr_accessor :message
|
|
11641
|
+
|
|
11642
|
+
def initialize(**args)
|
|
11643
|
+
update!(**args)
|
|
11644
|
+
end
|
|
11645
|
+
|
|
11646
|
+
# Update properties of this object
|
|
11647
|
+
def update!(**args)
|
|
11648
|
+
@code = args[:code] if args.key?(:code)
|
|
11649
|
+
@data = args[:data] if args.key?(:data)
|
|
11650
|
+
@message = args[:message] if args.key?(:message)
|
|
11651
|
+
end
|
|
11652
|
+
|
|
11653
|
+
#
|
|
11654
|
+
class Datum
|
|
11655
|
+
include Google::Apis::Core::Hashable
|
|
11656
|
+
|
|
11657
|
+
# [Output Only] A key that provides more detail on the warning being
|
|
11658
|
+
# returned. For example, for warnings where there are no results in a list
|
|
11659
|
+
# request for a particular zone, this key might be scope and
|
|
11660
|
+
# the key value might be the zone name. Other examples might be a key
|
|
11661
|
+
# indicating a deprecated resource and a suggested replacement, or a
|
|
11662
|
+
# warning about invalid network settings (for example, if an instance
|
|
11663
|
+
# attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
11664
|
+
# Corresponds to the JSON property `key`
|
|
11665
|
+
# @return [String]
|
|
11666
|
+
attr_accessor :key
|
|
11667
|
+
|
|
11668
|
+
# [Output Only] A warning data value corresponding to the key.
|
|
11669
|
+
# Corresponds to the JSON property `value`
|
|
11670
|
+
# @return [String]
|
|
11671
|
+
attr_accessor :value
|
|
11672
|
+
|
|
11673
|
+
def initialize(**args)
|
|
11674
|
+
update!(**args)
|
|
11675
|
+
end
|
|
11676
|
+
|
|
11677
|
+
# Update properties of this object
|
|
11678
|
+
def update!(**args)
|
|
11679
|
+
@key = args[:key] if args.key?(:key)
|
|
11680
|
+
@value = args[:value] if args.key?(:value)
|
|
11681
|
+
end
|
|
11682
|
+
end
|
|
11683
|
+
end
|
|
11684
|
+
end
|
|
11685
|
+
|
|
11076
11686
|
# Represents a Persistent Disk resource.
|
|
11077
11687
|
# Google Compute Engine has two Disk resources:
|
|
11078
11688
|
# * [Zonal](/compute/docs/reference/rest/alpha/disks)
|
|
@@ -15069,7 +15679,9 @@ module Google
|
|
|
15069
15679
|
|
|
15070
15680
|
# The Action to perform when the client connection triggers the rule.
|
|
15071
15681
|
# Valid actions for firewall rules are: "allow", "deny",
|
|
15072
|
-
# "apply_security_profile_group" and "goto_next"
|
|
15682
|
+
# "apply_security_profile_group" and "goto_next" (
|
|
15683
|
+
# "apply_security_profile_group" can be specified only for global
|
|
15684
|
+
# network firewall policies or hierarchical firewall policies).
|
|
15073
15685
|
# Valid actions for packet mirroring rules are: "mirror", "do_not_mirror"
|
|
15074
15686
|
# and "goto_next".
|
|
15075
15687
|
# Corresponds to the JSON property `action`
|
|
@@ -15138,12 +15750,13 @@ module Google
|
|
|
15138
15750
|
# @return [Fixnum]
|
|
15139
15751
|
attr_accessor :rule_tuple_count
|
|
15140
15752
|
|
|
15141
|
-
# A fully-qualified URL of a
|
|
15753
|
+
# A fully-qualified URL of a SecurityProfileGroup resource instance.
|
|
15142
15754
|
# Example:
|
|
15143
15755
|
# https://networksecurity.googleapis.com/v1/projects/`project`/locations/`
|
|
15144
15756
|
# location`/securityProfileGroups/my-security-profile-group
|
|
15145
15757
|
# Must be specified if action is one of 'apply_security_profile_group' or
|
|
15146
|
-
# 'mirror'. Cannot be specified for other actions.
|
|
15758
|
+
# 'mirror'. Cannot be specified for other actions. Can be specified only
|
|
15759
|
+
# for global network firewall policies or hierarchical firewall policies.
|
|
15147
15760
|
# Corresponds to the JSON property `securityProfileGroup`
|
|
15148
15761
|
# @return [String]
|
|
15149
15762
|
attr_accessor :security_profile_group
|
|
@@ -15437,6 +16050,27 @@ module Google
|
|
|
15437
16050
|
end
|
|
15438
16051
|
end
|
|
15439
16052
|
|
|
16053
|
+
# Metadata for FirewallPolicyRule operations.
|
|
16054
|
+
class FirewallPolicyRuleOperationMetadata
|
|
16055
|
+
include Google::Apis::Core::Hashable
|
|
16056
|
+
|
|
16057
|
+
# Output only. [Output Only] The priority allocated for the firewall policy rule
|
|
16058
|
+
# if query
|
|
16059
|
+
# parameters specified minPriority/maxPriority.
|
|
16060
|
+
# Corresponds to the JSON property `allocatedPriority`
|
|
16061
|
+
# @return [Fixnum]
|
|
16062
|
+
attr_accessor :allocated_priority
|
|
16063
|
+
|
|
16064
|
+
def initialize(**args)
|
|
16065
|
+
update!(**args)
|
|
16066
|
+
end
|
|
16067
|
+
|
|
16068
|
+
# Update properties of this object
|
|
16069
|
+
def update!(**args)
|
|
16070
|
+
@allocated_priority = args[:allocated_priority] if args.key?(:allocated_priority)
|
|
16071
|
+
end
|
|
16072
|
+
end
|
|
16073
|
+
|
|
15440
16074
|
#
|
|
15441
16075
|
class FirewallPolicyRuleSecureTag
|
|
15442
16076
|
include Google::Apis::Core::Hashable
|
|
@@ -16827,6 +17461,13 @@ module Google
|
|
|
16827
17461
|
# @return [String]
|
|
16828
17462
|
attr_accessor :reservation_name
|
|
16829
17463
|
|
|
17464
|
+
# Name of the resource intended to be delivered. Name should conform to
|
|
17465
|
+
# RFC1035. This will be the name of storage pool or Exapool for persistent
|
|
17466
|
+
# disk FRs.
|
|
17467
|
+
# Corresponds to the JSON property `resourceName`
|
|
17468
|
+
# @return [String]
|
|
17469
|
+
attr_accessor :resource_name
|
|
17470
|
+
|
|
16830
17471
|
# Maintenance information for this reservation
|
|
16831
17472
|
# Corresponds to the JSON property `schedulingType`
|
|
16832
17473
|
# @return [String]
|
|
@@ -16868,6 +17509,11 @@ module Google
|
|
|
16868
17509
|
# @return [Google::Apis::ComputeAlpha::FutureReservationStatus]
|
|
16869
17510
|
attr_accessor :status
|
|
16870
17511
|
|
|
17512
|
+
# Storage pool properties for the future reservation.
|
|
17513
|
+
# Corresponds to the JSON property `storagePoolProperties`
|
|
17514
|
+
# @return [Google::Apis::ComputeAlpha::FutureReservationStoragePoolProperties]
|
|
17515
|
+
attr_accessor :storage_pool_properties
|
|
17516
|
+
|
|
16871
17517
|
# Time window for this Future Reservation.
|
|
16872
17518
|
# Corresponds to the JSON property `timeWindow`
|
|
16873
17519
|
# @return [Google::Apis::ComputeAlpha::FutureReservationTimeWindow]
|
|
@@ -16906,6 +17552,7 @@ module Google
|
|
|
16906
17552
|
@protection_tier = args[:protection_tier] if args.key?(:protection_tier)
|
|
16907
17553
|
@reservation_mode = args[:reservation_mode] if args.key?(:reservation_mode)
|
|
16908
17554
|
@reservation_name = args[:reservation_name] if args.key?(:reservation_name)
|
|
17555
|
+
@resource_name = args[:resource_name] if args.key?(:resource_name)
|
|
16909
17556
|
@scheduling_type = args[:scheduling_type] if args.key?(:scheduling_type)
|
|
16910
17557
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
16911
17558
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
@@ -16913,6 +17560,7 @@ module Google
|
|
|
16913
17560
|
@specific_reservation_required = args[:specific_reservation_required] if args.key?(:specific_reservation_required)
|
|
16914
17561
|
@specific_sku_properties = args[:specific_sku_properties] if args.key?(:specific_sku_properties)
|
|
16915
17562
|
@status = args[:status] if args.key?(:status)
|
|
17563
|
+
@storage_pool_properties = args[:storage_pool_properties] if args.key?(:storage_pool_properties)
|
|
16916
17564
|
@time_window = args[:time_window] if args.key?(:time_window)
|
|
16917
17565
|
@zone = args[:zone] if args.key?(:zone)
|
|
16918
17566
|
end
|
|
@@ -17028,6 +17676,11 @@ module Google
|
|
|
17028
17676
|
# @return [Array<String>]
|
|
17029
17677
|
attr_accessor :auto_created_reservations
|
|
17030
17678
|
|
|
17679
|
+
# Exapool provisioned capacities for each SKU type
|
|
17680
|
+
# Corresponds to the JSON property `exapoolProvisionedCapacityGb`
|
|
17681
|
+
# @return [Google::Apis::ComputeAlpha::StoragePoolExapoolProvisionedCapacityGb]
|
|
17682
|
+
attr_accessor :exapool_provisioned_capacity_gb
|
|
17683
|
+
|
|
17031
17684
|
# [Output Only] Represents the existing matching usage for the future
|
|
17032
17685
|
# reservation.
|
|
17033
17686
|
# Corresponds to the JSON property `existingMatchingUsageInfo`
|
|
@@ -17067,6 +17720,11 @@ module Google
|
|
|
17067
17720
|
# @return [Google::Apis::ComputeAlpha::FutureReservationStatusSpecificSkuProperties]
|
|
17068
17721
|
attr_accessor :specific_sku_properties
|
|
17069
17722
|
|
|
17723
|
+
# Storage pool provisioned capacities for each SKU type.
|
|
17724
|
+
# Corresponds to the JSON property `storagePoolProvisionedCapacity`
|
|
17725
|
+
# @return [Google::Apis::ComputeAlpha::FutureReservationStoragePoolProvisionedCapacity]
|
|
17726
|
+
attr_accessor :storage_pool_provisioned_capacity
|
|
17727
|
+
|
|
17070
17728
|
def initialize(**args)
|
|
17071
17729
|
update!(**args)
|
|
17072
17730
|
end
|
|
@@ -17075,12 +17733,14 @@ module Google
|
|
|
17075
17733
|
def update!(**args)
|
|
17076
17734
|
@amendment_status = args[:amendment_status] if args.key?(:amendment_status)
|
|
17077
17735
|
@auto_created_reservations = args[:auto_created_reservations] if args.key?(:auto_created_reservations)
|
|
17736
|
+
@exapool_provisioned_capacity_gb = args[:exapool_provisioned_capacity_gb] if args.key?(:exapool_provisioned_capacity_gb)
|
|
17078
17737
|
@existing_matching_usage_info = args[:existing_matching_usage_info] if args.key?(:existing_matching_usage_info)
|
|
17079
17738
|
@fulfilled_count = args[:fulfilled_count] if args.key?(:fulfilled_count)
|
|
17080
17739
|
@last_known_good_state = args[:last_known_good_state] if args.key?(:last_known_good_state)
|
|
17081
17740
|
@lock_time = args[:lock_time] if args.key?(:lock_time)
|
|
17082
17741
|
@procurement_status = args[:procurement_status] if args.key?(:procurement_status)
|
|
17083
17742
|
@specific_sku_properties = args[:specific_sku_properties] if args.key?(:specific_sku_properties)
|
|
17743
|
+
@storage_pool_provisioned_capacity = args[:storage_pool_provisioned_capacity] if args.key?(:storage_pool_provisioned_capacity)
|
|
17084
17744
|
end
|
|
17085
17745
|
end
|
|
17086
17746
|
|
|
@@ -17219,6 +17879,70 @@ module Google
|
|
|
17219
17879
|
end
|
|
17220
17880
|
end
|
|
17221
17881
|
|
|
17882
|
+
# Storage pool properties for the future reservation.
|
|
17883
|
+
class FutureReservationStoragePoolProperties
|
|
17884
|
+
include Google::Apis::Core::Hashable
|
|
17885
|
+
|
|
17886
|
+
# Exapool provisioned capacities for each SKU type
|
|
17887
|
+
# Corresponds to the JSON property `requestedExapoolProvisionedCapacityGb`
|
|
17888
|
+
# @return [Google::Apis::ComputeAlpha::StoragePoolExapoolProvisionedCapacityGb]
|
|
17889
|
+
attr_accessor :requested_exapool_provisioned_capacity_gb
|
|
17890
|
+
|
|
17891
|
+
# Storage pool provisioned capacities for each SKU type.
|
|
17892
|
+
# Corresponds to the JSON property `requestedStoragePoolProvisionedCapacity`
|
|
17893
|
+
# @return [Google::Apis::ComputeAlpha::FutureReservationStoragePoolProvisionedCapacity]
|
|
17894
|
+
attr_accessor :requested_storage_pool_provisioned_capacity
|
|
17895
|
+
|
|
17896
|
+
# Type of the storage pool.
|
|
17897
|
+
# Corresponds to the JSON property `storagePoolType`
|
|
17898
|
+
# @return [String]
|
|
17899
|
+
attr_accessor :storage_pool_type
|
|
17900
|
+
|
|
17901
|
+
def initialize(**args)
|
|
17902
|
+
update!(**args)
|
|
17903
|
+
end
|
|
17904
|
+
|
|
17905
|
+
# Update properties of this object
|
|
17906
|
+
def update!(**args)
|
|
17907
|
+
@requested_exapool_provisioned_capacity_gb = args[:requested_exapool_provisioned_capacity_gb] if args.key?(:requested_exapool_provisioned_capacity_gb)
|
|
17908
|
+
@requested_storage_pool_provisioned_capacity = args[:requested_storage_pool_provisioned_capacity] if args.key?(:requested_storage_pool_provisioned_capacity)
|
|
17909
|
+
@storage_pool_type = args[:storage_pool_type] if args.key?(:storage_pool_type)
|
|
17910
|
+
end
|
|
17911
|
+
end
|
|
17912
|
+
|
|
17913
|
+
# Storage pool provisioned capacities for each SKU type.
|
|
17914
|
+
class FutureReservationStoragePoolProvisionedCapacity
|
|
17915
|
+
include Google::Apis::Core::Hashable
|
|
17916
|
+
|
|
17917
|
+
# Size of the storage pool in GiB.
|
|
17918
|
+
# Corresponds to the JSON property `poolProvisionedCapacityGb`
|
|
17919
|
+
# @return [Fixnum]
|
|
17920
|
+
attr_accessor :pool_provisioned_capacity_gb
|
|
17921
|
+
|
|
17922
|
+
# Provisioned IOPS of the storage pool. Only relevant if the storage pool
|
|
17923
|
+
# type is hyperdisk-balanced.
|
|
17924
|
+
# Corresponds to the JSON property `poolProvisionedIops`
|
|
17925
|
+
# @return [Fixnum]
|
|
17926
|
+
attr_accessor :pool_provisioned_iops
|
|
17927
|
+
|
|
17928
|
+
# Provisioned throughput of the storage pool in MiB/s. Only relevant if
|
|
17929
|
+
# the storage pool type is hyperdisk-balanced or hyperdisk-throughput.
|
|
17930
|
+
# Corresponds to the JSON property `poolProvisionedThroughput`
|
|
17931
|
+
# @return [Fixnum]
|
|
17932
|
+
attr_accessor :pool_provisioned_throughput
|
|
17933
|
+
|
|
17934
|
+
def initialize(**args)
|
|
17935
|
+
update!(**args)
|
|
17936
|
+
end
|
|
17937
|
+
|
|
17938
|
+
# Update properties of this object
|
|
17939
|
+
def update!(**args)
|
|
17940
|
+
@pool_provisioned_capacity_gb = args[:pool_provisioned_capacity_gb] if args.key?(:pool_provisioned_capacity_gb)
|
|
17941
|
+
@pool_provisioned_iops = args[:pool_provisioned_iops] if args.key?(:pool_provisioned_iops)
|
|
17942
|
+
@pool_provisioned_throughput = args[:pool_provisioned_throughput] if args.key?(:pool_provisioned_throughput)
|
|
17943
|
+
end
|
|
17944
|
+
end
|
|
17945
|
+
|
|
17222
17946
|
#
|
|
17223
17947
|
class FutureReservationTimeWindow
|
|
17224
17948
|
include Google::Apis::Core::Hashable
|
|
@@ -20009,7 +20733,8 @@ module Google
|
|
|
20009
20733
|
@errors = args[:errors] if args.key?(:errors)
|
|
20010
20734
|
end
|
|
20011
20735
|
|
|
20012
|
-
#
|
|
20736
|
+
# Represents a single error encountered during the processing of an
|
|
20737
|
+
# operation.
|
|
20013
20738
|
class Error
|
|
20014
20739
|
include Google::Apis::Core::Hashable
|
|
20015
20740
|
|
|
@@ -20050,7 +20775,8 @@ module Google
|
|
|
20050
20775
|
@message = args[:message] if args.key?(:message)
|
|
20051
20776
|
end
|
|
20052
20777
|
|
|
20053
|
-
#
|
|
20778
|
+
# Container for structured error details providing additional context
|
|
20779
|
+
# specific to the encountered error code.
|
|
20054
20780
|
class ErrorDetail
|
|
20055
20781
|
include Google::Apis::Core::Hashable
|
|
20056
20782
|
|
|
@@ -20190,7 +20916,8 @@ module Google
|
|
|
20190
20916
|
@errors = args[:errors] if args.key?(:errors)
|
|
20191
20917
|
end
|
|
20192
20918
|
|
|
20193
|
-
#
|
|
20919
|
+
# Represents a single error encountered during the processing of an
|
|
20920
|
+
# operation.
|
|
20194
20921
|
class Error
|
|
20195
20922
|
include Google::Apis::Core::Hashable
|
|
20196
20923
|
|
|
@@ -20231,7 +20958,8 @@ module Google
|
|
|
20231
20958
|
@message = args[:message] if args.key?(:message)
|
|
20232
20959
|
end
|
|
20233
20960
|
|
|
20234
|
-
#
|
|
20961
|
+
# Container for structured error details providing additional context
|
|
20962
|
+
# specific to the encountered error code.
|
|
20235
20963
|
class ErrorDetail
|
|
20236
20964
|
include Google::Apis::Core::Hashable
|
|
20237
20965
|
|
|
@@ -25874,6 +26602,12 @@ module Google
|
|
|
25874
26602
|
# @return [String]
|
|
25875
26603
|
attr_accessor :last_suspended_timestamp
|
|
25876
26604
|
|
|
26605
|
+
# Specifies which method should be used for encrypting the
|
|
26606
|
+
# Local SSDs attached to the VM.
|
|
26607
|
+
# Corresponds to the JSON property `localSsdEncryptionMode`
|
|
26608
|
+
# @return [String]
|
|
26609
|
+
attr_accessor :local_ssd_encryption_mode
|
|
26610
|
+
|
|
25877
26611
|
# Full or partial URL of the machine type resource to use for this instance,
|
|
25878
26612
|
# in the format:zones/zone/machineTypes/machine-type. This is provided by the
|
|
25879
26613
|
# client
|
|
@@ -26139,6 +26873,7 @@ module Google
|
|
|
26139
26873
|
@last_start_timestamp = args[:last_start_timestamp] if args.key?(:last_start_timestamp)
|
|
26140
26874
|
@last_stop_timestamp = args[:last_stop_timestamp] if args.key?(:last_stop_timestamp)
|
|
26141
26875
|
@last_suspended_timestamp = args[:last_suspended_timestamp] if args.key?(:last_suspended_timestamp)
|
|
26876
|
+
@local_ssd_encryption_mode = args[:local_ssd_encryption_mode] if args.key?(:local_ssd_encryption_mode)
|
|
26142
26877
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
|
26143
26878
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
26144
26879
|
@min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
|
|
@@ -28125,7 +28860,8 @@ module Google
|
|
|
28125
28860
|
@errors = args[:errors] if args.key?(:errors)
|
|
28126
28861
|
end
|
|
28127
28862
|
|
|
28128
|
-
#
|
|
28863
|
+
# Represents a single error encountered during the processing of an
|
|
28864
|
+
# operation.
|
|
28129
28865
|
class Error
|
|
28130
28866
|
include Google::Apis::Core::Hashable
|
|
28131
28867
|
|
|
@@ -28166,7 +28902,8 @@ module Google
|
|
|
28166
28902
|
@message = args[:message] if args.key?(:message)
|
|
28167
28903
|
end
|
|
28168
28904
|
|
|
28169
|
-
#
|
|
28905
|
+
# Container for structured error details providing additional context
|
|
28906
|
+
# specific to the encountered error code.
|
|
28170
28907
|
class ErrorDetail
|
|
28171
28908
|
include Google::Apis::Core::Hashable
|
|
28172
28909
|
|
|
@@ -28265,7 +29002,8 @@ module Google
|
|
|
28265
29002
|
@errors = args[:errors] if args.key?(:errors)
|
|
28266
29003
|
end
|
|
28267
29004
|
|
|
28268
|
-
#
|
|
29005
|
+
# Represents a single error encountered during the processing of an
|
|
29006
|
+
# operation.
|
|
28269
29007
|
class Error
|
|
28270
29008
|
include Google::Apis::Core::Hashable
|
|
28271
29009
|
|
|
@@ -28306,7 +29044,8 @@ module Google
|
|
|
28306
29044
|
@message = args[:message] if args.key?(:message)
|
|
28307
29045
|
end
|
|
28308
29046
|
|
|
28309
|
-
#
|
|
29047
|
+
# Container for structured error details providing additional context
|
|
29048
|
+
# specific to the encountered error code.
|
|
28310
29049
|
class ErrorDetail
|
|
28311
29050
|
include Google::Apis::Core::Hashable
|
|
28312
29051
|
|
|
@@ -28705,7 +29444,8 @@ module Google
|
|
|
28705
29444
|
@errors = args[:errors] if args.key?(:errors)
|
|
28706
29445
|
end
|
|
28707
29446
|
|
|
28708
|
-
#
|
|
29447
|
+
# Represents a single error encountered during the processing of an
|
|
29448
|
+
# operation.
|
|
28709
29449
|
class Error
|
|
28710
29450
|
include Google::Apis::Core::Hashable
|
|
28711
29451
|
|
|
@@ -28746,7 +29486,8 @@ module Google
|
|
|
28746
29486
|
@message = args[:message] if args.key?(:message)
|
|
28747
29487
|
end
|
|
28748
29488
|
|
|
28749
|
-
#
|
|
29489
|
+
# Container for structured error details providing additional context
|
|
29490
|
+
# specific to the encountered error code.
|
|
28750
29491
|
class ErrorDetail
|
|
28751
29492
|
include Google::Apis::Core::Hashable
|
|
28752
29493
|
|
|
@@ -28908,7 +29649,8 @@ module Google
|
|
|
28908
29649
|
@errors = args[:errors] if args.key?(:errors)
|
|
28909
29650
|
end
|
|
28910
29651
|
|
|
28911
|
-
#
|
|
29652
|
+
# Represents a single error encountered during the processing of an
|
|
29653
|
+
# operation.
|
|
28912
29654
|
class Error
|
|
28913
29655
|
include Google::Apis::Core::Hashable
|
|
28914
29656
|
|
|
@@ -28949,7 +29691,8 @@ module Google
|
|
|
28949
29691
|
@message = args[:message] if args.key?(:message)
|
|
28950
29692
|
end
|
|
28951
29693
|
|
|
28952
|
-
#
|
|
29694
|
+
# Container for structured error details providing additional context
|
|
29695
|
+
# specific to the encountered error code.
|
|
28953
29696
|
class ErrorDetail
|
|
28954
29697
|
include Google::Apis::Core::Hashable
|
|
28955
29698
|
|
|
@@ -29410,7 +30153,7 @@ module Google
|
|
|
29410
30153
|
class InstanceGroupManagersApplyUpdatesRequest
|
|
29411
30154
|
include Google::Apis::Core::Hashable
|
|
29412
30155
|
|
|
29413
|
-
# Flag to update all instances instead of specified list of
|
|
30156
|
+
# Flag to update all instances instead of specified list of "instances".
|
|
29414
30157
|
# If the flag is set to true then the instances may not be specified
|
|
29415
30158
|
# in the request.
|
|
29416
30159
|
# Corresponds to the JSON property `allInstances`
|
|
@@ -29764,7 +30507,8 @@ module Google
|
|
|
29764
30507
|
@errors = args[:errors] if args.key?(:errors)
|
|
29765
30508
|
end
|
|
29766
30509
|
|
|
29767
|
-
#
|
|
30510
|
+
# Represents a single error encountered during the processing of an
|
|
30511
|
+
# operation.
|
|
29768
30512
|
class Error
|
|
29769
30513
|
include Google::Apis::Core::Hashable
|
|
29770
30514
|
|
|
@@ -29805,7 +30549,8 @@ module Google
|
|
|
29805
30549
|
@message = args[:message] if args.key?(:message)
|
|
29806
30550
|
end
|
|
29807
30551
|
|
|
29808
|
-
#
|
|
30552
|
+
# Container for structured error details providing additional context
|
|
30553
|
+
# specific to the encountered error code.
|
|
29809
30554
|
class ErrorDetail
|
|
29810
30555
|
include Google::Apis::Core::Hashable
|
|
29811
30556
|
|
|
@@ -29871,15 +30616,15 @@ module Google
|
|
|
29871
30616
|
class InstanceGroupManagersListErrorsResponse
|
|
29872
30617
|
include Google::Apis::Core::Hashable
|
|
29873
30618
|
|
|
29874
|
-
# Output only.
|
|
30619
|
+
# Output only. The list of errors of the managed instance group.
|
|
29875
30620
|
# Corresponds to the JSON property `items`
|
|
29876
30621
|
# @return [Array<Google::Apis::ComputeAlpha::InstanceManagedByIgmError>]
|
|
29877
30622
|
attr_accessor :items
|
|
29878
30623
|
|
|
29879
|
-
# Output only.
|
|
29880
|
-
#
|
|
29881
|
-
#
|
|
29882
|
-
# nextPageToken as a value for
|
|
30624
|
+
# Output only. This token allows you to get the next page of results for list
|
|
30625
|
+
# requests.
|
|
30626
|
+
# If the number of results is larger than maxResults
|
|
30627
|
+
# , then use the nextPageToken as a value for
|
|
29883
30628
|
# the query parameter pageToken in the next list request.
|
|
29884
30629
|
# Subsequent list requests will have their own nextPageToken to
|
|
29885
30630
|
# continue paging through the results.
|
|
@@ -31233,6 +31978,12 @@ module Google
|
|
|
31233
31978
|
# @return [Hash<String,String>]
|
|
31234
31979
|
attr_accessor :labels
|
|
31235
31980
|
|
|
31981
|
+
# Specifies which method should be used for encrypting the
|
|
31982
|
+
# Local SSDs attached to the VM.
|
|
31983
|
+
# Corresponds to the JSON property `localSsdEncryptionMode`
|
|
31984
|
+
# @return [String]
|
|
31985
|
+
attr_accessor :local_ssd_encryption_mode
|
|
31986
|
+
|
|
31236
31987
|
# The machine type to use for instances that are created from these
|
|
31237
31988
|
# properties.
|
|
31238
31989
|
# This field only accepts a machine type name, for example `n2-standard-4`.
|
|
@@ -31372,6 +32123,7 @@ module Google
|
|
|
31372
32123
|
@identity_certificate = args[:identity_certificate] if args.key?(:identity_certificate)
|
|
31373
32124
|
@key_revocation_action_type = args[:key_revocation_action_type] if args.key?(:key_revocation_action_type)
|
|
31374
32125
|
@labels = args[:labels] if args.key?(:labels)
|
|
32126
|
+
@local_ssd_encryption_mode = args[:local_ssd_encryption_mode] if args.key?(:local_ssd_encryption_mode)
|
|
31375
32127
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
|
31376
32128
|
@metadata = args[:metadata] if args.key?(:metadata)
|
|
31377
32129
|
@min_cpu_platform = args[:min_cpu_platform] if args.key?(:min_cpu_platform)
|
|
@@ -38392,6 +39144,33 @@ module Google
|
|
|
38392
39144
|
end
|
|
38393
39145
|
end
|
|
38394
39146
|
|
|
39147
|
+
# Request to rename an interconnect.
|
|
39148
|
+
class InterconnectsSetNameRequest
|
|
39149
|
+
include Google::Apis::Core::Hashable
|
|
39150
|
+
|
|
39151
|
+
# The current name of the interconnect.
|
|
39152
|
+
# The name must be 1-63 characters long, and comply with RFC1035.
|
|
39153
|
+
# Corresponds to the JSON property `currentName`
|
|
39154
|
+
# @return [String]
|
|
39155
|
+
attr_accessor :current_name
|
|
39156
|
+
|
|
39157
|
+
# The new name of the interconnect.
|
|
39158
|
+
# The name must be 1-63 characters long, and comply with RFC1035.
|
|
39159
|
+
# Corresponds to the JSON property `name`
|
|
39160
|
+
# @return [String]
|
|
39161
|
+
attr_accessor :name
|
|
39162
|
+
|
|
39163
|
+
def initialize(**args)
|
|
39164
|
+
update!(**args)
|
|
39165
|
+
end
|
|
39166
|
+
|
|
39167
|
+
# Update properties of this object
|
|
39168
|
+
def update!(**args)
|
|
39169
|
+
@current_name = args[:current_name] if args.key?(:current_name)
|
|
39170
|
+
@name = args[:name] if args.key?(:name)
|
|
39171
|
+
end
|
|
39172
|
+
end
|
|
39173
|
+
|
|
38395
39174
|
#
|
|
38396
39175
|
class InternalIpAddress
|
|
38397
39176
|
include Google::Apis::Core::Hashable
|
|
@@ -41138,15 +41917,13 @@ module Google
|
|
|
41138
41917
|
# @return [Google::Apis::ComputeAlpha::ManagedInstancePropertiesFromFlexibilityPolicy]
|
|
41139
41918
|
attr_accessor :properties_from_flexibility_policy
|
|
41140
41919
|
|
|
41141
|
-
# Output only.
|
|
41142
|
-
#
|
|
41143
|
-
# if applicable.
|
|
41920
|
+
# Output only. Information about the termination timestamp of the instance, if
|
|
41921
|
+
# applicable.
|
|
41144
41922
|
# Corresponds to the JSON property `scheduling`
|
|
41145
41923
|
# @return [Google::Apis::ComputeAlpha::ManagedInstanceScheduling]
|
|
41146
41924
|
attr_accessor :scheduling
|
|
41147
41925
|
|
|
41148
|
-
# Output only.
|
|
41149
|
-
# instance is in
|
|
41926
|
+
# Output only. Specifies the graceful shutdown details if the instance is in
|
|
41150
41927
|
# `PENDING_STOP` state or there is a programmed stop scheduled.
|
|
41151
41928
|
# Corresponds to the JSON property `shutdownDetails`
|
|
41152
41929
|
# @return [Google::Apis::ComputeAlpha::ManagedInstanceShutdownDetails]
|
|
@@ -41263,6 +42040,9 @@ module Google
|
|
|
41263
42040
|
# Policy.
|
|
41264
42041
|
# - TERMINATION_TIMESTAMP Instance reached termination time,
|
|
41265
42042
|
# thus managed instance group stops/deletes it.
|
|
42043
|
+
# - GRACEFUL_SHUTDOWN_TIMESTAMP Instance reached graceful
|
|
42044
|
+
# shutdown time, thus managed instance group stops/deletes it to
|
|
42045
|
+
# gracefully shut it down.
|
|
41266
42046
|
# Corresponds to the JSON property `trigger`
|
|
41267
42047
|
# @return [String]
|
|
41268
42048
|
attr_accessor :trigger
|
|
@@ -41393,7 +42173,8 @@ module Google
|
|
|
41393
42173
|
@errors = args[:errors] if args.key?(:errors)
|
|
41394
42174
|
end
|
|
41395
42175
|
|
|
41396
|
-
#
|
|
42176
|
+
# Represents a single error encountered during the processing of an
|
|
42177
|
+
# operation.
|
|
41397
42178
|
class Error
|
|
41398
42179
|
include Google::Apis::Core::Hashable
|
|
41399
42180
|
|
|
@@ -41434,7 +42215,8 @@ module Google
|
|
|
41434
42215
|
@message = args[:message] if args.key?(:message)
|
|
41435
42216
|
end
|
|
41436
42217
|
|
|
41437
|
-
#
|
|
42218
|
+
# Container for structured error details providing additional context
|
|
42219
|
+
# specific to the encountered error code.
|
|
41438
42220
|
class ErrorDetail
|
|
41439
42221
|
include Google::Apis::Core::Hashable
|
|
41440
42222
|
|
|
@@ -41538,16 +42320,17 @@ module Google
|
|
|
41538
42320
|
class ManagedInstanceScheduling
|
|
41539
42321
|
include Google::Apis::Core::Hashable
|
|
41540
42322
|
|
|
41541
|
-
# Output only.
|
|
41542
|
-
# be
|
|
42323
|
+
# Output only. The timestamp at which the underlying instance will be
|
|
41543
42324
|
# triggered for graceful shutdown if it is configured. This is in RFC3339 text
|
|
41544
42325
|
# format.
|
|
41545
42326
|
# Corresponds to the JSON property `gracefulShutdownTimestamp`
|
|
41546
42327
|
# @return [String]
|
|
41547
42328
|
attr_accessor :graceful_shutdown_timestamp
|
|
41548
42329
|
|
|
41549
|
-
# Output only.
|
|
41550
|
-
#
|
|
42330
|
+
# Output only. The timestamp at which the managed instance will be terminated.
|
|
42331
|
+
# This is
|
|
42332
|
+
# in RFC3339 text
|
|
42333
|
+
# format.
|
|
41551
42334
|
# Corresponds to the JSON property `terminationTimestamp`
|
|
41552
42335
|
# @return [String]
|
|
41553
42336
|
attr_accessor :termination_timestamp
|
|
@@ -41575,9 +42358,10 @@ module Google
|
|
|
41575
42358
|
# @return [Google::Apis::ComputeAlpha::Duration]
|
|
41576
42359
|
attr_accessor :max_duration
|
|
41577
42360
|
|
|
41578
|
-
# Output only.
|
|
41579
|
-
#
|
|
41580
|
-
#
|
|
42361
|
+
# Output only. Past timestamp indicating the beginning of `PENDING_STOP` state
|
|
42362
|
+
# of
|
|
42363
|
+
# instance in RFC3339
|
|
42364
|
+
# text format.
|
|
41581
42365
|
# Corresponds to the JSON property `requestTimestamp`
|
|
41582
42366
|
# @return [String]
|
|
41583
42367
|
attr_accessor :request_timestamp
|
|
@@ -41620,6 +42404,257 @@ module Google
|
|
|
41620
42404
|
end
|
|
41621
42405
|
end
|
|
41622
42406
|
|
|
42407
|
+
# Represents a ManagedRuleset resource.
|
|
42408
|
+
# Managed internally by Cloud Armor CLH for Managed Rules features.
|
|
42409
|
+
# Customers can only view these resources to modify their Security Policies.
|
|
42410
|
+
# For more information, see
|
|
42411
|
+
# https://cloud.google.com/armor/docs/.
|
|
42412
|
+
class ManagedRuleset
|
|
42413
|
+
include Google::Apis::Core::Hashable
|
|
42414
|
+
|
|
42415
|
+
# Output only. [Output Only] The change log for this managed ruleset.
|
|
42416
|
+
# Corresponds to the JSON property `changeLog`
|
|
42417
|
+
# @return [String]
|
|
42418
|
+
attr_accessor :change_log
|
|
42419
|
+
|
|
42420
|
+
# Output only. [Output Only] Creation timestamp in RFC3339 text format.
|
|
42421
|
+
# Corresponds to the JSON property `creationTimestamp`
|
|
42422
|
+
# @return [String]
|
|
42423
|
+
attr_accessor :creation_timestamp
|
|
42424
|
+
|
|
42425
|
+
# [Output Only] An optional description of this resource.
|
|
42426
|
+
# Corresponds to the JSON property `description`
|
|
42427
|
+
# @return [String]
|
|
42428
|
+
attr_accessor :description
|
|
42429
|
+
|
|
42430
|
+
# Output only. [Output Only] The unique identifier for the resource. This
|
|
42431
|
+
# identifier is
|
|
42432
|
+
# defined by the server.
|
|
42433
|
+
# Corresponds to the JSON property `id`
|
|
42434
|
+
# @return [Fixnum]
|
|
42435
|
+
attr_accessor :id
|
|
42436
|
+
|
|
42437
|
+
# Name of the resource. Generated internally when the resource is created.
|
|
42438
|
+
# The name must be 1-63 characters long, and comply withRFC1035.
|
|
42439
|
+
# Specifically, the name must be 1-63 characters long and match the regular
|
|
42440
|
+
# expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means the first
|
|
42441
|
+
# character must be a lowercase letter, and all following characters must
|
|
42442
|
+
# be a dash, lowercase letter, or digit, except the last character, which
|
|
42443
|
+
# cannot be a dash.
|
|
42444
|
+
# Corresponds to the JSON property `name`
|
|
42445
|
+
# @return [String]
|
|
42446
|
+
attr_accessor :name
|
|
42447
|
+
|
|
42448
|
+
# Output only. [Output Only] The list of managed rule IDs that are included in
|
|
42449
|
+
# this managed ruleset.
|
|
42450
|
+
# Corresponds to the JSON property `ruleIds`
|
|
42451
|
+
# @return [Array<String>]
|
|
42452
|
+
attr_accessor :rule_ids
|
|
42453
|
+
|
|
42454
|
+
# Output only. [Output Only] The managed ruleset identifier that can be
|
|
42455
|
+
# configured in
|
|
42456
|
+
# Security Policy rules.
|
|
42457
|
+
# Corresponds to the JSON property `rulesetId`
|
|
42458
|
+
# @return [String]
|
|
42459
|
+
attr_accessor :ruleset_id
|
|
42460
|
+
|
|
42461
|
+
# Output only. [Output Only] Server-defined URL for the resource.
|
|
42462
|
+
# Corresponds to the JSON property `selfLink`
|
|
42463
|
+
# @return [String]
|
|
42464
|
+
attr_accessor :self_link
|
|
42465
|
+
|
|
42466
|
+
def initialize(**args)
|
|
42467
|
+
update!(**args)
|
|
42468
|
+
end
|
|
42469
|
+
|
|
42470
|
+
# Update properties of this object
|
|
42471
|
+
def update!(**args)
|
|
42472
|
+
@change_log = args[:change_log] if args.key?(:change_log)
|
|
42473
|
+
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
42474
|
+
@description = args[:description] if args.key?(:description)
|
|
42475
|
+
@id = args[:id] if args.key?(:id)
|
|
42476
|
+
@name = args[:name] if args.key?(:name)
|
|
42477
|
+
@rule_ids = args[:rule_ids] if args.key?(:rule_ids)
|
|
42478
|
+
@ruleset_id = args[:ruleset_id] if args.key?(:ruleset_id)
|
|
42479
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
42480
|
+
end
|
|
42481
|
+
end
|
|
42482
|
+
|
|
42483
|
+
#
|
|
42484
|
+
class ManagedRulesetList
|
|
42485
|
+
include Google::Apis::Core::Hashable
|
|
42486
|
+
|
|
42487
|
+
#
|
|
42488
|
+
# Corresponds to the JSON property `id`
|
|
42489
|
+
# @return [String]
|
|
42490
|
+
attr_accessor :id
|
|
42491
|
+
|
|
42492
|
+
#
|
|
42493
|
+
# Corresponds to the JSON property `items`
|
|
42494
|
+
# @return [Array<Google::Apis::ComputeAlpha::ManagedRuleset>]
|
|
42495
|
+
attr_accessor :items
|
|
42496
|
+
|
|
42497
|
+
#
|
|
42498
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
42499
|
+
# @return [String]
|
|
42500
|
+
attr_accessor :next_page_token
|
|
42501
|
+
|
|
42502
|
+
#
|
|
42503
|
+
# Corresponds to the JSON property `warning`
|
|
42504
|
+
# @return [Google::Apis::ComputeAlpha::ManagedRulesetList::Warning]
|
|
42505
|
+
attr_accessor :warning
|
|
42506
|
+
|
|
42507
|
+
def initialize(**args)
|
|
42508
|
+
update!(**args)
|
|
42509
|
+
end
|
|
42510
|
+
|
|
42511
|
+
# Update properties of this object
|
|
42512
|
+
def update!(**args)
|
|
42513
|
+
@id = args[:id] if args.key?(:id)
|
|
42514
|
+
@items = args[:items] if args.key?(:items)
|
|
42515
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
42516
|
+
@warning = args[:warning] if args.key?(:warning)
|
|
42517
|
+
end
|
|
42518
|
+
|
|
42519
|
+
#
|
|
42520
|
+
class Warning
|
|
42521
|
+
include Google::Apis::Core::Hashable
|
|
42522
|
+
|
|
42523
|
+
# [Output Only] A warning code, if applicable. For example, Compute
|
|
42524
|
+
# Engine returns NO_RESULTS_ON_PAGE if there
|
|
42525
|
+
# are no results in the response.
|
|
42526
|
+
# Corresponds to the JSON property `code`
|
|
42527
|
+
# @return [String]
|
|
42528
|
+
attr_accessor :code
|
|
42529
|
+
|
|
42530
|
+
# [Output Only] Metadata about this warning in key:
|
|
42531
|
+
# value format. For example:
|
|
42532
|
+
# "data": [
|
|
42533
|
+
# `
|
|
42534
|
+
# "key": "scope",
|
|
42535
|
+
# "value": "zones/us-east1-d"
|
|
42536
|
+
# `
|
|
42537
|
+
# Corresponds to the JSON property `data`
|
|
42538
|
+
# @return [Array<Google::Apis::ComputeAlpha::ManagedRulesetList::Warning::Datum>]
|
|
42539
|
+
attr_accessor :data
|
|
42540
|
+
|
|
42541
|
+
# [Output Only] A human-readable description of the warning code.
|
|
42542
|
+
# Corresponds to the JSON property `message`
|
|
42543
|
+
# @return [String]
|
|
42544
|
+
attr_accessor :message
|
|
42545
|
+
|
|
42546
|
+
def initialize(**args)
|
|
42547
|
+
update!(**args)
|
|
42548
|
+
end
|
|
42549
|
+
|
|
42550
|
+
# Update properties of this object
|
|
42551
|
+
def update!(**args)
|
|
42552
|
+
@code = args[:code] if args.key?(:code)
|
|
42553
|
+
@data = args[:data] if args.key?(:data)
|
|
42554
|
+
@message = args[:message] if args.key?(:message)
|
|
42555
|
+
end
|
|
42556
|
+
|
|
42557
|
+
#
|
|
42558
|
+
class Datum
|
|
42559
|
+
include Google::Apis::Core::Hashable
|
|
42560
|
+
|
|
42561
|
+
# [Output Only] A key that provides more detail on the warning being
|
|
42562
|
+
# returned. For example, for warnings where there are no results in a list
|
|
42563
|
+
# request for a particular zone, this key might be scope and
|
|
42564
|
+
# the key value might be the zone name. Other examples might be a key
|
|
42565
|
+
# indicating a deprecated resource and a suggested replacement, or a
|
|
42566
|
+
# warning about invalid network settings (for example, if an instance
|
|
42567
|
+
# attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
42568
|
+
# Corresponds to the JSON property `key`
|
|
42569
|
+
# @return [String]
|
|
42570
|
+
attr_accessor :key
|
|
42571
|
+
|
|
42572
|
+
# [Output Only] A warning data value corresponding to the key.
|
|
42573
|
+
# Corresponds to the JSON property `value`
|
|
42574
|
+
# @return [String]
|
|
42575
|
+
attr_accessor :value
|
|
42576
|
+
|
|
42577
|
+
def initialize(**args)
|
|
42578
|
+
update!(**args)
|
|
42579
|
+
end
|
|
42580
|
+
|
|
42581
|
+
# Update properties of this object
|
|
42582
|
+
def update!(**args)
|
|
42583
|
+
@key = args[:key] if args.key?(:key)
|
|
42584
|
+
@value = args[:value] if args.key?(:value)
|
|
42585
|
+
end
|
|
42586
|
+
end
|
|
42587
|
+
end
|
|
42588
|
+
end
|
|
42589
|
+
|
|
42590
|
+
# Represents a managed interface for an accelerator domain.
|
|
42591
|
+
# It defines the network endpoint and authentication configuration needed to
|
|
42592
|
+
# access specific management services like NMX-C or gNMI.
|
|
42593
|
+
class ManagementInterface
|
|
42594
|
+
include Google::Apis::Core::Hashable
|
|
42595
|
+
|
|
42596
|
+
# Authentication configuration for the management interface, typically using
|
|
42597
|
+
# mTLS.
|
|
42598
|
+
# Corresponds to the JSON property `authenticationConfig`
|
|
42599
|
+
# @return [Google::Apis::ComputeAlpha::AuthenticationConfig]
|
|
42600
|
+
attr_accessor :authentication_config
|
|
42601
|
+
|
|
42602
|
+
# The IPv4 internal IP address assigned to this management interface
|
|
42603
|
+
# endpoint. This address will be used by the customer to route traffic to the
|
|
42604
|
+
# management interface.
|
|
42605
|
+
# Corresponds to the JSON property `ipv4Address`
|
|
42606
|
+
# @return [String]
|
|
42607
|
+
attr_accessor :ipv4_address
|
|
42608
|
+
|
|
42609
|
+
# The IPv6 internal IP address assigned to this management interface
|
|
42610
|
+
# endpoint. This address will be used by the customer to route traffic to the
|
|
42611
|
+
# management interface if IPv6 is supported and configured.
|
|
42612
|
+
# Corresponds to the JSON property `ipv6Address`
|
|
42613
|
+
# @return [String]
|
|
42614
|
+
attr_accessor :ipv6_address
|
|
42615
|
+
|
|
42616
|
+
# The URL of the VPC network to which the management interface endpoint is
|
|
42617
|
+
# attached. The customer must ensure that this network is correctly
|
|
42618
|
+
# configured for routing to the accelerator domain.
|
|
42619
|
+
# Corresponds to the JSON property `network`
|
|
42620
|
+
# @return [String]
|
|
42621
|
+
attr_accessor :network
|
|
42622
|
+
|
|
42623
|
+
#
|
|
42624
|
+
# Corresponds to the JSON property `state`
|
|
42625
|
+
# @return [String]
|
|
42626
|
+
attr_accessor :state
|
|
42627
|
+
|
|
42628
|
+
# The URL of the subnetwork from which to assign the IP address for the
|
|
42629
|
+
# endpoint. The subnetwork must belong to the specified network and have
|
|
42630
|
+
# available IP addresses.
|
|
42631
|
+
# Corresponds to the JSON property `subnetwork`
|
|
42632
|
+
# @return [String]
|
|
42633
|
+
attr_accessor :subnetwork
|
|
42634
|
+
|
|
42635
|
+
# Required. The type of management service this interface provides.
|
|
42636
|
+
# Supported types include NMX-C for partition management, gNMI for switch
|
|
42637
|
+
# monitoring, and TPU slice management.
|
|
42638
|
+
# Corresponds to the JSON property `type`
|
|
42639
|
+
# @return [String]
|
|
42640
|
+
attr_accessor :type
|
|
42641
|
+
|
|
42642
|
+
def initialize(**args)
|
|
42643
|
+
update!(**args)
|
|
42644
|
+
end
|
|
42645
|
+
|
|
42646
|
+
# Update properties of this object
|
|
42647
|
+
def update!(**args)
|
|
42648
|
+
@authentication_config = args[:authentication_config] if args.key?(:authentication_config)
|
|
42649
|
+
@ipv4_address = args[:ipv4_address] if args.key?(:ipv4_address)
|
|
42650
|
+
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
|
42651
|
+
@network = args[:network] if args.key?(:network)
|
|
42652
|
+
@state = args[:state] if args.key?(:state)
|
|
42653
|
+
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
|
42654
|
+
@type = args[:type] if args.key?(:type)
|
|
42655
|
+
end
|
|
42656
|
+
end
|
|
42657
|
+
|
|
41623
42658
|
# A metadata key/value entry.
|
|
41624
42659
|
class Metadata
|
|
41625
42660
|
include Google::Apis::Core::Hashable
|
|
@@ -42262,7 +43297,8 @@ module Google
|
|
|
42262
43297
|
@errors = args[:errors] if args.key?(:errors)
|
|
42263
43298
|
end
|
|
42264
43299
|
|
|
42265
|
-
#
|
|
43300
|
+
# Represents a single error encountered during the processing of an
|
|
43301
|
+
# operation.
|
|
42266
43302
|
class Error
|
|
42267
43303
|
include Google::Apis::Core::Hashable
|
|
42268
43304
|
|
|
@@ -42303,7 +43339,8 @@ module Google
|
|
|
42303
43339
|
@message = args[:message] if args.key?(:message)
|
|
42304
43340
|
end
|
|
42305
43341
|
|
|
42306
|
-
#
|
|
43342
|
+
# Container for structured error details providing additional context
|
|
43343
|
+
# specific to the encountered error code.
|
|
42307
43344
|
class ErrorDetail
|
|
42308
43345
|
include Google::Apis::Core::Hashable
|
|
42309
43346
|
|
|
@@ -42932,14 +43969,16 @@ module Google
|
|
|
42932
43969
|
# @return [String]
|
|
42933
43970
|
attr_accessor :network
|
|
42934
43971
|
|
|
42935
|
-
# Projects that are allowed to connect to this network
|
|
42936
|
-
# The project can be specified using its id or number.
|
|
43972
|
+
# Projects or service class ids that are allowed to connect to this network
|
|
43973
|
+
# attachment. The project can be specified using its id or number. Service
|
|
43974
|
+
# class id can be specified as "serviceclasses/`service_class_id`".
|
|
42937
43975
|
# Corresponds to the JSON property `producerAcceptLists`
|
|
42938
43976
|
# @return [Array<String>]
|
|
42939
43977
|
attr_accessor :producer_accept_lists
|
|
42940
43978
|
|
|
42941
|
-
# Projects that are not allowed to connect to this
|
|
42942
|
-
# The project can be specified using its id or number.
|
|
43979
|
+
# Projects or service class ids that are not allowed to connect to this
|
|
43980
|
+
# network attachment. The project can be specified using its id or number.
|
|
43981
|
+
# Service class id can be specified as "serviceclasses/`service_class_id`".
|
|
42943
43982
|
# Corresponds to the JSON property `producerRejectLists`
|
|
42944
43983
|
# @return [Array<String>]
|
|
42945
43984
|
attr_accessor :producer_reject_lists
|
|
@@ -46416,6 +47455,14 @@ module Google
|
|
|
46416
47455
|
class NetworkPolicyTrafficClassificationRuleMatcher
|
|
46417
47456
|
include Google::Apis::Core::Hashable
|
|
46418
47457
|
|
|
47458
|
+
# Address groups which should be matched against the traffic destination.
|
|
47459
|
+
# Maximum number of destination address groups is 10.
|
|
47460
|
+
# Example:
|
|
47461
|
+
# projects//locations//addressGroups/.
|
|
47462
|
+
# Corresponds to the JSON property `destAddressGroups`
|
|
47463
|
+
# @return [Array<String>]
|
|
47464
|
+
attr_accessor :dest_address_groups
|
|
47465
|
+
|
|
46419
47466
|
# CIDR IP address range.
|
|
46420
47467
|
# Maximum number of destination CIDR IP ranges allowed is 5000.
|
|
46421
47468
|
# Corresponds to the JSON property `destIpRanges`
|
|
@@ -46439,6 +47486,7 @@ module Google
|
|
|
46439
47486
|
|
|
46440
47487
|
# Update properties of this object
|
|
46441
47488
|
def update!(**args)
|
|
47489
|
+
@dest_address_groups = args[:dest_address_groups] if args.key?(:dest_address_groups)
|
|
46442
47490
|
@dest_ip_ranges = args[:dest_ip_ranges] if args.key?(:dest_ip_ranges)
|
|
46443
47491
|
@layer4_configs = args[:layer4_configs] if args.key?(:layer4_configs)
|
|
46444
47492
|
@src_ip_ranges = args[:src_ip_ranges] if args.key?(:src_ip_ranges)
|
|
@@ -49822,6 +50870,11 @@ module Google
|
|
|
49822
50870
|
# @return [Google::Apis::ComputeAlpha::Operation::Error]
|
|
49823
50871
|
attr_accessor :error
|
|
49824
50872
|
|
|
50873
|
+
# Metadata for FirewallPolicyRule operations.
|
|
50874
|
+
# Corresponds to the JSON property `firewallPolicyRuleOperationMetadata`
|
|
50875
|
+
# @return [Google::Apis::ComputeAlpha::FirewallPolicyRuleOperationMetadata]
|
|
50876
|
+
attr_accessor :firewall_policy_rule_operation_metadata
|
|
50877
|
+
|
|
49825
50878
|
#
|
|
49826
50879
|
# Corresponds to the JSON property `getVersionOperationMetadata`
|
|
49827
50880
|
# @return [Google::Apis::ComputeAlpha::GetVersionOperationMetadata]
|
|
@@ -49980,6 +51033,7 @@ module Google
|
|
|
49980
51033
|
@description = args[:description] if args.key?(:description)
|
|
49981
51034
|
@end_time = args[:end_time] if args.key?(:end_time)
|
|
49982
51035
|
@error = args[:error] if args.key?(:error)
|
|
51036
|
+
@firewall_policy_rule_operation_metadata = args[:firewall_policy_rule_operation_metadata] if args.key?(:firewall_policy_rule_operation_metadata)
|
|
49983
51037
|
@get_version_operation_metadata = args[:get_version_operation_metadata] if args.key?(:get_version_operation_metadata)
|
|
49984
51038
|
@http_error_message = args[:http_error_message] if args.key?(:http_error_message)
|
|
49985
51039
|
@http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
|
|
@@ -50025,7 +51079,8 @@ module Google
|
|
|
50025
51079
|
@errors = args[:errors] if args.key?(:errors)
|
|
50026
51080
|
end
|
|
50027
51081
|
|
|
50028
|
-
#
|
|
51082
|
+
# Represents a single error encountered during the processing of an
|
|
51083
|
+
# operation.
|
|
50029
51084
|
class Error
|
|
50030
51085
|
include Google::Apis::Core::Hashable
|
|
50031
51086
|
|
|
@@ -50066,7 +51121,8 @@ module Google
|
|
|
50066
51121
|
@message = args[:message] if args.key?(:message)
|
|
50067
51122
|
end
|
|
50068
51123
|
|
|
50069
|
-
#
|
|
51124
|
+
# Container for structured error details providing additional context
|
|
51125
|
+
# specific to the encountered error code.
|
|
50070
51126
|
class ErrorDetail
|
|
50071
51127
|
include Google::Apis::Core::Hashable
|
|
50072
51128
|
|
|
@@ -54521,7 +55577,8 @@ module Google
|
|
|
54521
55577
|
@errors = args[:errors] if args.key?(:errors)
|
|
54522
55578
|
end
|
|
54523
55579
|
|
|
54524
|
-
#
|
|
55580
|
+
# Represents a single error encountered during the processing of an
|
|
55581
|
+
# operation.
|
|
54525
55582
|
class Error
|
|
54526
55583
|
include Google::Apis::Core::Hashable
|
|
54527
55584
|
|
|
@@ -54562,7 +55619,8 @@ module Google
|
|
|
54562
55619
|
@message = args[:message] if args.key?(:message)
|
|
54563
55620
|
end
|
|
54564
55621
|
|
|
54565
|
-
#
|
|
55622
|
+
# Container for structured error details providing additional context
|
|
55623
|
+
# specific to the encountered error code.
|
|
54566
55624
|
class ErrorDetail
|
|
54567
55625
|
include Google::Apis::Core::Hashable
|
|
54568
55626
|
|
|
@@ -56990,7 +58048,7 @@ module Google
|
|
|
56990
58048
|
class RegionInstanceGroupManagersApplyUpdatesRequest
|
|
56991
58049
|
include Google::Apis::Core::Hashable
|
|
56992
58050
|
|
|
56993
|
-
# Flag to update all instances instead of specified list of
|
|
58051
|
+
# Flag to update all instances instead of specified list of "instances".
|
|
56994
58052
|
# If the flag is set to true then the instances may not be specified
|
|
56995
58053
|
# in the request.
|
|
56996
58054
|
# Corresponds to the JSON property `allInstances`
|
|
@@ -58205,7 +59263,7 @@ module Google
|
|
|
58205
59263
|
class ReliabilityRisk
|
|
58206
59264
|
include Google::Apis::Core::Hashable
|
|
58207
59265
|
|
|
58208
|
-
# Output only. [Output Only] Creation timestamp
|
|
59266
|
+
# Output only. [Output Only] Creation timestamp in RFC3339
|
|
58209
59267
|
# text format.
|
|
58210
59268
|
# Corresponds to the JSON property `creationTimestamp`
|
|
58211
59269
|
# @return [String]
|
|
@@ -58217,7 +59275,7 @@ module Google
|
|
|
58217
59275
|
# @return [String]
|
|
58218
59276
|
attr_accessor :description
|
|
58219
59277
|
|
|
58220
|
-
#
|
|
59278
|
+
# Detailed insights and metrics about a detected reliability risk.
|
|
58221
59279
|
# Corresponds to the JSON property `details`
|
|
58222
59280
|
# @return [Google::Apis::ComputeAlpha::RiskDetails]
|
|
58223
59281
|
attr_accessor :details
|
|
@@ -58235,12 +59293,12 @@ module Google
|
|
|
58235
59293
|
attr_accessor :kind
|
|
58236
59294
|
|
|
58237
59295
|
# Name of the resource. The name must be 1-63 characters long and
|
|
58238
|
-
# comply
|
|
59296
|
+
# comply with RFC1035.
|
|
58239
59297
|
# Corresponds to the JSON property `name`
|
|
58240
59298
|
# @return [String]
|
|
58241
59299
|
attr_accessor :name
|
|
58242
59300
|
|
|
58243
|
-
# Recommendation
|
|
59301
|
+
# Recommendation for mitigating a reliability risk, including a reference URL.
|
|
58244
59302
|
# Corresponds to the JSON property `recommendation`
|
|
58245
59303
|
# @return [Google::Apis::ComputeAlpha::RiskRecommendation]
|
|
58246
59304
|
attr_accessor :recommendation
|
|
@@ -58274,7 +59332,7 @@ module Google
|
|
|
58274
59332
|
end
|
|
58275
59333
|
end
|
|
58276
59334
|
|
|
58277
|
-
#
|
|
59335
|
+
# Response message for the List method of ReliabilityRisksService.
|
|
58278
59336
|
class ReliabilityRisksListResponse
|
|
58279
59337
|
include Google::Apis::Core::Hashable
|
|
58280
59338
|
|
|
@@ -58932,11 +59990,6 @@ module Google
|
|
|
58932
59990
|
class ReservationBlock
|
|
58933
59991
|
include Google::Apis::Core::Hashable
|
|
58934
59992
|
|
|
58935
|
-
# Health information for the reservation block.
|
|
58936
|
-
# Corresponds to the JSON property `blockHealthInfo`
|
|
58937
|
-
# @return [Google::Apis::ComputeAlpha::ReservationBlockHealthInfo]
|
|
58938
|
-
attr_accessor :block_health_info
|
|
58939
|
-
|
|
58940
59993
|
# Output only. [Output Only] The number of resources that are allocated in this
|
|
58941
59994
|
# reservation block.
|
|
58942
59995
|
# Corresponds to the JSON property `count`
|
|
@@ -58948,6 +60001,11 @@ module Google
|
|
|
58948
60001
|
# @return [String]
|
|
58949
60002
|
attr_accessor :creation_timestamp
|
|
58950
60003
|
|
|
60004
|
+
# Health information for the reservation block.
|
|
60005
|
+
# Corresponds to the JSON property `healthInfo`
|
|
60006
|
+
# @return [Google::Apis::ComputeAlpha::ReservationBlockHealthInfo]
|
|
60007
|
+
attr_accessor :health_info
|
|
60008
|
+
|
|
58951
60009
|
# Output only. [Output Only] The unique identifier for the resource. This
|
|
58952
60010
|
# identifier is
|
|
58953
60011
|
# defined by the server.
|
|
@@ -59045,9 +60103,9 @@ module Google
|
|
|
59045
60103
|
|
|
59046
60104
|
# Update properties of this object
|
|
59047
60105
|
def update!(**args)
|
|
59048
|
-
@block_health_info = args[:block_health_info] if args.key?(:block_health_info)
|
|
59049
60106
|
@count = args[:count] if args.key?(:count)
|
|
59050
60107
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
60108
|
+
@health_info = args[:health_info] if args.key?(:health_info)
|
|
59051
60109
|
@id = args[:id] if args.key?(:id)
|
|
59052
60110
|
@in_use_count = args[:in_use_count] if args.key?(:in_use_count)
|
|
59053
60111
|
@in_use_host_count = args[:in_use_host_count] if args.key?(:in_use_host_count)
|
|
@@ -59327,6 +60385,301 @@ module Google
|
|
|
59327
60385
|
end
|
|
59328
60386
|
end
|
|
59329
60387
|
|
|
60388
|
+
# ReservationConsumedInstance represents a consumed instance.
|
|
60389
|
+
class ReservationConsumedInstance
|
|
60390
|
+
include Google::Apis::Core::Hashable
|
|
60391
|
+
|
|
60392
|
+
# The full URI of the instance resource.
|
|
60393
|
+
# Corresponds to the JSON property `instance`
|
|
60394
|
+
# @return [String]
|
|
60395
|
+
attr_accessor :instance
|
|
60396
|
+
|
|
60397
|
+
# The service to which the instance belongs. Typically "COMPUTE".
|
|
60398
|
+
# Corresponds to the JSON property `service`
|
|
60399
|
+
# @return [String]
|
|
60400
|
+
attr_accessor :service
|
|
60401
|
+
|
|
60402
|
+
# Status information for the instance's consumption of the reservation.
|
|
60403
|
+
# Corresponds to the JSON property `status`
|
|
60404
|
+
# @return [Google::Apis::ComputeAlpha::ReservationConsumedInstanceStatus]
|
|
60405
|
+
attr_accessor :status
|
|
60406
|
+
|
|
60407
|
+
def initialize(**args)
|
|
60408
|
+
update!(**args)
|
|
60409
|
+
end
|
|
60410
|
+
|
|
60411
|
+
# Update properties of this object
|
|
60412
|
+
def update!(**args)
|
|
60413
|
+
@instance = args[:instance] if args.key?(:instance)
|
|
60414
|
+
@service = args[:service] if args.key?(:service)
|
|
60415
|
+
@status = args[:status] if args.key?(:status)
|
|
60416
|
+
end
|
|
60417
|
+
end
|
|
60418
|
+
|
|
60419
|
+
# Status information for the instance's consumption of the reservation.
|
|
60420
|
+
class ReservationConsumedInstanceStatus
|
|
60421
|
+
include Google::Apis::Core::Hashable
|
|
60422
|
+
|
|
60423
|
+
# A list of issues related to this instance's linkage to the reservation.
|
|
60424
|
+
# Corresponds to the JSON property `linkageErrors`
|
|
60425
|
+
# @return [Google::Apis::ComputeAlpha::ReservationConsumedInstanceStatus::LinkageErrors]
|
|
60426
|
+
attr_accessor :linkage_errors
|
|
60427
|
+
|
|
60428
|
+
def initialize(**args)
|
|
60429
|
+
update!(**args)
|
|
60430
|
+
end
|
|
60431
|
+
|
|
60432
|
+
# Update properties of this object
|
|
60433
|
+
def update!(**args)
|
|
60434
|
+
@linkage_errors = args[:linkage_errors] if args.key?(:linkage_errors)
|
|
60435
|
+
end
|
|
60436
|
+
|
|
60437
|
+
# A list of issues related to this instance's linkage to the reservation.
|
|
60438
|
+
class LinkageErrors
|
|
60439
|
+
include Google::Apis::Core::Hashable
|
|
60440
|
+
|
|
60441
|
+
# [Output Only] The array of errors encountered while processing this
|
|
60442
|
+
# operation.
|
|
60443
|
+
# Corresponds to the JSON property `errors`
|
|
60444
|
+
# @return [Array<Google::Apis::ComputeAlpha::ReservationConsumedInstanceStatus::LinkageErrors::Error>]
|
|
60445
|
+
attr_accessor :errors
|
|
60446
|
+
|
|
60447
|
+
def initialize(**args)
|
|
60448
|
+
update!(**args)
|
|
60449
|
+
end
|
|
60450
|
+
|
|
60451
|
+
# Update properties of this object
|
|
60452
|
+
def update!(**args)
|
|
60453
|
+
@errors = args[:errors] if args.key?(:errors)
|
|
60454
|
+
end
|
|
60455
|
+
|
|
60456
|
+
# Represents a single error encountered during the processing of an
|
|
60457
|
+
# operation.
|
|
60458
|
+
class Error
|
|
60459
|
+
include Google::Apis::Core::Hashable
|
|
60460
|
+
|
|
60461
|
+
# [Output Only] The error type identifier for this error.
|
|
60462
|
+
# Corresponds to the JSON property `code`
|
|
60463
|
+
# @return [String]
|
|
60464
|
+
attr_accessor :code
|
|
60465
|
+
|
|
60466
|
+
# [Output Only] An optional list of messages that contain the error
|
|
60467
|
+
# details. There is a set of defined message types to use for providing
|
|
60468
|
+
# details.The syntax depends on the error code. For example,
|
|
60469
|
+
# QuotaExceededInfo will have details when the error code is
|
|
60470
|
+
# QUOTA_EXCEEDED.
|
|
60471
|
+
# Corresponds to the JSON property `errorDetails`
|
|
60472
|
+
# @return [Array<Google::Apis::ComputeAlpha::ReservationConsumedInstanceStatus::LinkageErrors::Error::ErrorDetail>]
|
|
60473
|
+
attr_accessor :error_details
|
|
60474
|
+
|
|
60475
|
+
# [Output Only] Indicates the field in the request that caused the error.
|
|
60476
|
+
# This property is optional.
|
|
60477
|
+
# Corresponds to the JSON property `location`
|
|
60478
|
+
# @return [String]
|
|
60479
|
+
attr_accessor :location
|
|
60480
|
+
|
|
60481
|
+
# [Output Only] An optional, human-readable error message.
|
|
60482
|
+
# Corresponds to the JSON property `message`
|
|
60483
|
+
# @return [String]
|
|
60484
|
+
attr_accessor :message
|
|
60485
|
+
|
|
60486
|
+
def initialize(**args)
|
|
60487
|
+
update!(**args)
|
|
60488
|
+
end
|
|
60489
|
+
|
|
60490
|
+
# Update properties of this object
|
|
60491
|
+
def update!(**args)
|
|
60492
|
+
@code = args[:code] if args.key?(:code)
|
|
60493
|
+
@error_details = args[:error_details] if args.key?(:error_details)
|
|
60494
|
+
@location = args[:location] if args.key?(:location)
|
|
60495
|
+
@message = args[:message] if args.key?(:message)
|
|
60496
|
+
end
|
|
60497
|
+
|
|
60498
|
+
# Container for structured error details providing additional context
|
|
60499
|
+
# specific to the encountered error code.
|
|
60500
|
+
class ErrorDetail
|
|
60501
|
+
include Google::Apis::Core::Hashable
|
|
60502
|
+
|
|
60503
|
+
# Describes the cause of the error with structured details.
|
|
60504
|
+
# Example of an error when contacting the "pubsub.googleapis.com" API when it
|
|
60505
|
+
# is not enabled:
|
|
60506
|
+
# ` "reason": "API_DISABLED"
|
|
60507
|
+
# "domain": "googleapis.com"
|
|
60508
|
+
# "metadata": `
|
|
60509
|
+
# "resource": "projects/123",
|
|
60510
|
+
# "service": "pubsub.googleapis.com"
|
|
60511
|
+
# `
|
|
60512
|
+
# `
|
|
60513
|
+
# This response indicates that the pubsub.googleapis.com API is not enabled.
|
|
60514
|
+
# Example of an error that is returned when attempting to create a Spanner
|
|
60515
|
+
# instance in a region that is out of stock:
|
|
60516
|
+
# ` "reason": "STOCKOUT"
|
|
60517
|
+
# "domain": "spanner.googleapis.com",
|
|
60518
|
+
# "metadata": `
|
|
60519
|
+
# "availableRegions": "us-central1,us-east2"
|
|
60520
|
+
# `
|
|
60521
|
+
# `
|
|
60522
|
+
# Corresponds to the JSON property `errorInfo`
|
|
60523
|
+
# @return [Google::Apis::ComputeAlpha::ErrorInfo]
|
|
60524
|
+
attr_accessor :error_info
|
|
60525
|
+
|
|
60526
|
+
# Provides links to documentation or for performing an out of band action.
|
|
60527
|
+
# For example, if a quota check failed with an error indicating the calling
|
|
60528
|
+
# project hasn't enabled the accessed service, this can contain a URL pointing
|
|
60529
|
+
# directly to the right place in the developer console to flip the bit.
|
|
60530
|
+
# Corresponds to the JSON property `help`
|
|
60531
|
+
# @return [Google::Apis::ComputeAlpha::Help]
|
|
60532
|
+
attr_accessor :help
|
|
60533
|
+
|
|
60534
|
+
# Provides a localized error message that is safe to return to the user
|
|
60535
|
+
# which can be attached to an RPC error.
|
|
60536
|
+
# Corresponds to the JSON property `localizedMessage`
|
|
60537
|
+
# @return [Google::Apis::ComputeAlpha::LocalizedMessage]
|
|
60538
|
+
attr_accessor :localized_message
|
|
60539
|
+
|
|
60540
|
+
# Additional details for quota exceeded error for resource quota.
|
|
60541
|
+
# Corresponds to the JSON property `quotaInfo`
|
|
60542
|
+
# @return [Google::Apis::ComputeAlpha::QuotaExceededInfo]
|
|
60543
|
+
attr_accessor :quota_info
|
|
60544
|
+
|
|
60545
|
+
def initialize(**args)
|
|
60546
|
+
update!(**args)
|
|
60547
|
+
end
|
|
60548
|
+
|
|
60549
|
+
# Update properties of this object
|
|
60550
|
+
def update!(**args)
|
|
60551
|
+
@error_info = args[:error_info] if args.key?(:error_info)
|
|
60552
|
+
@help = args[:help] if args.key?(:help)
|
|
60553
|
+
@localized_message = args[:localized_message] if args.key?(:localized_message)
|
|
60554
|
+
@quota_info = args[:quota_info] if args.key?(:quota_info)
|
|
60555
|
+
end
|
|
60556
|
+
end
|
|
60557
|
+
end
|
|
60558
|
+
end
|
|
60559
|
+
end
|
|
60560
|
+
|
|
60561
|
+
# Response message for listing reservation consumed instances.
|
|
60562
|
+
class ReservationConsumedInstancesListResponse
|
|
60563
|
+
include Google::Apis::Core::Hashable
|
|
60564
|
+
|
|
60565
|
+
# Uniquely identifies the type of this resource.
|
|
60566
|
+
# Corresponds to the JSON property `id`
|
|
60567
|
+
# @return [String]
|
|
60568
|
+
attr_accessor :id
|
|
60569
|
+
|
|
60570
|
+
# A list of ReservationConsumedInstance resources.
|
|
60571
|
+
# Corresponds to the JSON property `items`
|
|
60572
|
+
# @return [Array<Google::Apis::ComputeAlpha::ReservationConsumedInstance>]
|
|
60573
|
+
attr_accessor :items
|
|
60574
|
+
|
|
60575
|
+
# Identifies the resource as a list of reservation consumed instances.
|
|
60576
|
+
# Corresponds to the JSON property `kind`
|
|
60577
|
+
# @return [String]
|
|
60578
|
+
attr_accessor :kind
|
|
60579
|
+
|
|
60580
|
+
# [Output Only] This token allows you to get the next page of results for
|
|
60581
|
+
# list requests.
|
|
60582
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
60583
|
+
# @return [String]
|
|
60584
|
+
attr_accessor :next_page_token
|
|
60585
|
+
|
|
60586
|
+
# Output only. [Output Only] Server-defined URL for this resource.
|
|
60587
|
+
# Corresponds to the JSON property `selfLink`
|
|
60588
|
+
# @return [String]
|
|
60589
|
+
attr_accessor :self_link
|
|
60590
|
+
|
|
60591
|
+
# [Output Only] Informational warning which replaces the result in some
|
|
60592
|
+
# cases.
|
|
60593
|
+
# Corresponds to the JSON property `warning`
|
|
60594
|
+
# @return [Google::Apis::ComputeAlpha::ReservationConsumedInstancesListResponse::Warning]
|
|
60595
|
+
attr_accessor :warning
|
|
60596
|
+
|
|
60597
|
+
def initialize(**args)
|
|
60598
|
+
update!(**args)
|
|
60599
|
+
end
|
|
60600
|
+
|
|
60601
|
+
# Update properties of this object
|
|
60602
|
+
def update!(**args)
|
|
60603
|
+
@id = args[:id] if args.key?(:id)
|
|
60604
|
+
@items = args[:items] if args.key?(:items)
|
|
60605
|
+
@kind = args[:kind] if args.key?(:kind)
|
|
60606
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
60607
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
|
60608
|
+
@warning = args[:warning] if args.key?(:warning)
|
|
60609
|
+
end
|
|
60610
|
+
|
|
60611
|
+
# [Output Only] Informational warning which replaces the result in some
|
|
60612
|
+
# cases.
|
|
60613
|
+
class Warning
|
|
60614
|
+
include Google::Apis::Core::Hashable
|
|
60615
|
+
|
|
60616
|
+
# [Output Only] A warning code, if applicable. For example, Compute
|
|
60617
|
+
# Engine returns NO_RESULTS_ON_PAGE if there
|
|
60618
|
+
# are no results in the response.
|
|
60619
|
+
# Corresponds to the JSON property `code`
|
|
60620
|
+
# @return [String]
|
|
60621
|
+
attr_accessor :code
|
|
60622
|
+
|
|
60623
|
+
# [Output Only] Metadata about this warning in key:
|
|
60624
|
+
# value format. For example:
|
|
60625
|
+
# "data": [
|
|
60626
|
+
# `
|
|
60627
|
+
# "key": "scope",
|
|
60628
|
+
# "value": "zones/us-east1-d"
|
|
60629
|
+
# `
|
|
60630
|
+
# Corresponds to the JSON property `data`
|
|
60631
|
+
# @return [Array<Google::Apis::ComputeAlpha::ReservationConsumedInstancesListResponse::Warning::Datum>]
|
|
60632
|
+
attr_accessor :data
|
|
60633
|
+
|
|
60634
|
+
# [Output Only] A human-readable description of the warning code.
|
|
60635
|
+
# Corresponds to the JSON property `message`
|
|
60636
|
+
# @return [String]
|
|
60637
|
+
attr_accessor :message
|
|
60638
|
+
|
|
60639
|
+
def initialize(**args)
|
|
60640
|
+
update!(**args)
|
|
60641
|
+
end
|
|
60642
|
+
|
|
60643
|
+
# Update properties of this object
|
|
60644
|
+
def update!(**args)
|
|
60645
|
+
@code = args[:code] if args.key?(:code)
|
|
60646
|
+
@data = args[:data] if args.key?(:data)
|
|
60647
|
+
@message = args[:message] if args.key?(:message)
|
|
60648
|
+
end
|
|
60649
|
+
|
|
60650
|
+
#
|
|
60651
|
+
class Datum
|
|
60652
|
+
include Google::Apis::Core::Hashable
|
|
60653
|
+
|
|
60654
|
+
# [Output Only] A key that provides more detail on the warning being
|
|
60655
|
+
# returned. For example, for warnings where there are no results in a list
|
|
60656
|
+
# request for a particular zone, this key might be scope and
|
|
60657
|
+
# the key value might be the zone name. Other examples might be a key
|
|
60658
|
+
# indicating a deprecated resource and a suggested replacement, or a
|
|
60659
|
+
# warning about invalid network settings (for example, if an instance
|
|
60660
|
+
# attempts to perform IP forwarding but is not enabled for IP forwarding).
|
|
60661
|
+
# Corresponds to the JSON property `key`
|
|
60662
|
+
# @return [String]
|
|
60663
|
+
attr_accessor :key
|
|
60664
|
+
|
|
60665
|
+
# [Output Only] A warning data value corresponding to the key.
|
|
60666
|
+
# Corresponds to the JSON property `value`
|
|
60667
|
+
# @return [String]
|
|
60668
|
+
attr_accessor :value
|
|
60669
|
+
|
|
60670
|
+
def initialize(**args)
|
|
60671
|
+
update!(**args)
|
|
60672
|
+
end
|
|
60673
|
+
|
|
60674
|
+
# Update properties of this object
|
|
60675
|
+
def update!(**args)
|
|
60676
|
+
@key = args[:key] if args.key?(:key)
|
|
60677
|
+
@value = args[:value] if args.key?(:value)
|
|
60678
|
+
end
|
|
60679
|
+
end
|
|
60680
|
+
end
|
|
60681
|
+
end
|
|
60682
|
+
|
|
59330
60683
|
#
|
|
59331
60684
|
class ReservationList
|
|
59332
60685
|
include Google::Apis::Core::Hashable
|
|
@@ -59814,6 +61167,11 @@ module Google
|
|
|
59814
61167
|
# @return [String]
|
|
59815
61168
|
attr_accessor :creation_timestamp
|
|
59816
61169
|
|
|
61170
|
+
# Health information for the reservation subBlock.
|
|
61171
|
+
# Corresponds to the JSON property `healthInfo`
|
|
61172
|
+
# @return [Google::Apis::ComputeAlpha::ReservationSubBlockHealthInfo]
|
|
61173
|
+
attr_accessor :health_info
|
|
61174
|
+
|
|
59817
61175
|
# Output only. [Output Only] The unique identifier for the resource. This
|
|
59818
61176
|
# identifier is
|
|
59819
61177
|
# defined by the server.
|
|
@@ -59883,11 +61241,6 @@ module Google
|
|
|
59883
61241
|
# @return [String]
|
|
59884
61242
|
attr_accessor :status
|
|
59885
61243
|
|
|
59886
|
-
# Health information for the reservation subBlock.
|
|
59887
|
-
# Corresponds to the JSON property `subBlockHealthInfo`
|
|
59888
|
-
# @return [Google::Apis::ComputeAlpha::ReservationSubBlockHealthInfo]
|
|
59889
|
-
attr_accessor :sub_block_health_info
|
|
59890
|
-
|
|
59891
61244
|
# Output only. [Output Only] Zone in which the reservation subBlock resides.
|
|
59892
61245
|
# Corresponds to the JSON property `zone`
|
|
59893
61246
|
# @return [String]
|
|
@@ -59902,6 +61255,7 @@ module Google
|
|
|
59902
61255
|
@accelerator_topologies_info = args[:accelerator_topologies_info] if args.key?(:accelerator_topologies_info)
|
|
59903
61256
|
@count = args[:count] if args.key?(:count)
|
|
59904
61257
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
61258
|
+
@health_info = args[:health_info] if args.key?(:health_info)
|
|
59905
61259
|
@id = args[:id] if args.key?(:id)
|
|
59906
61260
|
@in_use_count = args[:in_use_count] if args.key?(:in_use_count)
|
|
59907
61261
|
@in_use_host_count = args[:in_use_host_count] if args.key?(:in_use_host_count)
|
|
@@ -59913,7 +61267,6 @@ module Google
|
|
|
59913
61267
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
59914
61268
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
|
59915
61269
|
@status = args[:status] if args.key?(:status)
|
|
59916
|
-
@sub_block_health_info = args[:sub_block_health_info] if args.key?(:sub_block_health_info)
|
|
59917
61270
|
@zone = args[:zone] if args.key?(:zone)
|
|
59918
61271
|
end
|
|
59919
61272
|
end
|
|
@@ -61948,6 +63301,13 @@ module Google
|
|
|
61948
63301
|
# @return [Fixnum]
|
|
61949
63302
|
attr_accessor :availability_domain
|
|
61950
63303
|
|
|
63304
|
+
# Output only. Specifies the timestamp, when the instance will start graceful
|
|
63305
|
+
# shutdown
|
|
63306
|
+
# process, in RFC3339 text format.
|
|
63307
|
+
# Corresponds to the JSON property `gracefulShutdownTimestamp`
|
|
63308
|
+
# @return [String]
|
|
63309
|
+
attr_accessor :graceful_shutdown_timestamp
|
|
63310
|
+
|
|
61951
63311
|
# Time in future when the instance will be terminated inRFC3339 text format.
|
|
61952
63312
|
# Corresponds to the JSON property `terminationTimestamp`
|
|
61953
63313
|
# @return [String]
|
|
@@ -61960,6 +63320,7 @@ module Google
|
|
|
61960
63320
|
# Update properties of this object
|
|
61961
63321
|
def update!(**args)
|
|
61962
63322
|
@availability_domain = args[:availability_domain] if args.key?(:availability_domain)
|
|
63323
|
+
@graceful_shutdown_timestamp = args[:graceful_shutdown_timestamp] if args.key?(:graceful_shutdown_timestamp)
|
|
61963
63324
|
@termination_timestamp = args[:termination_timestamp] if args.key?(:termination_timestamp)
|
|
61964
63325
|
end
|
|
61965
63326
|
end
|
|
@@ -62058,7 +63419,7 @@ module Google
|
|
|
62058
63419
|
end
|
|
62059
63420
|
end
|
|
62060
63421
|
|
|
62061
|
-
#
|
|
63422
|
+
# Detailed insights and metrics about a detected reliability risk.
|
|
62062
63423
|
class RiskDetails
|
|
62063
63424
|
include Google::Apis::Core::Hashable
|
|
62064
63425
|
|
|
@@ -62067,7 +63428,7 @@ module Google
|
|
|
62067
63428
|
# @return [String]
|
|
62068
63429
|
attr_accessor :duration
|
|
62069
63430
|
|
|
62070
|
-
#
|
|
63431
|
+
# Detailed insights for a global DNS reliability risk.
|
|
62071
63432
|
# Corresponds to the JSON property `globalDnsInsight`
|
|
62072
63433
|
# @return [Google::Apis::ComputeAlpha::RiskDetailsGlobalDnsInsight]
|
|
62073
63434
|
attr_accessor :global_dns_insight
|
|
@@ -62101,11 +63462,11 @@ module Google
|
|
|
62101
63462
|
end
|
|
62102
63463
|
end
|
|
62103
63464
|
|
|
62104
|
-
#
|
|
63465
|
+
# Detailed insights for a global DNS reliability risk.
|
|
62105
63466
|
class RiskDetailsGlobalDnsInsight
|
|
62106
63467
|
include Google::Apis::Core::Hashable
|
|
62107
63468
|
|
|
62108
|
-
#
|
|
63469
|
+
# Indicates whether the project's default DNS setting is global DNS.
|
|
62109
63470
|
# Corresponds to the JSON property `projectDefaultIsGlobalDns`
|
|
62110
63471
|
# @return [Boolean]
|
|
62111
63472
|
attr_accessor :project_default_is_global_dns
|
|
@@ -62116,8 +63477,8 @@ module Google
|
|
|
62116
63477
|
# @return [String]
|
|
62117
63478
|
attr_accessor :query_observation_window
|
|
62118
63479
|
|
|
62119
|
-
# The number of queries that are risky. This
|
|
62120
|
-
# total_query_count.
|
|
63480
|
+
# The number of queries that are risky. This is always less than or
|
|
63481
|
+
# equal to total_query_count.
|
|
62121
63482
|
# Corresponds to the JSON property `riskyQueryCount`
|
|
62122
63483
|
# @return [Fixnum]
|
|
62123
63484
|
attr_accessor :risky_query_count
|
|
@@ -62140,7 +63501,7 @@ module Google
|
|
|
62140
63501
|
end
|
|
62141
63502
|
end
|
|
62142
63503
|
|
|
62143
|
-
# Recommendation
|
|
63504
|
+
# Recommendation for mitigating a reliability risk, including a reference URL.
|
|
62144
63505
|
class RiskRecommendation
|
|
62145
63506
|
include Google::Apis::Core::Hashable
|
|
62146
63507
|
|
|
@@ -65251,6 +66612,13 @@ module Google
|
|
|
65251
66612
|
# @return [Google::Apis::ComputeAlpha::BfdStatus]
|
|
65252
66613
|
attr_accessor :bfd_status
|
|
65253
66614
|
|
|
66615
|
+
# Output only. [Output Only] Indicates whether the BGP peer is in a
|
|
66616
|
+
# depreferenced state.
|
|
66617
|
+
# Corresponds to the JSON property `depreferenced`
|
|
66618
|
+
# @return [Boolean]
|
|
66619
|
+
attr_accessor :depreferenced
|
|
66620
|
+
alias_method :depreferenced?, :depreferenced
|
|
66621
|
+
|
|
65254
66622
|
# Output only. Enable IPv4 traffic over BGP Peer.
|
|
65255
66623
|
# It is enabled by default if the peerIpAddress is version 4.
|
|
65256
66624
|
# Corresponds to the JSON property `enableIpv4`
|
|
@@ -65371,6 +66739,7 @@ module Google
|
|
|
65371
66739
|
def update!(**args)
|
|
65372
66740
|
@advertised_routes = args[:advertised_routes] if args.key?(:advertised_routes)
|
|
65373
66741
|
@bfd_status = args[:bfd_status] if args.key?(:bfd_status)
|
|
66742
|
+
@depreferenced = args[:depreferenced] if args.key?(:depreferenced)
|
|
65374
66743
|
@enable_ipv4 = args[:enable_ipv4] if args.key?(:enable_ipv4)
|
|
65375
66744
|
@enable_ipv6 = args[:enable_ipv6] if args.key?(:enable_ipv6)
|
|
65376
66745
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
|
@@ -72842,8 +74211,7 @@ module Google
|
|
|
72842
74211
|
class SslPolicyReference
|
|
72843
74212
|
include Google::Apis::Core::Hashable
|
|
72844
74213
|
|
|
72845
|
-
#
|
|
72846
|
-
# existing SSL policy associated with the target proxy resource.
|
|
74214
|
+
#
|
|
72847
74215
|
# Corresponds to the JSON property `sslPolicy`
|
|
72848
74216
|
# @return [String]
|
|
72849
74217
|
attr_accessor :ssl_policy
|
|
@@ -84536,6 +85904,11 @@ module Google
|
|
|
84536
85904
|
attr_accessor :identity_certificate_enabled
|
|
84537
85905
|
alias_method :identity_certificate_enabled?, :identity_certificate_enabled
|
|
84538
85906
|
|
|
85907
|
+
#
|
|
85908
|
+
# Corresponds to the JSON property `identityType`
|
|
85909
|
+
# @return [String]
|
|
85910
|
+
attr_accessor :identity_type
|
|
85911
|
+
|
|
84539
85912
|
def initialize(**args)
|
|
84540
85913
|
update!(**args)
|
|
84541
85914
|
end
|
|
@@ -84544,6 +85917,7 @@ module Google
|
|
|
84544
85917
|
def update!(**args)
|
|
84545
85918
|
@identity = args[:identity] if args.key?(:identity)
|
|
84546
85919
|
@identity_certificate_enabled = args[:identity_certificate_enabled] if args.key?(:identity_certificate_enabled)
|
|
85920
|
+
@identity_type = args[:identity_type] if args.key?(:identity_type)
|
|
84547
85921
|
end
|
|
84548
85922
|
end
|
|
84549
85923
|
|