google-apis-compute_alpha 0.34.0 → 0.37.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 +13 -0
- data/lib/google/apis/compute_alpha/classes.rb +149 -26
- data/lib/google/apis/compute_alpha/gem_version.rb +3 -3
- data/lib/google/apis/compute_alpha/representations.rb +40 -1
- data/lib/google/apis/compute_alpha/service.rb +4594 -2910
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 39611c94e21b8d055f7fbb53f8d77be42afb8a57f3711d78463c7d10909bbe39
|
|
4
|
+
data.tar.gz: 5ab6cf86e01423a6a7bc10fdb1cb917af9bd9d43c52c9d80de7c61cef00cbcfb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eccb2a6da84d48b41fac4587c0f381e64d542f53febf1cc3b8753c17552657ffabbc5c3bd9838284f125be9384df34a2b36898345ffb4446f4e00891e24e74e7
|
|
7
|
+
data.tar.gz: 1604f2c8477b8a7dd4afb2ffa37271864f1ea6e78d91ce9e065ebcd81fd0380db5b321ddb677869033b5e80c2309c7e02628b20d3582d0f3538ef38fc1520af4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# Release history for google-apis-compute_alpha
|
|
2
2
|
|
|
3
|
+
### v0.37.0 (2022-06-10)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20220531
|
|
6
|
+
* Regenerated using generator version 0.5.0
|
|
7
|
+
|
|
8
|
+
### v0.36.0 (2022-05-25)
|
|
9
|
+
|
|
10
|
+
* Regenerated from discovery document revision 20220517
|
|
11
|
+
|
|
12
|
+
### v0.35.0 (2022-05-19)
|
|
13
|
+
|
|
14
|
+
* Regenerated from discovery document revision 20220510
|
|
15
|
+
|
|
3
16
|
### v0.34.0 (2022-05-11)
|
|
4
17
|
|
|
5
18
|
* Regenerated from discovery document revision 20220506
|
|
@@ -1265,7 +1265,7 @@ module Google
|
|
|
1265
1265
|
end
|
|
1266
1266
|
|
|
1267
1267
|
# This reservation type allows to pre allocate specific instance configuration.
|
|
1268
|
-
# Next ID:
|
|
1268
|
+
# Next ID: 6
|
|
1269
1269
|
class AllocationSpecificSkuReservation
|
|
1270
1270
|
include Google::Apis::Core::Hashable
|
|
1271
1271
|
|
|
@@ -3325,9 +3325,9 @@ module Google
|
|
|
3325
3325
|
# internal HTTP(S) load balancers and Traffic Director and requires
|
|
3326
3326
|
# GENERATED_COOKIE or HTTP_COOKIE session affinity. If set to 0, the cookie is
|
|
3327
3327
|
# non-persistent and lasts only until the end of the browser session (or
|
|
3328
|
-
# equivalent). The maximum allowed value is
|
|
3329
|
-
# the backend service is referenced by a URL map that is bound to target
|
|
3330
|
-
# proxy that has validateForProxyless field set to true.
|
|
3328
|
+
# equivalent). The maximum allowed value is two weeks (1,209,600). Not supported
|
|
3329
|
+
# when the backend service is referenced by a URL map that is bound to target
|
|
3330
|
+
# gRPC proxy that has validateForProxyless field set to true.
|
|
3331
3331
|
# Corresponds to the JSON property `affinityCookieTtlSec`
|
|
3332
3332
|
# @return [Fixnum]
|
|
3333
3333
|
attr_accessor :affinity_cookie_ttl_sec
|
|
@@ -3636,6 +3636,17 @@ module Google
|
|
|
3636
3636
|
# @return [Fixnum]
|
|
3637
3637
|
attr_accessor :timeout_sec
|
|
3638
3638
|
|
|
3639
|
+
# The network scope of the backends that can be added to the backend service.
|
|
3640
|
+
# This field can be either GLOBAL_VPC_NETWORK or REGIONAL_VPC_NETWORK. A backend
|
|
3641
|
+
# service with the VPC scope set to GLOBAL_VPC_NETWORK is only allowed to have
|
|
3642
|
+
# backends in global VPC networks. When the VPC scope is set to
|
|
3643
|
+
# REGIONAL_VPC_NETWORK the backend service is only allowed to have backends in
|
|
3644
|
+
# regional networks in the same scope as the backend service. Note: if not
|
|
3645
|
+
# specified then GLOBAL_VPC_NETWORK will be used.
|
|
3646
|
+
# Corresponds to the JSON property `vpcNetworkScope`
|
|
3647
|
+
# @return [String]
|
|
3648
|
+
attr_accessor :vpc_network_scope
|
|
3649
|
+
|
|
3639
3650
|
def initialize(**args)
|
|
3640
3651
|
update!(**args)
|
|
3641
3652
|
end
|
|
@@ -3683,6 +3694,7 @@ module Google
|
|
|
3683
3694
|
@session_affinity = args[:session_affinity] if args.key?(:session_affinity)
|
|
3684
3695
|
@subsetting = args[:subsetting] if args.key?(:subsetting)
|
|
3685
3696
|
@timeout_sec = args[:timeout_sec] if args.key?(:timeout_sec)
|
|
3697
|
+
@vpc_network_scope = args[:vpc_network_scope] if args.key?(:vpc_network_scope)
|
|
3686
3698
|
end
|
|
3687
3699
|
end
|
|
3688
3700
|
|
|
@@ -4469,7 +4481,7 @@ module Google
|
|
|
4469
4481
|
# service. The value of the field must be in [0, 1]. This configures the
|
|
4470
4482
|
# sampling rate of requests to the load balancer where 1.0 means all logged
|
|
4471
4483
|
# requests are reported and 0.0 means no logged requests are reported. The
|
|
4472
|
-
# default value is
|
|
4484
|
+
# default value is 0.0.
|
|
4473
4485
|
# Corresponds to the JSON property `sampleRate`
|
|
4474
4486
|
# @return [Float]
|
|
4475
4487
|
attr_accessor :sample_rate
|
|
@@ -11444,9 +11456,9 @@ module Google
|
|
|
11444
11456
|
# @return [Fixnum]
|
|
11445
11457
|
attr_accessor :timeout_sec
|
|
11446
11458
|
|
|
11447
|
-
# Specifies the type of the healthCheck, either TCP, SSL, HTTP, HTTPS or
|
|
11448
|
-
# Exactly one of the protocol-specific health check
|
|
11449
|
-
# which must match type field.
|
|
11459
|
+
# Specifies the type of the healthCheck, either TCP, SSL, HTTP, HTTPS, HTTP2 or
|
|
11460
|
+
# GRPC. Exactly one of the protocol-specific health check fields must be
|
|
11461
|
+
# specified, which must match type field.
|
|
11450
11462
|
# Corresponds to the JSON property `type`
|
|
11451
11463
|
# @return [String]
|
|
11452
11464
|
attr_accessor :type
|
|
@@ -13965,8 +13977,8 @@ module Google
|
|
|
13965
13977
|
# @return [String]
|
|
13966
13978
|
attr_accessor :source_snapshot_id
|
|
13967
13979
|
|
|
13968
|
-
# The type of the image used to create this disk. The default and only
|
|
13969
|
-
# RAW
|
|
13980
|
+
# The type of the image used to create this disk. The default and only valid
|
|
13981
|
+
# value is RAW.
|
|
13970
13982
|
# Corresponds to the JSON property `sourceType`
|
|
13971
13983
|
# @return [String]
|
|
13972
13984
|
attr_accessor :source_type
|
|
@@ -15316,8 +15328,8 @@ module Google
|
|
|
15316
15328
|
# @return [String]
|
|
15317
15329
|
attr_accessor :kind
|
|
15318
15330
|
|
|
15319
|
-
# Pagination behavior of listManagedInstances API method for this
|
|
15320
|
-
#
|
|
15331
|
+
# Pagination behavior of the listManagedInstances API method for this managed
|
|
15332
|
+
# instance group.
|
|
15321
15333
|
# Corresponds to the JSON property `listManagedInstancesResults`
|
|
15322
15334
|
# @return [String]
|
|
15323
15335
|
attr_accessor :list_managed_instances_results
|
|
@@ -19320,6 +19332,12 @@ module Google
|
|
|
19320
19332
|
# @return [Fixnum]
|
|
19321
19333
|
attr_accessor :provisioned_link_count
|
|
19322
19334
|
|
|
19335
|
+
# Indicates that this is a Cross-Cloud Interconnect. This field specifies the
|
|
19336
|
+
# location outside of Google's network that the interconnect is connected to.
|
|
19337
|
+
# Corresponds to the JSON property `remoteLocation`
|
|
19338
|
+
# @return [String]
|
|
19339
|
+
attr_accessor :remote_location
|
|
19340
|
+
|
|
19323
19341
|
# Target number of physical links in the link bundle, as requested by the
|
|
19324
19342
|
# customer.
|
|
19325
19343
|
# Corresponds to the JSON property `requestedLinkCount`
|
|
@@ -19384,6 +19402,7 @@ module Google
|
|
|
19384
19402
|
@operational_status = args[:operational_status] if args.key?(:operational_status)
|
|
19385
19403
|
@peer_ip_address = args[:peer_ip_address] if args.key?(:peer_ip_address)
|
|
19386
19404
|
@provisioned_link_count = args[:provisioned_link_count] if args.key?(:provisioned_link_count)
|
|
19405
|
+
@remote_location = args[:remote_location] if args.key?(:remote_location)
|
|
19387
19406
|
@requested_link_count = args[:requested_link_count] if args.key?(:requested_link_count)
|
|
19388
19407
|
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
|
19389
19408
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
@@ -32837,7 +32856,7 @@ module Google
|
|
|
32837
32856
|
attr_accessor :share_settings
|
|
32838
32857
|
|
|
32839
32858
|
# This reservation type allows to pre allocate specific instance configuration.
|
|
32840
|
-
# Next ID:
|
|
32859
|
+
# Next ID: 6
|
|
32841
32860
|
# Corresponds to the JSON property `specificReservation`
|
|
32842
32861
|
# @return [Google::Apis::ComputeAlpha::AllocationSpecificSkuReservation]
|
|
32843
32862
|
attr_accessor :specific_reservation
|
|
@@ -33440,6 +33459,11 @@ module Google
|
|
|
33440
33459
|
# @return [String]
|
|
33441
33460
|
attr_accessor :description
|
|
33442
33461
|
|
|
33462
|
+
# Resource policy for disk consistency groups.
|
|
33463
|
+
# Corresponds to the JSON property `diskConsistencyGroupPolicy`
|
|
33464
|
+
# @return [Google::Apis::ComputeAlpha::ResourcePolicyDiskConsistencyGroupPolicy]
|
|
33465
|
+
attr_accessor :disk_consistency_group_policy
|
|
33466
|
+
|
|
33443
33467
|
# A GroupPlacementPolicy specifies resource placement configuration. It
|
|
33444
33468
|
# specifies the failure bucket separation as well as network locality
|
|
33445
33469
|
# Corresponds to the JSON property `groupPlacementPolicy`
|
|
@@ -33522,6 +33546,7 @@ module Google
|
|
|
33522
33546
|
def update!(**args)
|
|
33523
33547
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
33524
33548
|
@description = args[:description] if args.key?(:description)
|
|
33549
|
+
@disk_consistency_group_policy = args[:disk_consistency_group_policy] if args.key?(:disk_consistency_group_policy)
|
|
33525
33550
|
@group_placement_policy = args[:group_placement_policy] if args.key?(:group_placement_policy)
|
|
33526
33551
|
@id = args[:id] if args.key?(:id)
|
|
33527
33552
|
@instance_schedule_policy = args[:instance_schedule_policy] if args.key?(:instance_schedule_policy)
|
|
@@ -33701,6 +33726,19 @@ module Google
|
|
|
33701
33726
|
end
|
|
33702
33727
|
end
|
|
33703
33728
|
|
|
33729
|
+
# Resource policy for disk consistency groups.
|
|
33730
|
+
class ResourcePolicyDiskConsistencyGroupPolicy
|
|
33731
|
+
include Google::Apis::Core::Hashable
|
|
33732
|
+
|
|
33733
|
+
def initialize(**args)
|
|
33734
|
+
update!(**args)
|
|
33735
|
+
end
|
|
33736
|
+
|
|
33737
|
+
# Update properties of this object
|
|
33738
|
+
def update!(**args)
|
|
33739
|
+
end
|
|
33740
|
+
end
|
|
33741
|
+
|
|
33704
33742
|
# A GroupPlacementPolicy specifies resource placement configuration. It
|
|
33705
33743
|
# specifies the failure bucket separation as well as network locality
|
|
33706
33744
|
class ResourcePolicyGroupPlacementPolicy
|
|
@@ -36764,8 +36802,8 @@ module Google
|
|
|
36764
36802
|
|
|
36765
36803
|
# Defines the maintenance behavior for this instance. For standard instances,
|
|
36766
36804
|
# the default behavior is MIGRATE. For preemptible instances, the default and
|
|
36767
|
-
# only possible behavior is TERMINATE. For more information, see Set VM
|
|
36768
|
-
#
|
|
36805
|
+
# only possible behavior is TERMINATE. For more information, see Set VM host
|
|
36806
|
+
# maintenance policy.
|
|
36769
36807
|
# Corresponds to the JSON property `onHostMaintenance`
|
|
36770
36808
|
# @return [String]
|
|
36771
36809
|
attr_accessor :on_host_maintenance
|
|
@@ -37352,6 +37390,11 @@ module Google
|
|
|
37352
37390
|
class SecurityPolicyAdaptiveProtectionConfig
|
|
37353
37391
|
include Google::Apis::Core::Hashable
|
|
37354
37392
|
|
|
37393
|
+
# Configuration options for Adaptive Protection auto-deploy feature.
|
|
37394
|
+
# Corresponds to the JSON property `autoDeployConfig`
|
|
37395
|
+
# @return [Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigAutoDeployConfig]
|
|
37396
|
+
attr_accessor :auto_deploy_config
|
|
37397
|
+
|
|
37355
37398
|
# Configuration options for L7 DDoS detection.
|
|
37356
37399
|
# Corresponds to the JSON property `layer7DdosDefenseConfig`
|
|
37357
37400
|
# @return [Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig]
|
|
@@ -37363,10 +37406,48 @@ module Google
|
|
|
37363
37406
|
|
|
37364
37407
|
# Update properties of this object
|
|
37365
37408
|
def update!(**args)
|
|
37409
|
+
@auto_deploy_config = args[:auto_deploy_config] if args.key?(:auto_deploy_config)
|
|
37366
37410
|
@layer7_ddos_defense_config = args[:layer7_ddos_defense_config] if args.key?(:layer7_ddos_defense_config)
|
|
37367
37411
|
end
|
|
37368
37412
|
end
|
|
37369
37413
|
|
|
37414
|
+
# Configuration options for Adaptive Protection auto-deploy feature.
|
|
37415
|
+
class SecurityPolicyAdaptiveProtectionConfigAutoDeployConfig
|
|
37416
|
+
include Google::Apis::Core::Hashable
|
|
37417
|
+
|
|
37418
|
+
#
|
|
37419
|
+
# Corresponds to the JSON property `confidenceThreshold`
|
|
37420
|
+
# @return [Float]
|
|
37421
|
+
attr_accessor :confidence_threshold
|
|
37422
|
+
|
|
37423
|
+
#
|
|
37424
|
+
# Corresponds to the JSON property `expirationSec`
|
|
37425
|
+
# @return [Fixnum]
|
|
37426
|
+
attr_accessor :expiration_sec
|
|
37427
|
+
|
|
37428
|
+
#
|
|
37429
|
+
# Corresponds to the JSON property `impactedBaselineThreshold`
|
|
37430
|
+
# @return [Float]
|
|
37431
|
+
attr_accessor :impacted_baseline_threshold
|
|
37432
|
+
|
|
37433
|
+
#
|
|
37434
|
+
# Corresponds to the JSON property `loadThreshold`
|
|
37435
|
+
# @return [Float]
|
|
37436
|
+
attr_accessor :load_threshold
|
|
37437
|
+
|
|
37438
|
+
def initialize(**args)
|
|
37439
|
+
update!(**args)
|
|
37440
|
+
end
|
|
37441
|
+
|
|
37442
|
+
# Update properties of this object
|
|
37443
|
+
def update!(**args)
|
|
37444
|
+
@confidence_threshold = args[:confidence_threshold] if args.key?(:confidence_threshold)
|
|
37445
|
+
@expiration_sec = args[:expiration_sec] if args.key?(:expiration_sec)
|
|
37446
|
+
@impacted_baseline_threshold = args[:impacted_baseline_threshold] if args.key?(:impacted_baseline_threshold)
|
|
37447
|
+
@load_threshold = args[:load_threshold] if args.key?(:load_threshold)
|
|
37448
|
+
end
|
|
37449
|
+
end
|
|
37450
|
+
|
|
37370
37451
|
# Configuration options for L7 DDoS detection.
|
|
37371
37452
|
class SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig
|
|
37372
37453
|
include Google::Apis::Core::Hashable
|
|
@@ -41193,16 +41274,6 @@ module Google
|
|
|
41193
41274
|
# @return [String]
|
|
41194
41275
|
attr_accessor :private_ipv6_google_access
|
|
41195
41276
|
|
|
41196
|
-
# Deprecated in favor of enable PrivateIpv6GoogleAccess on instance directly.
|
|
41197
|
-
# The service accounts can be used to selectively turn on Private IPv6 Google
|
|
41198
|
-
# Access only on the VMs primary service account matching the value. This value
|
|
41199
|
-
# only takes effect when PrivateIpv6GoogleAccess is
|
|
41200
|
-
# ENABLE_OUTBOUND_VM_ACCESS_TO_GOOGLE_FOR_SERVICE_ACCOUNTS or
|
|
41201
|
-
# ENABLE_BIDIRECTIONAL_ACCESS_TO_GOOGLE_FOR_SERVICE_ACCOUNTS.
|
|
41202
|
-
# Corresponds to the JSON property `privateIpv6GoogleAccessServiceAccounts`
|
|
41203
|
-
# @return [Array<String>]
|
|
41204
|
-
attr_accessor :private_ipv6_google_access_service_accounts
|
|
41205
|
-
|
|
41206
41277
|
# The purpose of the resource. This field can be either PRIVATE_RFC_1918 or
|
|
41207
41278
|
# INTERNAL_HTTPS_LOAD_BALANCER. A subnetwork with purpose set to
|
|
41208
41279
|
# INTERNAL_HTTPS_LOAD_BALANCER is a user-created subnetwork that is reserved for
|
|
@@ -41307,7 +41378,6 @@ module Google
|
|
|
41307
41378
|
@network = args[:network] if args.key?(:network)
|
|
41308
41379
|
@private_ip_google_access = args[:private_ip_google_access] if args.key?(:private_ip_google_access)
|
|
41309
41380
|
@private_ipv6_google_access = args[:private_ipv6_google_access] if args.key?(:private_ipv6_google_access)
|
|
41310
|
-
@private_ipv6_google_access_service_accounts = args[:private_ipv6_google_access_service_accounts] if args.key?(:private_ipv6_google_access_service_accounts)
|
|
41311
41381
|
@purpose = args[:purpose] if args.key?(:purpose)
|
|
41312
41382
|
@region = args[:region] if args.key?(:region)
|
|
41313
41383
|
@reserved_internal_range = args[:reserved_internal_range] if args.key?(:reserved_internal_range)
|
|
@@ -46349,21 +46419,68 @@ module Google
|
|
|
46349
46419
|
class UsableSubnetwork
|
|
46350
46420
|
include Google::Apis::Core::Hashable
|
|
46351
46421
|
|
|
46422
|
+
# [Output Only] The external IPv6 address range that is assigned to this
|
|
46423
|
+
# subnetwork.
|
|
46424
|
+
# Corresponds to the JSON property `externalIpv6Prefix`
|
|
46425
|
+
# @return [String]
|
|
46426
|
+
attr_accessor :external_ipv6_prefix
|
|
46427
|
+
|
|
46428
|
+
# [Output Only] The internal IPv6 address range that is assigned to this
|
|
46429
|
+
# subnetwork.
|
|
46430
|
+
# Corresponds to the JSON property `internalIpv6Prefix`
|
|
46431
|
+
# @return [String]
|
|
46432
|
+
attr_accessor :internal_ipv6_prefix
|
|
46433
|
+
|
|
46352
46434
|
# The range of internal addresses that are owned by this subnetwork.
|
|
46353
46435
|
# Corresponds to the JSON property `ipCidrRange`
|
|
46354
46436
|
# @return [String]
|
|
46355
46437
|
attr_accessor :ip_cidr_range
|
|
46356
46438
|
|
|
46439
|
+
# The access type of IPv6 address this subnet holds. It's immutable and can only
|
|
46440
|
+
# be specified during creation or the first time the subnet is updated into
|
|
46441
|
+
# IPV4_IPV6 dual stack.
|
|
46442
|
+
# Corresponds to the JSON property `ipv6AccessType`
|
|
46443
|
+
# @return [String]
|
|
46444
|
+
attr_accessor :ipv6_access_type
|
|
46445
|
+
|
|
46357
46446
|
# Network URL.
|
|
46358
46447
|
# Corresponds to the JSON property `network`
|
|
46359
46448
|
# @return [String]
|
|
46360
46449
|
attr_accessor :network
|
|
46361
46450
|
|
|
46451
|
+
# The purpose of the resource. This field can be either PRIVATE_RFC_1918 or
|
|
46452
|
+
# INTERNAL_HTTPS_LOAD_BALANCER. A subnetwork with purpose set to
|
|
46453
|
+
# INTERNAL_HTTPS_LOAD_BALANCER is a user-created subnetwork that is reserved for
|
|
46454
|
+
# Internal HTTP(S) Load Balancing. If unspecified, the purpose defaults to
|
|
46455
|
+
# PRIVATE_RFC_1918. The enableFlowLogs field isn't supported with the purpose
|
|
46456
|
+
# field set to INTERNAL_HTTPS_LOAD_BALANCER.
|
|
46457
|
+
# Corresponds to the JSON property `purpose`
|
|
46458
|
+
# @return [String]
|
|
46459
|
+
attr_accessor :purpose
|
|
46460
|
+
|
|
46461
|
+
# The role of subnetwork. Currently, this field is only used when purpose =
|
|
46462
|
+
# INTERNAL_HTTPS_LOAD_BALANCER. The value can be set to ACTIVE or BACKUP. An
|
|
46463
|
+
# ACTIVE subnetwork is one that is currently being used for Internal HTTP(S)
|
|
46464
|
+
# Load Balancing. A BACKUP subnetwork is one that is ready to be promoted to
|
|
46465
|
+
# ACTIVE or is currently draining. This field can be updated with a patch
|
|
46466
|
+
# request.
|
|
46467
|
+
# Corresponds to the JSON property `role`
|
|
46468
|
+
# @return [String]
|
|
46469
|
+
attr_accessor :role
|
|
46470
|
+
|
|
46362
46471
|
# Secondary IP ranges.
|
|
46363
46472
|
# Corresponds to the JSON property `secondaryIpRanges`
|
|
46364
46473
|
# @return [Array<Google::Apis::ComputeAlpha::UsableSubnetworkSecondaryRange>]
|
|
46365
46474
|
attr_accessor :secondary_ip_ranges
|
|
46366
46475
|
|
|
46476
|
+
# The stack type for the subnet. If set to IPV4_ONLY, new VMs in the subnet are
|
|
46477
|
+
# assigned IPv4 addresses only. If set to IPV4_IPV6, new VMs in the subnet can
|
|
46478
|
+
# be assigned both IPv4 and IPv6 addresses. If not specified, IPV4_ONLY is used.
|
|
46479
|
+
# This field can be both set at resource creation time and updated using patch.
|
|
46480
|
+
# Corresponds to the JSON property `stackType`
|
|
46481
|
+
# @return [String]
|
|
46482
|
+
attr_accessor :stack_type
|
|
46483
|
+
|
|
46367
46484
|
# Subnetwork URL.
|
|
46368
46485
|
# Corresponds to the JSON property `subnetwork`
|
|
46369
46486
|
# @return [String]
|
|
@@ -46375,9 +46492,15 @@ module Google
|
|
|
46375
46492
|
|
|
46376
46493
|
# Update properties of this object
|
|
46377
46494
|
def update!(**args)
|
|
46495
|
+
@external_ipv6_prefix = args[:external_ipv6_prefix] if args.key?(:external_ipv6_prefix)
|
|
46496
|
+
@internal_ipv6_prefix = args[:internal_ipv6_prefix] if args.key?(:internal_ipv6_prefix)
|
|
46378
46497
|
@ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
|
|
46498
|
+
@ipv6_access_type = args[:ipv6_access_type] if args.key?(:ipv6_access_type)
|
|
46379
46499
|
@network = args[:network] if args.key?(:network)
|
|
46500
|
+
@purpose = args[:purpose] if args.key?(:purpose)
|
|
46501
|
+
@role = args[:role] if args.key?(:role)
|
|
46380
46502
|
@secondary_ip_ranges = args[:secondary_ip_ranges] if args.key?(:secondary_ip_ranges)
|
|
46503
|
+
@stack_type = args[:stack_type] if args.key?(:stack_type)
|
|
46381
46504
|
@subnetwork = args[:subnetwork] if args.key?(:subnetwork)
|
|
46382
46505
|
end
|
|
46383
46506
|
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.37.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20220531"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -4408,6 +4408,12 @@ module Google
|
|
|
4408
4408
|
include Google::Apis::Core::JsonObjectSupport
|
|
4409
4409
|
end
|
|
4410
4410
|
|
|
4411
|
+
class ResourcePolicyDiskConsistencyGroupPolicy
|
|
4412
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4413
|
+
|
|
4414
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4415
|
+
end
|
|
4416
|
+
|
|
4411
4417
|
class ResourcePolicyGroupPlacementPolicy
|
|
4412
4418
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4413
4419
|
|
|
@@ -4858,6 +4864,12 @@ module Google
|
|
|
4858
4864
|
include Google::Apis::Core::JsonObjectSupport
|
|
4859
4865
|
end
|
|
4860
4866
|
|
|
4867
|
+
class SecurityPolicyAdaptiveProtectionConfigAutoDeployConfig
|
|
4868
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4869
|
+
|
|
4870
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4871
|
+
end
|
|
4872
|
+
|
|
4861
4873
|
class SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig
|
|
4862
4874
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4863
4875
|
|
|
@@ -7201,6 +7213,7 @@ module Google
|
|
|
7201
7213
|
property :subsetting, as: 'subsetting', class: Google::Apis::ComputeAlpha::Subsetting, decorator: Google::Apis::ComputeAlpha::Subsetting::Representation
|
|
7202
7214
|
|
|
7203
7215
|
property :timeout_sec, as: 'timeoutSec'
|
|
7216
|
+
property :vpc_network_scope, as: 'vpcNetworkScope'
|
|
7204
7217
|
end
|
|
7205
7218
|
end
|
|
7206
7219
|
|
|
@@ -10986,6 +10999,7 @@ module Google
|
|
|
10986
10999
|
property :operational_status, as: 'operationalStatus'
|
|
10987
11000
|
property :peer_ip_address, as: 'peerIpAddress'
|
|
10988
11001
|
property :provisioned_link_count, as: 'provisionedLinkCount'
|
|
11002
|
+
property :remote_location, as: 'remoteLocation'
|
|
10989
11003
|
property :requested_link_count, as: 'requestedLinkCount'
|
|
10990
11004
|
property :satisfies_pzs, as: 'satisfiesPzs'
|
|
10991
11005
|
property :self_link, as: 'selfLink'
|
|
@@ -14606,6 +14620,8 @@ module Google
|
|
|
14606
14620
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14607
14621
|
property :creation_timestamp, as: 'creationTimestamp'
|
|
14608
14622
|
property :description, as: 'description'
|
|
14623
|
+
property :disk_consistency_group_policy, as: 'diskConsistencyGroupPolicy', class: Google::Apis::ComputeAlpha::ResourcePolicyDiskConsistencyGroupPolicy, decorator: Google::Apis::ComputeAlpha::ResourcePolicyDiskConsistencyGroupPolicy::Representation
|
|
14624
|
+
|
|
14609
14625
|
property :group_placement_policy, as: 'groupPlacementPolicy', class: Google::Apis::ComputeAlpha::ResourcePolicyGroupPlacementPolicy, decorator: Google::Apis::ComputeAlpha::ResourcePolicyGroupPlacementPolicy::Representation
|
|
14610
14626
|
|
|
14611
14627
|
property :id, :numeric_string => true, as: 'id'
|
|
@@ -14669,6 +14685,12 @@ module Google
|
|
|
14669
14685
|
end
|
|
14670
14686
|
end
|
|
14671
14687
|
|
|
14688
|
+
class ResourcePolicyDiskConsistencyGroupPolicy
|
|
14689
|
+
# @private
|
|
14690
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14691
|
+
end
|
|
14692
|
+
end
|
|
14693
|
+
|
|
14672
14694
|
class ResourcePolicyGroupPlacementPolicy
|
|
14673
14695
|
# @private
|
|
14674
14696
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -15553,11 +15575,23 @@ module Google
|
|
|
15553
15575
|
class SecurityPolicyAdaptiveProtectionConfig
|
|
15554
15576
|
# @private
|
|
15555
15577
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15578
|
+
property :auto_deploy_config, as: 'autoDeployConfig', class: Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigAutoDeployConfig, decorator: Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigAutoDeployConfig::Representation
|
|
15579
|
+
|
|
15556
15580
|
property :layer7_ddos_defense_config, as: 'layer7DdosDefenseConfig', class: Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig, decorator: Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig::Representation
|
|
15557
15581
|
|
|
15558
15582
|
end
|
|
15559
15583
|
end
|
|
15560
15584
|
|
|
15585
|
+
class SecurityPolicyAdaptiveProtectionConfigAutoDeployConfig
|
|
15586
|
+
# @private
|
|
15587
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
15588
|
+
property :confidence_threshold, as: 'confidenceThreshold'
|
|
15589
|
+
property :expiration_sec, as: 'expirationSec'
|
|
15590
|
+
property :impacted_baseline_threshold, as: 'impactedBaselineThreshold'
|
|
15591
|
+
property :load_threshold, as: 'loadThreshold'
|
|
15592
|
+
end
|
|
15593
|
+
end
|
|
15594
|
+
|
|
15561
15595
|
class SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig
|
|
15562
15596
|
# @private
|
|
15563
15597
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -16520,7 +16554,6 @@ module Google
|
|
|
16520
16554
|
property :network, as: 'network'
|
|
16521
16555
|
property :private_ip_google_access, as: 'privateIpGoogleAccess'
|
|
16522
16556
|
property :private_ipv6_google_access, as: 'privateIpv6GoogleAccess'
|
|
16523
|
-
collection :private_ipv6_google_access_service_accounts, as: 'privateIpv6GoogleAccessServiceAccounts'
|
|
16524
16557
|
property :purpose, as: 'purpose'
|
|
16525
16558
|
property :region, as: 'region'
|
|
16526
16559
|
property :reserved_internal_range, as: 'reservedInternalRange'
|
|
@@ -17808,10 +17841,16 @@ module Google
|
|
|
17808
17841
|
class UsableSubnetwork
|
|
17809
17842
|
# @private
|
|
17810
17843
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
17844
|
+
property :external_ipv6_prefix, as: 'externalIpv6Prefix'
|
|
17845
|
+
property :internal_ipv6_prefix, as: 'internalIpv6Prefix'
|
|
17811
17846
|
property :ip_cidr_range, as: 'ipCidrRange'
|
|
17847
|
+
property :ipv6_access_type, as: 'ipv6AccessType'
|
|
17812
17848
|
property :network, as: 'network'
|
|
17849
|
+
property :purpose, as: 'purpose'
|
|
17850
|
+
property :role, as: 'role'
|
|
17813
17851
|
collection :secondary_ip_ranges, as: 'secondaryIpRanges', class: Google::Apis::ComputeAlpha::UsableSubnetworkSecondaryRange, decorator: Google::Apis::ComputeAlpha::UsableSubnetworkSecondaryRange::Representation
|
|
17814
17852
|
|
|
17853
|
+
property :stack_type, as: 'stackType'
|
|
17815
17854
|
property :subnetwork, as: 'subnetwork'
|
|
17816
17855
|
end
|
|
17817
17856
|
end
|