google-apis-compute_beta 0.89.0 → 0.91.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: a81970e8ebc6d4fd6a9975a8fbfab464d42e0531ec44642f6b0f1c09ff200236
|
4
|
+
data.tar.gz: 48bde2080d62d95ec946510b9fc1e9f809eff779f3e1870b39c08231699f80de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7da8c1881b54f047b23edbdeb7a5aefded9b4d814269f5d268b912a73bb5975631fc3005fb45a187942163dbdbbfcdd186ec9c0fe31f6794db222ca3617a6b2c
|
7
|
+
data.tar.gz: 13e157bf3ea09bedf1936e41b1a2ca1acf6821729ef561bffb92ed4a69a26ba2c2bf6898ad32dde4dff880e2c6dbed8c926451a16e7c05f66d92f3df2ec03d06
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-compute_beta
|
2
2
|
|
3
|
+
### v0.91.0 (2024-02-11)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240130
|
6
|
+
|
7
|
+
### v0.90.0 (2024-02-04)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240129
|
10
|
+
* Regenerated using generator version 0.13.1
|
11
|
+
|
3
12
|
### v0.89.0 (2024-01-22)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240109
|
@@ -5186,7 +5186,10 @@ module Google
|
|
5186
5186
|
attr_accessor :members
|
5187
5187
|
|
5188
5188
|
# Role that is assigned to the list of `members`, or principals. For example, `
|
5189
|
-
# roles/viewer`, `roles/editor`, or `roles/owner`.
|
5189
|
+
# roles/viewer`, `roles/editor`, or `roles/owner`. For an overview of the IAM
|
5190
|
+
# roles and permissions, see the [IAM documentation](https://cloud.google.com/
|
5191
|
+
# iam/docs/roles-overview). For a list of the available pre-defined roles, see [
|
5192
|
+
# here](https://cloud.google.com/iam/docs/understanding-roles).
|
5190
5193
|
# Corresponds to the JSON property `role`
|
5191
5194
|
# @return [String]
|
5192
5195
|
attr_accessor :role
|
@@ -16546,13 +16549,25 @@ module Google
|
|
16546
16549
|
include Google::Apis::Core::Hashable
|
16547
16550
|
|
16548
16551
|
# [Output only] Fatal errors encountered during the queueing or provisioning
|
16549
|
-
# phases of the ResizeRequest that caused the transition to the FAILED state.
|
16550
|
-
#
|
16551
|
-
#
|
16552
|
+
# phases of the ResizeRequest that caused the transition to the FAILED state.
|
16553
|
+
# Contrary to the last_attempt errors, this field is final and errors are never
|
16554
|
+
# removed from here, as the ResizeRequest is not going to retry.
|
16552
16555
|
# Corresponds to the JSON property `error`
|
16553
16556
|
# @return [Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatus::Error]
|
16554
16557
|
attr_accessor :error
|
16555
16558
|
|
16559
|
+
# [Output only] Information about the last attempt to fulfill the request. The
|
16560
|
+
# value is temporary since the ResizeRequest can retry, as long as it's still
|
16561
|
+
# active and the last attempt value can either be cleared or replaced with a
|
16562
|
+
# different error. Since ResizeRequest retries infrequently, the value may be
|
16563
|
+
# stale and no longer show an active problem. The value is cleared when
|
16564
|
+
# ResizeRequest transitions to the final state (becomes inactive). If the final
|
16565
|
+
# state is FAILED the error describing it will be storred in the "error" field
|
16566
|
+
# only.
|
16567
|
+
# Corresponds to the JSON property `lastAttempt`
|
16568
|
+
# @return [Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt]
|
16569
|
+
attr_accessor :last_attempt
|
16570
|
+
|
16556
16571
|
def initialize(**args)
|
16557
16572
|
update!(**args)
|
16558
16573
|
end
|
@@ -16560,12 +16575,13 @@ module Google
|
|
16560
16575
|
# Update properties of this object
|
16561
16576
|
def update!(**args)
|
16562
16577
|
@error = args[:error] if args.key?(:error)
|
16578
|
+
@last_attempt = args[:last_attempt] if args.key?(:last_attempt)
|
16563
16579
|
end
|
16564
16580
|
|
16565
16581
|
# [Output only] Fatal errors encountered during the queueing or provisioning
|
16566
|
-
# phases of the ResizeRequest that caused the transition to the FAILED state.
|
16567
|
-
#
|
16568
|
-
#
|
16582
|
+
# phases of the ResizeRequest that caused the transition to the FAILED state.
|
16583
|
+
# Contrary to the last_attempt errors, this field is final and errors are never
|
16584
|
+
# removed from here, as the ResizeRequest is not going to retry.
|
16569
16585
|
class Error
|
16570
16586
|
include Google::Apis::Core::Hashable
|
16571
16587
|
|
@@ -16674,6 +16690,133 @@ module Google
|
|
16674
16690
|
end
|
16675
16691
|
end
|
16676
16692
|
|
16693
|
+
#
|
16694
|
+
class InstanceGroupManagerResizeRequestStatusLastAttempt
|
16695
|
+
include Google::Apis::Core::Hashable
|
16696
|
+
|
16697
|
+
# Errors that prevented the ResizeRequest to be fulfilled.
|
16698
|
+
# Corresponds to the JSON property `error`
|
16699
|
+
# @return [Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt::Error]
|
16700
|
+
attr_accessor :error
|
16701
|
+
|
16702
|
+
def initialize(**args)
|
16703
|
+
update!(**args)
|
16704
|
+
end
|
16705
|
+
|
16706
|
+
# Update properties of this object
|
16707
|
+
def update!(**args)
|
16708
|
+
@error = args[:error] if args.key?(:error)
|
16709
|
+
end
|
16710
|
+
|
16711
|
+
# Errors that prevented the ResizeRequest to be fulfilled.
|
16712
|
+
class Error
|
16713
|
+
include Google::Apis::Core::Hashable
|
16714
|
+
|
16715
|
+
# [Output Only] The array of errors encountered while processing this operation.
|
16716
|
+
# Corresponds to the JSON property `errors`
|
16717
|
+
# @return [Array<Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Error>]
|
16718
|
+
attr_accessor :errors
|
16719
|
+
|
16720
|
+
def initialize(**args)
|
16721
|
+
update!(**args)
|
16722
|
+
end
|
16723
|
+
|
16724
|
+
# Update properties of this object
|
16725
|
+
def update!(**args)
|
16726
|
+
@errors = args[:errors] if args.key?(:errors)
|
16727
|
+
end
|
16728
|
+
|
16729
|
+
#
|
16730
|
+
class Error
|
16731
|
+
include Google::Apis::Core::Hashable
|
16732
|
+
|
16733
|
+
# [Output Only] The error type identifier for this error.
|
16734
|
+
# Corresponds to the JSON property `code`
|
16735
|
+
# @return [String]
|
16736
|
+
attr_accessor :code
|
16737
|
+
|
16738
|
+
# [Output Only] An optional list of messages that contain the error details.
|
16739
|
+
# There is a set of defined message types to use for providing details.The
|
16740
|
+
# syntax depends on the error code. For example, QuotaExceededInfo will have
|
16741
|
+
# details when the error code is QUOTA_EXCEEDED.
|
16742
|
+
# Corresponds to the JSON property `errorDetails`
|
16743
|
+
# @return [Array<Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Error::ErrorDetail>]
|
16744
|
+
attr_accessor :error_details
|
16745
|
+
|
16746
|
+
# [Output Only] Indicates the field in the request that caused the error. This
|
16747
|
+
# property is optional.
|
16748
|
+
# Corresponds to the JSON property `location`
|
16749
|
+
# @return [String]
|
16750
|
+
attr_accessor :location
|
16751
|
+
|
16752
|
+
# [Output Only] An optional, human-readable error message.
|
16753
|
+
# Corresponds to the JSON property `message`
|
16754
|
+
# @return [String]
|
16755
|
+
attr_accessor :message
|
16756
|
+
|
16757
|
+
def initialize(**args)
|
16758
|
+
update!(**args)
|
16759
|
+
end
|
16760
|
+
|
16761
|
+
# Update properties of this object
|
16762
|
+
def update!(**args)
|
16763
|
+
@code = args[:code] if args.key?(:code)
|
16764
|
+
@error_details = args[:error_details] if args.key?(:error_details)
|
16765
|
+
@location = args[:location] if args.key?(:location)
|
16766
|
+
@message = args[:message] if args.key?(:message)
|
16767
|
+
end
|
16768
|
+
|
16769
|
+
#
|
16770
|
+
class ErrorDetail
|
16771
|
+
include Google::Apis::Core::Hashable
|
16772
|
+
|
16773
|
+
# Describes the cause of the error with structured details. Example of an error
|
16774
|
+
# when contacting the "pubsub.googleapis.com" API when it is not enabled: ` "
|
16775
|
+
# reason": "API_DISABLED" "domain": "googleapis.com" "metadata": ` "resource": "
|
16776
|
+
# projects/123", "service": "pubsub.googleapis.com" ` ` This response indicates
|
16777
|
+
# that the pubsub.googleapis.com API is not enabled. Example of an error that is
|
16778
|
+
# returned when attempting to create a Spanner instance in a region that is out
|
16779
|
+
# of stock: ` "reason": "STOCKOUT" "domain": "spanner.googleapis.com", "metadata"
|
16780
|
+
# : ` "availableRegions": "us-central1,us-east2" ` `
|
16781
|
+
# Corresponds to the JSON property `errorInfo`
|
16782
|
+
# @return [Google::Apis::ComputeBeta::ErrorInfo]
|
16783
|
+
attr_accessor :error_info
|
16784
|
+
|
16785
|
+
# Provides links to documentation or for performing an out of band action. For
|
16786
|
+
# example, if a quota check failed with an error indicating the calling project
|
16787
|
+
# hasn't enabled the accessed service, this can contain a URL pointing directly
|
16788
|
+
# to the right place in the developer console to flip the bit.
|
16789
|
+
# Corresponds to the JSON property `help`
|
16790
|
+
# @return [Google::Apis::ComputeBeta::Help]
|
16791
|
+
attr_accessor :help
|
16792
|
+
|
16793
|
+
# Provides a localized error message that is safe to return to the user which
|
16794
|
+
# can be attached to an RPC error.
|
16795
|
+
# Corresponds to the JSON property `localizedMessage`
|
16796
|
+
# @return [Google::Apis::ComputeBeta::LocalizedMessage]
|
16797
|
+
attr_accessor :localized_message
|
16798
|
+
|
16799
|
+
# Additional details for quota exceeded error for resource quota.
|
16800
|
+
# Corresponds to the JSON property `quotaInfo`
|
16801
|
+
# @return [Google::Apis::ComputeBeta::QuotaExceededInfo]
|
16802
|
+
attr_accessor :quota_info
|
16803
|
+
|
16804
|
+
def initialize(**args)
|
16805
|
+
update!(**args)
|
16806
|
+
end
|
16807
|
+
|
16808
|
+
# Update properties of this object
|
16809
|
+
def update!(**args)
|
16810
|
+
@error_info = args[:error_info] if args.key?(:error_info)
|
16811
|
+
@help = args[:help] if args.key?(:help)
|
16812
|
+
@localized_message = args[:localized_message] if args.key?(:localized_message)
|
16813
|
+
@quota_info = args[:quota_info] if args.key?(:quota_info)
|
16814
|
+
end
|
16815
|
+
end
|
16816
|
+
end
|
16817
|
+
end
|
16818
|
+
end
|
16819
|
+
|
16677
16820
|
# [Output Only] A list of resize requests.
|
16678
16821
|
class InstanceGroupManagerResizeRequestsListResponse
|
16679
16822
|
include Google::Apis::Core::Hashable
|
@@ -25570,11 +25713,12 @@ module Google
|
|
25570
25713
|
# @return [String]
|
25571
25714
|
attr_accessor :fqdn
|
25572
25715
|
|
25573
|
-
# The name or a URL of
|
25574
|
-
#
|
25575
|
-
# must be in the same zone of network endpoint group (for zonal NEGs)
|
25576
|
-
# zone within the region of the NEG (for regional NEGs).
|
25577
|
-
#
|
25716
|
+
# The name or a URL of VM instance of this network endpoint. This field is
|
25717
|
+
# required for network endpoints of type GCE_VM_IP and GCE_VM_IP_PORT. The
|
25718
|
+
# instance must be in the same zone of network endpoint group (for zonal NEGs)
|
25719
|
+
# or in the zone within the region of the NEG (for regional NEGs). If the
|
25720
|
+
# ipAddress is specified, it must belongs to the VM instance. The name must be 1-
|
25721
|
+
# 63 characters long, and comply with RFC1035 or be a valid URL pointing to an
|
25578
25722
|
# existing instance.
|
25579
25723
|
# Corresponds to the JSON property `instance`
|
25580
25724
|
# @return [String]
|
@@ -25584,7 +25728,11 @@ module Google
|
|
25584
25728
|
# in Compute Engine (either the primary IP or as part of an aliased IP range).
|
25585
25729
|
# If the IP address is not specified, then the primary IP address for the VM
|
25586
25730
|
# instance in the network that the network endpoint group belongs to will be
|
25587
|
-
# used.
|
25731
|
+
# used. This field is redundant and need not be set for network endpoints of
|
25732
|
+
# type GCE_VM_IP. If set, it must be set to the primary internal IP address of
|
25733
|
+
# the attached VM instance that matches the subnetwork of the NEG. The primary
|
25734
|
+
# internal IP address from any NIC of a multi-NIC VM instance can be added to a
|
25735
|
+
# NEG as long as it matches the NEG subnetwork.
|
25588
25736
|
# Corresponds to the JSON property `ipAddress`
|
25589
25737
|
# @return [String]
|
25590
25738
|
attr_accessor :ip_address
|
@@ -25595,7 +25743,8 @@ module Google
|
|
25595
25743
|
attr_accessor :ipv6_address
|
25596
25744
|
|
25597
25745
|
# Optional port number of network endpoint. If not specified, the defaultPort
|
25598
|
-
# for the network endpoint group will be used.
|
25746
|
+
# for the network endpoint group will be used. This field can not be set for
|
25747
|
+
# network endpoints of type GCE_VM_IP.
|
25599
25748
|
# Corresponds to the JSON property `port`
|
25600
25749
|
# @return [Fixnum]
|
25601
25750
|
attr_accessor :port
|
@@ -25657,7 +25806,8 @@ module Google
|
|
25657
25806
|
attr_accessor :creation_timestamp
|
25658
25807
|
|
25659
25808
|
# The default port used if the port number is not specified in the network
|
25660
|
-
# endpoint.
|
25809
|
+
# endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
|
25810
|
+
# PRIVATE_SERVICE_CONNECT, this field must not be specified.
|
25661
25811
|
# Corresponds to the JSON property `defaultPort`
|
25662
25812
|
# @return [Fixnum]
|
25663
25813
|
attr_accessor :default_port
|
@@ -25695,8 +25845,8 @@ module Google
|
|
25695
25845
|
# @return [String]
|
25696
25846
|
attr_accessor :name
|
25697
25847
|
|
25698
|
-
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
25699
|
-
# default
|
25848
|
+
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
25849
|
+
# default project network if unspecified.
|
25700
25850
|
# Corresponds to the JSON property `network`
|
25701
25851
|
# @return [String]
|
25702
25852
|
attr_accessor :network
|
@@ -25715,8 +25865,8 @@ module Google
|
|
25715
25865
|
attr_accessor :psc_data
|
25716
25866
|
|
25717
25867
|
# The target service url used to set up private service connection to a Google
|
25718
|
-
# API or a PSC Producer Service Attachment. An example value is:
|
25719
|
-
#
|
25868
|
+
# API or a PSC Producer Service Attachment. An example value is: asia-northeast3-
|
25869
|
+
# cloudkms.googleapis.com
|
25720
25870
|
# Corresponds to the JSON property `pscTargetService`
|
25721
25871
|
# @return [String]
|
25722
25872
|
attr_accessor :psc_target_service
|
@@ -25919,24 +26069,25 @@ module Google
|
|
25919
26069
|
include Google::Apis::Core::Hashable
|
25920
26070
|
|
25921
26071
|
# Optional serving service. The service name is case-sensitive and must be 1-63
|
25922
|
-
# characters long. Example value:
|
26072
|
+
# characters long. Example value: default, my-service.
|
25923
26073
|
# Corresponds to the JSON property `service`
|
25924
26074
|
# @return [String]
|
25925
26075
|
attr_accessor :service
|
25926
26076
|
|
25927
|
-
#
|
25928
|
-
#
|
25929
|
-
# multiple
|
25930
|
-
#
|
25931
|
-
# com/v2
|
25932
|
-
#
|
25933
|
-
#
|
26077
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26078
|
+
# parse service and version fields from a request URL. URL mask allows for
|
26079
|
+
# routing to multiple App Engine services without having to create multiple
|
26080
|
+
# Network Endpoint Groups and backend services. For example, the request URLs
|
26081
|
+
# foo1-dot-appname.appspot.com/v1 and foo1-dot-appname.appspot.com/v2 can be
|
26082
|
+
# backed by the same Serverless NEG with URL mask <service>-dot-appname.appspot.
|
26083
|
+
# com/<version>. The URL mask will parse them to ` service = "foo1", version = "
|
26084
|
+
# v1" ` and ` service = "foo1", version = "v2" ` respectively.
|
25934
26085
|
# Corresponds to the JSON property `urlMask`
|
25935
26086
|
# @return [String]
|
25936
26087
|
attr_accessor :url_mask
|
25937
26088
|
|
25938
26089
|
# Optional serving version. The version name is case-sensitive and must be 1-100
|
25939
|
-
# characters long. Example value:
|
26090
|
+
# characters long. Example value: v1, v2.
|
25940
26091
|
# Corresponds to the JSON property `version`
|
25941
26092
|
# @return [String]
|
25942
26093
|
attr_accessor :version
|
@@ -25960,17 +26111,18 @@ module Google
|
|
25960
26111
|
include Google::Apis::Core::Hashable
|
25961
26112
|
|
25962
26113
|
# A user-defined name of the Cloud Function. The function name is case-sensitive
|
25963
|
-
# and must be 1-63 characters long. Example value:
|
26114
|
+
# and must be 1-63 characters long. Example value: func1.
|
25964
26115
|
# Corresponds to the JSON property `function`
|
25965
26116
|
# @return [String]
|
25966
26117
|
attr_accessor :function
|
25967
26118
|
|
25968
|
-
#
|
25969
|
-
#
|
25970
|
-
#
|
25971
|
-
#
|
25972
|
-
#
|
25973
|
-
#
|
26119
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26120
|
+
# parse function field from a request URL. URL mask allows for routing to
|
26121
|
+
# multiple Cloud Functions without having to create multiple Network Endpoint
|
26122
|
+
# Groups and backend services. For example, request URLs mydomain.com/function1
|
26123
|
+
# and mydomain.com/function2 can be backed by the same Serverless NEG with URL
|
26124
|
+
# mask /<function>. The URL mask will parse them to ` function = "function1" `
|
26125
|
+
# and ` function = "function2" ` respectively.
|
25974
26126
|
# Corresponds to the JSON property `urlMask`
|
25975
26127
|
# @return [String]
|
25976
26128
|
attr_accessor :url_mask
|
@@ -26006,13 +26158,14 @@ module Google
|
|
26006
26158
|
# @return [String]
|
26007
26159
|
attr_accessor :tag
|
26008
26160
|
|
26009
|
-
#
|
26010
|
-
#
|
26011
|
-
#
|
26012
|
-
#
|
26013
|
-
#
|
26014
|
-
#
|
26015
|
-
# service="
|
26161
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26162
|
+
# parse <service> and <tag> fields from a request URL. URL mask allows for
|
26163
|
+
# routing to multiple Run services without having to create multiple network
|
26164
|
+
# endpoint groups and backend services. For example, request URLs foo1.domain.
|
26165
|
+
# com/bar1 and foo1.domain.com/bar2 can be backed by the same Serverless Network
|
26166
|
+
# Endpoint Group (NEG) with URL mask <tag>.domain.com/<service>. The URL mask
|
26167
|
+
# will parse them to ` service="bar1", tag="foo1" ` and ` service="bar2", tag="
|
26168
|
+
# foo2" ` respectively.
|
26016
26169
|
# Corresponds to the JSON property `urlMask`
|
26017
26170
|
# @return [String]
|
26018
26171
|
attr_accessor :url_mask
|
@@ -26034,13 +26187,15 @@ module Google
|
|
26034
26187
|
include Google::Apis::Core::Hashable
|
26035
26188
|
|
26036
26189
|
# The default port used if the port number is not specified in the network
|
26037
|
-
# endpoint.
|
26190
|
+
# endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
|
26191
|
+
# PRIVATE_SERVICE_CONNECT, this field must not be specified. [Deprecated] This
|
26192
|
+
# field is deprecated.
|
26038
26193
|
# Corresponds to the JSON property `defaultPort`
|
26039
26194
|
# @return [Fixnum]
|
26040
26195
|
attr_accessor :default_port
|
26041
26196
|
|
26042
|
-
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
26043
|
-
# default
|
26197
|
+
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
26198
|
+
# default project network if unspecified. [Deprecated] This field is deprecated.
|
26044
26199
|
# Corresponds to the JSON property `network`
|
26045
26200
|
# @return [String]
|
26046
26201
|
attr_accessor :network
|
@@ -26242,12 +26397,13 @@ module Google
|
|
26242
26397
|
# @return [String]
|
26243
26398
|
attr_accessor :resource
|
26244
26399
|
|
26245
|
-
#
|
26246
|
-
#
|
26247
|
-
#
|
26248
|
-
# resources. The fields parsed by
|
26249
|
-
#
|
26250
|
-
#
|
26400
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26401
|
+
# parse platform-specific fields from a request URL. URL mask allows for routing
|
26402
|
+
# to multiple resources on the same serverless platform without having to create
|
26403
|
+
# multiple Network Endpoint Groups and backend resources. The fields parsed by
|
26404
|
+
# this template are platform-specific and are as follows: 1. API Gateway: The
|
26405
|
+
# gateway ID 2. App Engine: The service and version 3. Cloud Functions: The
|
26406
|
+
# function name 4. Cloud Run: The service and tag
|
26251
26407
|
# Corresponds to the JSON property `urlMask`
|
26252
26408
|
# @return [String]
|
26253
26409
|
attr_accessor :url_mask
|
@@ -34243,8 +34399,8 @@ module Google
|
|
34243
34399
|
# @return [Google::Apis::ComputeBeta::Duration]
|
34244
34400
|
attr_accessor :delete_after_duration
|
34245
34401
|
|
34246
|
-
# Absolute time in future when the reservation will be auto-deleted by
|
34247
|
-
# Timestamp is represented in RFC3339 text format.
|
34402
|
+
# Absolute time in future when the reservation will be auto-deleted by Compute
|
34403
|
+
# Engine. Timestamp is represented in RFC3339 text format.
|
34248
34404
|
# Corresponds to the JSON property `deleteAtTime`
|
34249
34405
|
# @return [String]
|
34250
34406
|
attr_accessor :delete_at_time
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module ComputeBeta
|
18
18
|
# Version of the google-apis-compute_beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.91.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 = "20240130"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1900,6 +1900,30 @@ module Google
|
|
1900
1900
|
include Google::Apis::Core::JsonObjectSupport
|
1901
1901
|
end
|
1902
1902
|
|
1903
|
+
class InstanceGroupManagerResizeRequestStatusLastAttempt
|
1904
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1905
|
+
|
1906
|
+
class Error
|
1907
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1908
|
+
|
1909
|
+
class Error
|
1910
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1911
|
+
|
1912
|
+
class ErrorDetail
|
1913
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1914
|
+
|
1915
|
+
include Google::Apis::Core::JsonObjectSupport
|
1916
|
+
end
|
1917
|
+
|
1918
|
+
include Google::Apis::Core::JsonObjectSupport
|
1919
|
+
end
|
1920
|
+
|
1921
|
+
include Google::Apis::Core::JsonObjectSupport
|
1922
|
+
end
|
1923
|
+
|
1924
|
+
include Google::Apis::Core::JsonObjectSupport
|
1925
|
+
end
|
1926
|
+
|
1903
1927
|
class InstanceGroupManagerResizeRequestsListResponse
|
1904
1928
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1905
1929
|
|
@@ -10418,6 +10442,8 @@ module Google
|
|
10418
10442
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10419
10443
|
property :error, as: 'error', class: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatus::Error, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatus::Error::Representation
|
10420
10444
|
|
10445
|
+
property :last_attempt, as: 'lastAttempt', class: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt::Representation
|
10446
|
+
|
10421
10447
|
end
|
10422
10448
|
|
10423
10449
|
class Error
|
@@ -10454,6 +10480,47 @@ module Google
|
|
10454
10480
|
end
|
10455
10481
|
end
|
10456
10482
|
|
10483
|
+
class InstanceGroupManagerResizeRequestStatusLastAttempt
|
10484
|
+
# @private
|
10485
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10486
|
+
property :error, as: 'error', class: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt::Error, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Representation
|
10487
|
+
|
10488
|
+
end
|
10489
|
+
|
10490
|
+
class Error
|
10491
|
+
# @private
|
10492
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10493
|
+
collection :errors, as: 'errors', class: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Error, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Error::Representation
|
10494
|
+
|
10495
|
+
end
|
10496
|
+
|
10497
|
+
class Error
|
10498
|
+
# @private
|
10499
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10500
|
+
property :code, as: 'code'
|
10501
|
+
collection :error_details, as: 'errorDetails', class: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Error::ErrorDetail, decorator: Google::Apis::ComputeBeta::InstanceGroupManagerResizeRequestStatusLastAttempt::Error::Error::ErrorDetail::Representation
|
10502
|
+
|
10503
|
+
property :location, as: 'location'
|
10504
|
+
property :message, as: 'message'
|
10505
|
+
end
|
10506
|
+
|
10507
|
+
class ErrorDetail
|
10508
|
+
# @private
|
10509
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10510
|
+
property :error_info, as: 'errorInfo', class: Google::Apis::ComputeBeta::ErrorInfo, decorator: Google::Apis::ComputeBeta::ErrorInfo::Representation
|
10511
|
+
|
10512
|
+
property :help, as: 'help', class: Google::Apis::ComputeBeta::Help, decorator: Google::Apis::ComputeBeta::Help::Representation
|
10513
|
+
|
10514
|
+
property :localized_message, as: 'localizedMessage', class: Google::Apis::ComputeBeta::LocalizedMessage, decorator: Google::Apis::ComputeBeta::LocalizedMessage::Representation
|
10515
|
+
|
10516
|
+
property :quota_info, as: 'quotaInfo', class: Google::Apis::ComputeBeta::QuotaExceededInfo, decorator: Google::Apis::ComputeBeta::QuotaExceededInfo::Representation
|
10517
|
+
|
10518
|
+
end
|
10519
|
+
end
|
10520
|
+
end
|
10521
|
+
end
|
10522
|
+
end
|
10523
|
+
|
10457
10524
|
class InstanceGroupManagerResizeRequestsListResponse
|
10458
10525
|
# @private
|
10459
10526
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -117,6 +117,8 @@ module Google
|
|
117
117
|
# Opt-in for partial success behavior which provides partial results in case of
|
118
118
|
# failure. The default value is false.
|
119
119
|
# @param [Fixnum] service_project_number
|
120
|
+
# The Shared VPC service project id or service project number for which
|
121
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
120
122
|
# @param [String] fields
|
121
123
|
# Selector specifying which fields to include in a partial response.
|
122
124
|
# @param [String] quota_user
|
@@ -348,6 +350,8 @@ module Google
|
|
348
350
|
# Opt-in for partial success behavior which provides partial results in case of
|
349
351
|
# failure. The default value is false.
|
350
352
|
# @param [Fixnum] service_project_number
|
353
|
+
# The Shared VPC service project id or service project number for which
|
354
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
351
355
|
# @param [String] fields
|
352
356
|
# Selector specifying which fields to include in a partial response.
|
353
357
|
# @param [String] quota_user
|
@@ -828,6 +832,8 @@ module Google
|
|
828
832
|
# Opt-in for partial success behavior which provides partial results in case of
|
829
833
|
# failure. The default value is false.
|
830
834
|
# @param [Fixnum] service_project_number
|
835
|
+
# The Shared VPC service project id or service project number for which
|
836
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
831
837
|
# @param [String] fields
|
832
838
|
# Selector specifying which fields to include in a partial response.
|
833
839
|
# @param [String] quota_user
|
@@ -1958,6 +1964,8 @@ module Google
|
|
1958
1964
|
# Opt-in for partial success behavior which provides partial results in case of
|
1959
1965
|
# failure. The default value is false.
|
1960
1966
|
# @param [Fixnum] service_project_number
|
1967
|
+
# The Shared VPC service project id or service project number for which
|
1968
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
1961
1969
|
# @param [String] fields
|
1962
1970
|
# Selector specifying which fields to include in a partial response.
|
1963
1971
|
# @param [String] quota_user
|
@@ -2786,6 +2794,8 @@ module Google
|
|
2786
2794
|
# Opt-in for partial success behavior which provides partial results in case of
|
2787
2795
|
# failure. The default value is false.
|
2788
2796
|
# @param [Fixnum] service_project_number
|
2797
|
+
# The Shared VPC service project id or service project number for which
|
2798
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
2789
2799
|
# @param [String] fields
|
2790
2800
|
# Selector specifying which fields to include in a partial response.
|
2791
2801
|
# @param [String] quota_user
|
@@ -3070,6 +3080,8 @@ module Google
|
|
3070
3080
|
# Opt-in for partial success behavior which provides partial results in case of
|
3071
3081
|
# failure. The default value is false.
|
3072
3082
|
# @param [Fixnum] service_project_number
|
3083
|
+
# The Shared VPC service project id or service project number for which
|
3084
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
3073
3085
|
# @param [String] fields
|
3074
3086
|
# Selector specifying which fields to include in a partial response.
|
3075
3087
|
# @param [String] quota_user
|
@@ -5507,6 +5519,8 @@ module Google
|
|
5507
5519
|
# Opt-in for partial success behavior which provides partial results in case of
|
5508
5520
|
# failure. The default value is false.
|
5509
5521
|
# @param [Fixnum] service_project_number
|
5522
|
+
# The Shared VPC service project id or service project number for which
|
5523
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
5510
5524
|
# @param [String] fields
|
5511
5525
|
# Selector specifying which fields to include in a partial response.
|
5512
5526
|
# @param [String] quota_user
|
@@ -6044,6 +6058,8 @@ module Google
|
|
6044
6058
|
# Opt-in for partial success behavior which provides partial results in case of
|
6045
6059
|
# failure. The default value is false.
|
6046
6060
|
# @param [Fixnum] service_project_number
|
6061
|
+
# The Shared VPC service project id or service project number for which
|
6062
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
6047
6063
|
# @param [String] fields
|
6048
6064
|
# Selector specifying which fields to include in a partial response.
|
6049
6065
|
# @param [String] quota_user
|
@@ -7654,6 +7670,8 @@ module Google
|
|
7654
7670
|
# Opt-in for partial success behavior which provides partial results in case of
|
7655
7671
|
# failure. The default value is false.
|
7656
7672
|
# @param [Fixnum] service_project_number
|
7673
|
+
# The Shared VPC service project id or service project number for which
|
7674
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
7657
7675
|
# @param [String] fields
|
7658
7676
|
# Selector specifying which fields to include in a partial response.
|
7659
7677
|
# @param [String] quota_user
|
@@ -8391,6 +8409,8 @@ module Google
|
|
8391
8409
|
# Opt-in for partial success behavior which provides partial results in case of
|
8392
8410
|
# failure. The default value is false.
|
8393
8411
|
# @param [Fixnum] service_project_number
|
8412
|
+
# The Shared VPC service project id or service project number for which
|
8413
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
8394
8414
|
# @param [String] fields
|
8395
8415
|
# Selector specifying which fields to include in a partial response.
|
8396
8416
|
# @param [String] quota_user
|
@@ -10524,6 +10544,8 @@ module Google
|
|
10524
10544
|
# Opt-in for partial success behavior which provides partial results in case of
|
10525
10545
|
# failure. The default value is false.
|
10526
10546
|
# @param [Fixnum] service_project_number
|
10547
|
+
# The Shared VPC service project id or service project number for which
|
10548
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
10527
10549
|
# @param [String] fields
|
10528
10550
|
# Selector specifying which fields to include in a partial response.
|
10529
10551
|
# @param [String] quota_user
|
@@ -12332,6 +12354,8 @@ module Google
|
|
12332
12354
|
# Opt-in for partial success behavior which provides partial results in case of
|
12333
12355
|
# failure. The default value is false.
|
12334
12356
|
# @param [Fixnum] service_project_number
|
12357
|
+
# The Shared VPC service project id or service project number for which
|
12358
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
12335
12359
|
# @param [String] fields
|
12336
12360
|
# Selector specifying which fields to include in a partial response.
|
12337
12361
|
# @param [String] quota_user
|
@@ -13011,6 +13035,8 @@ module Google
|
|
13011
13035
|
# Opt-in for partial success behavior which provides partial results in case of
|
13012
13036
|
# failure. The default value is false.
|
13013
13037
|
# @param [Fixnum] service_project_number
|
13038
|
+
# The Shared VPC service project id or service project number for which
|
13039
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
13014
13040
|
# @param [String] fields
|
13015
13041
|
# Selector specifying which fields to include in a partial response.
|
13016
13042
|
# @param [String] quota_user
|
@@ -13567,6 +13593,8 @@ module Google
|
|
13567
13593
|
# Opt-in for partial success behavior which provides partial results in case of
|
13568
13594
|
# failure. The default value is false.
|
13569
13595
|
# @param [Fixnum] service_project_number
|
13596
|
+
# The Shared VPC service project id or service project number for which
|
13597
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
13570
13598
|
# @param [String] fields
|
13571
13599
|
# Selector specifying which fields to include in a partial response.
|
13572
13600
|
# @param [String] quota_user
|
@@ -16257,6 +16285,8 @@ module Google
|
|
16257
16285
|
# Opt-in for partial success behavior which provides partial results in case of
|
16258
16286
|
# failure. The default value is false.
|
16259
16287
|
# @param [Fixnum] service_project_number
|
16288
|
+
# The Shared VPC service project id or service project number for which
|
16289
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
16260
16290
|
# @param [String] fields
|
16261
16291
|
# Selector specifying which fields to include in a partial response.
|
16262
16292
|
# @param [String] quota_user
|
@@ -16775,6 +16805,8 @@ module Google
|
|
16775
16805
|
# Opt-in for partial success behavior which provides partial results in case of
|
16776
16806
|
# failure. The default value is false.
|
16777
16807
|
# @param [Fixnum] service_project_number
|
16808
|
+
# The Shared VPC service project id or service project number for which
|
16809
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
16778
16810
|
# @param [String] fields
|
16779
16811
|
# Selector specifying which fields to include in a partial response.
|
16780
16812
|
# @param [String] quota_user
|
@@ -18722,6 +18754,8 @@ module Google
|
|
18722
18754
|
# Opt-in for partial success behavior which provides partial results in case of
|
18723
18755
|
# failure. The default value is false.
|
18724
18756
|
# @param [Fixnum] service_project_number
|
18757
|
+
# The Shared VPC service project id or service project number for which
|
18758
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
18725
18759
|
# @param [String] fields
|
18726
18760
|
# Selector specifying which fields to include in a partial response.
|
18727
18761
|
# @param [String] quota_user
|
@@ -18953,6 +18987,8 @@ module Google
|
|
18953
18987
|
# Opt-in for partial success behavior which provides partial results in case of
|
18954
18988
|
# failure. The default value is false.
|
18955
18989
|
# @param [Fixnum] service_project_number
|
18990
|
+
# The Shared VPC service project id or service project number for which
|
18991
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
18956
18992
|
# @param [String] fields
|
18957
18993
|
# Selector specifying which fields to include in a partial response.
|
18958
18994
|
# @param [String] quota_user
|
@@ -19471,6 +19507,8 @@ module Google
|
|
19471
19507
|
# Opt-in for partial success behavior which provides partial results in case of
|
19472
19508
|
# failure. The default value is false.
|
19473
19509
|
# @param [Fixnum] service_project_number
|
19510
|
+
# The Shared VPC service project id or service project number for which
|
19511
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
19474
19512
|
# @param [String] fields
|
19475
19513
|
# Selector specifying which fields to include in a partial response.
|
19476
19514
|
# @param [String] quota_user
|
@@ -19771,6 +19809,8 @@ module Google
|
|
19771
19809
|
# Opt-in for partial success behavior which provides partial results in case of
|
19772
19810
|
# failure. The default value is false.
|
19773
19811
|
# @param [Fixnum] service_project_number
|
19812
|
+
# The Shared VPC service project id or service project number for which
|
19813
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
19774
19814
|
# @param [String] fields
|
19775
19815
|
# Selector specifying which fields to include in a partial response.
|
19776
19816
|
# @param [String] quota_user
|
@@ -21847,6 +21887,8 @@ module Google
|
|
21847
21887
|
# Opt-in for partial success behavior which provides partial results in case of
|
21848
21888
|
# failure. The default value is false.
|
21849
21889
|
# @param [Fixnum] service_project_number
|
21890
|
+
# The Shared VPC service project id or service project number for which
|
21891
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
21850
21892
|
# @param [String] fields
|
21851
21893
|
# Selector specifying which fields to include in a partial response.
|
21852
21894
|
# @param [String] quota_user
|
@@ -22673,6 +22715,8 @@ module Google
|
|
22673
22715
|
# Opt-in for partial success behavior which provides partial results in case of
|
22674
22716
|
# failure. The default value is false.
|
22675
22717
|
# @param [Fixnum] service_project_number
|
22718
|
+
# The Shared VPC service project id or service project number for which
|
22719
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
22676
22720
|
# @param [String] fields
|
22677
22721
|
# Selector specifying which fields to include in a partial response.
|
22678
22722
|
# @param [String] quota_user
|
@@ -23132,6 +23176,8 @@ module Google
|
|
23132
23176
|
# Opt-in for partial success behavior which provides partial results in case of
|
23133
23177
|
# failure. The default value is false.
|
23134
23178
|
# @param [Fixnum] service_project_number
|
23179
|
+
# The Shared VPC service project id or service project number for which
|
23180
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
23135
23181
|
# @param [String] fields
|
23136
23182
|
# Selector specifying which fields to include in a partial response.
|
23137
23183
|
# @param [String] quota_user
|
@@ -24067,6 +24113,8 @@ module Google
|
|
24067
24113
|
# Opt-in for partial success behavior which provides partial results in case of
|
24068
24114
|
# failure. The default value is false.
|
24069
24115
|
# @param [Fixnum] service_project_number
|
24116
|
+
# The Shared VPC service project id or service project number for which
|
24117
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
24070
24118
|
# @param [String] fields
|
24071
24119
|
# Selector specifying which fields to include in a partial response.
|
24072
24120
|
# @param [String] quota_user
|
@@ -25598,6 +25646,8 @@ module Google
|
|
25598
25646
|
# Opt-in for partial success behavior which provides partial results in case of
|
25599
25647
|
# failure. The default value is false.
|
25600
25648
|
# @param [Fixnum] service_project_number
|
25649
|
+
# The Shared VPC service project id or service project number for which
|
25650
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
25601
25651
|
# @param [String] fields
|
25602
25652
|
# Selector specifying which fields to include in a partial response.
|
25603
25653
|
# @param [String] quota_user
|
@@ -27131,6 +27181,8 @@ module Google
|
|
27131
27181
|
# Opt-in for partial success behavior which provides partial results in case of
|
27132
27182
|
# failure. The default value is false.
|
27133
27183
|
# @param [Fixnum] service_project_number
|
27184
|
+
# The Shared VPC service project id or service project number for which
|
27185
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
27134
27186
|
# @param [String] fields
|
27135
27187
|
# Selector specifying which fields to include in a partial response.
|
27136
27188
|
# @param [String] quota_user
|
@@ -36737,6 +36789,8 @@ module Google
|
|
36737
36789
|
# Opt-in for partial success behavior which provides partial results in case of
|
36738
36790
|
# failure. The default value is false.
|
36739
36791
|
# @param [Fixnum] service_project_number
|
36792
|
+
# The Shared VPC service project id or service project number for which
|
36793
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
36740
36794
|
# @param [String] fields
|
36741
36795
|
# Selector specifying which fields to include in a partial response.
|
36742
36796
|
# @param [String] quota_user
|
@@ -37309,6 +37363,8 @@ module Google
|
|
37309
37363
|
# Opt-in for partial success behavior which provides partial results in case of
|
37310
37364
|
# failure. The default value is false.
|
37311
37365
|
# @param [Fixnum] service_project_number
|
37366
|
+
# The Shared VPC service project id or service project number for which
|
37367
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
37312
37368
|
# @param [String] fields
|
37313
37369
|
# Selector specifying which fields to include in a partial response.
|
37314
37370
|
# @param [String] quota_user
|
@@ -37824,6 +37880,8 @@ module Google
|
|
37824
37880
|
# Opt-in for partial success behavior which provides partial results in case of
|
37825
37881
|
# failure. The default value is false.
|
37826
37882
|
# @param [Fixnum] service_project_number
|
37883
|
+
# The Shared VPC service project id or service project number for which
|
37884
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
37827
37885
|
# @param [String] fields
|
37828
37886
|
# Selector specifying which fields to include in a partial response.
|
37829
37887
|
# @param [String] quota_user
|
@@ -38837,6 +38895,8 @@ module Google
|
|
38837
38895
|
# Opt-in for partial success behavior which provides partial results in case of
|
38838
38896
|
# failure. The default value is false.
|
38839
38897
|
# @param [Fixnum] service_project_number
|
38898
|
+
# The Shared VPC service project id or service project number for which
|
38899
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
38840
38900
|
# @param [String] fields
|
38841
38901
|
# Selector specifying which fields to include in a partial response.
|
38842
38902
|
# @param [String] quota_user
|
@@ -39512,6 +39572,8 @@ module Google
|
|
39512
39572
|
# Opt-in for partial success behavior which provides partial results in case of
|
39513
39573
|
# failure. The default value is false.
|
39514
39574
|
# @param [Fixnum] service_project_number
|
39575
|
+
# The Shared VPC service project id or service project number for which
|
39576
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
39515
39577
|
# @param [String] fields
|
39516
39578
|
# Selector specifying which fields to include in a partial response.
|
39517
39579
|
# @param [String] quota_user
|
@@ -40497,6 +40559,8 @@ module Google
|
|
40497
40559
|
# Opt-in for partial success behavior which provides partial results in case of
|
40498
40560
|
# failure. The default value is false.
|
40499
40561
|
# @param [Fixnum] service_project_number
|
40562
|
+
# The Shared VPC service project id or service project number for which
|
40563
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
40500
40564
|
# @param [String] fields
|
40501
40565
|
# Selector specifying which fields to include in a partial response.
|
40502
40566
|
# @param [String] quota_user
|
@@ -40857,6 +40921,8 @@ module Google
|
|
40857
40921
|
# Opt-in for partial success behavior which provides partial results in case of
|
40858
40922
|
# failure. The default value is false.
|
40859
40923
|
# @param [Fixnum] service_project_number
|
40924
|
+
# The Shared VPC service project id or service project number for which
|
40925
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
40860
40926
|
# @param [String] fields
|
40861
40927
|
# Selector specifying which fields to include in a partial response.
|
40862
40928
|
# @param [String] quota_user
|
@@ -41358,6 +41424,8 @@ module Google
|
|
41358
41424
|
# Opt-in for partial success behavior which provides partial results in case of
|
41359
41425
|
# failure. The default value is false.
|
41360
41426
|
# @param [Fixnum] service_project_number
|
41427
|
+
# The Shared VPC service project id or service project number for which
|
41428
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
41361
41429
|
# @param [String] fields
|
41362
41430
|
# Selector specifying which fields to include in a partial response.
|
41363
41431
|
# @param [String] quota_user
|
@@ -42395,6 +42463,8 @@ module Google
|
|
42395
42463
|
# Opt-in for partial success behavior which provides partial results in case of
|
42396
42464
|
# failure. The default value is false.
|
42397
42465
|
# @param [Fixnum] service_project_number
|
42466
|
+
# The Shared VPC service project id or service project number for which
|
42467
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
42398
42468
|
# @param [String] fields
|
42399
42469
|
# Selector specifying which fields to include in a partial response.
|
42400
42470
|
# @param [String] quota_user
|
@@ -42857,6 +42927,8 @@ module Google
|
|
42857
42927
|
# Opt-in for partial success behavior which provides partial results in case of
|
42858
42928
|
# failure. The default value is false.
|
42859
42929
|
# @param [Fixnum] service_project_number
|
42930
|
+
# The Shared VPC service project id or service project number for which
|
42931
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
42860
42932
|
# @param [String] fields
|
42861
42933
|
# Selector specifying which fields to include in a partial response.
|
42862
42934
|
# @param [String] quota_user
|
@@ -43524,6 +43596,8 @@ module Google
|
|
43524
43596
|
# Opt-in for partial success behavior which provides partial results in case of
|
43525
43597
|
# failure. The default value is false.
|
43526
43598
|
# @param [Fixnum] service_project_number
|
43599
|
+
# The Shared VPC service project id or service project number for which
|
43600
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
43527
43601
|
# @param [String] fields
|
43528
43602
|
# Selector specifying which fields to include in a partial response.
|
43529
43603
|
# @param [String] quota_user
|
@@ -44059,6 +44133,8 @@ module Google
|
|
44059
44133
|
# Opt-in for partial success behavior which provides partial results in case of
|
44060
44134
|
# failure. The default value is false.
|
44061
44135
|
# @param [Fixnum] service_project_number
|
44136
|
+
# The Shared VPC service project id or service project number for which
|
44137
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
44062
44138
|
# @param [String] fields
|
44063
44139
|
# Selector specifying which fields to include in a partial response.
|
44064
44140
|
# @param [String] quota_user
|
@@ -45208,6 +45284,8 @@ module Google
|
|
45208
45284
|
# Opt-in for partial success behavior which provides partial results in case of
|
45209
45285
|
# failure. The default value is false.
|
45210
45286
|
# @param [Fixnum] service_project_number
|
45287
|
+
# The Shared VPC service project id or service project number for which
|
45288
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
45211
45289
|
# @param [String] fields
|
45212
45290
|
# Selector specifying which fields to include in a partial response.
|
45213
45291
|
# @param [String] quota_user
|
@@ -45667,6 +45745,8 @@ module Google
|
|
45667
45745
|
# Opt-in for partial success behavior which provides partial results in case of
|
45668
45746
|
# failure. The default value is false.
|
45669
45747
|
# @param [Fixnum] service_project_number
|
45748
|
+
# The Shared VPC service project id or service project number for which
|
45749
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
45670
45750
|
# @param [String] fields
|
45671
45751
|
# Selector specifying which fields to include in a partial response.
|
45672
45752
|
# @param [String] quota_user
|
@@ -46096,6 +46176,8 @@ module Google
|
|
46096
46176
|
# Opt-in for partial success behavior which provides partial results in case of
|
46097
46177
|
# failure. The default value is false.
|
46098
46178
|
# @param [Fixnum] service_project_number
|
46179
|
+
# The Shared VPC service project id or service project number for which
|
46180
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
46099
46181
|
# @param [String] fields
|
46100
46182
|
# Selector specifying which fields to include in a partial response.
|
46101
46183
|
# @param [String] quota_user
|
@@ -46648,6 +46730,8 @@ module Google
|
|
46648
46730
|
# Opt-in for partial success behavior which provides partial results in case of
|
46649
46731
|
# failure. The default value is false.
|
46650
46732
|
# @param [Fixnum] service_project_number
|
46733
|
+
# The Shared VPC service project id or service project number for which
|
46734
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
46651
46735
|
# @param [String] fields
|
46652
46736
|
# Selector specifying which fields to include in a partial response.
|
46653
46737
|
# @param [String] quota_user
|
@@ -47114,6 +47198,8 @@ module Google
|
|
47114
47198
|
# Opt-in for partial success behavior which provides partial results in case of
|
47115
47199
|
# failure. The default value is false.
|
47116
47200
|
# @param [Fixnum] service_project_number
|
47201
|
+
# The Shared VPC service project id or service project number for which
|
47202
|
+
# aggregated list request is invoked for subnetworks list-usable api.
|
47117
47203
|
# @param [String] fields
|
47118
47204
|
# Selector specifying which fields to include in a partial response.
|
47119
47205
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.91.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-02-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.91.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|