google-apis-compute_alpha 0.19.0 → 0.20.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 +4 -0
- data/lib/google/apis/compute_alpha/classes.rb +644 -454
- data/lib/google/apis/compute_alpha/gem_version.rb +2 -2
- data/lib/google/apis/compute_alpha/representations.rb +33 -1
- data/lib/google/apis/compute_alpha/service.rb +2369 -1777
- metadata +3 -3
@@ -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.20.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20211025"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1714,6 +1714,12 @@ module Google
|
|
1714
1714
|
include Google::Apis::Core::JsonObjectSupport
|
1715
1715
|
end
|
1716
1716
|
|
1717
|
+
class InstanceGroupManagerAutoHealingPolicyAutoHealingTriggers
|
1718
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1719
|
+
|
1720
|
+
include Google::Apis::Core::JsonObjectSupport
|
1721
|
+
end
|
1722
|
+
|
1717
1723
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
1718
1724
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1719
1725
|
|
@@ -6549,6 +6555,7 @@ module Google
|
|
6549
6555
|
class AllocationSpecificSkuReservation
|
6550
6556
|
# @private
|
6551
6557
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6558
|
+
property :assured_count, :numeric_string => true, as: 'assuredCount'
|
6552
6559
|
property :count, :numeric_string => true, as: 'count'
|
6553
6560
|
property :in_use_count, :numeric_string => true, as: 'inUseCount'
|
6554
6561
|
property :instance_properties, as: 'instanceProperties', class: Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocationReservedInstanceProperties, decorator: Google::Apis::ComputeAlpha::AllocationSpecificSkuAllocationReservedInstanceProperties::Representation
|
@@ -6588,6 +6595,7 @@ module Google
|
|
6588
6595
|
class AttachedDiskInitializeParams
|
6589
6596
|
# @private
|
6590
6597
|
class Representation < Google::Apis::Core::JsonRepresentation
|
6598
|
+
property :architecture, as: 'architecture'
|
6591
6599
|
property :description, as: 'description'
|
6592
6600
|
property :disk_name, as: 'diskName'
|
6593
6601
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
@@ -7602,6 +7610,7 @@ module Google
|
|
7602
7610
|
class Disk
|
7603
7611
|
# @private
|
7604
7612
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7613
|
+
property :architecture, as: 'architecture'
|
7605
7614
|
property :creation_timestamp, as: 'creationTimestamp'
|
7606
7615
|
property :description, as: 'description'
|
7607
7616
|
property :disk_encryption_key, as: 'diskEncryptionKey', class: Google::Apis::ComputeAlpha::CustomerEncryptionKey, decorator: Google::Apis::ComputeAlpha::CustomerEncryptionKey::Representation
|
@@ -9288,6 +9297,7 @@ module Google
|
|
9288
9297
|
class Image
|
9289
9298
|
# @private
|
9290
9299
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9300
|
+
property :architecture, as: 'architecture'
|
9291
9301
|
property :archive_size_bytes, :numeric_string => true, as: 'archiveSizeBytes'
|
9292
9302
|
property :creation_timestamp, as: 'creationTimestamp'
|
9293
9303
|
property :deprecated, as: 'deprecated', class: Google::Apis::ComputeAlpha::DeprecationStatus, decorator: Google::Apis::ComputeAlpha::DeprecationStatus::Representation
|
@@ -9422,6 +9432,7 @@ module Google
|
|
9422
9432
|
property :id, :numeric_string => true, as: 'id'
|
9423
9433
|
property :instance_encryption_key, as: 'instanceEncryptionKey', class: Google::Apis::ComputeAlpha::CustomerEncryptionKey, decorator: Google::Apis::ComputeAlpha::CustomerEncryptionKey::Representation
|
9424
9434
|
|
9435
|
+
property :key_revocation_action_type, as: 'keyRevocationActionType'
|
9425
9436
|
property :kind, as: 'kind'
|
9426
9437
|
property :label_fingerprint, :base64 => true, as: 'labelFingerprint'
|
9427
9438
|
hash :labels, as: 'labels'
|
@@ -9704,6 +9715,8 @@ module Google
|
|
9704
9715
|
class InstanceGroupManagerAutoHealingPolicy
|
9705
9716
|
# @private
|
9706
9717
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9718
|
+
property :auto_healing_triggers, as: 'autoHealingTriggers', class: Google::Apis::ComputeAlpha::InstanceGroupManagerAutoHealingPolicyAutoHealingTriggers, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerAutoHealingPolicyAutoHealingTriggers::Representation
|
9719
|
+
|
9707
9720
|
property :health_check, as: 'healthCheck'
|
9708
9721
|
property :initial_delay_sec, as: 'initialDelaySec'
|
9709
9722
|
property :max_unavailable, as: 'maxUnavailable', class: Google::Apis::ComputeAlpha::FixedOrPercent, decorator: Google::Apis::ComputeAlpha::FixedOrPercent::Representation
|
@@ -9712,6 +9725,13 @@ module Google
|
|
9712
9725
|
end
|
9713
9726
|
end
|
9714
9727
|
|
9728
|
+
class InstanceGroupManagerAutoHealingPolicyAutoHealingTriggers
|
9729
|
+
# @private
|
9730
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9731
|
+
property :on_health_check, as: 'onHealthCheck'
|
9732
|
+
end
|
9733
|
+
end
|
9734
|
+
|
9715
9735
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
9716
9736
|
# @private
|
9717
9737
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10247,6 +10267,7 @@ module Google
|
|
10247
10267
|
|
10248
10268
|
collection :guest_accelerators, as: 'guestAccelerators', class: Google::Apis::ComputeAlpha::AcceleratorConfig, decorator: Google::Apis::ComputeAlpha::AcceleratorConfig::Representation
|
10249
10269
|
|
10270
|
+
property :key_revocation_action_type, as: 'keyRevocationActionType'
|
10250
10271
|
hash :labels, as: 'labels'
|
10251
10272
|
property :machine_type, as: 'machineType'
|
10252
10273
|
property :metadata, as: 'metadata', class: Google::Apis::ComputeAlpha::Metadata, decorator: Google::Apis::ComputeAlpha::Metadata::Representation
|
@@ -10494,6 +10515,7 @@ module Google
|
|
10494
10515
|
class InstantSnapshot
|
10495
10516
|
# @private
|
10496
10517
|
class Representation < Google::Apis::Core::JsonRepresentation
|
10518
|
+
property :architecture, as: 'architecture'
|
10497
10519
|
property :creation_timestamp, as: 'creationTimestamp'
|
10498
10520
|
property :description, as: 'description'
|
10499
10521
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
@@ -13199,7 +13221,6 @@ module Google
|
|
13199
13221
|
collection :bindings, as: 'bindings', class: Google::Apis::ComputeAlpha::Binding, decorator: Google::Apis::ComputeAlpha::Binding::Representation
|
13200
13222
|
|
13201
13223
|
property :etag, :base64 => true, as: 'etag'
|
13202
|
-
property :iam_owned, as: 'iamOwned'
|
13203
13224
|
collection :rules, as: 'rules', class: Google::Apis::ComputeAlpha::Rule, decorator: Google::Apis::ComputeAlpha::Rule::Representation
|
13204
13225
|
|
13205
13226
|
property :version, as: 'version'
|
@@ -14783,6 +14804,7 @@ module Google
|
|
14783
14804
|
property :tcp_established_idle_timeout_sec, as: 'tcpEstablishedIdleTimeoutSec'
|
14784
14805
|
property :tcp_time_wait_timeout_sec, as: 'tcpTimeWaitTimeoutSec'
|
14785
14806
|
property :tcp_transitory_idle_timeout_sec, as: 'tcpTransitoryIdleTimeoutSec'
|
14807
|
+
property :type, as: 'type'
|
14786
14808
|
property :udp_idle_timeout_sec, as: 'udpIdleTimeoutSec'
|
14787
14809
|
end
|
14788
14810
|
end
|
@@ -14810,7 +14832,9 @@ module Google
|
|
14810
14832
|
# @private
|
14811
14833
|
class Representation < Google::Apis::Core::JsonRepresentation
|
14812
14834
|
collection :source_nat_active_ips, as: 'sourceNatActiveIps'
|
14835
|
+
collection :source_nat_active_ranges, as: 'sourceNatActiveRanges'
|
14813
14836
|
collection :source_nat_drain_ips, as: 'sourceNatDrainIps'
|
14837
|
+
collection :source_nat_drain_ranges, as: 'sourceNatDrainRanges'
|
14814
14838
|
end
|
14815
14839
|
end
|
14816
14840
|
|
@@ -15016,12 +15040,15 @@ module Google
|
|
15016
15040
|
property :location_hint, as: 'locationHint'
|
15017
15041
|
property :maintenance_freeze_duration_hours, as: 'maintenanceFreezeDurationHours'
|
15018
15042
|
property :maintenance_interval, as: 'maintenanceInterval'
|
15043
|
+
property :max_run_duration, as: 'maxRunDuration', class: Google::Apis::ComputeAlpha::Duration, decorator: Google::Apis::ComputeAlpha::Duration::Representation
|
15044
|
+
|
15019
15045
|
property :min_node_cpus, as: 'minNodeCpus'
|
15020
15046
|
collection :node_affinities, as: 'nodeAffinities', class: Google::Apis::ComputeAlpha::SchedulingNodeAffinity, decorator: Google::Apis::ComputeAlpha::SchedulingNodeAffinity::Representation
|
15021
15047
|
|
15022
15048
|
property :on_host_maintenance, as: 'onHostMaintenance'
|
15023
15049
|
property :preemptible, as: 'preemptible'
|
15024
15050
|
property :provisioning_model, as: 'provisioningModel'
|
15051
|
+
property :termination_time, as: 'terminationTime'
|
15025
15052
|
end
|
15026
15053
|
end
|
15027
15054
|
|
@@ -15423,6 +15450,7 @@ module Google
|
|
15423
15450
|
collection :consumer_reject_lists, as: 'consumerRejectLists'
|
15424
15451
|
property :creation_timestamp, as: 'creationTimestamp'
|
15425
15452
|
property :description, as: 'description'
|
15453
|
+
collection :domain_names, as: 'domainNames'
|
15426
15454
|
property :enable_proxy_protocol, as: 'enableProxyProtocol'
|
15427
15455
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
15428
15456
|
property :id, :numeric_string => true, as: 'id'
|
@@ -15659,6 +15687,7 @@ module Google
|
|
15659
15687
|
class Snapshot
|
15660
15688
|
# @private
|
15661
15689
|
class Representation < Google::Apis::Core::JsonRepresentation
|
15690
|
+
property :architecture, as: 'architecture'
|
15662
15691
|
property :auto_created, as: 'autoCreated'
|
15663
15692
|
property :chain_name, as: 'chainName'
|
15664
15693
|
property :creation_timestamp, as: 'creationTimestamp'
|
@@ -15754,6 +15783,7 @@ module Google
|
|
15754
15783
|
|
15755
15784
|
collection :guest_accelerators, as: 'guestAccelerators', class: Google::Apis::ComputeAlpha::AcceleratorConfig, decorator: Google::Apis::ComputeAlpha::AcceleratorConfig::Representation
|
15756
15785
|
|
15786
|
+
property :key_revocation_action_type, as: 'keyRevocationActionType'
|
15757
15787
|
hash :labels, as: 'labels'
|
15758
15788
|
property :machine_type, as: 'machineType'
|
15759
15789
|
property :metadata, as: 'metadata', class: Google::Apis::ComputeAlpha::Metadata, decorator: Google::Apis::ComputeAlpha::Metadata::Representation
|
@@ -17130,6 +17160,7 @@ module Google
|
|
17130
17160
|
class UpcomingMaintenance
|
17131
17161
|
# @private
|
17132
17162
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17163
|
+
property :can_reschedule, as: 'canReschedule'
|
17133
17164
|
property :date, as: 'date'
|
17134
17165
|
property :start_time_window, as: 'startTimeWindow', class: Google::Apis::ComputeAlpha::UpcomingMaintenanceTimeWindow, decorator: Google::Apis::ComputeAlpha::UpcomingMaintenanceTimeWindow::Representation
|
17135
17166
|
|
@@ -17311,6 +17342,7 @@ module Google
|
|
17311
17342
|
class UrlMapsValidateRequest
|
17312
17343
|
# @private
|
17313
17344
|
class Representation < Google::Apis::Core::JsonRepresentation
|
17345
|
+
collection :load_balancing_schemes, as: 'loadBalancingSchemes'
|
17314
17346
|
property :resource, as: 'resource', class: Google::Apis::ComputeAlpha::UrlMap, decorator: Google::Apis::ComputeAlpha::UrlMap::Representation
|
17315
17347
|
|
17316
17348
|
end
|