google-apis-compute_alpha 0.88.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f1fa623120a8145e88fabe1d42d43a653de726673e900f3fba05c6a722eaade
|
4
|
+
data.tar.gz: a3b1786a7f0365319529b6ec416e1e85a0ea563133f50fa65df9273373f4349c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 23e8f9aa4c8ebaf4941e64a35efcd2e5c5fb9191bc13dc699ab574b86423e04b103470f52df48b53cde5a009ea65e149fdc6b71af64b5eee6291cf59d791d1ec
|
7
|
+
data.tar.gz: 6d0e8b7784e5e5e3f3e98331377d340cae2b41a93e6dad390b44f523c9e29273fb0e83cacce06387b2cc1b68877fe6000da57a30fd34e22ea6b01bda6afed1c5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-compute_alpha
|
2
2
|
|
3
|
+
### v0.89.0 (2024-02-04)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240129
|
6
|
+
* Regenerated using generator version 0.13.1
|
7
|
+
|
3
8
|
### v0.88.0 (2024-01-23)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20240109
|
@@ -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
|
@@ -17807,13 +17810,25 @@ module Google
|
|
17807
17810
|
include Google::Apis::Core::Hashable
|
17808
17811
|
|
17809
17812
|
# [Output only] Fatal errors encountered during the queueing or provisioning
|
17810
|
-
# phases of the ResizeRequest that caused the transition to the FAILED state.
|
17811
|
-
#
|
17812
|
-
#
|
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.
|
17813
17816
|
# Corresponds to the JSON property `error`
|
17814
17817
|
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerResizeRequestStatus::Error]
|
17815
17818
|
attr_accessor :error
|
17816
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
|
+
|
17817
17832
|
# Queuing parameters for the requested deferred capacity.
|
17818
17833
|
# Corresponds to the JSON property `queuingPolicy`
|
17819
17834
|
# @return [Google::Apis::ComputeAlpha::QueuingPolicy]
|
@@ -17826,13 +17841,14 @@ module Google
|
|
17826
17841
|
# Update properties of this object
|
17827
17842
|
def update!(**args)
|
17828
17843
|
@error = args[:error] if args.key?(:error)
|
17844
|
+
@last_attempt = args[:last_attempt] if args.key?(:last_attempt)
|
17829
17845
|
@queuing_policy = args[:queuing_policy] if args.key?(:queuing_policy)
|
17830
17846
|
end
|
17831
17847
|
|
17832
17848
|
# [Output only] Fatal errors encountered during the queueing or provisioning
|
17833
|
-
# phases of the ResizeRequest that caused the transition to the FAILED state.
|
17834
|
-
#
|
17835
|
-
#
|
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.
|
17836
17852
|
class Error
|
17837
17853
|
include Google::Apis::Core::Hashable
|
17838
17854
|
|
@@ -17941,6 +17957,133 @@ module Google
|
|
17941
17957
|
end
|
17942
17958
|
end
|
17943
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
|
+
|
17944
18087
|
# [Output Only] A list of resize requests.
|
17945
18088
|
class InstanceGroupManagerResizeRequestsListResponse
|
17946
18089
|
include Google::Apis::Core::Hashable
|
@@ -26415,6 +26558,51 @@ module Google
|
|
26415
26558
|
end
|
26416
26559
|
end
|
26417
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
|
+
|
26418
26606
|
# Contains NAT IP information of a NAT config (i.e. usage status, mode).
|
26419
26607
|
class NatIpInfo
|
26420
26608
|
include Google::Apis::Core::Hashable
|
@@ -27482,8 +27670,8 @@ module Google
|
|
27482
27670
|
# @return [Hash<String,String>]
|
27483
27671
|
attr_accessor :annotations
|
27484
27672
|
|
27485
|
-
#
|
27486
|
-
#
|
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.
|
27487
27675
|
# Corresponds to the JSON property `clientPort`
|
27488
27676
|
# @return [Fixnum]
|
27489
27677
|
attr_accessor :client_port
|
@@ -27494,11 +27682,12 @@ module Google
|
|
27494
27682
|
# @return [String]
|
27495
27683
|
attr_accessor :fqdn
|
27496
27684
|
|
27497
|
-
# The name or a URL of
|
27498
|
-
#
|
27499
|
-
# must be in the same zone of network endpoint group (for zonal NEGs)
|
27500
|
-
# zone within the region of the NEG (for regional NEGs).
|
27501
|
-
#
|
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
|
27502
27691
|
# existing instance.
|
27503
27692
|
# Corresponds to the JSON property `instance`
|
27504
27693
|
# @return [String]
|
@@ -27508,7 +27697,11 @@ module Google
|
|
27508
27697
|
# in Compute Engine (either the primary IP or as part of an aliased IP range).
|
27509
27698
|
# If the IP address is not specified, then the primary IP address for the VM
|
27510
27699
|
# instance in the network that the network endpoint group belongs to will be
|
27511
|
-
# 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.
|
27512
27705
|
# Corresponds to the JSON property `ipAddress`
|
27513
27706
|
# @return [String]
|
27514
27707
|
attr_accessor :ip_address
|
@@ -27519,7 +27712,8 @@ module Google
|
|
27519
27712
|
attr_accessor :ipv6_address
|
27520
27713
|
|
27521
27714
|
# Optional port number of network endpoint. If not specified, the defaultPort
|
27522
|
-
# 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.
|
27523
27717
|
# Corresponds to the JSON property `port`
|
27524
27718
|
# @return [Fixnum]
|
27525
27719
|
attr_accessor :port
|
@@ -37559,8 +37753,8 @@ module Google
|
|
37559
37753
|
# @return [Google::Apis::ComputeAlpha::Duration]
|
37560
37754
|
attr_accessor :delete_after_duration
|
37561
37755
|
|
37562
|
-
# Absolute time in future when the reservation will be auto-deleted by
|
37563
|
-
# 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.
|
37564
37758
|
# Corresponds to the JSON property `deleteAtTime`
|
37565
37759
|
# @return [String]
|
37566
37760
|
attr_accessor :delete_at_time
|
@@ -41434,6 +41628,31 @@ module Google
|
|
41434
41628
|
end
|
41435
41629
|
end
|
41436
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
|
+
|
41437
41656
|
#
|
41438
41657
|
class RoutersGetRoutePolicyResponse
|
41439
41658
|
include Google::Apis::Core::Hashable
|
@@ -41590,6 +41809,137 @@ module Google
|
|
41590
41809
|
end
|
41591
41810
|
end
|
41592
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
|
+
|
41593
41943
|
#
|
41594
41944
|
class RoutersListRoutePolicies
|
41595
41945
|
include Google::Apis::Core::Hashable
|
@@ -47858,8 +48208,8 @@ module Google
|
|
47858
48208
|
# @return [Fixnum]
|
47859
48209
|
attr_accessor :pool_provisioned_capacity_gb
|
47860
48210
|
|
47861
|
-
#
|
47862
|
-
# hyperdisk-balanced.
|
48211
|
+
# Provisioned IOPS of the storage pool. Only relevant if the storage pool type
|
48212
|
+
# is hyperdisk-balanced.
|
47863
48213
|
# Corresponds to the JSON property `poolProvisionedIops`
|
47864
48214
|
# @return [Fixnum]
|
47865
48215
|
attr_accessor :pool_provisioned_iops
|
@@ -51052,6 +51402,25 @@ module Google
|
|
51052
51402
|
# @return [String]
|
51053
51403
|
attr_accessor :ssl_policy
|
51054
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
|
+
|
51055
51424
|
# A fully-qualified or valid partial URL to the UrlMap resource that defines the
|
51056
51425
|
# mapping from URL to the BackendService. For example, the following are all
|
51057
51426
|
# valid URLs for specifying a URL map: - https://www.googleapis.compute/v1/
|
@@ -51087,6 +51456,7 @@ module Google
|
|
51087
51456
|
@server_tls_policy = args[:server_tls_policy] if args.key?(:server_tls_policy)
|
51088
51457
|
@ssl_certificates = args[:ssl_certificates] if args.key?(:ssl_certificates)
|
51089
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)
|
51090
51460
|
@url_map = args[:url_map] if args.key?(:url_map)
|
51091
51461
|
end
|
51092
51462
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeAlpha
|
18
18
|
# Version of the google-apis-compute_alpha gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.89.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.13.
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240129"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|