google-apis-compute_beta 0.90.0 → 0.92.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 +9 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/compute_beta/classes.rb +116 -41
- data/lib/google/apis/compute_beta/gem_version.rb +3 -3
- data/lib/google/apis/compute_beta/representations.rb +31 -0
- data/lib/google/apis/compute_beta/service.rb +616 -202
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78d5c003a39d605ed6f7febe5e486a2cc2d0713f84485f973a2cea924d8cdbfb
|
4
|
+
data.tar.gz: b5e8f317f1bd228a1b214a721d081fee3cb3888048efd092d337d6eff7a1ddee
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d49bb0ba11d9761e46cc901227b8da5a30b0507c7f35b4f27cfac7f574890cd7d2f21d550e070fb68a72b37f3d1c82ba4637c4262a20c51b037b501013ec415
|
7
|
+
data.tar.gz: c54b083715d265351027bc9eec524f287847f707890c24c964144a95b099e461475fa0156b0fd3af65a20cf95d917ac8e60d45aa7405342f76d2523326a2c457
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-compute_beta
|
2
2
|
|
3
|
+
### v0.92.0 (2024-02-24)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240218
|
6
|
+
* Regenerated using generator version 0.14.0
|
7
|
+
|
8
|
+
### v0.91.0 (2024-02-11)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20240130
|
11
|
+
|
3
12
|
### v0.90.0 (2024-02-04)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240129
|
data/OVERVIEW.md
CHANGED
@@ -83,9 +83,9 @@ The [product documentation](https://cloud.google.com/compute/) may provide guida
|
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
86
|
-
This library is supported on Ruby 2.
|
86
|
+
This library is supported on Ruby 2.7+.
|
87
87
|
|
88
|
-
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life.
|
88
|
+
Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
|
89
89
|
|
90
90
|
## License
|
91
91
|
|
@@ -1750,8 +1750,8 @@ module Google
|
|
1750
1750
|
attr_accessor :provisioned_iops
|
1751
1751
|
|
1752
1752
|
# Indicates how much throughput to provision for the disk. This sets the number
|
1753
|
-
# of throughput mb per second that the disk can handle. Values must
|
1754
|
-
#
|
1753
|
+
# of throughput mb per second that the disk can handle. Values must greater than
|
1754
|
+
# or equal to 1.
|
1755
1755
|
# Corresponds to the JSON property `provisionedThroughput`
|
1756
1756
|
# @return [Fixnum]
|
1757
1757
|
attr_accessor :provisioned_throughput
|
@@ -6746,8 +6746,8 @@ module Google
|
|
6746
6746
|
attr_accessor :provisioned_iops
|
6747
6747
|
|
6748
6748
|
# Indicates how much throughput to provision for the disk. This sets the number
|
6749
|
-
# of throughput mb per second that the disk can handle. Values must be
|
6750
|
-
#
|
6749
|
+
# of throughput mb per second that the disk can handle. Values must be greater
|
6750
|
+
# than or equal to 1.
|
6751
6751
|
# Corresponds to the JSON property `provisionedThroughput`
|
6752
6752
|
# @return [Fixnum]
|
6753
6753
|
attr_accessor :provisioned_throughput
|
@@ -25707,6 +25707,12 @@ module Google
|
|
25707
25707
|
# @return [Hash<String,String>]
|
25708
25708
|
attr_accessor :annotations
|
25709
25709
|
|
25710
|
+
# Represents the port number to which PSC consumer sends packets. Only valid for
|
25711
|
+
# network endpoint groups created with CLIENT_PORT_PER_ENDPOINT mapping mode.
|
25712
|
+
# Corresponds to the JSON property `clientPort`
|
25713
|
+
# @return [Fixnum]
|
25714
|
+
attr_accessor :client_port
|
25715
|
+
|
25710
25716
|
# Optional fully qualified domain name of network endpoint. This can only be
|
25711
25717
|
# specified when NetworkEndpointGroup.network_endpoint_type is NON_GCP_FQDN_PORT.
|
25712
25718
|
# Corresponds to the JSON property `fqdn`
|
@@ -25756,6 +25762,7 @@ module Google
|
|
25756
25762
|
# Update properties of this object
|
25757
25763
|
def update!(**args)
|
25758
25764
|
@annotations = args[:annotations] if args.key?(:annotations)
|
25765
|
+
@client_port = args[:client_port] if args.key?(:client_port)
|
25759
25766
|
@fqdn = args[:fqdn] if args.key?(:fqdn)
|
25760
25767
|
@instance = args[:instance] if args.key?(:instance)
|
25761
25768
|
@ip_address = args[:ip_address] if args.key?(:ip_address)
|
@@ -25785,6 +25792,11 @@ module Google
|
|
25785
25792
|
# @return [Google::Apis::ComputeBeta::NetworkEndpointGroupAppEngine]
|
25786
25793
|
attr_accessor :app_engine
|
25787
25794
|
|
25795
|
+
# Only valid when networkEndpointType is GCE_VM_IP_PORT and the NEG is regional.
|
25796
|
+
# Corresponds to the JSON property `clientPortMappingMode`
|
25797
|
+
# @return [String]
|
25798
|
+
attr_accessor :client_port_mapping_mode
|
25799
|
+
|
25788
25800
|
# Configuration for a Cloud Function network endpoint group (NEG). The function
|
25789
25801
|
# must be provided explicitly or in the URL mask. Note: Cloud Function must be
|
25790
25802
|
# in the same project and located in the same region as the Serverless NEG.
|
@@ -25806,7 +25818,8 @@ module Google
|
|
25806
25818
|
attr_accessor :creation_timestamp
|
25807
25819
|
|
25808
25820
|
# The default port used if the port number is not specified in the network
|
25809
|
-
# endpoint.
|
25821
|
+
# endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
|
25822
|
+
# PRIVATE_SERVICE_CONNECT, this field must not be specified.
|
25810
25823
|
# Corresponds to the JSON property `defaultPort`
|
25811
25824
|
# @return [Fixnum]
|
25812
25825
|
attr_accessor :default_port
|
@@ -25844,8 +25857,8 @@ module Google
|
|
25844
25857
|
# @return [String]
|
25845
25858
|
attr_accessor :name
|
25846
25859
|
|
25847
|
-
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
25848
|
-
# default
|
25860
|
+
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
25861
|
+
# default project network if unspecified.
|
25849
25862
|
# Corresponds to the JSON property `network`
|
25850
25863
|
# @return [String]
|
25851
25864
|
attr_accessor :network
|
@@ -25864,8 +25877,8 @@ module Google
|
|
25864
25877
|
attr_accessor :psc_data
|
25865
25878
|
|
25866
25879
|
# The target service url used to set up private service connection to a Google
|
25867
|
-
# API or a PSC Producer Service Attachment. An example value is:
|
25868
|
-
#
|
25880
|
+
# API or a PSC Producer Service Attachment. An example value is: asia-northeast3-
|
25881
|
+
# cloudkms.googleapis.com
|
25869
25882
|
# Corresponds to the JSON property `pscTargetService`
|
25870
25883
|
# @return [String]
|
25871
25884
|
attr_accessor :psc_target_service
|
@@ -25912,6 +25925,7 @@ module Google
|
|
25912
25925
|
def update!(**args)
|
25913
25926
|
@annotations = args[:annotations] if args.key?(:annotations)
|
25914
25927
|
@app_engine = args[:app_engine] if args.key?(:app_engine)
|
25928
|
+
@client_port_mapping_mode = args[:client_port_mapping_mode] if args.key?(:client_port_mapping_mode)
|
25915
25929
|
@cloud_function = args[:cloud_function] if args.key?(:cloud_function)
|
25916
25930
|
@cloud_run = args[:cloud_run] if args.key?(:cloud_run)
|
25917
25931
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
@@ -26068,24 +26082,25 @@ module Google
|
|
26068
26082
|
include Google::Apis::Core::Hashable
|
26069
26083
|
|
26070
26084
|
# Optional serving service. The service name is case-sensitive and must be 1-63
|
26071
|
-
# characters long. Example value:
|
26085
|
+
# characters long. Example value: default, my-service.
|
26072
26086
|
# Corresponds to the JSON property `service`
|
26073
26087
|
# @return [String]
|
26074
26088
|
attr_accessor :service
|
26075
26089
|
|
26076
|
-
#
|
26077
|
-
#
|
26078
|
-
# multiple
|
26079
|
-
#
|
26080
|
-
# com/v2
|
26081
|
-
#
|
26082
|
-
#
|
26090
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26091
|
+
# parse service and version fields from a request URL. URL mask allows for
|
26092
|
+
# routing to multiple App Engine services without having to create multiple
|
26093
|
+
# Network Endpoint Groups and backend services. For example, the request URLs
|
26094
|
+
# foo1-dot-appname.appspot.com/v1 and foo1-dot-appname.appspot.com/v2 can be
|
26095
|
+
# backed by the same Serverless NEG with URL mask <service>-dot-appname.appspot.
|
26096
|
+
# com/<version>. The URL mask will parse them to ` service = "foo1", version = "
|
26097
|
+
# v1" ` and ` service = "foo1", version = "v2" ` respectively.
|
26083
26098
|
# Corresponds to the JSON property `urlMask`
|
26084
26099
|
# @return [String]
|
26085
26100
|
attr_accessor :url_mask
|
26086
26101
|
|
26087
26102
|
# Optional serving version. The version name is case-sensitive and must be 1-100
|
26088
|
-
# characters long. Example value:
|
26103
|
+
# characters long. Example value: v1, v2.
|
26089
26104
|
# Corresponds to the JSON property `version`
|
26090
26105
|
# @return [String]
|
26091
26106
|
attr_accessor :version
|
@@ -26109,17 +26124,18 @@ module Google
|
|
26109
26124
|
include Google::Apis::Core::Hashable
|
26110
26125
|
|
26111
26126
|
# A user-defined name of the Cloud Function. The function name is case-sensitive
|
26112
|
-
# and must be 1-63 characters long. Example value:
|
26127
|
+
# and must be 1-63 characters long. Example value: func1.
|
26113
26128
|
# Corresponds to the JSON property `function`
|
26114
26129
|
# @return [String]
|
26115
26130
|
attr_accessor :function
|
26116
26131
|
|
26117
|
-
#
|
26118
|
-
#
|
26119
|
-
#
|
26120
|
-
#
|
26121
|
-
#
|
26122
|
-
#
|
26132
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26133
|
+
# parse function field from a request URL. URL mask allows for routing to
|
26134
|
+
# multiple Cloud Functions without having to create multiple Network Endpoint
|
26135
|
+
# Groups and backend services. For example, request URLs mydomain.com/function1
|
26136
|
+
# and mydomain.com/function2 can be backed by the same Serverless NEG with URL
|
26137
|
+
# mask /<function>. The URL mask will parse them to ` function = "function1" `
|
26138
|
+
# and ` function = "function2" ` respectively.
|
26123
26139
|
# Corresponds to the JSON property `urlMask`
|
26124
26140
|
# @return [String]
|
26125
26141
|
attr_accessor :url_mask
|
@@ -26155,13 +26171,14 @@ module Google
|
|
26155
26171
|
# @return [String]
|
26156
26172
|
attr_accessor :tag
|
26157
26173
|
|
26158
|
-
#
|
26159
|
-
#
|
26160
|
-
#
|
26161
|
-
#
|
26162
|
-
#
|
26163
|
-
#
|
26164
|
-
# service="
|
26174
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26175
|
+
# parse <service> and <tag> fields from a request URL. URL mask allows for
|
26176
|
+
# routing to multiple Run services without having to create multiple network
|
26177
|
+
# endpoint groups and backend services. For example, request URLs foo1.domain.
|
26178
|
+
# com/bar1 and foo1.domain.com/bar2 can be backed by the same Serverless Network
|
26179
|
+
# Endpoint Group (NEG) with URL mask <tag>.domain.com/<service>. The URL mask
|
26180
|
+
# will parse them to ` service="bar1", tag="foo1" ` and ` service="bar2", tag="
|
26181
|
+
# foo2" ` respectively.
|
26165
26182
|
# Corresponds to the JSON property `urlMask`
|
26166
26183
|
# @return [String]
|
26167
26184
|
attr_accessor :url_mask
|
@@ -26183,13 +26200,15 @@ module Google
|
|
26183
26200
|
include Google::Apis::Core::Hashable
|
26184
26201
|
|
26185
26202
|
# The default port used if the port number is not specified in the network
|
26186
|
-
# endpoint.
|
26203
|
+
# endpoint. If the network endpoint type is either GCE_VM_IP, SERVERLESS or
|
26204
|
+
# PRIVATE_SERVICE_CONNECT, this field must not be specified. [Deprecated] This
|
26205
|
+
# field is deprecated.
|
26187
26206
|
# Corresponds to the JSON property `defaultPort`
|
26188
26207
|
# @return [Fixnum]
|
26189
26208
|
attr_accessor :default_port
|
26190
26209
|
|
26191
|
-
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
26192
|
-
# default
|
26210
|
+
# The URL of the network to which all network endpoints in the NEG belong. Uses
|
26211
|
+
# default project network if unspecified. [Deprecated] This field is deprecated.
|
26193
26212
|
# Corresponds to the JSON property `network`
|
26194
26213
|
# @return [String]
|
26195
26214
|
attr_accessor :network
|
@@ -26391,12 +26410,13 @@ module Google
|
|
26391
26410
|
# @return [String]
|
26392
26411
|
attr_accessor :resource
|
26393
26412
|
|
26394
|
-
#
|
26395
|
-
#
|
26396
|
-
#
|
26397
|
-
# resources. The fields parsed by
|
26398
|
-
#
|
26399
|
-
#
|
26413
|
+
# An URL mask is one of the main components of the Cloud Function. A template to
|
26414
|
+
# parse platform-specific fields from a request URL. URL mask allows for routing
|
26415
|
+
# to multiple resources on the same serverless platform without having to create
|
26416
|
+
# multiple Network Endpoint Groups and backend resources. The fields parsed by
|
26417
|
+
# this template are platform-specific and are as follows: 1. API Gateway: The
|
26418
|
+
# gateway ID 2. App Engine: The service and version 3. Cloud Functions: The
|
26419
|
+
# function name 4. Cloud Run: The service and tag
|
26400
26420
|
# Corresponds to the JSON property `urlMask`
|
26401
26421
|
# @return [String]
|
26402
26422
|
attr_accessor :url_mask
|
@@ -31361,6 +31381,13 @@ module Google
|
|
31361
31381
|
class Project
|
31362
31382
|
include Google::Apis::Core::Hashable
|
31363
31383
|
|
31384
|
+
# [Output Only] The Cloud Armor tier for this project. It can be one of the
|
31385
|
+
# following values: CA_STANDARD, CA_ENTERPRISE_PAYGO. If this field is not
|
31386
|
+
# specified, it is assumed to be CA_STANDARD.
|
31387
|
+
# Corresponds to the JSON property `cloudArmorTier`
|
31388
|
+
# @return [String]
|
31389
|
+
attr_accessor :cloud_armor_tier
|
31390
|
+
|
31364
31391
|
# A metadata key/value entry.
|
31365
31392
|
# Corresponds to the JSON property `commonInstanceMetadata`
|
31366
31393
|
# @return [Google::Apis::ComputeBeta::Metadata]
|
@@ -31452,6 +31479,7 @@ module Google
|
|
31452
31479
|
|
31453
31480
|
# Update properties of this object
|
31454
31481
|
def update!(**args)
|
31482
|
+
@cloud_armor_tier = args[:cloud_armor_tier] if args.key?(:cloud_armor_tier)
|
31455
31483
|
@common_instance_metadata = args[:common_instance_metadata] if args.key?(:common_instance_metadata)
|
31456
31484
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
31457
31485
|
@default_network_tier = args[:default_network_tier] if args.key?(:default_network_tier)
|
@@ -31566,6 +31594,25 @@ module Google
|
|
31566
31594
|
end
|
31567
31595
|
end
|
31568
31596
|
|
31597
|
+
#
|
31598
|
+
class ProjectsSetCloudArmorTierRequest
|
31599
|
+
include Google::Apis::Core::Hashable
|
31600
|
+
|
31601
|
+
# Managed protection tier to be set.
|
31602
|
+
# Corresponds to the JSON property `cloudArmorTier`
|
31603
|
+
# @return [String]
|
31604
|
+
attr_accessor :cloud_armor_tier
|
31605
|
+
|
31606
|
+
def initialize(**args)
|
31607
|
+
update!(**args)
|
31608
|
+
end
|
31609
|
+
|
31610
|
+
# Update properties of this object
|
31611
|
+
def update!(**args)
|
31612
|
+
@cloud_armor_tier = args[:cloud_armor_tier] if args.key?(:cloud_armor_tier)
|
31613
|
+
end
|
31614
|
+
end
|
31615
|
+
|
31569
31616
|
#
|
31570
31617
|
class ProjectsSetDefaultNetworkTierRequest
|
31571
31618
|
include Google::Apis::Core::Hashable
|
@@ -38342,6 +38389,11 @@ module Google
|
|
38342
38389
|
# @return [String]
|
38343
38390
|
attr_accessor :on_host_maintenance
|
38344
38391
|
|
38392
|
+
# Defines the behaviour for instances with the instance_termination_action STOP.
|
38393
|
+
# Corresponds to the JSON property `onInstanceStopAction`
|
38394
|
+
# @return [Google::Apis::ComputeBeta::SchedulingOnInstanceStopAction]
|
38395
|
+
attr_accessor :on_instance_stop_action
|
38396
|
+
|
38345
38397
|
# Defines whether the instance is preemptible. This can only be set during
|
38346
38398
|
# instance creation or while the instance is stopped and therefore, in a `
|
38347
38399
|
# TERMINATED` state. See Instance Life Cycle for more information on the
|
@@ -38380,6 +38432,7 @@ module Google
|
|
38380
38432
|
@min_node_cpus = args[:min_node_cpus] if args.key?(:min_node_cpus)
|
38381
38433
|
@node_affinities = args[:node_affinities] if args.key?(:node_affinities)
|
38382
38434
|
@on_host_maintenance = args[:on_host_maintenance] if args.key?(:on_host_maintenance)
|
38435
|
+
@on_instance_stop_action = args[:on_instance_stop_action] if args.key?(:on_instance_stop_action)
|
38383
38436
|
@preemptible = args[:preemptible] if args.key?(:preemptible)
|
38384
38437
|
@provisioning_model = args[:provisioning_model] if args.key?(:provisioning_model)
|
38385
38438
|
@termination_time = args[:termination_time] if args.key?(:termination_time)
|
@@ -38419,6 +38472,28 @@ module Google
|
|
38419
38472
|
end
|
38420
38473
|
end
|
38421
38474
|
|
38475
|
+
# Defines the behaviour for instances with the instance_termination_action STOP.
|
38476
|
+
class SchedulingOnInstanceStopAction
|
38477
|
+
include Google::Apis::Core::Hashable
|
38478
|
+
|
38479
|
+
# If true, the contents of any attached Local SSD disks will be discarded else,
|
38480
|
+
# the Local SSD data will be preserved when the instance is stopped at the end
|
38481
|
+
# of the run duration/termination time.
|
38482
|
+
# Corresponds to the JSON property `discardLocalSsd`
|
38483
|
+
# @return [Boolean]
|
38484
|
+
attr_accessor :discard_local_ssd
|
38485
|
+
alias_method :discard_local_ssd?, :discard_local_ssd
|
38486
|
+
|
38487
|
+
def initialize(**args)
|
38488
|
+
update!(**args)
|
38489
|
+
end
|
38490
|
+
|
38491
|
+
# Update properties of this object
|
38492
|
+
def update!(**args)
|
38493
|
+
@discard_local_ssd = args[:discard_local_ssd] if args.key?(:discard_local_ssd)
|
38494
|
+
end
|
38495
|
+
end
|
38496
|
+
|
38422
38497
|
# An instance's screenshot.
|
38423
38498
|
class Screenshot
|
38424
38499
|
include Google::Apis::Core::Hashable
|
@@ -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.92.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.14.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240218"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -4018,6 +4018,12 @@ module Google
|
|
4018
4018
|
include Google::Apis::Core::JsonObjectSupport
|
4019
4019
|
end
|
4020
4020
|
|
4021
|
+
class ProjectsSetCloudArmorTierRequest
|
4022
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4023
|
+
|
4024
|
+
include Google::Apis::Core::JsonObjectSupport
|
4025
|
+
end
|
4026
|
+
|
4021
4027
|
class ProjectsSetDefaultNetworkTierRequest
|
4022
4028
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4023
4029
|
|
@@ -4984,6 +4990,12 @@ module Google
|
|
4984
4990
|
include Google::Apis::Core::JsonObjectSupport
|
4985
4991
|
end
|
4986
4992
|
|
4993
|
+
class SchedulingOnInstanceStopAction
|
4994
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4995
|
+
|
4996
|
+
include Google::Apis::Core::JsonObjectSupport
|
4997
|
+
end
|
4998
|
+
|
4987
4999
|
class Screenshot
|
4988
5000
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4989
5001
|
|
@@ -12830,6 +12842,7 @@ module Google
|
|
12830
12842
|
# @private
|
12831
12843
|
class Representation < Google::Apis::Core::JsonRepresentation
|
12832
12844
|
hash :annotations, as: 'annotations'
|
12845
|
+
property :client_port, as: 'clientPort'
|
12833
12846
|
property :fqdn, as: 'fqdn'
|
12834
12847
|
property :instance, as: 'instance'
|
12835
12848
|
property :ip_address, as: 'ipAddress'
|
@@ -12844,6 +12857,7 @@ module Google
|
|
12844
12857
|
hash :annotations, as: 'annotations'
|
12845
12858
|
property :app_engine, as: 'appEngine', class: Google::Apis::ComputeBeta::NetworkEndpointGroupAppEngine, decorator: Google::Apis::ComputeBeta::NetworkEndpointGroupAppEngine::Representation
|
12846
12859
|
|
12860
|
+
property :client_port_mapping_mode, as: 'clientPortMappingMode'
|
12847
12861
|
property :cloud_function, as: 'cloudFunction', class: Google::Apis::ComputeBeta::NetworkEndpointGroupCloudFunction, decorator: Google::Apis::ComputeBeta::NetworkEndpointGroupCloudFunction::Representation
|
12848
12862
|
|
12849
12863
|
property :cloud_run, as: 'cloudRun', class: Google::Apis::ComputeBeta::NetworkEndpointGroupCloudRun, decorator: Google::Apis::ComputeBeta::NetworkEndpointGroupCloudRun::Representation
|
@@ -14270,6 +14284,7 @@ module Google
|
|
14270
14284
|
class Project
|
14271
14285
|
# @private
|
14272
14286
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14287
|
+
property :cloud_armor_tier, as: 'cloudArmorTier'
|
14273
14288
|
property :common_instance_metadata, as: 'commonInstanceMetadata', class: Google::Apis::ComputeBeta::Metadata, decorator: Google::Apis::ComputeBeta::Metadata::Representation
|
14274
14289
|
|
14275
14290
|
property :creation_timestamp, as: 'creationTimestamp'
|
@@ -14324,6 +14339,13 @@ module Google
|
|
14324
14339
|
end
|
14325
14340
|
end
|
14326
14341
|
|
14342
|
+
class ProjectsSetCloudArmorTierRequest
|
14343
|
+
# @private
|
14344
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
14345
|
+
property :cloud_armor_tier, as: 'cloudArmorTier'
|
14346
|
+
end
|
14347
|
+
end
|
14348
|
+
|
14327
14349
|
class ProjectsSetDefaultNetworkTierRequest
|
14328
14350
|
# @private
|
14329
14351
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -16053,6 +16075,8 @@ module Google
|
|
16053
16075
|
collection :node_affinities, as: 'nodeAffinities', class: Google::Apis::ComputeBeta::SchedulingNodeAffinity, decorator: Google::Apis::ComputeBeta::SchedulingNodeAffinity::Representation
|
16054
16076
|
|
16055
16077
|
property :on_host_maintenance, as: 'onHostMaintenance'
|
16078
|
+
property :on_instance_stop_action, as: 'onInstanceStopAction', class: Google::Apis::ComputeBeta::SchedulingOnInstanceStopAction, decorator: Google::Apis::ComputeBeta::SchedulingOnInstanceStopAction::Representation
|
16079
|
+
|
16056
16080
|
property :preemptible, as: 'preemptible'
|
16057
16081
|
property :provisioning_model, as: 'provisioningModel'
|
16058
16082
|
property :termination_time, as: 'terminationTime'
|
@@ -16068,6 +16092,13 @@ module Google
|
|
16068
16092
|
end
|
16069
16093
|
end
|
16070
16094
|
|
16095
|
+
class SchedulingOnInstanceStopAction
|
16096
|
+
# @private
|
16097
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
16098
|
+
property :discard_local_ssd, as: 'discardLocalSsd'
|
16099
|
+
end
|
16100
|
+
end
|
16101
|
+
|
16071
16102
|
class Screenshot
|
16072
16103
|
# @private
|
16073
16104
|
class Representation < Google::Apis::Core::JsonRepresentation
|