google-apis-compute_alpha 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_alpha/classes.rb +183 -7
- data/lib/google/apis/compute_alpha/gem_version.rb +3 -3
- data/lib/google/apis/compute_alpha/representations.rb +77 -0
- data/lib/google/apis/compute_alpha/service.rb +674 -223
- 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: 75b0a254f68bc62fecbd9294b2bb60828be8973747a4055422764e46624416c2
|
4
|
+
data.tar.gz: 32fc04577c00cac7c16df7adb4dea7daac1ffd69c122f94e9c00f9061355faa3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f853c9eb3d38b19bcce36f34f7eacb68cf13d92131b0aff2742c4efcf688ca3f2d61db998d1892aa6a14afded4514e7fded08dc473116269fce20e53c8ce58c5
|
7
|
+
data.tar.gz: 0aba45a0af004330bdacaaa4eedf51a0536815e4eeafcac2faca2ed0651756974b9ad3b7687ef884ec584c504044c905af368e013f9f9592a4b79cd99fdf0609
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-compute_alpha
|
2
2
|
|
3
|
+
### v0.92.0 (2024-03-03)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240220
|
6
|
+
|
7
|
+
### v0.91.0 (2024-02-23)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240218
|
10
|
+
* Regenerated using generator version 0.14.0
|
11
|
+
|
3
12
|
### v0.90.0 (2024-02-11)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20240130
|
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
|
|
@@ -1806,8 +1806,8 @@ module Google
|
|
1806
1806
|
attr_accessor :provisioned_iops
|
1807
1807
|
|
1808
1808
|
# Indicates how much throughput to provision for the disk. This sets the number
|
1809
|
-
# of throughput mb per second that the disk can handle. Values must
|
1810
|
-
#
|
1809
|
+
# of throughput mb per second that the disk can handle. Values must greater than
|
1810
|
+
# or equal to 1.
|
1811
1811
|
# Corresponds to the JSON property `provisionedThroughput`
|
1812
1812
|
# @return [Fixnum]
|
1813
1813
|
attr_accessor :provisioned_throughput
|
@@ -7361,8 +7361,8 @@ module Google
|
|
7361
7361
|
attr_accessor :provisioned_iops
|
7362
7362
|
|
7363
7363
|
# Indicates how much throughput to provision for the disk. This sets the number
|
7364
|
-
# of throughput mb per second that the disk can handle. Values must be
|
7365
|
-
#
|
7364
|
+
# of throughput mb per second that the disk can handle. Values must be greater
|
7365
|
+
# than or equal to 1.
|
7366
7366
|
# Corresponds to the JSON property `provisionedThroughput`
|
7367
7367
|
# @return [Fixnum]
|
7368
7368
|
attr_accessor :provisioned_throughput
|
@@ -8117,6 +8117,16 @@ module Google
|
|
8117
8117
|
class DiskSettings
|
8118
8118
|
include Google::Apis::Core::Hashable
|
8119
8119
|
|
8120
|
+
# AccessLocation is only used for regional snapshot. It contains which regions
|
8121
|
+
# are allowed to create a regional snapshot from disks located in the given
|
8122
|
+
# region/zone. It includes key-value pairs designed to store the following
|
8123
|
+
# structure. The keys should match their corresponding values, which must be
|
8124
|
+
# provided: access_location: ` locations ` us-central1 ` region: "us-central1" `,
|
8125
|
+
# asia-west2 ` region: "asia-west2" ` ` `
|
8126
|
+
# Corresponds to the JSON property `accessLocation`
|
8127
|
+
# @return [Google::Apis::ComputeAlpha::DiskSettingsAccessLocation]
|
8128
|
+
attr_accessor :access_location
|
8129
|
+
|
8120
8130
|
# An optional parameter for storing the default resource policies that will be
|
8121
8131
|
# used for the Disks created in the given scope. The Key is a string type,
|
8122
8132
|
# provided by customers to uniquely identify the default Resource Policy entry.
|
@@ -8132,10 +8142,54 @@ module Google
|
|
8132
8142
|
|
8133
8143
|
# Update properties of this object
|
8134
8144
|
def update!(**args)
|
8145
|
+
@access_location = args[:access_location] if args.key?(:access_location)
|
8135
8146
|
@default_resource_policies = args[:default_resource_policies] if args.key?(:default_resource_policies)
|
8136
8147
|
end
|
8137
8148
|
end
|
8138
8149
|
|
8150
|
+
# AccessLocation is only used for regional snapshot. It contains which regions
|
8151
|
+
# are allowed to create a regional snapshot from disks located in the given
|
8152
|
+
# region/zone. It includes key-value pairs designed to store the following
|
8153
|
+
# structure. The keys should match their corresponding values, which must be
|
8154
|
+
# provided: access_location: ` locations ` us-central1 ` region: "us-central1" `,
|
8155
|
+
# asia-west2 ` region: "asia-west2" ` ` `
|
8156
|
+
class DiskSettingsAccessLocation
|
8157
|
+
include Google::Apis::Core::Hashable
|
8158
|
+
|
8159
|
+
# List of regions that can create a regional snapshot from the current region
|
8160
|
+
# Corresponds to the JSON property `locations`
|
8161
|
+
# @return [Hash<String,Google::Apis::ComputeAlpha::DiskSettingsAccessLocationAccessLocationPreference>]
|
8162
|
+
attr_accessor :locations
|
8163
|
+
|
8164
|
+
def initialize(**args)
|
8165
|
+
update!(**args)
|
8166
|
+
end
|
8167
|
+
|
8168
|
+
# Update properties of this object
|
8169
|
+
def update!(**args)
|
8170
|
+
@locations = args[:locations] if args.key?(:locations)
|
8171
|
+
end
|
8172
|
+
end
|
8173
|
+
|
8174
|
+
# A structure for specifying an allowed target region to create snapshot.
|
8175
|
+
class DiskSettingsAccessLocationAccessLocationPreference
|
8176
|
+
include Google::Apis::Core::Hashable
|
8177
|
+
|
8178
|
+
# Accessible region name
|
8179
|
+
# Corresponds to the JSON property `region`
|
8180
|
+
# @return [String]
|
8181
|
+
attr_accessor :region
|
8182
|
+
|
8183
|
+
def initialize(**args)
|
8184
|
+
update!(**args)
|
8185
|
+
end
|
8186
|
+
|
8187
|
+
# Update properties of this object
|
8188
|
+
def update!(**args)
|
8189
|
+
@region = args[:region] if args.key?(:region)
|
8190
|
+
end
|
8191
|
+
end
|
8192
|
+
|
8139
8193
|
# This is the object for storing the detail information about the Resource
|
8140
8194
|
# Policy that will be set as default ones for the Disks that is using the
|
8141
8195
|
# DiskSettings. It contains: - one target Resource Policy referenced by its
|
@@ -11443,6 +11497,16 @@ module Google
|
|
11443
11497
|
# @return [Google::Apis::ComputeAlpha::ShareSettings]
|
11444
11498
|
attr_accessor :share_settings
|
11445
11499
|
|
11500
|
+
# Indicates whether the auto-created reservation can be consumed by VMs with
|
11501
|
+
# affinity for "any" reservation. If the field is set, then only VMs that target
|
11502
|
+
# the reservation by name can consume from the delivered reservation. If set to
|
11503
|
+
# true,the delivered resevervation will have the same name as the future
|
11504
|
+
# reservation.
|
11505
|
+
# Corresponds to the JSON property `specificReservationRequired`
|
11506
|
+
# @return [Boolean]
|
11507
|
+
attr_accessor :specific_reservation_required
|
11508
|
+
alias_method :specific_reservation_required?, :specific_reservation_required
|
11509
|
+
|
11446
11510
|
# Future Reservation configuration to indicate instance properties and total
|
11447
11511
|
# count.
|
11448
11512
|
# Corresponds to the JSON property `specificSkuProperties`
|
@@ -11483,6 +11547,7 @@ module Google
|
|
11483
11547
|
@self_link = args[:self_link] if args.key?(:self_link)
|
11484
11548
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
11485
11549
|
@share_settings = args[:share_settings] if args.key?(:share_settings)
|
11550
|
+
@specific_reservation_required = args[:specific_reservation_required] if args.key?(:specific_reservation_required)
|
11486
11551
|
@specific_sku_properties = args[:specific_sku_properties] if args.key?(:specific_sku_properties)
|
11487
11552
|
@status = args[:status] if args.key?(:status)
|
11488
11553
|
@time_window = args[:time_window] if args.key?(:time_window)
|
@@ -17449,6 +17514,12 @@ module Google
|
|
17449
17514
|
# @return [Hash<String,Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection>]
|
17450
17515
|
attr_accessor :instance_selections
|
17451
17516
|
|
17517
|
+
# Provisioning model configuration used by this managed instance group to create
|
17518
|
+
# instances.
|
17519
|
+
# Corresponds to the JSON property `provisioningModelMix`
|
17520
|
+
# @return [Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix]
|
17521
|
+
attr_accessor :provisioning_model_mix
|
17522
|
+
|
17452
17523
|
def initialize(**args)
|
17453
17524
|
update!(**args)
|
17454
17525
|
end
|
@@ -17457,6 +17528,7 @@ module Google
|
|
17457
17528
|
def update!(**args)
|
17458
17529
|
@instance_selection_lists = args[:instance_selection_lists] if args.key?(:instance_selection_lists)
|
17459
17530
|
@instance_selections = args[:instance_selections] if args.key?(:instance_selections)
|
17531
|
+
@provisioning_model_mix = args[:provisioning_model_mix] if args.key?(:provisioning_model_mix)
|
17460
17532
|
end
|
17461
17533
|
end
|
17462
17534
|
|
@@ -17488,6 +17560,36 @@ module Google
|
|
17488
17560
|
end
|
17489
17561
|
end
|
17490
17562
|
|
17563
|
+
#
|
17564
|
+
class InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix
|
17565
|
+
include Google::Apis::Core::Hashable
|
17566
|
+
|
17567
|
+
# The base capacity that will always use Standard VMs to avoid risk of more
|
17568
|
+
# preemption than the minimum capacity user needs. MIG will create only Standard
|
17569
|
+
# VMs until it reaches standard_capacity_base and only then will start using
|
17570
|
+
# standard_capacity_percent_above_base to mix Spot with Standard VMs.
|
17571
|
+
# Corresponds to the JSON property `standardCapacityBase`
|
17572
|
+
# @return [Fixnum]
|
17573
|
+
attr_accessor :standard_capacity_base
|
17574
|
+
|
17575
|
+
# The percentage of target capacity that should use Standard VM. The remaining
|
17576
|
+
# percentage will use Spot VMs. The percentage applies only to the capacity
|
17577
|
+
# above standard_capacity_base.
|
17578
|
+
# Corresponds to the JSON property `standardCapacityPercentAboveBase`
|
17579
|
+
# @return [Fixnum]
|
17580
|
+
attr_accessor :standard_capacity_percent_above_base
|
17581
|
+
|
17582
|
+
def initialize(**args)
|
17583
|
+
update!(**args)
|
17584
|
+
end
|
17585
|
+
|
17586
|
+
# Update properties of this object
|
17587
|
+
def update!(**args)
|
17588
|
+
@standard_capacity_base = args[:standard_capacity_base] if args.key?(:standard_capacity_base)
|
17589
|
+
@standard_capacity_percent_above_base = args[:standard_capacity_percent_above_base] if args.key?(:standard_capacity_percent_above_base)
|
17590
|
+
end
|
17591
|
+
end
|
17592
|
+
|
17491
17593
|
#
|
17492
17594
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
17493
17595
|
include Google::Apis::Core::Hashable
|
@@ -26270,6 +26372,11 @@ module Google
|
|
26270
26372
|
# @return [String]
|
26271
26373
|
attr_accessor :machine_type
|
26272
26374
|
|
26375
|
+
# The provisioning model to be used for this instance.
|
26376
|
+
# Corresponds to the JSON property `provisioningModel`
|
26377
|
+
# @return [String]
|
26378
|
+
attr_accessor :provisioning_model
|
26379
|
+
|
26273
26380
|
def initialize(**args)
|
26274
26381
|
update!(**args)
|
26275
26382
|
end
|
@@ -26277,6 +26384,7 @@ module Google
|
|
26277
26384
|
# Update properties of this object
|
26278
26385
|
def update!(**args)
|
26279
26386
|
@machine_type = args[:machine_type] if args.key?(:machine_type)
|
26387
|
+
@provisioning_model = args[:provisioning_model] if args.key?(:provisioning_model)
|
26280
26388
|
end
|
26281
26389
|
end
|
26282
26390
|
|
@@ -33990,6 +34098,13 @@ module Google
|
|
33990
34098
|
class Project
|
33991
34099
|
include Google::Apis::Core::Hashable
|
33992
34100
|
|
34101
|
+
# [Output Only] The Cloud Armor tier for this project. It can be one of the
|
34102
|
+
# following values: CA_STANDARD, CA_ENTERPRISE_PAYGO. If this field is not
|
34103
|
+
# specified, it is assumed to be CA_STANDARD.
|
34104
|
+
# Corresponds to the JSON property `cloudArmorTier`
|
34105
|
+
# @return [String]
|
34106
|
+
attr_accessor :cloud_armor_tier
|
34107
|
+
|
33993
34108
|
# A metadata key/value entry.
|
33994
34109
|
# Corresponds to the JSON property `commonInstanceMetadata`
|
33995
34110
|
# @return [Google::Apis::ComputeAlpha::Metadata]
|
@@ -34081,6 +34196,7 @@ module Google
|
|
34081
34196
|
|
34082
34197
|
# Update properties of this object
|
34083
34198
|
def update!(**args)
|
34199
|
+
@cloud_armor_tier = args[:cloud_armor_tier] if args.key?(:cloud_armor_tier)
|
34084
34200
|
@common_instance_metadata = args[:common_instance_metadata] if args.key?(:common_instance_metadata)
|
34085
34201
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
34086
34202
|
@default_network_tier = args[:default_network_tier] if args.key?(:default_network_tier)
|
@@ -34206,6 +34322,25 @@ module Google
|
|
34206
34322
|
end
|
34207
34323
|
end
|
34208
34324
|
|
34325
|
+
#
|
34326
|
+
class ProjectsSetCloudArmorTierRequest
|
34327
|
+
include Google::Apis::Core::Hashable
|
34328
|
+
|
34329
|
+
# Managed protection tier to be set.
|
34330
|
+
# Corresponds to the JSON property `cloudArmorTier`
|
34331
|
+
# @return [String]
|
34332
|
+
attr_accessor :cloud_armor_tier
|
34333
|
+
|
34334
|
+
def initialize(**args)
|
34335
|
+
update!(**args)
|
34336
|
+
end
|
34337
|
+
|
34338
|
+
# Update properties of this object
|
34339
|
+
def update!(**args)
|
34340
|
+
@cloud_armor_tier = args[:cloud_armor_tier] if args.key?(:cloud_armor_tier)
|
34341
|
+
end
|
34342
|
+
end
|
34343
|
+
|
34209
34344
|
#
|
34210
34345
|
class ProjectsSetDefaultNetworkTierRequest
|
34211
34346
|
include Google::Apis::Core::Hashable
|
@@ -42643,6 +42778,11 @@ module Google
|
|
42643
42778
|
# @return [String]
|
42644
42779
|
attr_accessor :on_host_maintenance
|
42645
42780
|
|
42781
|
+
# Defines the behaviour for instances with the instance_termination_action STOP.
|
42782
|
+
# Corresponds to the JSON property `onInstanceStopAction`
|
42783
|
+
# @return [Google::Apis::ComputeAlpha::SchedulingOnInstanceStopAction]
|
42784
|
+
attr_accessor :on_instance_stop_action
|
42785
|
+
|
42646
42786
|
# Defines whether the instance is preemptible. This can only be set during
|
42647
42787
|
# instance creation or while the instance is stopped and therefore, in a `
|
42648
42788
|
# TERMINATED` state. See Instance Life Cycle for more information on the
|
@@ -42686,6 +42826,7 @@ module Google
|
|
42686
42826
|
@min_node_cpus = args[:min_node_cpus] if args.key?(:min_node_cpus)
|
42687
42827
|
@node_affinities = args[:node_affinities] if args.key?(:node_affinities)
|
42688
42828
|
@on_host_maintenance = args[:on_host_maintenance] if args.key?(:on_host_maintenance)
|
42829
|
+
@on_instance_stop_action = args[:on_instance_stop_action] if args.key?(:on_instance_stop_action)
|
42689
42830
|
@preemptible = args[:preemptible] if args.key?(:preemptible)
|
42690
42831
|
@provisioning_model = args[:provisioning_model] if args.key?(:provisioning_model)
|
42691
42832
|
@termination_time = args[:termination_time] if args.key?(:termination_time)
|
@@ -42754,6 +42895,28 @@ module Google
|
|
42754
42895
|
end
|
42755
42896
|
end
|
42756
42897
|
|
42898
|
+
# Defines the behaviour for instances with the instance_termination_action STOP.
|
42899
|
+
class SchedulingOnInstanceStopAction
|
42900
|
+
include Google::Apis::Core::Hashable
|
42901
|
+
|
42902
|
+
# If true, the contents of any attached Local SSD disks will be discarded else,
|
42903
|
+
# the Local SSD data will be preserved when the instance is stopped at the end
|
42904
|
+
# of the run duration/termination time.
|
42905
|
+
# Corresponds to the JSON property `discardLocalSsd`
|
42906
|
+
# @return [Boolean]
|
42907
|
+
attr_accessor :discard_local_ssd
|
42908
|
+
alias_method :discard_local_ssd?, :discard_local_ssd
|
42909
|
+
|
42910
|
+
def initialize(**args)
|
42911
|
+
update!(**args)
|
42912
|
+
end
|
42913
|
+
|
42914
|
+
# Update properties of this object
|
42915
|
+
def update!(**args)
|
42916
|
+
@discard_local_ssd = args[:discard_local_ssd] if args.key?(:discard_local_ssd)
|
42917
|
+
end
|
42918
|
+
end
|
42919
|
+
|
42757
42920
|
# An instance's screenshot.
|
42758
42921
|
class Screenshot
|
42759
42922
|
include Google::Apis::Core::Hashable
|
@@ -45004,9 +45167,15 @@ module Google
|
|
45004
45167
|
# @return [String]
|
45005
45168
|
attr_accessor :producer_forwarding_rule
|
45006
45169
|
|
45007
|
-
# The number of
|
45008
|
-
#
|
45009
|
-
#
|
45170
|
+
# The number of consumer Network Connectivity Center spokes that connected
|
45171
|
+
# Private Service Connect endpoints can be propagated to. This limit lets a
|
45172
|
+
# service producer indirectly limit how many propagated Private Service Connect
|
45173
|
+
# connections can be established to the producer's service attachment. If the
|
45174
|
+
# connection preference of the service attachment is ACCEPT_MANUAL, the limit
|
45175
|
+
# applies to each project or network that is listed in the consumer accept list.
|
45176
|
+
# If the connection preference of the service attachment is ACCEPT_AUTOMATIC,
|
45177
|
+
# the limit applies to each project that contains a connected endpoint. If
|
45178
|
+
# unspecified, the default propagated connection limit is 250.
|
45010
45179
|
# Corresponds to the JSON property `propagatedConnectionLimit`
|
45011
45180
|
# @return [Fixnum]
|
45012
45181
|
attr_accessor :propagated_connection_limit
|
@@ -45223,6 +45392,12 @@ module Google
|
|
45223
45392
|
# @return [String]
|
45224
45393
|
attr_accessor :endpoint
|
45225
45394
|
|
45395
|
+
# The number of consumer Network Connectivity Center spokes that the connected
|
45396
|
+
# Private Service Connect endpoint has propagated to.
|
45397
|
+
# Corresponds to the JSON property `propagatedConnectionCount`
|
45398
|
+
# @return [Fixnum]
|
45399
|
+
attr_accessor :propagated_connection_count
|
45400
|
+
|
45226
45401
|
# The PSC connection id of the connected endpoint.
|
45227
45402
|
# Corresponds to the JSON property `pscConnectionId`
|
45228
45403
|
# @return [Fixnum]
|
@@ -45241,6 +45416,7 @@ module Google
|
|
45241
45416
|
def update!(**args)
|
45242
45417
|
@consumer_network = args[:consumer_network] if args.key?(:consumer_network)
|
45243
45418
|
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
45419
|
+
@propagated_connection_count = args[:propagated_connection_count] if args.key?(:propagated_connection_count)
|
45244
45420
|
@psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
|
45245
45421
|
@status = args[:status] if args.key?(:status)
|
45246
45422
|
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.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 = "20240220"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -940,6 +940,18 @@ module Google
|
|
940
940
|
include Google::Apis::Core::JsonObjectSupport
|
941
941
|
end
|
942
942
|
|
943
|
+
class DiskSettingsAccessLocation
|
944
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
945
|
+
|
946
|
+
include Google::Apis::Core::JsonObjectSupport
|
947
|
+
end
|
948
|
+
|
949
|
+
class DiskSettingsAccessLocationAccessLocationPreference
|
950
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
951
|
+
|
952
|
+
include Google::Apis::Core::JsonObjectSupport
|
953
|
+
end
|
954
|
+
|
943
955
|
class DiskSettingsResourcePolicyDetails
|
944
956
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
945
957
|
|
@@ -1996,6 +2008,12 @@ module Google
|
|
1996
2008
|
include Google::Apis::Core::JsonObjectSupport
|
1997
2009
|
end
|
1998
2010
|
|
2011
|
+
class InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix
|
2012
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2013
|
+
|
2014
|
+
include Google::Apis::Core::JsonObjectSupport
|
2015
|
+
end
|
2016
|
+
|
1999
2017
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
2000
2018
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2001
2019
|
|
@@ -4342,6 +4360,12 @@ module Google
|
|
4342
4360
|
include Google::Apis::Core::JsonObjectSupport
|
4343
4361
|
end
|
4344
4362
|
|
4363
|
+
class ProjectsSetCloudArmorTierRequest
|
4364
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4365
|
+
|
4366
|
+
include Google::Apis::Core::JsonObjectSupport
|
4367
|
+
end
|
4368
|
+
|
4345
4369
|
class ProjectsSetDefaultNetworkTierRequest
|
4346
4370
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
4347
4371
|
|
@@ -5542,6 +5566,12 @@ module Google
|
|
5542
5566
|
include Google::Apis::Core::JsonObjectSupport
|
5543
5567
|
end
|
5544
5568
|
|
5569
|
+
class SchedulingOnInstanceStopAction
|
5570
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5571
|
+
|
5572
|
+
include Google::Apis::Core::JsonObjectSupport
|
5573
|
+
end
|
5574
|
+
|
5545
5575
|
class Screenshot
|
5546
5576
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5547
5577
|
|
@@ -9370,11 +9400,28 @@ module Google
|
|
9370
9400
|
class DiskSettings
|
9371
9401
|
# @private
|
9372
9402
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9403
|
+
property :access_location, as: 'accessLocation', class: Google::Apis::ComputeAlpha::DiskSettingsAccessLocation, decorator: Google::Apis::ComputeAlpha::DiskSettingsAccessLocation::Representation
|
9404
|
+
|
9373
9405
|
hash :default_resource_policies, as: 'defaultResourcePolicies', class: Google::Apis::ComputeAlpha::DiskSettingsResourcePolicyDetails, decorator: Google::Apis::ComputeAlpha::DiskSettingsResourcePolicyDetails::Representation
|
9374
9406
|
|
9375
9407
|
end
|
9376
9408
|
end
|
9377
9409
|
|
9410
|
+
class DiskSettingsAccessLocation
|
9411
|
+
# @private
|
9412
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9413
|
+
hash :locations, as: 'locations', class: Google::Apis::ComputeAlpha::DiskSettingsAccessLocationAccessLocationPreference, decorator: Google::Apis::ComputeAlpha::DiskSettingsAccessLocationAccessLocationPreference::Representation
|
9414
|
+
|
9415
|
+
end
|
9416
|
+
end
|
9417
|
+
|
9418
|
+
class DiskSettingsAccessLocationAccessLocationPreference
|
9419
|
+
# @private
|
9420
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9421
|
+
property :region, as: 'region'
|
9422
|
+
end
|
9423
|
+
end
|
9424
|
+
|
9378
9425
|
class DiskSettingsResourcePolicyDetails
|
9379
9426
|
# @private
|
9380
9427
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10120,6 +10167,7 @@ module Google
|
|
10120
10167
|
property :self_link_with_id, as: 'selfLinkWithId'
|
10121
10168
|
property :share_settings, as: 'shareSettings', class: Google::Apis::ComputeAlpha::ShareSettings, decorator: Google::Apis::ComputeAlpha::ShareSettings::Representation
|
10122
10169
|
|
10170
|
+
property :specific_reservation_required, as: 'specificReservationRequired'
|
10123
10171
|
property :specific_sku_properties, as: 'specificSkuProperties', class: Google::Apis::ComputeAlpha::FutureReservationSpecificSkuProperties, decorator: Google::Apis::ComputeAlpha::FutureReservationSpecificSkuProperties::Representation
|
10124
10172
|
|
10125
10173
|
property :status, as: 'status', class: Google::Apis::ComputeAlpha::FutureReservationStatus, decorator: Google::Apis::ComputeAlpha::FutureReservationStatus::Representation
|
@@ -11524,6 +11572,8 @@ module Google
|
|
11524
11572
|
|
11525
11573
|
hash :instance_selections, as: 'instanceSelections', class: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection::Representation
|
11526
11574
|
|
11575
|
+
property :provisioning_model_mix, as: 'provisioningModelMix', class: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix::Representation
|
11576
|
+
|
11527
11577
|
end
|
11528
11578
|
end
|
11529
11579
|
|
@@ -11535,6 +11585,14 @@ module Google
|
|
11535
11585
|
end
|
11536
11586
|
end
|
11537
11587
|
|
11588
|
+
class InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix
|
11589
|
+
# @private
|
11590
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11591
|
+
property :standard_capacity_base, as: 'standardCapacityBase'
|
11592
|
+
property :standard_capacity_percent_above_base, as: 'standardCapacityPercentAboveBase'
|
11593
|
+
end
|
11594
|
+
end
|
11595
|
+
|
11538
11596
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
11539
11597
|
# @private
|
11540
11598
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -13825,6 +13883,7 @@ module Google
|
|
13825
13883
|
# @private
|
13826
13884
|
class Representation < Google::Apis::Core::JsonRepresentation
|
13827
13885
|
property :machine_type, as: 'machineType'
|
13886
|
+
property :provisioning_model, as: 'provisioningModel'
|
13828
13887
|
end
|
13829
13888
|
end
|
13830
13889
|
|
@@ -15775,6 +15834,7 @@ module Google
|
|
15775
15834
|
class Project
|
15776
15835
|
# @private
|
15777
15836
|
class Representation < Google::Apis::Core::JsonRepresentation
|
15837
|
+
property :cloud_armor_tier, as: 'cloudArmorTier'
|
15778
15838
|
property :common_instance_metadata, as: 'commonInstanceMetadata', class: Google::Apis::ComputeAlpha::Metadata, decorator: Google::Apis::ComputeAlpha::Metadata::Representation
|
15779
15839
|
|
15780
15840
|
property :creation_timestamp, as: 'creationTimestamp'
|
@@ -15830,6 +15890,13 @@ module Google
|
|
15830
15890
|
end
|
15831
15891
|
end
|
15832
15892
|
|
15893
|
+
class ProjectsSetCloudArmorTierRequest
|
15894
|
+
# @private
|
15895
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
15896
|
+
property :cloud_armor_tier, as: 'cloudArmorTier'
|
15897
|
+
end
|
15898
|
+
end
|
15899
|
+
|
15833
15900
|
class ProjectsSetDefaultNetworkTierRequest
|
15834
15901
|
# @private
|
15835
15902
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -17996,6 +18063,8 @@ module Google
|
|
17996
18063
|
collection :node_affinities, as: 'nodeAffinities', class: Google::Apis::ComputeAlpha::SchedulingNodeAffinity, decorator: Google::Apis::ComputeAlpha::SchedulingNodeAffinity::Representation
|
17997
18064
|
|
17998
18065
|
property :on_host_maintenance, as: 'onHostMaintenance'
|
18066
|
+
property :on_instance_stop_action, as: 'onInstanceStopAction', class: Google::Apis::ComputeAlpha::SchedulingOnInstanceStopAction, decorator: Google::Apis::ComputeAlpha::SchedulingOnInstanceStopAction::Representation
|
18067
|
+
|
17999
18068
|
property :preemptible, as: 'preemptible'
|
18000
18069
|
property :provisioning_model, as: 'provisioningModel'
|
18001
18070
|
property :termination_time, as: 'terminationTime'
|
@@ -18020,6 +18089,13 @@ module Google
|
|
18020
18089
|
end
|
18021
18090
|
end
|
18022
18091
|
|
18092
|
+
class SchedulingOnInstanceStopAction
|
18093
|
+
# @private
|
18094
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
18095
|
+
property :discard_local_ssd, as: 'discardLocalSsd'
|
18096
|
+
end
|
18097
|
+
end
|
18098
|
+
|
18023
18099
|
class Screenshot
|
18024
18100
|
# @private
|
18025
18101
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -18640,6 +18716,7 @@ module Google
|
|
18640
18716
|
class Representation < Google::Apis::Core::JsonRepresentation
|
18641
18717
|
property :consumer_network, as: 'consumerNetwork'
|
18642
18718
|
property :endpoint, as: 'endpoint'
|
18719
|
+
property :propagated_connection_count, as: 'propagatedConnectionCount'
|
18643
18720
|
property :psc_connection_id, :numeric_string => true, as: 'pscConnectionId'
|
18644
18721
|
property :status, as: 'status'
|
18645
18722
|
end
|