google-apis-compute_alpha 0.64.0 → 0.65.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: cf79ce000f74ef1405dbca01e1b3c81b7a4ef400d62ae549a194361ead1c1af8
|
4
|
+
data.tar.gz: 1b039779d64aaa0426098eb3a33b4f339ef517cf3dcf7f8523056588575b47f9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cc2a494ac735a2cadc4e559bd5829c9ab9459a8fe208be002b6a7ce55be7cffeb9ffe18c1db5aa3d57711ba941a20a2fa3ad35896ad50c3b7d3fa4fd22fcbe71
|
7
|
+
data.tar.gz: a7126d7d9351c781954094c10be8885c8b0a0a865a325d1f6ac39f0122d1b81e795f8592a81abbae97cff2ca310a8b8386d245d87ba0c4c3d55f961dec5dd901
|
data/CHANGELOG.md
CHANGED
@@ -5273,13 +5273,6 @@ module Google
|
|
5273
5273
|
# @return [Fixnum]
|
5274
5274
|
attr_accessor :count
|
5275
5275
|
|
5276
|
-
# Represents an Instance resource. An instance is a virtual machine that is
|
5277
|
-
# hosted on Google Cloud Platform. For more information, read Virtual Machine
|
5278
|
-
# Instances.
|
5279
|
-
# Corresponds to the JSON property `instance`
|
5280
|
-
# @return [Google::Apis::ComputeAlpha::Instance]
|
5281
|
-
attr_accessor :instance
|
5282
|
-
|
5283
5276
|
# The instance properties defining the VM instances to be created. Required if
|
5284
5277
|
# sourceInstanceTemplate is not provided.
|
5285
5278
|
# Corresponds to the JSON property `instanceProperties`
|
@@ -5339,7 +5332,6 @@ module Google
|
|
5339
5332
|
# Update properties of this object
|
5340
5333
|
def update!(**args)
|
5341
5334
|
@count = args[:count] if args.key?(:count)
|
5342
|
-
@instance = args[:instance] if args.key?(:instance)
|
5343
5335
|
@instance_properties = args[:instance_properties] if args.key?(:instance_properties)
|
5344
5336
|
@location_policy = args[:location_policy] if args.key?(:location_policy)
|
5345
5337
|
@min_count = args[:min_count] if args.key?(:min_count)
|
@@ -5377,6 +5369,50 @@ module Google
|
|
5377
5369
|
end
|
5378
5370
|
end
|
5379
5371
|
|
5372
|
+
#
|
5373
|
+
class BulkInsertOperationStatus
|
5374
|
+
include Google::Apis::Core::Hashable
|
5375
|
+
|
5376
|
+
# [Output Only] Count of VMs successfully created so far.
|
5377
|
+
# Corresponds to the JSON property `createdVmCount`
|
5378
|
+
# @return [Fixnum]
|
5379
|
+
attr_accessor :created_vm_count
|
5380
|
+
|
5381
|
+
# [Output Only] Count of VMs that got deleted during rollback.
|
5382
|
+
# Corresponds to the JSON property `deletedVmCount`
|
5383
|
+
# @return [Fixnum]
|
5384
|
+
attr_accessor :deleted_vm_count
|
5385
|
+
|
5386
|
+
# [Output Only] Count of VMs that started creating but encountered an error.
|
5387
|
+
# Corresponds to the JSON property `failedToCreateVmCount`
|
5388
|
+
# @return [Fixnum]
|
5389
|
+
attr_accessor :failed_to_create_vm_count
|
5390
|
+
|
5391
|
+
# [Output Only] Creation status of BulkInsert operation - information if the
|
5392
|
+
# flow is rolling forward or rolling back.
|
5393
|
+
# Corresponds to the JSON property `status`
|
5394
|
+
# @return [String]
|
5395
|
+
attr_accessor :status
|
5396
|
+
|
5397
|
+
# [Output Only] Count of VMs originally planned to be created.
|
5398
|
+
# Corresponds to the JSON property `targetVmCount`
|
5399
|
+
# @return [Fixnum]
|
5400
|
+
attr_accessor :target_vm_count
|
5401
|
+
|
5402
|
+
def initialize(**args)
|
5403
|
+
update!(**args)
|
5404
|
+
end
|
5405
|
+
|
5406
|
+
# Update properties of this object
|
5407
|
+
def update!(**args)
|
5408
|
+
@created_vm_count = args[:created_vm_count] if args.key?(:created_vm_count)
|
5409
|
+
@deleted_vm_count = args[:deleted_vm_count] if args.key?(:deleted_vm_count)
|
5410
|
+
@failed_to_create_vm_count = args[:failed_to_create_vm_count] if args.key?(:failed_to_create_vm_count)
|
5411
|
+
@status = args[:status] if args.key?(:status)
|
5412
|
+
@target_vm_count = args[:target_vm_count] if args.key?(:target_vm_count)
|
5413
|
+
end
|
5414
|
+
end
|
5415
|
+
|
5380
5416
|
#
|
5381
5417
|
class BundledLocalSsds
|
5382
5418
|
include Google::Apis::Core::Hashable
|
@@ -7244,6 +7280,18 @@ module Google
|
|
7244
7280
|
class DiskAsyncReplication
|
7245
7281
|
include Google::Apis::Core::Hashable
|
7246
7282
|
|
7283
|
+
# [Output Only] URL of the DiskConsistencyGroupPolicy if replication was started
|
7284
|
+
# on the disk as a member of a group.
|
7285
|
+
# Corresponds to the JSON property `consistencyGroupPolicy`
|
7286
|
+
# @return [String]
|
7287
|
+
attr_accessor :consistency_group_policy
|
7288
|
+
|
7289
|
+
# [Output Only] ID of the DiskConsistencyGroupPolicy if replication was started
|
7290
|
+
# on the disk as a member of a group.
|
7291
|
+
# Corresponds to the JSON property `consistencyGroupPolicyId`
|
7292
|
+
# @return [String]
|
7293
|
+
attr_accessor :consistency_group_policy_id
|
7294
|
+
|
7247
7295
|
# The other disk asynchronously replicated to or from the current disk. You can
|
7248
7296
|
# provide this as a partial or full URL to the resource. For example, the
|
7249
7297
|
# following are valid values: - https://www.googleapis.com/compute/v1/projects/
|
@@ -7269,6 +7317,8 @@ module Google
|
|
7269
7317
|
|
7270
7318
|
# Update properties of this object
|
7271
7319
|
def update!(**args)
|
7320
|
+
@consistency_group_policy = args[:consistency_group_policy] if args.key?(:consistency_group_policy)
|
7321
|
+
@consistency_group_policy_id = args[:consistency_group_policy_id] if args.key?(:consistency_group_policy_id)
|
7272
7322
|
@disk = args[:disk] if args.key?(:disk)
|
7273
7323
|
@disk_id = args[:disk_id] if args.key?(:disk_id)
|
7274
7324
|
end
|
@@ -10150,9 +10200,11 @@ module Google
|
|
10150
10200
|
|
10151
10201
|
# This field is not used for external load balancing. For Internal TCP/UDP Load
|
10152
10202
|
# Balancing, this field identifies the network that the load balanced IP should
|
10153
|
-
# belong to for this Forwarding Rule. If
|
10154
|
-
#
|
10155
|
-
#
|
10203
|
+
# belong to for this Forwarding Rule. If the subnetwork is specified, the
|
10204
|
+
# network of the subnetwork will be used. If neither subnetwork nor this field
|
10205
|
+
# is specified, the default network will be used. For Private Service Connect
|
10206
|
+
# forwarding rules that forward traffic to Google APIs, a network must be
|
10207
|
+
# provided.
|
10156
10208
|
# Corresponds to the JSON property `network`
|
10157
10209
|
# @return [String]
|
10158
10210
|
attr_accessor :network
|
@@ -19589,6 +19641,26 @@ module Google
|
|
19589
19641
|
end
|
19590
19642
|
end
|
19591
19643
|
|
19644
|
+
#
|
19645
|
+
class InstancesBulkInsertOperationMetadata
|
19646
|
+
include Google::Apis::Core::Hashable
|
19647
|
+
|
19648
|
+
# Status information per location (location name is key). Example key: zones/us-
|
19649
|
+
# central1-a
|
19650
|
+
# Corresponds to the JSON property `perLocationStatus`
|
19651
|
+
# @return [Hash<String,Google::Apis::ComputeAlpha::BulkInsertOperationStatus>]
|
19652
|
+
attr_accessor :per_location_status
|
19653
|
+
|
19654
|
+
def initialize(**args)
|
19655
|
+
update!(**args)
|
19656
|
+
end
|
19657
|
+
|
19658
|
+
# Update properties of this object
|
19659
|
+
def update!(**args)
|
19660
|
+
@per_location_status = args[:per_location_status] if args.key?(:per_location_status)
|
19661
|
+
end
|
19662
|
+
end
|
19663
|
+
|
19592
19664
|
#
|
19593
19665
|
class InstancesGetEffectiveFirewallsResponse
|
19594
19666
|
include Google::Apis::Core::Hashable
|
@@ -25787,7 +25859,7 @@ module Google
|
|
25787
25859
|
# @return [String]
|
25788
25860
|
attr_accessor :project_id_or_num
|
25789
25861
|
|
25790
|
-
# Alias IP ranges from the same subnetwork
|
25862
|
+
# Alias IP ranges from the same subnetwork.
|
25791
25863
|
# Corresponds to the JSON property `secondaryIpCidrRanges`
|
25792
25864
|
# @return [Array<String>]
|
25793
25865
|
attr_accessor :secondary_ip_cidr_ranges
|
@@ -30415,6 +30487,11 @@ module Google
|
|
30415
30487
|
# @return [String]
|
30416
30488
|
attr_accessor :insert_time
|
30417
30489
|
|
30490
|
+
#
|
30491
|
+
# Corresponds to the JSON property `instancesBulkInsertOperationMetadata`
|
30492
|
+
# @return [Google::Apis::ComputeAlpha::InstancesBulkInsertOperationMetadata]
|
30493
|
+
attr_accessor :instances_bulk_insert_operation_metadata
|
30494
|
+
|
30418
30495
|
# [Output Only] Type of the resource. Always `compute#operation` for Operation
|
30419
30496
|
# resources.
|
30420
30497
|
# Corresponds to the JSON property `kind`
|
@@ -30533,6 +30610,7 @@ module Google
|
|
30533
30610
|
@http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
|
30534
30611
|
@id = args[:id] if args.key?(:id)
|
30535
30612
|
@insert_time = args[:insert_time] if args.key?(:insert_time)
|
30613
|
+
@instances_bulk_insert_operation_metadata = args[:instances_bulk_insert_operation_metadata] if args.key?(:instances_bulk_insert_operation_metadata)
|
30536
30614
|
@kind = args[:kind] if args.key?(:kind)
|
30537
30615
|
@name = args[:name] if args.key?(:name)
|
30538
30616
|
@operation_group_id = args[:operation_group_id] if args.key?(:operation_group_id)
|
@@ -37863,11 +37941,6 @@ module Google
|
|
37863
37941
|
# @return [Hash<String,Google::Apis::ComputeAlpha::ResourceStatusServiceIntegrationStatus>]
|
37864
37942
|
attr_accessor :service_integration_statuses
|
37865
37943
|
|
37866
|
-
#
|
37867
|
-
# Corresponds to the JSON property `upcomingMaintenance`
|
37868
|
-
# @return [Google::Apis::ComputeAlpha::ResourceStatusUpcomingMaintenance]
|
37869
|
-
attr_accessor :upcoming_maintenance
|
37870
|
-
|
37871
37944
|
def initialize(**args)
|
37872
37945
|
update!(**args)
|
37873
37946
|
end
|
@@ -37877,7 +37950,6 @@ module Google
|
|
37877
37950
|
@physical_host = args[:physical_host] if args.key?(:physical_host)
|
37878
37951
|
@scheduling = args[:scheduling] if args.key?(:scheduling)
|
37879
37952
|
@service_integration_statuses = args[:service_integration_statuses] if args.key?(:service_integration_statuses)
|
37880
|
-
@upcoming_maintenance = args[:upcoming_maintenance] if args.key?(:upcoming_maintenance)
|
37881
37953
|
end
|
37882
37954
|
end
|
37883
37955
|
|
@@ -37961,27 +38033,6 @@ module Google
|
|
37961
38033
|
end
|
37962
38034
|
end
|
37963
38035
|
|
37964
|
-
#
|
37965
|
-
class ResourceStatusUpcomingMaintenance
|
37966
|
-
include Google::Apis::Core::Hashable
|
37967
|
-
|
37968
|
-
# Indicates if the maintenance can be customer triggered. See go/sf-ctm-design
|
37969
|
-
# for more details
|
37970
|
-
# Corresponds to the JSON property `canReschedule`
|
37971
|
-
# @return [Boolean]
|
37972
|
-
attr_accessor :can_reschedule
|
37973
|
-
alias_method :can_reschedule?, :can_reschedule
|
37974
|
-
|
37975
|
-
def initialize(**args)
|
37976
|
-
update!(**args)
|
37977
|
-
end
|
37978
|
-
|
37979
|
-
# Update properties of this object
|
37980
|
-
def update!(**args)
|
37981
|
-
@can_reschedule = args[:can_reschedule] if args.key?(:can_reschedule)
|
37982
|
-
end
|
37983
|
-
end
|
37984
|
-
|
37985
38036
|
# A rollout policy configuration.
|
37986
38037
|
class RolloutPolicy
|
37987
38038
|
include Google::Apis::Core::Hashable
|
@@ -41063,7 +41114,8 @@ module Google
|
|
41063
41114
|
# @return [Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigAutoDeployConfig]
|
41064
41115
|
attr_accessor :auto_deploy_config
|
41065
41116
|
|
41066
|
-
# Configuration options for L7 DDoS detection.
|
41117
|
+
# Configuration options for L7 DDoS detection. This field is only supported in
|
41118
|
+
# Global Security Policies of type CLOUD_ARMOR.
|
41067
41119
|
# Corresponds to the JSON property `layer7DdosDefenseConfig`
|
41068
41120
|
# @return [Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig]
|
41069
41121
|
attr_accessor :layer7_ddos_defense_config
|
@@ -41116,18 +41168,21 @@ module Google
|
|
41116
41168
|
end
|
41117
41169
|
end
|
41118
41170
|
|
41119
|
-
# Configuration options for L7 DDoS detection.
|
41171
|
+
# Configuration options for L7 DDoS detection. This field is only supported in
|
41172
|
+
# Global Security Policies of type CLOUD_ARMOR.
|
41120
41173
|
class SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig
|
41121
41174
|
include Google::Apis::Core::Hashable
|
41122
41175
|
|
41123
|
-
# If set to true, enables CAAP for L7 DDoS detection.
|
41176
|
+
# If set to true, enables CAAP for L7 DDoS detection. This field is only
|
41177
|
+
# supported in Global Security Policies of type CLOUD_ARMOR.
|
41124
41178
|
# Corresponds to the JSON property `enable`
|
41125
41179
|
# @return [Boolean]
|
41126
41180
|
attr_accessor :enable
|
41127
41181
|
alias_method :enable?, :enable
|
41128
41182
|
|
41129
41183
|
# Rule visibility can be one of the following: STANDARD - opaque rules. (default)
|
41130
|
-
# PREMIUM - transparent rules.
|
41184
|
+
# PREMIUM - transparent rules. This field is only supported in Global Security
|
41185
|
+
# Policies of type CLOUD_ARMOR.
|
41131
41186
|
# Corresponds to the JSON property `ruleVisibility`
|
41132
41187
|
# @return [String]
|
41133
41188
|
attr_accessor :rule_visibility
|
@@ -41413,7 +41468,8 @@ module Google
|
|
41413
41468
|
# using the redirect action with the type of GOOGLE_RECAPTCHA under the security
|
41414
41469
|
# policy. The specified site key needs to be created from the reCAPTCHA API. The
|
41415
41470
|
# user is responsible for the validity of the specified site key. If not
|
41416
|
-
# specified, a Google-managed site key is used.
|
41471
|
+
# specified, a Google-managed site key is used. This field is only supported in
|
41472
|
+
# Global Security Policies of type CLOUD_ARMOR.
|
41417
41473
|
# Corresponds to the JSON property `redirectSiteKey`
|
41418
41474
|
# @return [String]
|
41419
41475
|
attr_accessor :redirect_site_key
|
@@ -41461,7 +41517,8 @@ module Google
|
|
41461
41517
|
# rate_limit_options to be set. - redirect: redirect to a different target. This
|
41462
41518
|
# can either be an internal reCAPTCHA redirect, or an external URL-based
|
41463
41519
|
# redirect via a 302 response. Parameters for this action can be configured via
|
41464
|
-
# redirectOptions.
|
41520
|
+
# redirectOptions. This action is only supported in Global Security Policies of
|
41521
|
+
# type CLOUD_ARMOR. - throttle: limit client traffic to the configured threshold.
|
41465
41522
|
# Configure parameters for this action in rateLimitOptions. Requires
|
41466
41523
|
# rate_limit_options to be set for this.
|
41467
41524
|
# Corresponds to the JSON property `action`
|
@@ -41490,7 +41547,8 @@ module Google
|
|
41490
41547
|
attr_accessor :enable_logging
|
41491
41548
|
alias_method :enable_logging?, :enable_logging
|
41492
41549
|
|
41493
|
-
# Optional, additional actions that are performed on headers.
|
41550
|
+
# Optional, additional actions that are performed on headers. This field is only
|
41551
|
+
# supported in Global Security Policies of type CLOUD_ARMOR.
|
41494
41552
|
# Corresponds to the JSON property `headerAction`
|
41495
41553
|
# @return [Google::Apis::ComputeAlpha::SecurityPolicyRuleHttpHeaderAction]
|
41496
41554
|
attr_accessor :header_action
|
@@ -41541,7 +41599,8 @@ module Google
|
|
41541
41599
|
attr_accessor :rate_limit_options
|
41542
41600
|
|
41543
41601
|
# Parameters defining the redirect action. Cannot be specified for any other
|
41544
|
-
# actions.
|
41602
|
+
# actions. This field is only supported in Global Security Policies of type
|
41603
|
+
# CLOUD_ARMOR.
|
41545
41604
|
# Corresponds to the JSON property `redirectOptions`
|
41546
41605
|
# @return [Google::Apis::ComputeAlpha::SecurityPolicyRuleRedirectOptions]
|
41547
41606
|
attr_accessor :redirect_options
|
@@ -42076,7 +42135,8 @@ module Google
|
|
42076
42135
|
# to either deny with a specified HTTP response code, or redirect to a
|
42077
42136
|
# different endpoint. Valid options are `deny(STATUS)`, where valid values for `
|
42078
42137
|
# STATUS` are 403, 404, 429, and 502, and `redirect`, where the redirect
|
42079
|
-
# parameters come from `exceedRedirectOptions` below.
|
42138
|
+
# parameters come from `exceedRedirectOptions` below. The `redirect` action is
|
42139
|
+
# only supported in Global Security Policies of type CLOUD_ARMOR.
|
42080
42140
|
# Corresponds to the JSON property `exceedAction`
|
42081
42141
|
# @return [String]
|
42082
42142
|
attr_accessor :exceed_action
|
@@ -42087,7 +42147,8 @@ module Google
|
|
42087
42147
|
attr_accessor :exceed_action_rpc_status
|
42088
42148
|
|
42089
42149
|
# Parameters defining the redirect action that is used as the exceed action.
|
42090
|
-
# Cannot be specified if the exceed action is not redirect.
|
42150
|
+
# Cannot be specified if the exceed action is not redirect. This field is only
|
42151
|
+
# supported in Global Security Policies of type CLOUD_ARMOR.
|
42091
42152
|
# Corresponds to the JSON property `exceedRedirectOptions`
|
42092
42153
|
# @return [Google::Apis::ComputeAlpha::SecurityPolicyRuleRedirectOptions]
|
42093
42154
|
attr_accessor :exceed_redirect_options
|
@@ -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.65.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230403"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -604,6 +604,12 @@ module Google
|
|
604
604
|
include Google::Apis::Core::JsonObjectSupport
|
605
605
|
end
|
606
606
|
|
607
|
+
class BulkInsertOperationStatus
|
608
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
609
|
+
|
610
|
+
include Google::Apis::Core::JsonObjectSupport
|
611
|
+
end
|
612
|
+
|
607
613
|
class BundledLocalSsds
|
608
614
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
609
615
|
|
@@ -2380,6 +2386,12 @@ module Google
|
|
2380
2386
|
include Google::Apis::Core::JsonObjectSupport
|
2381
2387
|
end
|
2382
2388
|
|
2389
|
+
class InstancesBulkInsertOperationMetadata
|
2390
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2391
|
+
|
2392
|
+
include Google::Apis::Core::JsonObjectSupport
|
2393
|
+
end
|
2394
|
+
|
2383
2395
|
class InstancesGetEffectiveFirewallsResponse
|
2384
2396
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2385
2397
|
|
@@ -5008,12 +5020,6 @@ module Google
|
|
5008
5020
|
include Google::Apis::Core::JsonObjectSupport
|
5009
5021
|
end
|
5010
5022
|
|
5011
|
-
class ResourceStatusUpcomingMaintenance
|
5012
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5013
|
-
|
5014
|
-
include Google::Apis::Core::JsonObjectSupport
|
5015
|
-
end
|
5016
|
-
|
5017
5023
|
class RolloutPolicy
|
5018
5024
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
5019
5025
|
|
@@ -8244,8 +8250,6 @@ module Google
|
|
8244
8250
|
# @private
|
8245
8251
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8246
8252
|
property :count, :numeric_string => true, as: 'count'
|
8247
|
-
property :instance, as: 'instance', class: Google::Apis::ComputeAlpha::Instance, decorator: Google::Apis::ComputeAlpha::Instance::Representation
|
8248
|
-
|
8249
8253
|
property :instance_properties, as: 'instanceProperties', class: Google::Apis::ComputeAlpha::InstanceProperties, decorator: Google::Apis::ComputeAlpha::InstanceProperties::Representation
|
8250
8254
|
|
8251
8255
|
property :location_policy, as: 'locationPolicy', class: Google::Apis::ComputeAlpha::LocationPolicy, decorator: Google::Apis::ComputeAlpha::LocationPolicy::Representation
|
@@ -8266,6 +8270,17 @@ module Google
|
|
8266
8270
|
end
|
8267
8271
|
end
|
8268
8272
|
|
8273
|
+
class BulkInsertOperationStatus
|
8274
|
+
# @private
|
8275
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8276
|
+
property :created_vm_count, as: 'createdVmCount'
|
8277
|
+
property :deleted_vm_count, as: 'deletedVmCount'
|
8278
|
+
property :failed_to_create_vm_count, as: 'failedToCreateVmCount'
|
8279
|
+
property :status, as: 'status'
|
8280
|
+
property :target_vm_count, as: 'targetVmCount'
|
8281
|
+
end
|
8282
|
+
end
|
8283
|
+
|
8269
8284
|
class BundledLocalSsds
|
8270
8285
|
# @private
|
8271
8286
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8675,6 +8690,8 @@ module Google
|
|
8675
8690
|
class DiskAsyncReplication
|
8676
8691
|
# @private
|
8677
8692
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8693
|
+
property :consistency_group_policy, as: 'consistencyGroupPolicy'
|
8694
|
+
property :consistency_group_policy_id, as: 'consistencyGroupPolicyId'
|
8678
8695
|
property :disk, as: 'disk'
|
8679
8696
|
property :disk_id, as: 'diskId'
|
8680
8697
|
end
|
@@ -11682,6 +11699,14 @@ module Google
|
|
11682
11699
|
end
|
11683
11700
|
end
|
11684
11701
|
|
11702
|
+
class InstancesBulkInsertOperationMetadata
|
11703
|
+
# @private
|
11704
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
11705
|
+
hash :per_location_status, as: 'perLocationStatus', class: Google::Apis::ComputeAlpha::BulkInsertOperationStatus, decorator: Google::Apis::ComputeAlpha::BulkInsertOperationStatus::Representation
|
11706
|
+
|
11707
|
+
end
|
11708
|
+
end
|
11709
|
+
|
11685
11710
|
class InstancesGetEffectiveFirewallsResponse
|
11686
11711
|
# @private
|
11687
11712
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -14414,6 +14439,8 @@ module Google
|
|
14414
14439
|
property :http_error_status_code, as: 'httpErrorStatusCode'
|
14415
14440
|
property :id, :numeric_string => true, as: 'id'
|
14416
14441
|
property :insert_time, as: 'insertTime'
|
14442
|
+
property :instances_bulk_insert_operation_metadata, as: 'instancesBulkInsertOperationMetadata', class: Google::Apis::ComputeAlpha::InstancesBulkInsertOperationMetadata, decorator: Google::Apis::ComputeAlpha::InstancesBulkInsertOperationMetadata::Representation
|
14443
|
+
|
14417
14444
|
property :kind, as: 'kind'
|
14418
14445
|
property :name, as: 'name'
|
14419
14446
|
property :operation_group_id, as: 'operationGroupId'
|
@@ -16411,8 +16438,6 @@ module Google
|
|
16411
16438
|
|
16412
16439
|
hash :service_integration_statuses, as: 'serviceIntegrationStatuses', class: Google::Apis::ComputeAlpha::ResourceStatusServiceIntegrationStatus, decorator: Google::Apis::ComputeAlpha::ResourceStatusServiceIntegrationStatus::Representation
|
16413
16440
|
|
16414
|
-
property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::ComputeAlpha::ResourceStatusUpcomingMaintenance, decorator: Google::Apis::ComputeAlpha::ResourceStatusUpcomingMaintenance::Representation
|
16415
|
-
|
16416
16441
|
end
|
16417
16442
|
end
|
16418
16443
|
|
@@ -16440,13 +16465,6 @@ module Google
|
|
16440
16465
|
end
|
16441
16466
|
end
|
16442
16467
|
|
16443
|
-
class ResourceStatusUpcomingMaintenance
|
16444
|
-
# @private
|
16445
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
16446
|
-
property :can_reschedule, as: 'canReschedule'
|
16447
|
-
end
|
16448
|
-
end
|
16449
|
-
|
16450
16468
|
class RolloutPolicy
|
16451
16469
|
# @private
|
16452
16470
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.65.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: 2023-04-
|
11
|
+
date: 2023-04-16 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.65.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: []
|