google-apis-compute_alpha 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 +4 -4
- data/CHANGELOG.md +9 -0
- data/OVERVIEW.md +2 -2
- data/lib/google/apis/compute_alpha/classes.rb +245 -43
- data/lib/google/apis/compute_alpha/gem_version.rb +3 -3
- data/lib/google/apis/compute_alpha/representations.rb +92 -0
- data/lib/google/apis/compute_alpha/service.rb +674 -223
- metadata +7 -7
@@ -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
|
|
@@ -6064,6 +6094,12 @@ module Google
|
|
6064
6094
|
include Google::Apis::Core::JsonObjectSupport
|
6065
6095
|
end
|
6066
6096
|
|
6097
|
+
class SnapshotResourceStatus
|
6098
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6099
|
+
|
6100
|
+
include Google::Apis::Core::JsonObjectSupport
|
6101
|
+
end
|
6102
|
+
|
6067
6103
|
class SnapshotSettings
|
6068
6104
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
6069
6105
|
|
@@ -9364,11 +9400,28 @@ module Google
|
|
9364
9400
|
class DiskSettings
|
9365
9401
|
# @private
|
9366
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
|
+
|
9367
9405
|
hash :default_resource_policies, as: 'defaultResourcePolicies', class: Google::Apis::ComputeAlpha::DiskSettingsResourcePolicyDetails, decorator: Google::Apis::ComputeAlpha::DiskSettingsResourcePolicyDetails::Representation
|
9368
9406
|
|
9369
9407
|
end
|
9370
9408
|
end
|
9371
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
|
+
|
9372
9425
|
class DiskSettingsResourcePolicyDetails
|
9373
9426
|
# @private
|
9374
9427
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10114,6 +10167,7 @@ module Google
|
|
10114
10167
|
property :self_link_with_id, as: 'selfLinkWithId'
|
10115
10168
|
property :share_settings, as: 'shareSettings', class: Google::Apis::ComputeAlpha::ShareSettings, decorator: Google::Apis::ComputeAlpha::ShareSettings::Representation
|
10116
10169
|
|
10170
|
+
property :specific_reservation_required, as: 'specificReservationRequired'
|
10117
10171
|
property :specific_sku_properties, as: 'specificSkuProperties', class: Google::Apis::ComputeAlpha::FutureReservationSpecificSkuProperties, decorator: Google::Apis::ComputeAlpha::FutureReservationSpecificSkuProperties::Representation
|
10118
10172
|
|
10119
10173
|
property :status, as: 'status', class: Google::Apis::ComputeAlpha::FutureReservationStatus, decorator: Google::Apis::ComputeAlpha::FutureReservationStatus::Representation
|
@@ -11518,6 +11572,8 @@ module Google
|
|
11518
11572
|
|
11519
11573
|
hash :instance_selections, as: 'instanceSelections', class: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyInstanceSelection::Representation
|
11520
11574
|
|
11575
|
+
property :provisioning_model_mix, as: 'provisioningModelMix', class: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix, decorator: Google::Apis::ComputeAlpha::InstanceGroupManagerInstanceFlexibilityPolicyProvisioningModelMix::Representation
|
11576
|
+
|
11521
11577
|
end
|
11522
11578
|
end
|
11523
11579
|
|
@@ -11529,6 +11585,14 @@ module Google
|
|
11529
11585
|
end
|
11530
11586
|
end
|
11531
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
|
+
|
11532
11596
|
class InstanceGroupManagerInstanceLifecyclePolicy
|
11533
11597
|
# @private
|
11534
11598
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -13819,6 +13883,7 @@ module Google
|
|
13819
13883
|
# @private
|
13820
13884
|
class Representation < Google::Apis::Core::JsonRepresentation
|
13821
13885
|
property :machine_type, as: 'machineType'
|
13886
|
+
property :provisioning_model, as: 'provisioningModel'
|
13822
13887
|
end
|
13823
13888
|
end
|
13824
13889
|
|
@@ -14446,6 +14511,7 @@ module Google
|
|
14446
14511
|
collection :alias_ip_ranges, as: 'aliasIpRanges', class: Google::Apis::ComputeAlpha::AliasIpRange, decorator: Google::Apis::ComputeAlpha::AliasIpRange::Representation
|
14447
14512
|
|
14448
14513
|
property :fingerprint, :base64 => true, as: 'fingerprint'
|
14514
|
+
property :igmp_query, as: 'igmpQuery'
|
14449
14515
|
property :internal_ipv6_prefix_length, as: 'internalIpv6PrefixLength'
|
14450
14516
|
collection :ipv6_access_configs, as: 'ipv6AccessConfigs', class: Google::Apis::ComputeAlpha::AccessConfig, decorator: Google::Apis::ComputeAlpha::AccessConfig::Representation
|
14451
14517
|
|
@@ -15768,6 +15834,7 @@ module Google
|
|
15768
15834
|
class Project
|
15769
15835
|
# @private
|
15770
15836
|
class Representation < Google::Apis::Core::JsonRepresentation
|
15837
|
+
property :cloud_armor_tier, as: 'cloudArmorTier'
|
15771
15838
|
property :common_instance_metadata, as: 'commonInstanceMetadata', class: Google::Apis::ComputeAlpha::Metadata, decorator: Google::Apis::ComputeAlpha::Metadata::Representation
|
15772
15839
|
|
15773
15840
|
property :creation_timestamp, as: 'creationTimestamp'
|
@@ -15823,6 +15890,13 @@ module Google
|
|
15823
15890
|
end
|
15824
15891
|
end
|
15825
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
|
+
|
15826
15900
|
class ProjectsSetDefaultNetworkTierRequest
|
15827
15901
|
# @private
|
15828
15902
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -17989,6 +18063,8 @@ module Google
|
|
17989
18063
|
collection :node_affinities, as: 'nodeAffinities', class: Google::Apis::ComputeAlpha::SchedulingNodeAffinity, decorator: Google::Apis::ComputeAlpha::SchedulingNodeAffinity::Representation
|
17990
18064
|
|
17991
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
|
+
|
17992
18068
|
property :preemptible, as: 'preemptible'
|
17993
18069
|
property :provisioning_model, as: 'provisioningModel'
|
17994
18070
|
property :termination_time, as: 'terminationTime'
|
@@ -18013,6 +18089,13 @@ module Google
|
|
18013
18089
|
end
|
18014
18090
|
end
|
18015
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
|
+
|
18016
18099
|
class Screenshot
|
18017
18100
|
# @private
|
18018
18101
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -18881,6 +18964,8 @@ module Google
|
|
18881
18964
|
property :max_retention_days, as: 'maxRetentionDays'
|
18882
18965
|
property :name, as: 'name'
|
18883
18966
|
property :region, as: 'region'
|
18967
|
+
property :resource_status, as: 'resourceStatus', class: Google::Apis::ComputeAlpha::SnapshotResourceStatus, decorator: Google::Apis::ComputeAlpha::SnapshotResourceStatus::Representation
|
18968
|
+
|
18884
18969
|
property :satisfies_pzi, as: 'satisfiesPzi'
|
18885
18970
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
18886
18971
|
property :self_link, as: 'selfLink'
|
@@ -18973,6 +19058,13 @@ module Google
|
|
18973
19058
|
end
|
18974
19059
|
end
|
18975
19060
|
|
19061
|
+
class SnapshotResourceStatus
|
19062
|
+
# @private
|
19063
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
19064
|
+
property :scheduled_deletion_time, as: 'scheduledDeletionTime'
|
19065
|
+
end
|
19066
|
+
end
|
19067
|
+
|
18976
19068
|
class SnapshotSettings
|
18977
19069
|
# @private
|
18978
19070
|
class Representation < Google::Apis::Core::JsonRepresentation
|