google-apis-compute_alpha 0.21.0 → 0.22.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: b884fb2cb00cfe27b0a68ab41a4c1a093593278588033e47012d6cbddde16704
|
4
|
+
data.tar.gz: 553366d2f1e17298a845a07bba5ce617bf0dccd1e78ce70e5bc7a1cd58ff46f5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 42088dc66b22a99da0afac2c1bf9398246577707605eaef845f38ac56998496ed455537fcc9ca843c9ec8ee7970f09ec03e7562ed6b2c0355425f1f43afa0385
|
7
|
+
data.tar.gz: 68ead0561a44a0f528057cd6cea3ac3f3f8f0f5c035a11ad74e4f49e9f20f6a37655b61640c9fe3e145bf6cff49d3f5f48eb4685d03ad68db2a3d3bfea35edcb
|
data/CHANGELOG.md
CHANGED
@@ -470,15 +470,15 @@ module Google
|
|
470
470
|
class AccessConfig
|
471
471
|
include Google::Apis::Core::Hashable
|
472
472
|
|
473
|
-
#
|
474
|
-
#
|
473
|
+
# The first IPv6 address of the external IPv6 range associated with this
|
474
|
+
# instance, prefix length is stored in externalIpv6PrefixLength in
|
475
475
|
# ipv6AccessConfig. The field is output only, an IPv6 address from a subnetwork
|
476
476
|
# associated with the instance will be allocated dynamically.
|
477
477
|
# Corresponds to the JSON property `externalIpv6`
|
478
478
|
# @return [String]
|
479
479
|
attr_accessor :external_ipv6
|
480
480
|
|
481
|
-
#
|
481
|
+
# The prefix length of the external IPv6 range.
|
482
482
|
# Corresponds to the JSON property `externalIpv6PrefixLength`
|
483
483
|
# @return [Fixnum]
|
484
484
|
attr_accessor :external_ipv6_prefix_length
|
@@ -1614,6 +1614,17 @@ module Google
|
|
1614
1614
|
# @return [Google::Apis::ComputeAlpha::CustomerEncryptionKey]
|
1615
1615
|
attr_accessor :source_image_encryption_key
|
1616
1616
|
|
1617
|
+
# The source instant-snapshot to create this disk. When creating a new instance,
|
1618
|
+
# one of initializeParams.sourceSnapshot or initializeParams.
|
1619
|
+
# sourceInstantSnapshot initializeParams.sourceImage or disks.source is required
|
1620
|
+
# except for local SSD. To create a disk with a snapshot that you created,
|
1621
|
+
# specify the snapshot name in the following format: us-central1-a/
|
1622
|
+
# instantSnapshots/my-backup If the source instant-snapshot is deleted later,
|
1623
|
+
# this field will not be set.
|
1624
|
+
# Corresponds to the JSON property `sourceInstantSnapshot`
|
1625
|
+
# @return [String]
|
1626
|
+
attr_accessor :source_instant_snapshot
|
1627
|
+
|
1617
1628
|
# The source snapshot to create this disk. When creating a new instance, one of
|
1618
1629
|
# initializeParams.sourceSnapshot or initializeParams.sourceImage or disks.
|
1619
1630
|
# source is required except for local SSD. To create a disk with a snapshot that
|
@@ -1652,6 +1663,7 @@ module Google
|
|
1652
1663
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
1653
1664
|
@source_image = args[:source_image] if args.key?(:source_image)
|
1654
1665
|
@source_image_encryption_key = args[:source_image_encryption_key] if args.key?(:source_image_encryption_key)
|
1666
|
+
@source_instant_snapshot = args[:source_instant_snapshot] if args.key?(:source_instant_snapshot)
|
1655
1667
|
@source_snapshot = args[:source_snapshot] if args.key?(:source_snapshot)
|
1656
1668
|
@source_snapshot_encryption_key = args[:source_snapshot_encryption_key] if args.key?(:source_snapshot_encryption_key)
|
1657
1669
|
end
|
@@ -8845,6 +8857,14 @@ module Google
|
|
8845
8857
|
# @return [Array<String>]
|
8846
8858
|
attr_accessor :dest_ip_ranges
|
8847
8859
|
|
8860
|
+
# Region codes whose IP addresses will be used to match for destination of
|
8861
|
+
# traffic. Should be specified as 2 letter country code defined as per ISO 3166
|
8862
|
+
# alpha-2 country codes. ex."US" Maximum number of dest region codes allowed is
|
8863
|
+
# 5000.
|
8864
|
+
# Corresponds to the JSON property `destRegionCodes`
|
8865
|
+
# @return [Array<String>]
|
8866
|
+
attr_accessor :dest_region_codes
|
8867
|
+
|
8848
8868
|
# Pairs of IP protocols and ports that the rule should match.
|
8849
8869
|
# Corresponds to the JSON property `layer4Configs`
|
8850
8870
|
# @return [Array<Google::Apis::ComputeAlpha::FirewallPolicyRuleMatcherLayer4Config>]
|
@@ -8867,6 +8887,13 @@ module Google
|
|
8867
8887
|
# @return [Array<String>]
|
8868
8888
|
attr_accessor :src_ip_ranges
|
8869
8889
|
|
8890
|
+
# Region codes whose IP addresses will be used to match for source of traffic.
|
8891
|
+
# Should be specified as 2 letter country code defined as per ISO 3166 alpha-2
|
8892
|
+
# country codes. ex."US" Maximum number of source region codes allowed is 5000.
|
8893
|
+
# Corresponds to the JSON property `srcRegionCodes`
|
8894
|
+
# @return [Array<String>]
|
8895
|
+
attr_accessor :src_region_codes
|
8896
|
+
|
8870
8897
|
# List of secure tag values, which should be matched at the source of the
|
8871
8898
|
# traffic. For INGRESS rule, if all the srcSecureTag are INEFFECTIVE, and there
|
8872
8899
|
# is no srcIpRange, this rule will be ignored. Maximum number of source tag
|
@@ -8884,10 +8911,12 @@ module Google
|
|
8884
8911
|
@dest_address_groups = args[:dest_address_groups] if args.key?(:dest_address_groups)
|
8885
8912
|
@dest_fqdns = args[:dest_fqdns] if args.key?(:dest_fqdns)
|
8886
8913
|
@dest_ip_ranges = args[:dest_ip_ranges] if args.key?(:dest_ip_ranges)
|
8914
|
+
@dest_region_codes = args[:dest_region_codes] if args.key?(:dest_region_codes)
|
8887
8915
|
@layer4_configs = args[:layer4_configs] if args.key?(:layer4_configs)
|
8888
8916
|
@src_address_groups = args[:src_address_groups] if args.key?(:src_address_groups)
|
8889
8917
|
@src_fqdns = args[:src_fqdns] if args.key?(:src_fqdns)
|
8890
8918
|
@src_ip_ranges = args[:src_ip_ranges] if args.key?(:src_ip_ranges)
|
8919
|
+
@src_region_codes = args[:src_region_codes] if args.key?(:src_region_codes)
|
8891
8920
|
@src_secure_tags = args[:src_secure_tags] if args.key?(:src_secure_tags)
|
8892
8921
|
end
|
8893
8922
|
end
|
@@ -9046,6 +9075,13 @@ module Google
|
|
9046
9075
|
attr_accessor :allow_global_access
|
9047
9076
|
alias_method :allow_global_access?, :allow_global_access
|
9048
9077
|
|
9078
|
+
# This is used in PSC consumer ForwardingRule to control whether the PSC
|
9079
|
+
# endpoint can be accessed from another region.
|
9080
|
+
# Corresponds to the JSON property `allowPscGlobalAccess`
|
9081
|
+
# @return [Boolean]
|
9082
|
+
attr_accessor :allow_psc_global_access
|
9083
|
+
alias_method :allow_psc_global_access?, :allow_psc_global_access
|
9084
|
+
|
9049
9085
|
# Identifies the backend service to which the forwarding rule sends traffic.
|
9050
9086
|
# Required for Internal TCP/UDP Load Balancing and Network Load Balancing; must
|
9051
9087
|
# be omitted for all other load balancer types.
|
@@ -9291,6 +9327,7 @@ module Google
|
|
9291
9327
|
@ip_protocol = args[:ip_protocol] if args.key?(:ip_protocol)
|
9292
9328
|
@all_ports = args[:all_ports] if args.key?(:all_ports)
|
9293
9329
|
@allow_global_access = args[:allow_global_access] if args.key?(:allow_global_access)
|
9330
|
+
@allow_psc_global_access = args[:allow_psc_global_access] if args.key?(:allow_psc_global_access)
|
9294
9331
|
@backend_service = args[:backend_service] if args.key?(:backend_service)
|
9295
9332
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
9296
9333
|
@description = args[:description] if args.key?(:description)
|
@@ -14042,6 +14079,11 @@ module Google
|
|
14042
14079
|
# @return [Google::Apis::ComputeAlpha::NetworkPerformanceConfig]
|
14043
14080
|
attr_accessor :network_performance_config
|
14044
14081
|
|
14082
|
+
# Additional instance params.
|
14083
|
+
# Corresponds to the JSON property `params`
|
14084
|
+
# @return [Google::Apis::ComputeAlpha::InstanceParams]
|
14085
|
+
attr_accessor :params
|
14086
|
+
|
14045
14087
|
# PostKeyRevocationActionType of the instance.
|
14046
14088
|
# Corresponds to the JSON property `postKeyRevocationActionType`
|
14047
14089
|
# @return [String]
|
@@ -14217,6 +14259,7 @@ module Google
|
|
14217
14259
|
@name = args[:name] if args.key?(:name)
|
14218
14260
|
@network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
|
14219
14261
|
@network_performance_config = args[:network_performance_config] if args.key?(:network_performance_config)
|
14262
|
+
@params = args[:params] if args.key?(:params)
|
14220
14263
|
@post_key_revocation_action_type = args[:post_key_revocation_action_type] if args.key?(:post_key_revocation_action_type)
|
14221
14264
|
@preserved_state_size_gb = args[:preserved_state_size_gb] if args.key?(:preserved_state_size_gb)
|
14222
14265
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
@@ -17178,6 +17221,28 @@ module Google
|
|
17178
17221
|
end
|
17179
17222
|
end
|
17180
17223
|
|
17224
|
+
# Additional instance params.
|
17225
|
+
class InstanceParams
|
17226
|
+
include Google::Apis::Core::Hashable
|
17227
|
+
|
17228
|
+
# Resource manager tags to be bound to the instance. Tag keys and values have
|
17229
|
+
# the same definition as resource manager tags. Keys must be in the format `
|
17230
|
+
# tagKeys/`tag_key_id``, and values are in the format `tagValues/456`. The field
|
17231
|
+
# is ignored (both PUT & PATCH) when empty.
|
17232
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
17233
|
+
# @return [Hash<String,String>]
|
17234
|
+
attr_accessor :resource_manager_tags
|
17235
|
+
|
17236
|
+
def initialize(**args)
|
17237
|
+
update!(**args)
|
17238
|
+
end
|
17239
|
+
|
17240
|
+
# Update properties of this object
|
17241
|
+
def update!(**args)
|
17242
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
17243
|
+
end
|
17244
|
+
end
|
17245
|
+
|
17181
17246
|
#
|
17182
17247
|
class InstanceProperties
|
17183
17248
|
include Google::Apis::Core::Hashable
|
@@ -17286,7 +17351,15 @@ module Google
|
|
17286
17351
|
# @return [Google::Apis::ComputeAlpha::ReservationAffinity]
|
17287
17352
|
attr_accessor :reservation_affinity
|
17288
17353
|
|
17289
|
-
# Resource
|
17354
|
+
# Resource manager tags to be bound to the instance. Tag keys and values have
|
17355
|
+
# the same definition as resource manager tags. Keys must be in the format `
|
17356
|
+
# tagKeys/`tag_key_id``, and values are in the format `tagValues/456`. The field
|
17357
|
+
# is ignored (both PUT & PATCH) when empty.
|
17358
|
+
# Corresponds to the JSON property `resourceManagerTags`
|
17359
|
+
# @return [Hash<String,String>]
|
17360
|
+
attr_accessor :resource_manager_tags
|
17361
|
+
|
17362
|
+
# Resource policies (names, not URLs) applied to instances created from these
|
17290
17363
|
# properties. Note that for MachineImage, this is not supported yet.
|
17291
17364
|
# Corresponds to the JSON property `resourcePolicies`
|
17292
17365
|
# @return [Array<String>]
|
@@ -17349,6 +17422,7 @@ module Google
|
|
17349
17422
|
@post_key_revocation_action_type = args[:post_key_revocation_action_type] if args.key?(:post_key_revocation_action_type)
|
17350
17423
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
17351
17424
|
@reservation_affinity = args[:reservation_affinity] if args.key?(:reservation_affinity)
|
17425
|
+
@resource_manager_tags = args[:resource_manager_tags] if args.key?(:resource_manager_tags)
|
17352
17426
|
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
17353
17427
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
17354
17428
|
@secure_tags = args[:secure_tags] if args.key?(:secure_tags)
|
@@ -18154,6 +18228,11 @@ module Google
|
|
18154
18228
|
# @return [String]
|
18155
18229
|
attr_accessor :region
|
18156
18230
|
|
18231
|
+
# [Output Only] Status information for the instant snapshot resource.
|
18232
|
+
# Corresponds to the JSON property `resourceStatus`
|
18233
|
+
# @return [Google::Apis::ComputeAlpha::InstantSnapshotResourceStatus]
|
18234
|
+
attr_accessor :resource_status
|
18235
|
+
|
18157
18236
|
# [Output Only] Reserved for future use.
|
18158
18237
|
# Corresponds to the JSON property `satisfiesPzs`
|
18159
18238
|
# @return [Boolean]
|
@@ -18219,6 +18298,7 @@ module Google
|
|
18219
18298
|
@labels = args[:labels] if args.key?(:labels)
|
18220
18299
|
@name = args[:name] if args.key?(:name)
|
18221
18300
|
@region = args[:region] if args.key?(:region)
|
18301
|
+
@resource_status = args[:resource_status] if args.key?(:resource_status)
|
18222
18302
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
18223
18303
|
@self_link = args[:self_link] if args.key?(:self_link)
|
18224
18304
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
@@ -18519,6 +18599,25 @@ module Google
|
|
18519
18599
|
end
|
18520
18600
|
end
|
18521
18601
|
|
18602
|
+
#
|
18603
|
+
class InstantSnapshotResourceStatus
|
18604
|
+
include Google::Apis::Core::Hashable
|
18605
|
+
|
18606
|
+
# [Output Only] The storage size of this instant snapshot.
|
18607
|
+
# Corresponds to the JSON property `storageSizeBytes`
|
18608
|
+
# @return [Fixnum]
|
18609
|
+
attr_accessor :storage_size_bytes
|
18610
|
+
|
18611
|
+
def initialize(**args)
|
18612
|
+
update!(**args)
|
18613
|
+
end
|
18614
|
+
|
18615
|
+
# Update properties of this object
|
18616
|
+
def update!(**args)
|
18617
|
+
@storage_size_bytes = args[:storage_size_bytes] if args.key?(:storage_size_bytes)
|
18618
|
+
end
|
18619
|
+
end
|
18620
|
+
|
18522
18621
|
#
|
18523
18622
|
class InstantSnapshotsExportRequest
|
18524
18623
|
include Google::Apis::Core::Hashable
|
@@ -24235,7 +24334,7 @@ module Google
|
|
24235
24334
|
# @return [String]
|
24236
24335
|
attr_accessor :fingerprint
|
24237
24336
|
|
24238
|
-
#
|
24337
|
+
# The prefix length of the primary internal IPv6 range.
|
24239
24338
|
# Corresponds to the JSON property `internalIpv6PrefixLength`
|
24240
24339
|
# @return [Fixnum]
|
24241
24340
|
attr_accessor :internal_ipv6_prefix_length
|
@@ -24254,7 +24353,7 @@ module Google
|
|
24254
24353
|
# @return [String]
|
24255
24354
|
attr_accessor :ipv6_access_type
|
24256
24355
|
|
24257
|
-
#
|
24356
|
+
# An IPv6 internal network address for this network interface.
|
24258
24357
|
# Corresponds to the JSON property `ipv6Address`
|
24259
24358
|
# @return [String]
|
24260
24359
|
attr_accessor :ipv6_address
|
@@ -25361,9 +25460,9 @@ module Google
|
|
25361
25460
|
attr_accessor :disks
|
25362
25461
|
|
25363
25462
|
# Instance data that shows consumed resources on the node.
|
25364
|
-
# Corresponds to the JSON property `
|
25463
|
+
# Corresponds to the JSON property `instanceConsumptionData`
|
25365
25464
|
# @return [Array<Google::Apis::ComputeAlpha::InstanceConsumptionData>]
|
25366
|
-
attr_accessor :
|
25465
|
+
attr_accessor :instance_consumption_data
|
25367
25466
|
|
25368
25467
|
# Instances scheduled on this node.
|
25369
25468
|
# Corresponds to the JSON property `instances`
|
@@ -25416,7 +25515,7 @@ module Google
|
|
25416
25515
|
@consumed_resources = args[:consumed_resources] if args.key?(:consumed_resources)
|
25417
25516
|
@cpu_overcommit_type = args[:cpu_overcommit_type] if args.key?(:cpu_overcommit_type)
|
25418
25517
|
@disks = args[:disks] if args.key?(:disks)
|
25419
|
-
@
|
25518
|
+
@instance_consumption_data = args[:instance_consumption_data] if args.key?(:instance_consumption_data)
|
25420
25519
|
@instances = args[:instances] if args.key?(:instances)
|
25421
25520
|
@name = args[:name] if args.key?(:name)
|
25422
25521
|
@node_type = args[:node_type] if args.key?(:node_type)
|
@@ -37655,7 +37754,7 @@ module Google
|
|
37655
37754
|
|
37656
37755
|
# If specified, the domain name will be used during the integration between the
|
37657
37756
|
# PSC connected endpoints and the Cloud DNS. For example, this is a valid domain
|
37658
|
-
# name: "p.mycompany.com".
|
37757
|
+
# name: "p.mycompany.com.". Current max number of domain names supported is 1.
|
37659
37758
|
# Corresponds to the JSON property `domainNames`
|
37660
37759
|
# @return [Array<String>]
|
37661
37760
|
attr_accessor :domain_names
|
@@ -38655,6 +38754,11 @@ module Google
|
|
38655
38754
|
# @return [Google::Apis::ComputeAlpha::CustomerEncryptionKey]
|
38656
38755
|
attr_accessor :snapshot_encryption_key
|
38657
38756
|
|
38757
|
+
# Indicates the type of the snapshot.
|
38758
|
+
# Corresponds to the JSON property `snapshotType`
|
38759
|
+
# @return [String]
|
38760
|
+
attr_accessor :snapshot_type
|
38761
|
+
|
38658
38762
|
# The source disk used to create this snapshot.
|
38659
38763
|
# Corresponds to the JSON property `sourceDisk`
|
38660
38764
|
# @return [String]
|
@@ -38751,6 +38855,7 @@ module Google
|
|
38751
38855
|
@self_link = args[:self_link] if args.key?(:self_link)
|
38752
38856
|
@self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
|
38753
38857
|
@snapshot_encryption_key = args[:snapshot_encryption_key] if args.key?(:snapshot_encryption_key)
|
38858
|
+
@snapshot_type = args[:snapshot_type] if args.key?(:snapshot_type)
|
38754
38859
|
@source_disk = args[:source_disk] if args.key?(:source_disk)
|
38755
38860
|
@source_disk_encryption_key = args[:source_disk_encryption_key] if args.key?(:source_disk_encryption_key)
|
38756
38861
|
@source_disk_id = args[:source_disk_id] if args.key?(:source_disk_id)
|
@@ -40374,7 +40479,7 @@ module Google
|
|
40374
40479
|
attr_accessor :ipv6_access_type
|
40375
40480
|
|
40376
40481
|
# [Output Only] The range of internal IPv6 addresses that are owned by this
|
40377
|
-
# subnetwork.
|
40482
|
+
# subnetwork. Note this will be for private google access only eventually.
|
40378
40483
|
# Corresponds to the JSON property `ipv6CidrRange`
|
40379
40484
|
# @return [String]
|
40380
40485
|
attr_accessor :ipv6_cidr_range
|
@@ -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.22.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 = "20211208"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2074,6 +2074,12 @@ module Google
|
|
2074
2074
|
include Google::Apis::Core::JsonObjectSupport
|
2075
2075
|
end
|
2076
2076
|
|
2077
|
+
class InstanceParams
|
2078
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2079
|
+
|
2080
|
+
include Google::Apis::Core::JsonObjectSupport
|
2081
|
+
end
|
2082
|
+
|
2077
2083
|
class InstanceProperties
|
2078
2084
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2079
2085
|
|
@@ -2266,6 +2272,12 @@ module Google
|
|
2266
2272
|
include Google::Apis::Core::JsonObjectSupport
|
2267
2273
|
end
|
2268
2274
|
|
2275
|
+
class InstantSnapshotResourceStatus
|
2276
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2277
|
+
|
2278
|
+
include Google::Apis::Core::JsonObjectSupport
|
2279
|
+
end
|
2280
|
+
|
2269
2281
|
class InstantSnapshotsExportRequest
|
2270
2282
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2271
2283
|
|
@@ -6668,6 +6680,7 @@ module Google
|
|
6668
6680
|
property :source_image, as: 'sourceImage'
|
6669
6681
|
property :source_image_encryption_key, as: 'sourceImageEncryptionKey', class: Google::Apis::ComputeAlpha::CustomerEncryptionKey, decorator: Google::Apis::ComputeAlpha::CustomerEncryptionKey::Representation
|
6670
6682
|
|
6683
|
+
property :source_instant_snapshot, as: 'sourceInstantSnapshot'
|
6671
6684
|
property :source_snapshot, as: 'sourceSnapshot'
|
6672
6685
|
property :source_snapshot_encryption_key, as: 'sourceSnapshotEncryptionKey', class: Google::Apis::ComputeAlpha::CustomerEncryptionKey, decorator: Google::Apis::ComputeAlpha::CustomerEncryptionKey::Representation
|
6673
6686
|
|
@@ -8299,11 +8312,13 @@ module Google
|
|
8299
8312
|
collection :dest_address_groups, as: 'destAddressGroups'
|
8300
8313
|
collection :dest_fqdns, as: 'destFqdns'
|
8301
8314
|
collection :dest_ip_ranges, as: 'destIpRanges'
|
8315
|
+
collection :dest_region_codes, as: 'destRegionCodes'
|
8302
8316
|
collection :layer4_configs, as: 'layer4Configs', class: Google::Apis::ComputeAlpha::FirewallPolicyRuleMatcherLayer4Config, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRuleMatcherLayer4Config::Representation
|
8303
8317
|
|
8304
8318
|
collection :src_address_groups, as: 'srcAddressGroups'
|
8305
8319
|
collection :src_fqdns, as: 'srcFqdns'
|
8306
8320
|
collection :src_ip_ranges, as: 'srcIpRanges'
|
8321
|
+
collection :src_region_codes, as: 'srcRegionCodes'
|
8307
8322
|
collection :src_secure_tags, as: 'srcSecureTags', class: Google::Apis::ComputeAlpha::FirewallPolicyRuleSecureTag, decorator: Google::Apis::ComputeAlpha::FirewallPolicyRuleSecureTag::Representation
|
8308
8323
|
|
8309
8324
|
end
|
@@ -8341,6 +8356,7 @@ module Google
|
|
8341
8356
|
property :ip_protocol, as: 'IPProtocol'
|
8342
8357
|
property :all_ports, as: 'allPorts'
|
8343
8358
|
property :allow_global_access, as: 'allowGlobalAccess'
|
8359
|
+
property :allow_psc_global_access, as: 'allowPscGlobalAccess'
|
8344
8360
|
property :backend_service, as: 'backendService'
|
8345
8361
|
property :creation_timestamp, as: 'creationTimestamp'
|
8346
8362
|
property :description, as: 'description'
|
@@ -9506,6 +9522,8 @@ module Google
|
|
9506
9522
|
|
9507
9523
|
property :network_performance_config, as: 'networkPerformanceConfig', class: Google::Apis::ComputeAlpha::NetworkPerformanceConfig, decorator: Google::Apis::ComputeAlpha::NetworkPerformanceConfig::Representation
|
9508
9524
|
|
9525
|
+
property :params, as: 'params', class: Google::Apis::ComputeAlpha::InstanceParams, decorator: Google::Apis::ComputeAlpha::InstanceParams::Representation
|
9526
|
+
|
9509
9527
|
property :post_key_revocation_action_type, as: 'postKeyRevocationActionType'
|
9510
9528
|
property :preserved_state_size_gb, :numeric_string => true, as: 'preservedStateSizeGb'
|
9511
9529
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
@@ -10329,6 +10347,13 @@ module Google
|
|
10329
10347
|
end
|
10330
10348
|
end
|
10331
10349
|
|
10350
|
+
class InstanceParams
|
10351
|
+
# @private
|
10352
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10353
|
+
hash :resource_manager_tags, as: 'resourceManagerTags'
|
10354
|
+
end
|
10355
|
+
end
|
10356
|
+
|
10332
10357
|
class InstanceProperties
|
10333
10358
|
# @private
|
10334
10359
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -10358,6 +10383,7 @@ module Google
|
|
10358
10383
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
10359
10384
|
property :reservation_affinity, as: 'reservationAffinity', class: Google::Apis::ComputeAlpha::ReservationAffinity, decorator: Google::Apis::ComputeAlpha::ReservationAffinity::Representation
|
10360
10385
|
|
10386
|
+
hash :resource_manager_tags, as: 'resourceManagerTags'
|
10361
10387
|
collection :resource_policies, as: 'resourcePolicies'
|
10362
10388
|
property :scheduling, as: 'scheduling', class: Google::Apis::ComputeAlpha::Scheduling, decorator: Google::Apis::ComputeAlpha::Scheduling::Representation
|
10363
10389
|
|
@@ -10603,6 +10629,8 @@ module Google
|
|
10603
10629
|
hash :labels, as: 'labels'
|
10604
10630
|
property :name, as: 'name'
|
10605
10631
|
property :region, as: 'region'
|
10632
|
+
property :resource_status, as: 'resourceStatus', class: Google::Apis::ComputeAlpha::InstantSnapshotResourceStatus, decorator: Google::Apis::ComputeAlpha::InstantSnapshotResourceStatus::Representation
|
10633
|
+
|
10606
10634
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
10607
10635
|
property :self_link, as: 'selfLink'
|
10608
10636
|
property :self_link_with_id, as: 'selfLinkWithId'
|
@@ -10690,6 +10718,13 @@ module Google
|
|
10690
10718
|
end
|
10691
10719
|
end
|
10692
10720
|
|
10721
|
+
class InstantSnapshotResourceStatus
|
10722
|
+
# @private
|
10723
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
10724
|
+
property :storage_size_bytes, :numeric_string => true, as: 'storageSizeBytes'
|
10725
|
+
end
|
10726
|
+
end
|
10727
|
+
|
10693
10728
|
class InstantSnapshotsExportRequest
|
10694
10729
|
# @private
|
10695
10730
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -12385,7 +12420,7 @@ module Google
|
|
12385
12420
|
property :cpu_overcommit_type, as: 'cpuOvercommitType'
|
12386
12421
|
collection :disks, as: 'disks', class: Google::Apis::ComputeAlpha::LocalDisk, decorator: Google::Apis::ComputeAlpha::LocalDisk::Representation
|
12387
12422
|
|
12388
|
-
collection :
|
12423
|
+
collection :instance_consumption_data, as: 'instanceConsumptionData', class: Google::Apis::ComputeAlpha::InstanceConsumptionData, decorator: Google::Apis::ComputeAlpha::InstanceConsumptionData::Representation
|
12389
12424
|
|
12390
12425
|
collection :instances, as: 'instances'
|
12391
12426
|
property :name, as: 'name'
|
@@ -15804,6 +15839,7 @@ module Google
|
|
15804
15839
|
property :self_link_with_id, as: 'selfLinkWithId'
|
15805
15840
|
property :snapshot_encryption_key, as: 'snapshotEncryptionKey', class: Google::Apis::ComputeAlpha::CustomerEncryptionKey, decorator: Google::Apis::ComputeAlpha::CustomerEncryptionKey::Representation
|
15806
15841
|
|
15842
|
+
property :snapshot_type, as: 'snapshotType'
|
15807
15843
|
property :source_disk, as: 'sourceDisk'
|
15808
15844
|
property :source_disk_encryption_key, as: 'sourceDiskEncryptionKey', class: Google::Apis::ComputeAlpha::CustomerEncryptionKey, decorator: Google::Apis::ComputeAlpha::CustomerEncryptionKey::Representation
|
15809
15845
|
|
@@ -2810,7 +2810,10 @@ module Google
|
|
2810
2810
|
execute_or_queue_command(command, &block)
|
2811
2811
|
end
|
2812
2812
|
|
2813
|
-
# Creates a snapshot of a specified persistent disk.
|
2813
|
+
# Creates a snapshot of a specified persistent disk. For regular snapshot
|
2814
|
+
# creation, consider using snapshots.insert instead, as that method supports
|
2815
|
+
# more features, such as creating snapshots in a project different from the
|
2816
|
+
# source disk project.
|
2814
2817
|
# @param [String] project
|
2815
2818
|
# Project ID for this request.
|
2816
2819
|
# @param [String] zone
|
@@ -3386,8 +3389,8 @@ module Google
|
|
3386
3389
|
execute_or_queue_command(command, &block)
|
3387
3390
|
end
|
3388
3391
|
|
3389
|
-
#
|
3390
|
-
# performed only on selected fields included as part of update-mask. Only the
|
3392
|
+
# Updates the specified disk with the data included in the request. The update
|
3393
|
+
# is performed only on selected fields included as part of update-mask. Only the
|
3391
3394
|
# following fields can be modified: user_license.
|
3392
3395
|
# @param [String] project
|
3393
3396
|
# Project ID for this request.
|
@@ -7365,8 +7368,7 @@ module Google
|
|
7365
7368
|
# operation with the same request ID was received, and if so, will ignore the
|
7366
7369
|
# second request. This prevents clients from accidentally creating duplicate
|
7367
7370
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
7368
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
7369
|
-
# MixerMutationRequestBuilder
|
7371
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
7370
7372
|
# @param [String] fields
|
7371
7373
|
# Selector specifying which fields to include in a partial response.
|
7372
7374
|
# @param [String] quota_user
|
@@ -7449,8 +7451,7 @@ module Google
|
|
7449
7451
|
# operation with the same request ID was received, and if so, will ignore the
|
7450
7452
|
# second request. This prevents clients from accidentally creating duplicate
|
7451
7453
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
7452
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
7453
|
-
# MixerMutationRequestBuilder
|
7454
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
7454
7455
|
# @param [String] fields
|
7455
7456
|
# Selector specifying which fields to include in a partial response.
|
7456
7457
|
# @param [String] quota_user
|
@@ -7578,8 +7579,7 @@ module Google
|
|
7578
7579
|
# operation with the same request ID was received, and if so, will ignore the
|
7579
7580
|
# second request. This prevents clients from accidentally creating duplicate
|
7580
7581
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
7581
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
7582
|
-
# MixerMutationRequestBuilder
|
7582
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
7583
7583
|
# @param [String] fields
|
7584
7584
|
# Selector specifying which fields to include in a partial response.
|
7585
7585
|
# @param [String] quota_user
|
@@ -10775,20 +10775,17 @@ module Google
|
|
10775
10775
|
# stopInstances operation is marked DONE if the stopInstances request is
|
10776
10776
|
# successful. The underlying actions take additional time. You must separately
|
10777
10777
|
# verify the status of the STOPPING action with the listmanagedinstances method.
|
10778
|
-
# If the
|
10779
|
-
# the
|
10780
|
-
#
|
10781
|
-
#
|
10782
|
-
#
|
10783
|
-
#
|
10784
|
-
#
|
10785
|
-
#
|
10786
|
-
#
|
10787
|
-
#
|
10788
|
-
#
|
10789
|
-
# after the connection draining duration has elapsed before the VM instance is
|
10790
|
-
# suspended. Stopped instances can be started using the startInstances method.
|
10791
|
-
# You can specify a maximum of 1000 instances with this method per request.
|
10778
|
+
# If the standbyPolicy.initialDelaySec field is set, the group delays stopping
|
10779
|
+
# the instances until initialDelaySec have passed from instance.
|
10780
|
+
# creationTimestamp (that is, when the instance was created). This delay gives
|
10781
|
+
# your application time to set itself up and initialize on the instance. If more
|
10782
|
+
# than initialDelaySec seconds have passed since instance.creationTimestamp when
|
10783
|
+
# this method is called, there will be zero delay. If the group is part of a
|
10784
|
+
# backend service that has enabled connection draining, it can take up to 60
|
10785
|
+
# seconds after the connection draining duration has elapsed before the VM
|
10786
|
+
# instance is stopped. Stopped instances can be started using the startInstances
|
10787
|
+
# method. You can specify a maximum of 1000 instances with this method per
|
10788
|
+
# request.
|
10792
10789
|
# @param [String] project
|
10793
10790
|
# Project ID for this request.
|
10794
10791
|
# @param [String] zone
|
@@ -10848,21 +10845,17 @@ module Google
|
|
10848
10845
|
# suspendInstances operation is marked DONE if the suspendInstances request is
|
10849
10846
|
# successful. The underlying actions take additional time. You must separately
|
10850
10847
|
# verify the status of the SUSPENDING action with the listmanagedinstances
|
10851
|
-
# method. If the
|
10852
|
-
#
|
10853
|
-
# is
|
10854
|
-
#
|
10855
|
-
#
|
10856
|
-
#
|
10857
|
-
#
|
10858
|
-
#
|
10859
|
-
#
|
10860
|
-
#
|
10861
|
-
#
|
10862
|
-
# can take up to 60 seconds after the connection draining duration has elapsed
|
10863
|
-
# before the VM instance is suspended. Suspended instances can be resumed using
|
10864
|
-
# the resumeInstances method. You can specify a maximum of 1000 instances with
|
10865
|
-
# this method per request.
|
10848
|
+
# method. If the standbyPolicy.initialDelaySec field is set, the group delays
|
10849
|
+
# suspension of the instances until initialDelaySec have passed from instance.
|
10850
|
+
# creationTimestamp (that is, when the instance was created). This delay gives
|
10851
|
+
# your application time to set itself up and initialize on the instance. If more
|
10852
|
+
# than initialDelaySec seconds have passed since instance.creationTimestamp when
|
10853
|
+
# this method is called, there will be zero delay. If the group is part of a
|
10854
|
+
# backend service that has enabled connection draining, it can take up to 60
|
10855
|
+
# seconds after the connection draining duration has elapsed before the VM
|
10856
|
+
# instance is suspended. Suspended instances can be resumed using the
|
10857
|
+
# resumeInstances method. You can specify a maximum of 1000 instances with this
|
10858
|
+
# method per request.
|
10866
10859
|
# @param [String] project
|
10867
10860
|
# Project ID for this request.
|
10868
10861
|
# @param [String] zone
|
@@ -23095,8 +23088,7 @@ module Google
|
|
23095
23088
|
# operation with the same request ID was received, and if so, will ignore the
|
23096
23089
|
# second request. This prevents clients from accidentally creating duplicate
|
23097
23090
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
23098
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23099
|
-
# MixerMutationRequestBuilder
|
23091
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23100
23092
|
# @param [String] fields
|
23101
23093
|
# Selector specifying which fields to include in a partial response.
|
23102
23094
|
# @param [String] quota_user
|
@@ -23179,8 +23171,7 @@ module Google
|
|
23179
23171
|
# operation with the same request ID was received, and if so, will ignore the
|
23180
23172
|
# second request. This prevents clients from accidentally creating duplicate
|
23181
23173
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
23182
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23183
|
-
# MixerMutationRequestBuilder
|
23174
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23184
23175
|
# @param [String] fields
|
23185
23176
|
# Selector specifying which fields to include in a partial response.
|
23186
23177
|
# @param [String] quota_user
|
@@ -23308,8 +23299,7 @@ module Google
|
|
23308
23299
|
# operation with the same request ID was received, and if so, will ignore the
|
23309
23300
|
# second request. This prevents clients from accidentally creating duplicate
|
23310
23301
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
23311
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23312
|
-
# MixerMutationRequestBuilder
|
23302
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23313
23303
|
# @param [String] fields
|
23314
23304
|
# Selector specifying which fields to include in a partial response.
|
23315
23305
|
# @param [String] quota_user
|
@@ -23446,8 +23436,7 @@ module Google
|
|
23446
23436
|
# operation with the same request ID was received, and if so, will ignore the
|
23447
23437
|
# second request. This prevents clients from accidentally creating duplicate
|
23448
23438
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
23449
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23450
|
-
# MixerMutationRequestBuilder
|
23439
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23451
23440
|
# @param [String] fields
|
23452
23441
|
# Selector specifying which fields to include in a partial response.
|
23453
23442
|
# @param [String] quota_user
|
@@ -23536,8 +23525,7 @@ module Google
|
|
23536
23525
|
# operation with the same request ID was received, and if so, will ignore the
|
23537
23526
|
# second request. This prevents clients from accidentally creating duplicate
|
23538
23527
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
23539
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23540
|
-
# MixerMutationRequestBuilder
|
23528
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23541
23529
|
# @param [String] fields
|
23542
23530
|
# Selector specifying which fields to include in a partial response.
|
23543
23531
|
# @param [String] quota_user
|
@@ -23671,8 +23659,7 @@ module Google
|
|
23671
23659
|
# operation with the same request ID was received, and if so, will ignore the
|
23672
23660
|
# second request. This prevents clients from accidentally creating duplicate
|
23673
23661
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
23674
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23675
|
-
# MixerMutationRequestBuilder
|
23662
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
23676
23663
|
# @param [String] fields
|
23677
23664
|
# Selector specifying which fields to include in a partial response.
|
23678
23665
|
# @param [String] quota_user
|
@@ -25165,7 +25152,10 @@ module Google
|
|
25165
25152
|
execute_or_queue_command(command, &block)
|
25166
25153
|
end
|
25167
25154
|
|
25168
|
-
# Creates a snapshot of
|
25155
|
+
# Creates a snapshot of a specified persistent disk. For regular snapshot
|
25156
|
+
# creation, consider using snapshots.insert instead, as that method supports
|
25157
|
+
# more features, such as creating snapshots in a project different from the
|
25158
|
+
# source disk project.
|
25169
25159
|
# @param [String] project
|
25170
25160
|
# Project ID for this request.
|
25171
25161
|
# @param [String] region
|
@@ -27929,20 +27919,17 @@ module Google
|
|
27929
27919
|
# stopInstances operation is marked DONE if the stopInstances request is
|
27930
27920
|
# successful. The underlying actions take additional time. You must separately
|
27931
27921
|
# verify the status of the STOPPING action with the listmanagedinstances method.
|
27932
|
-
# If the
|
27933
|
-
# the
|
27934
|
-
#
|
27935
|
-
#
|
27936
|
-
#
|
27937
|
-
#
|
27938
|
-
#
|
27939
|
-
#
|
27940
|
-
#
|
27941
|
-
#
|
27942
|
-
#
|
27943
|
-
# after the connection draining duration has elapsed before the VM instance is
|
27944
|
-
# suspended. Stopped instances can be started using the startInstances method.
|
27945
|
-
# You can specify a maximum of 1000 instances with this method per request.
|
27922
|
+
# If the standbyPolicy.initialDelaySec field is set, the group delays stopping
|
27923
|
+
# the instances until initialDelaySec have passed from instance.
|
27924
|
+
# creationTimestamp (that is, when the instance was created). This delay gives
|
27925
|
+
# your application time to set itself up and initialize on the instance. If more
|
27926
|
+
# than initialDelaySec seconds have passed since instance.creationTimestamp when
|
27927
|
+
# this method is called, there will be zero delay. If the group is part of a
|
27928
|
+
# backend service that has enabled connection draining, it can take up to 60
|
27929
|
+
# seconds after the connection draining duration has elapsed before the VM
|
27930
|
+
# instance is stopped. Stopped instances can be started using the startInstances
|
27931
|
+
# method. You can specify a maximum of 1000 instances with this method per
|
27932
|
+
# request.
|
27946
27933
|
# @param [String] project
|
27947
27934
|
# Project ID for this request.
|
27948
27935
|
# @param [String] region
|
@@ -28002,21 +27989,17 @@ module Google
|
|
28002
27989
|
# suspendInstances operation is marked DONE if the suspendInstances request is
|
28003
27990
|
# successful. The underlying actions take additional time. You must separately
|
28004
27991
|
# verify the status of the SUSPENDING action with the listmanagedinstances
|
28005
|
-
# method. If the
|
28006
|
-
#
|
28007
|
-
# is
|
28008
|
-
#
|
28009
|
-
#
|
28010
|
-
#
|
28011
|
-
#
|
28012
|
-
#
|
28013
|
-
#
|
28014
|
-
#
|
28015
|
-
#
|
28016
|
-
# can take up to 60 seconds after the connection draining duration has elapsed
|
28017
|
-
# before the VM instance is suspended. Suspended instances can be resumed using
|
28018
|
-
# the resumeInstances method. You can specify a maximum of 1000 instances with
|
28019
|
-
# this method per request.
|
27992
|
+
# method. If the standbyPolicy.initialDelaySec field is set, the group delays
|
27993
|
+
# suspension of the instances until initialDelaySec have passed from instance.
|
27994
|
+
# creationTimestamp (that is, when the instance was created). This delay gives
|
27995
|
+
# your application time to set itself up and initialize on the instance. If more
|
27996
|
+
# than initialDelaySec seconds have passed since instance.creationTimestamp when
|
27997
|
+
# this method is called, there will be zero delay. If the group is part of a
|
27998
|
+
# backend service that has enabled connection draining, it can take up to 60
|
27999
|
+
# seconds after the connection draining duration has elapsed before the VM
|
28000
|
+
# instance is suspended. Suspended instances can be resumed using the
|
28001
|
+
# resumeInstances method. You can specify a maximum of 1000 instances with this
|
28002
|
+
# method per request.
|
28020
28003
|
# @param [String] project
|
28021
28004
|
# Project ID for this request.
|
28022
28005
|
# @param [String] region
|
@@ -30231,8 +30214,7 @@ module Google
|
|
30231
30214
|
# operation with the same request ID was received, and if so, will ignore the
|
30232
30215
|
# second request. This prevents clients from accidentally creating duplicate
|
30233
30216
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
30234
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
30235
|
-
# MixerMutationRequestBuilder
|
30217
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
30236
30218
|
# @param [String] fields
|
30237
30219
|
# Selector specifying which fields to include in a partial response.
|
30238
30220
|
# @param [String] quota_user
|
@@ -30321,8 +30303,7 @@ module Google
|
|
30321
30303
|
# operation with the same request ID was received, and if so, will ignore the
|
30322
30304
|
# second request. This prevents clients from accidentally creating duplicate
|
30323
30305
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
30324
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
30325
|
-
# MixerMutationRequestBuilder
|
30306
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
30326
30307
|
# @param [String] fields
|
30327
30308
|
# Selector specifying which fields to include in a partial response.
|
30328
30309
|
# @param [String] quota_user
|
@@ -30976,8 +30957,7 @@ module Google
|
|
30976
30957
|
# operation with the same request ID was received, and if so, will ignore the
|
30977
30958
|
# second request. This prevents clients from accidentally creating duplicate
|
30978
30959
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
30979
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
30980
|
-
# MixerMutationRequestBuilder
|
30960
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
30981
30961
|
# @param [String] fields
|
30982
30962
|
# Selector specifying which fields to include in a partial response.
|
30983
30963
|
# @param [String] quota_user
|
@@ -31067,8 +31047,7 @@ module Google
|
|
31067
31047
|
# operation with the same request ID was received, and if so, will ignore the
|
31068
31048
|
# second request. This prevents clients from accidentally creating duplicate
|
31069
31049
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
31070
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
31071
|
-
# MixerMutationRequestBuilder
|
31050
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
31072
31051
|
# @param [String] fields
|
31073
31052
|
# Selector specifying which fields to include in a partial response.
|
31074
31053
|
# @param [String] quota_user
|
@@ -32003,8 +31982,7 @@ module Google
|
|
32003
31982
|
# operation with the same request ID was received, and if so, will ignore the
|
32004
31983
|
# second request. This prevents clients from accidentally creating duplicate
|
32005
31984
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
32006
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
32007
|
-
# MixerMutationRequestBuilder
|
31985
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
32008
31986
|
# @param [String] fields
|
32009
31987
|
# Selector specifying which fields to include in a partial response.
|
32010
31988
|
# @param [String] quota_user
|
@@ -32094,8 +32072,7 @@ module Google
|
|
32094
32072
|
# operation with the same request ID was received, and if so, will ignore the
|
32095
32073
|
# second request. This prevents clients from accidentally creating duplicate
|
32096
32074
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
32097
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
32098
|
-
# MixerMutationRequestBuilder
|
32075
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
32099
32076
|
# @param [String] fields
|
32100
32077
|
# Selector specifying which fields to include in a partial response.
|
32101
32078
|
# @param [String] quota_user
|
@@ -32228,8 +32205,7 @@ module Google
|
|
32228
32205
|
# operation with the same request ID was received, and if so, will ignore the
|
32229
32206
|
# second request. This prevents clients from accidentally creating duplicate
|
32230
32207
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
32231
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
32232
|
-
# MixerMutationRequestBuilder
|
32208
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
32233
32209
|
# @param [String] fields
|
32234
32210
|
# Selector specifying which fields to include in a partial response.
|
32235
32211
|
# @param [String] quota_user
|
@@ -32282,8 +32258,7 @@ module Google
|
|
32282
32258
|
# operation with the same request ID was received, and if so, will ignore the
|
32283
32259
|
# second request. This prevents clients from accidentally creating duplicate
|
32284
32260
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
32285
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
32286
|
-
# MixerMutationRequestBuilder
|
32261
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
32287
32262
|
# @param [String] fields
|
32288
32263
|
# Selector specifying which fields to include in a partial response.
|
32289
32264
|
# @param [String] quota_user
|
@@ -35548,8 +35523,7 @@ module Google
|
|
35548
35523
|
# operation with the same request ID was received, and if so, will ignore the
|
35549
35524
|
# second request. This prevents clients from accidentally creating duplicate
|
35550
35525
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
35551
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
35552
|
-
# MixerMutationRequestBuilder
|
35526
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
35553
35527
|
# @param [String] fields
|
35554
35528
|
# Selector specifying which fields to include in a partial response.
|
35555
35529
|
# @param [String] quota_user
|
@@ -35681,8 +35655,7 @@ module Google
|
|
35681
35655
|
# operation with the same request ID was received, and if so, will ignore the
|
35682
35656
|
# second request. This prevents clients from accidentally creating duplicate
|
35683
35657
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
35684
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
35685
|
-
# MixerMutationRequestBuilder
|
35658
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
35686
35659
|
# @param [String] fields
|
35687
35660
|
# Selector specifying which fields to include in a partial response.
|
35688
35661
|
# @param [String] quota_user
|
@@ -35817,8 +35790,7 @@ module Google
|
|
35817
35790
|
# operation with the same request ID was received, and if so, will ignore the
|
35818
35791
|
# second request. This prevents clients from accidentally creating duplicate
|
35819
35792
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
35820
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
35821
|
-
# MixerMutationRequestBuilder
|
35793
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
35822
35794
|
# @param [String] fields
|
35823
35795
|
# Selector specifying which fields to include in a partial response.
|
35824
35796
|
# @param [String] quota_user
|
@@ -36068,7 +36040,9 @@ module Google
|
|
36068
36040
|
end
|
36069
36041
|
|
36070
36042
|
# Creates a snapshot in the specified project using the data included in the
|
36071
|
-
# request.
|
36043
|
+
# request. For regular snapshot creation, consider using this method instead of
|
36044
|
+
# disks.createSnapshot, as this method supports more features, such as creating
|
36045
|
+
# snapshots in a project different from the source disk project.
|
36072
36046
|
# @param [String] project
|
36073
36047
|
# Project ID for this request.
|
36074
36048
|
# @param [Google::Apis::ComputeAlpha::Snapshot] snapshot_object
|
@@ -36412,8 +36386,7 @@ module Google
|
|
36412
36386
|
# operation with the same request ID was received, and if so, will ignore the
|
36413
36387
|
# second request. This prevents clients from accidentally creating duplicate
|
36414
36388
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
36415
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
36416
|
-
# MixerMutationRequestBuilder
|
36389
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
36417
36390
|
# @param [String] fields
|
36418
36391
|
# Selector specifying which fields to include in a partial response.
|
36419
36392
|
# @param [String] quota_user
|
@@ -36497,8 +36470,7 @@ module Google
|
|
36497
36470
|
# operation with the same request ID was received, and if so, will ignore the
|
36498
36471
|
# second request. This prevents clients from accidentally creating duplicate
|
36499
36472
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
36500
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
36501
|
-
# MixerMutationRequestBuilder
|
36473
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
36502
36474
|
# @param [String] fields
|
36503
36475
|
# Selector specifying which fields to include in a partial response.
|
36504
36476
|
# @param [String] quota_user
|
@@ -37816,8 +37788,7 @@ module Google
|
|
37816
37788
|
# operation with the same request ID was received, and if so, will ignore the
|
37817
37789
|
# second request. This prevents clients from accidentally creating duplicate
|
37818
37790
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
37819
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
37820
|
-
# MixerMutationRequestBuilder
|
37791
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
37821
37792
|
# @param [String] fields
|
37822
37793
|
# Selector specifying which fields to include in a partial response.
|
37823
37794
|
# @param [String] quota_user
|
@@ -37900,8 +37871,7 @@ module Google
|
|
37900
37871
|
# operation with the same request ID was received, and if so, will ignore the
|
37901
37872
|
# second request. This prevents clients from accidentally creating duplicate
|
37902
37873
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
37903
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
37904
|
-
# MixerMutationRequestBuilder
|
37874
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
37905
37875
|
# @param [String] fields
|
37906
37876
|
# Selector specifying which fields to include in a partial response.
|
37907
37877
|
# @param [String] quota_user
|
@@ -38029,8 +37999,7 @@ module Google
|
|
38029
37999
|
# operation with the same request ID was received, and if so, will ignore the
|
38030
38000
|
# second request. This prevents clients from accidentally creating duplicate
|
38031
38001
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
38032
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
38033
|
-
# MixerMutationRequestBuilder
|
38002
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
38034
38003
|
# @param [String] fields
|
38035
38004
|
# Selector specifying which fields to include in a partial response.
|
38036
38005
|
# @param [String] quota_user
|
@@ -38417,8 +38386,7 @@ module Google
|
|
38417
38386
|
# operation with the same request ID was received, and if so, will ignore the
|
38418
38387
|
# second request. This prevents clients from accidentally creating duplicate
|
38419
38388
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
38420
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
38421
|
-
# MixerMutationRequestBuilder
|
38389
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
38422
38390
|
# @param [String] fields
|
38423
38391
|
# Selector specifying which fields to include in a partial response.
|
38424
38392
|
# @param [String] quota_user
|
@@ -38855,8 +38823,7 @@ module Google
|
|
38855
38823
|
# operation with the same request ID was received, and if so, will ignore the
|
38856
38824
|
# second request. This prevents clients from accidentally creating duplicate
|
38857
38825
|
# commitments. The request ID must be a valid UUID with the exception that zero
|
38858
|
-
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
38859
|
-
# MixerMutationRequestBuilder
|
38826
|
+
# UUID is not supported ( 00000000-0000-0000-0000-000000000000).
|
38860
38827
|
# @param [String] fields
|
38861
38828
|
# Selector specifying which fields to include in a partial response.
|
38862
38829
|
# @param [String] quota_user
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-compute_alpha
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.22.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: 2021-12-
|
11
|
+
date: 2021-12-13 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_alpha/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.22.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_alpha
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|