google-apis-compute_alpha 0.87.0 → 0.89.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/lib/google/apis/compute_alpha/classes.rb +424 -133
- data/lib/google/apis/compute_alpha/gem_version.rb +3 -3
- data/lib/google/apis/compute_alpha/representations.rb +158 -51
- data/lib/google/apis/compute_alpha/service.rb +347 -110
- metadata +5 -5
@@ -5608,7 +5608,10 @@ module Google
|
|
5608
5608
|
attr_accessor :members
|
5609
5609
|
|
5610
5610
|
# Role that is assigned to the list of `members`, or principals. For example, `
|
5611
|
-
# roles/viewer`, `roles/editor`, or `roles/owner`.
|
5611
|
+
# roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
|
5612
|
+
# roles and permissions, see the [IAM documentation](https://cloud.google.com/
|
5613
|
+
# iam/docs/roles-overview). For a list of the available pre-defined roles, see [
|
5614
|
+
# here](https://cloud.google.com/iam/docs/understanding-roles).
|
5612
5615
|
# Corresponds to the JSON property `role`
|
5613
5616
|
# @return [String]
|
5614
5617
|
attr_accessor :role
|
@@ -10600,14 +10603,12 @@ module Google
|
|
10600
10603
|
attr_accessor :all_ports
|
10601
10604
|
alias_method :all_ports?, :all_ports
|
10602
10605
|
|
10603
|
-
#
|
10604
|
-
#
|
10605
|
-
#
|
10606
|
-
#
|
10607
|
-
#
|
10608
|
-
#
|
10609
|
-
# forwarding rules, this field cannot be changed after the forwarding rule is
|
10610
|
-
# created.
|
10606
|
+
# If set to true, clients can access the internal passthrough Network Load
|
10607
|
+
# Balancers, the regional internal Application Load Balancer, and the regional
|
10608
|
+
# internal proxy Network Load Balancer from all regions. If false, only allows
|
10609
|
+
# access from the local region the load balancer is located at. Note that for
|
10610
|
+
# INTERNAL_MANAGED forwarding rules, this field cannot be changed after the
|
10611
|
+
# forwarding rule is created.
|
10611
10612
|
# Corresponds to the JSON property `allowGlobalAccess`
|
10612
10613
|
# @return [Boolean]
|
10613
10614
|
attr_accessor :allow_global_access
|
@@ -12511,8 +12512,9 @@ module Google
|
|
12511
12512
|
# The ID of a supported feature. To add multiple values, use commas to separate
|
12512
12513
|
# values. Set to one or more of the following values: - VIRTIO_SCSI_MULTIQUEUE -
|
12513
12514
|
# WINDOWS - MULTI_IP_SUBNET - UEFI_COMPATIBLE - GVNIC - SEV_CAPABLE -
|
12514
|
-
# SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE -
|
12515
|
-
# more information, see Enabling guest operating system
|
12515
|
+
# SUSPEND_RESUME_COMPATIBLE - SEV_LIVE_MIGRATABLE - SEV_SNP_CAPABLE -
|
12516
|
+
# TDX_CAPABLE - IDPF For more information, see Enabling guest operating system
|
12517
|
+
# features.
|
12516
12518
|
# Corresponds to the JSON property `type`
|
12517
12519
|
# @return [String]
|
12518
12520
|
attr_accessor :type
|
@@ -17808,13 +17810,25 @@ module Google
|
|
17808
17810
|
include Google::Apis::Core::Hashable
|
17809
17811
|
|
17810
17812
|
# [Output only] Fatal errors encountered during the queueing or provisioning
|
17811
|
-
# phases of the ResizeRequest that caused the transition to the FAILED state.
|
17812
|
-
#
|
17813
|
-
#
|
17813
|
+
# phases of the ResizeRequest that caused the transition to the FAILED state.
|
17814
|
+
# Contrary to the last_attempt errors, this field is final and errors are never
|
17815
|
+
# removed from here, as the ResizeRequest is not going to retry.
|
17814
17816
|
# Corresponds to the JSON property `error`
|
17815
17817
|
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatus::Error]
|
17816
17818
|
attr_accessor :error
|
17817
17819
|
|
17820
|
+
# [Output only] Information about the last attempt to fulfill the request. The
|
17821
|
+
# value is temporary since the ResizeRequest can retry, as long as it's still
|
17822
|
+
# active and the last attempt value can either be cleared or replaced with a
|
17823
|
+
# different error. Since ResizeRequest retries infrequently, the value may be
|
17824
|
+
# stale and no longer show an active problem. The value is cleared when
|
17825
|
+
# ResizeRequest transitions to the final state (becomes inactive). If the final
|
17826
|
+
# state is FAILED the error describing it will be storred in the "error" field
|
17827
|
+
# only.
|
17828
|
+
# Corresponds to the JSON property `lastAttempt`
|
17829
|
+
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatusLastAttempt]
|
17830
|
+
attr_accessor :last_attempt
|
17831
|
+
|
17818
17832
|
# Queuing parameters for the requested deferred capacity.
|
17819
17833
|
# Corresponds to the JSON property `queuingPolicy`
|
17820
17834
|
# @return [Google::Apis::ComputeAlpha::QueuingPolicy]
|
@@ -17827,13 +17841,14 @@ module Google
|
|
17827
17841
|
# Update properties of this object
|
17828
17842
|
def update!(**args)
|
17829
17843
|
@error = args[:error] if args.key?(:error)
|
17844
|
+
@last_attempt = args[:last_attempt] if args.key?(:last_attempt)
|
17830
17845
|
@queuing_policy = args[:queuing_policy] if args.key?(:queuing_policy)
|
17831
17846
|
end
|
17832
17847
|
|
17833
17848
|
# [Output only] Fatal errors encountered during the queueing or provisioning
|
17834
|
-
# phases of the ResizeRequest that caused the transition to the FAILED state.
|
17835
|
-
#
|
17836
|
-
#
|
17849
|
+
# phases of the ResizeRequest that caused the transition to the FAILED state.
|
17850
|
+
# Contrary to the last_attempt errors, this field is final and errors are never
|
17851
|
+
# removed from here, as the ResizeRequest is not going to retry.
|
17837
17852
|
class Error
|
17838
17853
|
include Google::Apis::Core::Hashable
|
17839
17854
|
|
@@ -17942,6 +17957,133 @@ module Google
|
|
17942
17957
|
end
|
17943
17958
|
end
|
17944
17959
|
|
17960
|
+
#
|
17961
|
+
class InstanceGroupManagerResizeRequestStatusLastAttempt
|
17962
|
+
include Google::Apis::Core::Hashable
|
17963
|
+
|
17964
|
+
# Errors that prevented the ResizeRequest to be fulfilled.
|
17965
|
+
# Corresponds to the JSON property `error`
|
17966
|
+
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatusLastAttempt::Error]
|
17967
|
+
attr_accessor :error
|
17968
|
+
|
17969
|
+
def initialize(**args)
|
17970
|
+
update!(**args)
|
17971
|
+
end
|
17972
|
+
|
17973
|
+
# Update properties of this object
|
17974
|
+
def update!(**args)
|
17975
|
+
@error = args[:error] if args.key?(:error)
|
17976
|
+
end
|
17977
|
+
|
17978
|
+
# Errors that prevented the ResizeRequest to be fulfilled.
|
17979
|
+
class Error
|
17980
|
+
include Google::Apis::Core::Hashable
|
17981
|
+
|
17982
|
+
# [Output Only] The array of errors encountered while processing this operation.
|
17983
|
+
# Corresponds to the JSON property `errors`
|
17984
|
+
# @return [Array<Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Error>]
|
17985
|
+
attr_accessor :errors
|
17986
|
+
|
17987
|
+
def initialize(**args)
|
17988
|
+
update!(**args)
|
17989
|
+
end
|
17990
|
+
|
17991
|
+
# Update properties of this object
|
17992
|
+
def update!(**args)
|
17993
|
+
@errors = args[:errors] if args.key?(:errors)
|
17994
|
+
end
|
17995
|
+
|
17996
|
+
#
|
17997
|
+
class Error
|
17998
|
+
include Google::Apis::Core::Hashable
|
17999
|
+
|
18000
|
+
# [Output Only] The error type identifier for this error.
|
18001
|
+
# Corresponds to the JSON property `code`
|
18002
|
+
# @return [String]
|
18003
|
+
attr_accessor :code
|
18004
|
+
|
18005
|
+
# [Output Only] An optional list of messages that contain the error details.
|
18006
|
+
# There is a set of defined message types to use for providing details.The
|
18007
|
+
# syntax depends on the error code. For example, QuotaExceededInfo will have
|
18008
|
+
# details when the error code is QUOTA_EXCEEDED.
|
18009
|
+
# Corresponds to the JSON property `errorDetails`
|
18010
|
+
# @return [Array<Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Error::ErrorDetail>]
|
18011
|
+
attr_accessor :error_details
|
18012
|
+
|
18013
|
+
# [Output Only] Indicates the field in the request that caused the error. This
|
18014
|
+
# property is optional.
|
18015
|
+
# Corresponds to the JSON property `location`
|
18016
|
+
# @return [String]
|
18017
|
+
attr_accessor :location
|
18018
|
+
|
18019
|
+
# [Output Only] An optional, human-readable error message.
|
18020
|
+
# Corresponds to the JSON property `message`
|
18021
|
+
# @return [String]
|
18022
|
+
attr_accessor :message
|
18023
|
+
|
18024
|
+
def initialize(**args)
|
18025
|
+
update!(**args)
|
18026
|
+
end
|
18027
|
+
|
18028
|
+
# Update properties of this object
|
18029
|
+
def update!(**args)
|
18030
|
+
@code = args[:code] if args.key?(:code)
|
18031
|
+
@error_details = args[:error_details] if args.key?(:error_details)
|
18032
|
+
@location = args[:location] if args.key?(:location)
|
18033
|
+
@message = args[:message] if args.key?(:message)
|
18034
|
+
end
|
18035
|
+
|
18036
|
+
#
|
18037
|
+
class ErrorDetail
|
18038
|
+
include Google::Apis::Core::Hashable
|
18039
|
+
|
18040
|
+
# Describes the cause of the error with structured details. Example of an error
|
18041
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
18042
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
18043
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
18044
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
18045
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
18046
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
18047
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
18048
|
+
# Corresponds to the JSON property `errorInfo`
|
18049
|
+
# @return [Google::Apis::ComputeAlpha::ErrorInfo]
|
18050
|
+
attr_accessor :error_info
|
18051
|
+
|
18052
|
+
# Provides links to documentation or for performing an out of band action. For
|
18053
|
+
# example, if a quota check failed with an error indicating the calling project
|
18054
|
+
# hasn't enabled the accessed service, this can contain a URL pointing directly
|
18055
|
+
# to the right place in the developer console to flip the bit.
|
18056
|
+
# Corresponds to the JSON property `help`
|
18057
|
+
# @return [Google::Apis::ComputeAlpha::Help]
|
18058
|
+
attr_accessor :help
|
18059
|
+
|
18060
|
+
# Provides a localized error message that is safe to return to the user which
|
18061
|
+
# can be attached to an RPC error.
|
18062
|
+
# Corresponds to the JSON property `localizedMessage`
|
18063
|
+
# @return [Google::Apis::ComputeAlpha::LocalizedMessage]
|
18064
|
+
attr_accessor :localized_message
|
18065
|
+
|
18066
|
+
# Additional details for quota exceeded error for resource quota.
|
18067
|
+
# Corresponds to the JSON property `quotaInfo`
|
18068
|
+
# @return [Google::Apis::ComputeAlpha::QuotaExceededInfo]
|
18069
|
+
attr_accessor :quota_info
|
18070
|
+
|
18071
|
+
def initialize(**args)
|
18072
|
+
update!(**args)
|
18073
|
+
end
|
18074
|
+
|
18075
|
+
# Update properties of this object
|
18076
|
+
def update!(**args)
|
18077
|
+
@error_info = args[:error_info] if args.key?(:error_info)
|
18078
|
+
@help = args[:help] if args.key?(:help)
|
18079
|
+
@localized_message = args[:localized_message] if args.key?(:localized_message)
|
18080
|
+
@quota_info = args[:quota_info] if args.key?(:quota_info)
|
18081
|
+
end
|
18082
|
+
end
|
18083
|
+
end
|
18084
|
+
end
|
18085
|
+
end
|
18086
|
+
|
17945
18087
|
# [Output Only] A list of resize requests.
|
17946
18088
|
class InstanceGroupManagerResizeRequestsListResponse
|
17947
18089
|
include Google::Apis::Core::Hashable
|
@@ -21314,55 +21456,6 @@ module Google
|
|
21314
21456
|
end
|
21315
21457
|
end
|
21316
21458
|
|
21317
|
-
#
|
21318
|
-
class InstantSnapshotExportParams
|
21319
|
-
include Google::Apis::Core::Hashable
|
21320
|
-
|
21321
|
-
# An optional base instant snapshot that this resource is compared against. If
|
21322
|
-
# not specified, all blocks of this resource are exported. The base instant
|
21323
|
-
# snapshot and this resource must be created from the same disk. The base
|
21324
|
-
# instant snapshot must be created earlier in time than this resource.
|
21325
|
-
# Corresponds to the JSON property `baseInstantSnapshot`
|
21326
|
-
# @return [String]
|
21327
|
-
attr_accessor :base_instant_snapshot
|
21328
|
-
|
21329
|
-
# The name of an existing bucket in Cloud Storage where the changed blocks will
|
21330
|
-
# be stored. The Google Service Account must have read and write access to this
|
21331
|
-
# bucket. The bucket has to be in the same region as this resource.
|
21332
|
-
# Corresponds to the JSON property `bucketName`
|
21333
|
-
# @return [String]
|
21334
|
-
attr_accessor :bucket_name
|
21335
|
-
|
21336
|
-
# Encryption key used to encrypt the instant snapshot.
|
21337
|
-
# Corresponds to the JSON property `encryptionKey`
|
21338
|
-
# @return [Google::Apis::ComputeAlpha::CustomerEncryptionKey]
|
21339
|
-
attr_accessor :encryption_key
|
21340
|
-
|
21341
|
-
# Name of the output Bigstore object storing the changed blocks. Object name
|
21342
|
-
# must be less than 1024 bytes in length.
|
21343
|
-
# Corresponds to the JSON property `objectName`
|
21344
|
-
# @return [String]
|
21345
|
-
attr_accessor :object_name
|
21346
|
-
|
21347
|
-
# The format of the output file.
|
21348
|
-
# Corresponds to the JSON property `outputType`
|
21349
|
-
# @return [String]
|
21350
|
-
attr_accessor :output_type
|
21351
|
-
|
21352
|
-
def initialize(**args)
|
21353
|
-
update!(**args)
|
21354
|
-
end
|
21355
|
-
|
21356
|
-
# Update properties of this object
|
21357
|
-
def update!(**args)
|
21358
|
-
@base_instant_snapshot = args[:base_instant_snapshot] if args.key?(:base_instant_snapshot)
|
21359
|
-
@bucket_name = args[:bucket_name] if args.key?(:bucket_name)
|
21360
|
-
@encryption_key = args[:encryption_key] if args.key?(:encryption_key)
|
21361
|
-
@object_name = args[:object_name] if args.key?(:object_name)
|
21362
|
-
@output_type = args[:output_type] if args.key?(:output_type)
|
21363
|
-
end
|
21364
|
-
end
|
21365
|
-
|
21366
21459
|
# Contains a list of InstantSnapshot resources.
|
21367
21460
|
class InstantSnapshotList
|
21368
21461
|
include Google::Apis::Core::Hashable
|
@@ -21499,25 +21592,6 @@ module Google
|
|
21499
21592
|
end
|
21500
21593
|
end
|
21501
21594
|
|
21502
|
-
#
|
21503
|
-
class InstantSnapshotsExportRequest
|
21504
|
-
include Google::Apis::Core::Hashable
|
21505
|
-
|
21506
|
-
# Parameters to export the changed blocks.
|
21507
|
-
# Corresponds to the JSON property `exportParams`
|
21508
|
-
# @return [Google::Apis::ComputeAlpha::InstantSnapshotExportParams]
|
21509
|
-
attr_accessor :export_params
|
21510
|
-
|
21511
|
-
def initialize(**args)
|
21512
|
-
update!(**args)
|
21513
|
-
end
|
21514
|
-
|
21515
|
-
# Update properties of this object
|
21516
|
-
def update!(**args)
|
21517
|
-
@export_params = args[:export_params] if args.key?(:export_params)
|
21518
|
-
end
|
21519
|
-
end
|
21520
|
-
|
21521
21595
|
#
|
21522
21596
|
class InstantSnapshotsScopedList
|
21523
21597
|
include Google::Apis::Core::Hashable
|
@@ -26484,6 +26558,51 @@ module Google
|
|
26484
26558
|
end
|
26485
26559
|
end
|
26486
26560
|
|
26561
|
+
#
|
26562
|
+
class NamedSet
|
26563
|
+
include Google::Apis::Core::Hashable
|
26564
|
+
|
26565
|
+
# CEL expressions that are comparable to constructs of this set's type (see
|
26566
|
+
# Policy Language).
|
26567
|
+
# Corresponds to the JSON property `elements`
|
26568
|
+
# @return [Array<Google::Apis::ComputeAlpha::Expr>]
|
26569
|
+
attr_accessor :elements
|
26570
|
+
|
26571
|
+
# A fingerprint for the Named Set being applied to this Router, which is
|
26572
|
+
# essentially a hash of the Named Set used for optimistic locking. The
|
26573
|
+
# fingerprint is initially generated by Compute Engine and changes after every
|
26574
|
+
# request to modify or update the Named Set. You must always provide an up-to-
|
26575
|
+
# date fingerprint hash in order to update or change labels. To see the latest
|
26576
|
+
# fingerprint, make a getNamedSet() request to retrieve a Named Set.
|
26577
|
+
# Corresponds to the JSON property `fingerprint`
|
26578
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
26579
|
+
# @return [String]
|
26580
|
+
attr_accessor :fingerprint
|
26581
|
+
|
26582
|
+
# This set's name, which must be a resource ID segment and unique within all
|
26583
|
+
# named sets owned by the Router. Name should conform to RFC1035.
|
26584
|
+
# Corresponds to the JSON property `name`
|
26585
|
+
# @return [String]
|
26586
|
+
attr_accessor :name
|
26587
|
+
|
26588
|
+
# This named set's type
|
26589
|
+
# Corresponds to the JSON property `type`
|
26590
|
+
# @return [String]
|
26591
|
+
attr_accessor :type
|
26592
|
+
|
26593
|
+
def initialize(**args)
|
26594
|
+
update!(**args)
|
26595
|
+
end
|
26596
|
+
|
26597
|
+
# Update properties of this object
|
26598
|
+
def update!(**args)
|
26599
|
+
@elements = args[:elements] if args.key?(:elements)
|
26600
|
+
@fingerprint = args[:fingerprint] if args.key?(:fingerprint)
|
26601
|
+
@name = args[:name] if args.key?(:name)
|
26602
|
+
@type = args[:type] if args.key?(:type)
|
26603
|
+
end
|
26604
|
+
end
|
26605
|
+
|
26487
26606
|
# Contains NAT IP information of a NAT config (i.e. usage status, mode).
|
26488
26607
|
class NatIpInfo
|
26489
26608
|
include Google::Apis::Core::Hashable
|
@@ -27551,8 +27670,8 @@ module Google
|
|
27551
27670
|
# @return [Hash<String,String>]
|
27552
27671
|
attr_accessor :annotations
|
27553
27672
|
|
27554
|
-
#
|
27555
|
-
#
|
27673
|
+
# Represents the port number to which PSC consumer sends packets. Only valid for
|
27674
|
+
# network endpoint groups created with CLIENT_PORT_PER_ENDPOINT mapping mode.
|
27556
27675
|
# Corresponds to the JSON property `clientPort`
|
27557
27676
|
# @return [Fixnum]
|
27558
27677
|
attr_accessor :client_port
|
@@ -27563,10 +27682,13 @@ module Google
|
|
27563
27682
|
# @return [String]
|
27564
27683
|
attr_accessor :fqdn
|
27565
27684
|
|
27566
|
-
# The name
|
27567
|
-
# required for network endpoints of type GCE_VM_IP_PORT. The
|
27568
|
-
# the same zone of network endpoint group
|
27569
|
-
#
|
27685
|
+
# The name or a URL of VM instance of this network endpoint. This field is
|
27686
|
+
# required for network endpoints of type GCE_VM_IP and GCE_VM_IP_PORT. The
|
27687
|
+
# instance must be in the same zone of network endpoint group (for zonal NEGs)
|
27688
|
+
# or in the zone within the region of the NEG (for regional NEGs). If the
|
27689
|
+
# ipAddress is specified, it must belongs to the VM instance. The name must be 1-
|
27690
|
+
# 63 characters long, and comply with RFC1035 or be a valid URL pointing to an
|
27691
|
+
# existing instance.
|
27570
27692
|
# Corresponds to the JSON property `instance`
|
27571
27693
|
# @return [String]
|
27572
27694
|
attr_accessor :instance
|
@@ -27575,7 +27697,11 @@ module Google
|
|
27575
27697
|
# in Compute Engine (either the primary IP or as part of an aliased IP range).
|
27576
27698
|
# If the IP address is not specified, then the primary IP address for the VM
|
27577
27699
|
# instance in the network that the network endpoint group belongs to will be
|
27578
|
-
# used.
|
27700
|
+
# used. This field is redundant and need not be set for network endpoints of
|
27701
|
+
# type GCE_VM_IP. If set, it must be set to the primary internal IP address of
|
27702
|
+
# the attached VM instance that matches the subnetwork of the NEG. The primary
|
27703
|
+
# internal IP address from any NIC of a multi-NIC VM instance can be added to a
|
27704
|
+
# NEG as long as it matches the NEG subnetwork.
|
27579
27705
|
# Corresponds to the JSON property `ipAddress`
|
27580
27706
|
# @return [String]
|
27581
27707
|
attr_accessor :ip_address
|
@@ -27586,7 +27712,8 @@ module Google
|
|
27586
27712
|
attr_accessor :ipv6_address
|
27587
27713
|
|
27588
27714
|
# Optional port number of network endpoint. If not specified, the defaultPort
|
27589
|
-
# for the network endpoint group will be used.
|
27715
|
+
# for the network endpoint group will be used. This field can not be set for
|
27716
|
+
# network endpoints of type GCE_VM_IP.
|
27590
27717
|
# Corresponds to the JSON property `port`
|
27591
27718
|
# @return [Fixnum]
|
27592
27719
|
attr_accessor :port
|
@@ -37205,25 +37332,6 @@ module Google
|
|
37205
37332
|
end
|
37206
37333
|
end
|
37207
37334
|
|
37208
|
-
#
|
37209
|
-
class RegionInstantSnapshotsExportRequest
|
37210
|
-
include Google::Apis::Core::Hashable
|
37211
|
-
|
37212
|
-
# Parameters to export the changed blocks.
|
37213
|
-
# Corresponds to the JSON property `exportParams`
|
37214
|
-
# @return [Google::Apis::ComputeAlpha::InstantSnapshotExportParams]
|
37215
|
-
attr_accessor :export_params
|
37216
|
-
|
37217
|
-
def initialize(**args)
|
37218
|
-
update!(**args)
|
37219
|
-
end
|
37220
|
-
|
37221
|
-
# Update properties of this object
|
37222
|
-
def update!(**args)
|
37223
|
-
@export_params = args[:export_params] if args.key?(:export_params)
|
37224
|
-
end
|
37225
|
-
end
|
37226
|
-
|
37227
37335
|
# Contains a list of region resources.
|
37228
37336
|
class RegionList
|
37229
37337
|
include Google::Apis::Core::Hashable
|
@@ -37645,8 +37753,8 @@ module Google
|
|
37645
37753
|
# @return [Google::Apis::ComputeAlpha::Duration]
|
37646
37754
|
attr_accessor :delete_after_duration
|
37647
37755
|
|
37648
|
-
# Absolute time in future when the reservation will be auto-deleted by
|
37649
|
-
# Timestamp is represented in RFC3339 text format.
|
37756
|
+
# Absolute time in future when the reservation will be auto-deleted by Compute
|
37757
|
+
# Engine. Timestamp is represented in RFC3339 text format.
|
37650
37758
|
# Corresponds to the JSON property `deleteAtTime`
|
37651
37759
|
# @return [String]
|
37652
37760
|
attr_accessor :delete_at_time
|
@@ -41520,6 +41628,31 @@ module Google
|
|
41520
41628
|
end
|
41521
41629
|
end
|
41522
41630
|
|
41631
|
+
#
|
41632
|
+
class RoutersGetNamedSetResponse
|
41633
|
+
include Google::Apis::Core::Hashable
|
41634
|
+
|
41635
|
+
# end_interface: MixerGetResponseWithEtagBuilder
|
41636
|
+
# Corresponds to the JSON property `etag`
|
41637
|
+
# @return [String]
|
41638
|
+
attr_accessor :etag
|
41639
|
+
|
41640
|
+
#
|
41641
|
+
# Corresponds to the JSON property `resource`
|
41642
|
+
# @return [Google::Apis::ComputeAlpha::NamedSet]
|
41643
|
+
attr_accessor :resource
|
41644
|
+
|
41645
|
+
def initialize(**args)
|
41646
|
+
update!(**args)
|
41647
|
+
end
|
41648
|
+
|
41649
|
+
# Update properties of this object
|
41650
|
+
def update!(**args)
|
41651
|
+
@etag = args[:etag] if args.key?(:etag)
|
41652
|
+
@resource = args[:resource] if args.key?(:resource)
|
41653
|
+
end
|
41654
|
+
end
|
41655
|
+
|
41523
41656
|
#
|
41524
41657
|
class RoutersGetRoutePolicyResponse
|
41525
41658
|
include Google::Apis::Core::Hashable
|
@@ -41676,6 +41809,137 @@ module Google
|
|
41676
41809
|
end
|
41677
41810
|
end
|
41678
41811
|
|
41812
|
+
#
|
41813
|
+
class RoutersListNamedSets
|
41814
|
+
include Google::Apis::Core::Hashable
|
41815
|
+
|
41816
|
+
#
|
41817
|
+
# Corresponds to the JSON property `etag`
|
41818
|
+
# @return [String]
|
41819
|
+
attr_accessor :etag
|
41820
|
+
|
41821
|
+
# [Output Only] The unique identifier for the resource. This identifier is
|
41822
|
+
# defined by the server.
|
41823
|
+
# Corresponds to the JSON property `id`
|
41824
|
+
# @return [String]
|
41825
|
+
attr_accessor :id
|
41826
|
+
|
41827
|
+
# [Output Only] Type of resource. Always compute#routersListNamedSets for lists
|
41828
|
+
# of named sets.
|
41829
|
+
# Corresponds to the JSON property `kind`
|
41830
|
+
# @return [String]
|
41831
|
+
attr_accessor :kind
|
41832
|
+
|
41833
|
+
# [Output Only] This token allows you to get the next page of results for list
|
41834
|
+
# requests. If the number of results is larger than maxResults, use the
|
41835
|
+
# nextPageToken as a value for the query parameter pageToken in the next list
|
41836
|
+
# request. Subsequent list requests will have their own nextPageToken to
|
41837
|
+
# continue paging through the results.
|
41838
|
+
# Corresponds to the JSON property `nextPageToken`
|
41839
|
+
# @return [String]
|
41840
|
+
attr_accessor :next_page_token
|
41841
|
+
|
41842
|
+
# [Output Only] A list of named sets.
|
41843
|
+
# Corresponds to the JSON property `result`
|
41844
|
+
# @return [Array<Google::Apis::ComputeAlpha::NamedSet>]
|
41845
|
+
attr_accessor :result
|
41846
|
+
|
41847
|
+
# [Output Only] Server-defined URL for this resource.
|
41848
|
+
# Corresponds to the JSON property `selfLink`
|
41849
|
+
# @return [String]
|
41850
|
+
attr_accessor :self_link
|
41851
|
+
|
41852
|
+
# [Output Only] Unreachable resources.
|
41853
|
+
# Corresponds to the JSON property `unreachables`
|
41854
|
+
# @return [Array<String>]
|
41855
|
+
attr_accessor :unreachables
|
41856
|
+
|
41857
|
+
# [Output Only] Informational warning message.
|
41858
|
+
# Corresponds to the JSON property `warning`
|
41859
|
+
# @return [Google::Apis::ComputeAlpha::RoutersListNamedSets::Warning]
|
41860
|
+
attr_accessor :warning
|
41861
|
+
|
41862
|
+
def initialize(**args)
|
41863
|
+
update!(**args)
|
41864
|
+
end
|
41865
|
+
|
41866
|
+
# Update properties of this object
|
41867
|
+
def update!(**args)
|
41868
|
+
@etag = args[:etag] if args.key?(:etag)
|
41869
|
+
@id = args[:id] if args.key?(:id)
|
41870
|
+
@kind = args[:kind] if args.key?(:kind)
|
41871
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
41872
|
+
@result = args[:result] if args.key?(:result)
|
41873
|
+
@self_link = args[:self_link] if args.key?(:self_link)
|
41874
|
+
@unreachables = args[:unreachables] if args.key?(:unreachables)
|
41875
|
+
@warning = args[:warning] if args.key?(:warning)
|
41876
|
+
end
|
41877
|
+
|
41878
|
+
# [Output Only] Informational warning message.
|
41879
|
+
class Warning
|
41880
|
+
include Google::Apis::Core::Hashable
|
41881
|
+
|
41882
|
+
# [Output Only] A warning code, if applicable. For example, Compute Engine
|
41883
|
+
# returns NO_RESULTS_ON_PAGE if there are no results in the response.
|
41884
|
+
# Corresponds to the JSON property `code`
|
41885
|
+
# @return [String]
|
41886
|
+
attr_accessor :code
|
41887
|
+
|
41888
|
+
# [Output Only] Metadata about this warning in key: value format. For example: "
|
41889
|
+
# data": [ ` "key": "scope", "value": "zones/us-east1-d" `
|
41890
|
+
# Corresponds to the JSON property `data`
|
41891
|
+
# @return [Array<Google::Apis::ComputeAlpha::RoutersListNamedSets::Warning::Datum>]
|
41892
|
+
attr_accessor :data
|
41893
|
+
|
41894
|
+
# [Output Only] A human-readable description of the warning code.
|
41895
|
+
# Corresponds to the JSON property `message`
|
41896
|
+
# @return [String]
|
41897
|
+
attr_accessor :message
|
41898
|
+
|
41899
|
+
def initialize(**args)
|
41900
|
+
update!(**args)
|
41901
|
+
end
|
41902
|
+
|
41903
|
+
# Update properties of this object
|
41904
|
+
def update!(**args)
|
41905
|
+
@code = args[:code] if args.key?(:code)
|
41906
|
+
@data = args[:data] if args.key?(:data)
|
41907
|
+
@message = args[:message] if args.key?(:message)
|
41908
|
+
end
|
41909
|
+
|
41910
|
+
#
|
41911
|
+
class Datum
|
41912
|
+
include Google::Apis::Core::Hashable
|
41913
|
+
|
41914
|
+
# [Output Only] A key that provides more detail on the warning being returned.
|
41915
|
+
# For example, for warnings where there are no results in a list request for a
|
41916
|
+
# particular zone, this key might be scope and the key value might be the zone
|
41917
|
+
# name. Other examples might be a key indicating a deprecated resource and a
|
41918
|
+
# suggested replacement, or a warning about invalid network settings (for
|
41919
|
+
# example, if an instance attempts to perform IP forwarding but is not enabled
|
41920
|
+
# for IP forwarding).
|
41921
|
+
# Corresponds to the JSON property `key`
|
41922
|
+
# @return [String]
|
41923
|
+
attr_accessor :key
|
41924
|
+
|
41925
|
+
# [Output Only] A warning data value corresponding to the key.
|
41926
|
+
# Corresponds to the JSON property `value`
|
41927
|
+
# @return [String]
|
41928
|
+
attr_accessor :value
|
41929
|
+
|
41930
|
+
def initialize(**args)
|
41931
|
+
update!(**args)
|
41932
|
+
end
|
41933
|
+
|
41934
|
+
# Update properties of this object
|
41935
|
+
def update!(**args)
|
41936
|
+
@key = args[:key] if args.key?(:key)
|
41937
|
+
@value = args[:value] if args.key?(:value)
|
41938
|
+
end
|
41939
|
+
end
|
41940
|
+
end
|
41941
|
+
end
|
41942
|
+
|
41679
41943
|
#
|
41680
41944
|
class RoutersListRoutePolicies
|
41681
41945
|
include Google::Apis::Core::Hashable
|
@@ -47944,8 +48208,8 @@ module Google
|
|
47944
48208
|
# @return [Fixnum]
|
47945
48209
|
attr_accessor :pool_provisioned_capacity_gb
|
47946
48210
|
|
47947
|
-
#
|
47948
|
-
# hyperdisk-balanced.
|
48211
|
+
# Provisioned IOPS of the storage pool. Only relevant if the storage pool type
|
48212
|
+
# is hyperdisk-balanced.
|
47949
48213
|
# Corresponds to the JSON property `poolProvisionedIops`
|
47950
48214
|
# @return [Fixnum]
|
47951
48215
|
attr_accessor :pool_provisioned_iops
|
@@ -48665,32 +48929,38 @@ module Google
|
|
48665
48929
|
# @return [String]
|
48666
48930
|
attr_accessor :kind
|
48667
48931
|
|
48932
|
+
# [Output Only] Maximum storage pool size in GB.
|
48933
|
+
# Corresponds to the JSON property `maxPoolProvisionedCapacityGb`
|
48934
|
+
# @return [Fixnum]
|
48935
|
+
attr_accessor :max_pool_provisioned_capacity_gb
|
48936
|
+
|
48668
48937
|
# [Output Only] Maximum provisioned IOPS.
|
48669
|
-
# Corresponds to the JSON property `
|
48938
|
+
# Corresponds to the JSON property `maxPoolProvisionedIops`
|
48670
48939
|
# @return [Fixnum]
|
48671
|
-
attr_accessor :
|
48940
|
+
attr_accessor :max_pool_provisioned_iops
|
48672
48941
|
|
48673
48942
|
# [Output Only] Maximum provisioned throughput.
|
48674
|
-
# Corresponds to the JSON property `
|
48943
|
+
# Corresponds to the JSON property `maxPoolProvisionedThroughput`
|
48675
48944
|
# @return [Fixnum]
|
48676
|
-
attr_accessor :
|
48945
|
+
attr_accessor :max_pool_provisioned_throughput
|
48677
48946
|
|
48678
|
-
# [Output Only]
|
48679
|
-
# Corresponds to the JSON property `
|
48947
|
+
# [Output Only] Minimum storage pool size in GB.
|
48948
|
+
# Corresponds to the JSON property `minPoolProvisionedCapacityGb`
|
48680
48949
|
# @return [Fixnum]
|
48681
|
-
attr_accessor :
|
48950
|
+
attr_accessor :min_pool_provisioned_capacity_gb
|
48682
48951
|
|
48683
48952
|
# [Output Only] Minimum provisioned IOPS.
|
48684
|
-
# Corresponds to the JSON property `
|
48953
|
+
# Corresponds to the JSON property `minPoolProvisionedIops`
|
48685
48954
|
# @return [Fixnum]
|
48686
|
-
attr_accessor :
|
48955
|
+
attr_accessor :min_pool_provisioned_iops
|
48687
48956
|
|
48688
48957
|
# [Output Only] Minimum provisioned throughput.
|
48689
|
-
# Corresponds to the JSON property `
|
48958
|
+
# Corresponds to the JSON property `minPoolProvisionedThroughput`
|
48690
48959
|
# @return [Fixnum]
|
48691
|
-
attr_accessor :
|
48960
|
+
attr_accessor :min_pool_provisioned_throughput
|
48692
48961
|
|
48693
|
-
# [
|
48962
|
+
# [Deprecated] This field is deprecated. Use minPoolProvisionedCapacityGb
|
48963
|
+
# instead.
|
48694
48964
|
# Corresponds to the JSON property `minSizeGb`
|
48695
48965
|
# @return [Fixnum]
|
48696
48966
|
attr_accessor :min_size_gb
|
@@ -48733,11 +49003,12 @@ module Google
|
|
48733
49003
|
@description = args[:description] if args.key?(:description)
|
48734
49004
|
@id = args[:id] if args.key?(:id)
|
48735
49005
|
@kind = args[:kind] if args.key?(:kind)
|
48736
|
-
@
|
48737
|
-
@
|
48738
|
-
@
|
48739
|
-
@
|
48740
|
-
@
|
49006
|
+
@max_pool_provisioned_capacity_gb = args[:max_pool_provisioned_capacity_gb] if args.key?(:max_pool_provisioned_capacity_gb)
|
49007
|
+
@max_pool_provisioned_iops = args[:max_pool_provisioned_iops] if args.key?(:max_pool_provisioned_iops)
|
49008
|
+
@max_pool_provisioned_throughput = args[:max_pool_provisioned_throughput] if args.key?(:max_pool_provisioned_throughput)
|
49009
|
+
@min_pool_provisioned_capacity_gb = args[:min_pool_provisioned_capacity_gb] if args.key?(:min_pool_provisioned_capacity_gb)
|
49010
|
+
@min_pool_provisioned_iops = args[:min_pool_provisioned_iops] if args.key?(:min_pool_provisioned_iops)
|
49011
|
+
@min_pool_provisioned_throughput = args[:min_pool_provisioned_throughput] if args.key?(:min_pool_provisioned_throughput)
|
48741
49012
|
@min_size_gb = args[:min_size_gb] if args.key?(:min_size_gb)
|
48742
49013
|
@name = args[:name] if args.key?(:name)
|
48743
49014
|
@self_link = args[:self_link] if args.key?(:self_link)
|
@@ -51131,6 +51402,25 @@ module Google
|
|
51131
51402
|
# @return [String]
|
51132
51403
|
attr_accessor :ssl_policy
|
51133
51404
|
|
51405
|
+
# Specifies whether TLS 1.3 0-RTT Data ("Early Data") should be accepted for
|
51406
|
+
# this service. Early Data allows a TLS resumption handshake to include the
|
51407
|
+
# initial application payload (a HTTP request) alongside the handshake, reducing
|
51408
|
+
# the effective round trips to "zero". This applies to TLS 1.3 connections over
|
51409
|
+
# TCP (HTTP/2) as well as over UDP (QUIC/h3). This can improve application
|
51410
|
+
# performance, especially on networks where interruptions may be common, such as
|
51411
|
+
# on mobile. Requests with Early Data will have the "Early-Data" HTTP header set
|
51412
|
+
# on the request, with a value of "1", to allow the backend to determine whether
|
51413
|
+
# Early Data was included. Note: TLS Early Data may allow requests to be
|
51414
|
+
# replayed, as the data is sent to the backend before the handshake has fully
|
51415
|
+
# completed. Applications that allow idempotent HTTP methods to make non-
|
51416
|
+
# idempotent changes, such as a GET request updating a database, should not
|
51417
|
+
# accept Early Data on those requests, and reject requests with the "Early-Data:
|
51418
|
+
# 1" HTTP header by returning a HTTP 425 (Too Early) status code, in order to
|
51419
|
+
# remain RFC compliant. The default value is DISABLED.
|
51420
|
+
# Corresponds to the JSON property `tlsEarlyData`
|
51421
|
+
# @return [String]
|
51422
|
+
attr_accessor :tls_early_data
|
51423
|
+
|
51134
51424
|
# A fully-qualified or valid partial URL to the UrlMap resource that defines the
|
51135
51425
|
# mapping from URL to the BackendService. For example, the following are all
|
51136
51426
|
# valid URLs for specifying a URL map: - https://www.googleapis.compute/v1/
|
@@ -51166,6 +51456,7 @@ module Google
|
|
51166
51456
|
@server_tls_policy = args[:server_tls_policy] if args.key?(:server_tls_policy)
|
51167
51457
|
@ssl_certificates = args[:ssl_certificates] if args.key?(:ssl_certificates)
|
51168
51458
|
@ssl_policy = args[:ssl_policy] if args.key?(:ssl_policy)
|
51459
|
+
@tls_early_data = args[:tls_early_data] if args.key?(:tls_early_data)
|
51169
51460
|
@url_map = args[:url_map] if args.key?(:url_map)
|
51170
51461
|
end
|
51171
51462
|
end
|