google-apis-compute_alpha 0.64.0 → 0.66.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 19878f0d1c67ed9d405302d9e67d59702ff6309f38376447471fb05c8eabfe1c
4
- data.tar.gz: be100db7c4433c4b701c85a177e392fe6b3be0810d7f047d8e034b11742b2dd3
3
+ metadata.gz: b1fb824e2016bd6c4774aea5158dae45d80981a4acef759064e0d25b5a637fac
4
+ data.tar.gz: fd2a2bccff2a80e5942370257c36fd9818ca66235078759c5f23dbde915c251a
5
5
  SHA512:
6
- metadata.gz: b0fc4da2029049d140d3d3e73a36d3877ca00b13c4eb388b3f5e05940f90902ec026c8b9ca30be609a2537ad25d213a0f48604221fbf94504d21b148618c1129
7
- data.tar.gz: 4ed81ad36b0e27ef4319dfce9b9be67e50bbd3d6debd3342204035aaef9261b60306079b30e767e5291035868f028d5fe5e0dd0278031291ddd096b5aeeee4ba
6
+ metadata.gz: 3e7eb11bde46067c7f7f402a14a87e6a2b239e6740c73b208a1c8aff68071b08b724416e7457cbdc8b77517327a45eaffe2bdd7803a0e77a34e54af8d623d1c3
7
+ data.tar.gz: 1a1269999a6c07156a0312419233cd213e72dae03aa4c8e731af117aa21ffe789ca7be81089218567946ac57b5931fb8e2b2b1e3cda5a6ee5643e14a82d77e97
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-compute_alpha
2
2
 
3
+ ### v0.66.0 (2023-04-30)
4
+
5
+ * Regenerated from discovery document revision 20230418
6
+
7
+ ### v0.65.0 (2023-04-16)
8
+
9
+ * Regenerated from discovery document revision 20230403
10
+
3
11
  ### v0.64.0 (2023-04-02)
4
12
 
5
13
  * Regenerated from discovery document revision 20230322
@@ -1868,6 +1868,15 @@ module Google
1868
1868
  # @return [Google::Apis::ComputeAlpha::CustomerEncryptionKey]
1869
1869
  attr_accessor :source_snapshot_encryption_key
1870
1870
 
1871
+ # The storage pool in which the new disk is created. You can provide this as a
1872
+ # partial or full URL to the resource. For example, the following are valid
1873
+ # values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /
1874
+ # storagePools/storagePool - projects/project/zones/zone/storagePools/
1875
+ # storagePool - zones/zone/storagePools/storagePool
1876
+ # Corresponds to the JSON property `storagePool`
1877
+ # @return [String]
1878
+ attr_accessor :storage_pool
1879
+
1871
1880
  def initialize(**args)
1872
1881
  update!(**args)
1873
1882
  end
@@ -1896,6 +1905,7 @@ module Google
1896
1905
  @source_instant_snapshot = args[:source_instant_snapshot] if args.key?(:source_instant_snapshot)
1897
1906
  @source_snapshot = args[:source_snapshot] if args.key?(:source_snapshot)
1898
1907
  @source_snapshot_encryption_key = args[:source_snapshot_encryption_key] if args.key?(:source_snapshot_encryption_key)
1908
+ @storage_pool = args[:storage_pool] if args.key?(:storage_pool)
1899
1909
  end
1900
1910
  end
1901
1911
 
@@ -5273,13 +5283,6 @@ module Google
5273
5283
  # @return [Fixnum]
5274
5284
  attr_accessor :count
5275
5285
 
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
5286
  # The instance properties defining the VM instances to be created. Required if
5284
5287
  # sourceInstanceTemplate is not provided.
5285
5288
  # Corresponds to the JSON property `instanceProperties`
@@ -5339,7 +5342,6 @@ module Google
5339
5342
  # Update properties of this object
5340
5343
  def update!(**args)
5341
5344
  @count = args[:count] if args.key?(:count)
5342
- @instance = args[:instance] if args.key?(:instance)
5343
5345
  @instance_properties = args[:instance_properties] if args.key?(:instance_properties)
5344
5346
  @location_policy = args[:location_policy] if args.key?(:location_policy)
5345
5347
  @min_count = args[:min_count] if args.key?(:min_count)
@@ -5377,6 +5379,50 @@ module Google
5377
5379
  end
5378
5380
  end
5379
5381
 
5382
+ #
5383
+ class BulkInsertOperationStatus
5384
+ include Google::Apis::Core::Hashable
5385
+
5386
+ # [Output Only] Count of VMs successfully created so far.
5387
+ # Corresponds to the JSON property `createdVmCount`
5388
+ # @return [Fixnum]
5389
+ attr_accessor :created_vm_count
5390
+
5391
+ # [Output Only] Count of VMs that got deleted during rollback.
5392
+ # Corresponds to the JSON property `deletedVmCount`
5393
+ # @return [Fixnum]
5394
+ attr_accessor :deleted_vm_count
5395
+
5396
+ # [Output Only] Count of VMs that started creating but encountered an error.
5397
+ # Corresponds to the JSON property `failedToCreateVmCount`
5398
+ # @return [Fixnum]
5399
+ attr_accessor :failed_to_create_vm_count
5400
+
5401
+ # [Output Only] Creation status of BulkInsert operation - information if the
5402
+ # flow is rolling forward or rolling back.
5403
+ # Corresponds to the JSON property `status`
5404
+ # @return [String]
5405
+ attr_accessor :status
5406
+
5407
+ # [Output Only] Count of VMs originally planned to be created.
5408
+ # Corresponds to the JSON property `targetVmCount`
5409
+ # @return [Fixnum]
5410
+ attr_accessor :target_vm_count
5411
+
5412
+ def initialize(**args)
5413
+ update!(**args)
5414
+ end
5415
+
5416
+ # Update properties of this object
5417
+ def update!(**args)
5418
+ @created_vm_count = args[:created_vm_count] if args.key?(:created_vm_count)
5419
+ @deleted_vm_count = args[:deleted_vm_count] if args.key?(:deleted_vm_count)
5420
+ @failed_to_create_vm_count = args[:failed_to_create_vm_count] if args.key?(:failed_to_create_vm_count)
5421
+ @status = args[:status] if args.key?(:status)
5422
+ @target_vm_count = args[:target_vm_count] if args.key?(:target_vm_count)
5423
+ end
5424
+ end
5425
+
5380
5426
  #
5381
5427
  class BundledLocalSsds
5382
5428
  include Google::Apis::Core::Hashable
@@ -7019,6 +7065,15 @@ module Google
7019
7065
  # @return [String]
7020
7066
  attr_accessor :status
7021
7067
 
7068
+ # The storage pool in which the new disk is created. You can provide this as a
7069
+ # partial or full URL to the resource. For example, the following are valid
7070
+ # values: - https://www.googleapis.com/compute/v1/projects/project/zones/zone /
7071
+ # storagePools/storagePool - projects/project/zones/zone/storagePools/
7072
+ # storagePool - zones/zone/storagePools/storagePool
7073
+ # Corresponds to the JSON property `storagePool`
7074
+ # @return [String]
7075
+ attr_accessor :storage_pool
7076
+
7022
7077
  # [Deprecated] Storage type of the persistent disk.
7023
7078
  # Corresponds to the JSON property `storageType`
7024
7079
  # @return [String]
@@ -7108,6 +7163,7 @@ module Google
7108
7163
  @source_snapshot_id = args[:source_snapshot_id] if args.key?(:source_snapshot_id)
7109
7164
  @source_storage_object = args[:source_storage_object] if args.key?(:source_storage_object)
7110
7165
  @status = args[:status] if args.key?(:status)
7166
+ @storage_pool = args[:storage_pool] if args.key?(:storage_pool)
7111
7167
  @storage_type = args[:storage_type] if args.key?(:storage_type)
7112
7168
  @type = args[:type] if args.key?(:type)
7113
7169
  @user_licenses = args[:user_licenses] if args.key?(:user_licenses)
@@ -7244,6 +7300,18 @@ module Google
7244
7300
  class DiskAsyncReplication
7245
7301
  include Google::Apis::Core::Hashable
7246
7302
 
7303
+ # [Output Only] URL of the DiskConsistencyGroupPolicy if replication was started
7304
+ # on the disk as a member of a group.
7305
+ # Corresponds to the JSON property `consistencyGroupPolicy`
7306
+ # @return [String]
7307
+ attr_accessor :consistency_group_policy
7308
+
7309
+ # [Output Only] ID of the DiskConsistencyGroupPolicy if replication was started
7310
+ # on the disk as a member of a group.
7311
+ # Corresponds to the JSON property `consistencyGroupPolicyId`
7312
+ # @return [String]
7313
+ attr_accessor :consistency_group_policy_id
7314
+
7247
7315
  # The other disk asynchronously replicated to or from the current disk. You can
7248
7316
  # provide this as a partial or full URL to the resource. For example, the
7249
7317
  # following are valid values: - https://www.googleapis.com/compute/v1/projects/
@@ -7269,6 +7337,8 @@ module Google
7269
7337
 
7270
7338
  # Update properties of this object
7271
7339
  def update!(**args)
7340
+ @consistency_group_policy = args[:consistency_group_policy] if args.key?(:consistency_group_policy)
7341
+ @consistency_group_policy_id = args[:consistency_group_policy_id] if args.key?(:consistency_group_policy_id)
7272
7342
  @disk = args[:disk] if args.key?(:disk)
7273
7343
  @disk_id = args[:disk_id] if args.key?(:disk_id)
7274
7344
  end
@@ -10150,9 +10220,11 @@ module Google
10150
10220
 
10151
10221
  # This field is not used for external load balancing. For Internal TCP/UDP Load
10152
10222
  # Balancing, this field identifies the network that the load balanced IP should
10153
- # belong to for this Forwarding Rule. If this field is not specified, the
10154
- # default network will be used. For Private Service Connect forwarding rules
10155
- # that forward traffic to Google APIs, a network must be provided.
10223
+ # belong to for this Forwarding Rule. If the subnetwork is specified, the
10224
+ # network of the subnetwork will be used. If neither subnetwork nor this field
10225
+ # is specified, the default network will be used. For Private Service Connect
10226
+ # forwarding rules that forward traffic to Google APIs, a network must be
10227
+ # provided.
10156
10228
  # Corresponds to the JSON property `network`
10157
10229
  # @return [String]
10158
10230
  attr_accessor :network
@@ -12049,11 +12121,11 @@ module Google
12049
12121
  # Regional](/compute/docs/reference/rest/alpha/regionHealthChecks) Internal HTTP(
12050
12122
  # S) load balancers must use regional health checks (`compute.v1.
12051
12123
  # regionHealthChecks`). Traffic Director must use global health checks (`compute.
12052
- # v1.HealthChecks`). Internal TCP/UDP load balancers can use either regional or
12124
+ # v1.healthChecks`). Internal TCP/UDP load balancers can use either regional or
12053
12125
  # global health checks (`compute.v1.regionHealthChecks` or `compute.v1.
12054
- # HealthChecks`). External HTTP(S), TCP proxy, and SSL proxy load balancers as
12126
+ # healthChecks`). External HTTP(S), TCP proxy, and SSL proxy load balancers as
12055
12127
  # well as managed instance group auto-healing must use global health checks (`
12056
- # compute.v1.HealthChecks`). Backend service-based network load balancers must
12128
+ # compute.v1.healthChecks`). Backend service-based network load balancers must
12057
12129
  # use regional health checks (`compute.v1.regionHealthChecks`). Target pool-
12058
12130
  # based network load balancers must use legacy HTTP health checks (`compute.v1.
12059
12131
  # httpHealthChecks`). For more information, see Health checks overview.
@@ -19589,6 +19661,26 @@ module Google
19589
19661
  end
19590
19662
  end
19591
19663
 
19664
+ #
19665
+ class InstancesBulkInsertOperationMetadata
19666
+ include Google::Apis::Core::Hashable
19667
+
19668
+ # Status information per location (location name is key). Example key: zones/us-
19669
+ # central1-a
19670
+ # Corresponds to the JSON property `perLocationStatus`
19671
+ # @return [Hash<String,Google::Apis::ComputeAlpha::BulkInsertOperationStatus>]
19672
+ attr_accessor :per_location_status
19673
+
19674
+ def initialize(**args)
19675
+ update!(**args)
19676
+ end
19677
+
19678
+ # Update properties of this object
19679
+ def update!(**args)
19680
+ @per_location_status = args[:per_location_status] if args.key?(:per_location_status)
19681
+ end
19682
+ end
19683
+
19592
19684
  #
19593
19685
  class InstancesGetEffectiveFirewallsResponse
19594
19686
  include Google::Apis::Core::Hashable
@@ -25787,7 +25879,7 @@ module Google
25787
25879
  # @return [String]
25788
25880
  attr_accessor :project_id_or_num
25789
25881
 
25790
- # Alias IP ranges from the same subnetwork
25882
+ # Alias IP ranges from the same subnetwork.
25791
25883
  # Corresponds to the JSON property `secondaryIpCidrRanges`
25792
25884
  # @return [Array<String>]
25793
25885
  attr_accessor :secondary_ip_cidr_ranges
@@ -30415,6 +30507,11 @@ module Google
30415
30507
  # @return [String]
30416
30508
  attr_accessor :insert_time
30417
30509
 
30510
+ #
30511
+ # Corresponds to the JSON property `instancesBulkInsertOperationMetadata`
30512
+ # @return [Google::Apis::ComputeAlpha::InstancesBulkInsertOperationMetadata]
30513
+ attr_accessor :instances_bulk_insert_operation_metadata
30514
+
30418
30515
  # [Output Only] Type of the resource. Always `compute#operation` for Operation
30419
30516
  # resources.
30420
30517
  # Corresponds to the JSON property `kind`
@@ -30533,6 +30630,7 @@ module Google
30533
30630
  @http_error_status_code = args[:http_error_status_code] if args.key?(:http_error_status_code)
30534
30631
  @id = args[:id] if args.key?(:id)
30535
30632
  @insert_time = args[:insert_time] if args.key?(:insert_time)
30633
+ @instances_bulk_insert_operation_metadata = args[:instances_bulk_insert_operation_metadata] if args.key?(:instances_bulk_insert_operation_metadata)
30536
30634
  @kind = args[:kind] if args.key?(:kind)
30537
30635
  @name = args[:name] if args.key?(:name)
30538
30636
  @operation_group_id = args[:operation_group_id] if args.key?(:operation_group_id)
@@ -37863,11 +37961,6 @@ module Google
37863
37961
  # @return [Hash<String,Google::Apis::ComputeAlpha::ResourceStatusServiceIntegrationStatus>]
37864
37962
  attr_accessor :service_integration_statuses
37865
37963
 
37866
- #
37867
- # Corresponds to the JSON property `upcomingMaintenance`
37868
- # @return [Google::Apis::ComputeAlpha::ResourceStatusUpcomingMaintenance]
37869
- attr_accessor :upcoming_maintenance
37870
-
37871
37964
  def initialize(**args)
37872
37965
  update!(**args)
37873
37966
  end
@@ -37877,7 +37970,6 @@ module Google
37877
37970
  @physical_host = args[:physical_host] if args.key?(:physical_host)
37878
37971
  @scheduling = args[:scheduling] if args.key?(:scheduling)
37879
37972
  @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
37973
  end
37882
37974
  end
37883
37975
 
@@ -37961,27 +38053,6 @@ module Google
37961
38053
  end
37962
38054
  end
37963
38055
 
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
38056
  # A rollout policy configuration.
37986
38057
  class RolloutPolicy
37987
38058
  include Google::Apis::Core::Hashable
@@ -41063,7 +41134,8 @@ module Google
41063
41134
  # @return [Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigAutoDeployConfig]
41064
41135
  attr_accessor :auto_deploy_config
41065
41136
 
41066
- # Configuration options for L7 DDoS detection.
41137
+ # Configuration options for L7 DDoS detection. This field is only supported in
41138
+ # Global Security Policies of type CLOUD_ARMOR.
41067
41139
  # Corresponds to the JSON property `layer7DdosDefenseConfig`
41068
41140
  # @return [Google::Apis::ComputeAlpha::SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig]
41069
41141
  attr_accessor :layer7_ddos_defense_config
@@ -41116,18 +41188,21 @@ module Google
41116
41188
  end
41117
41189
  end
41118
41190
 
41119
- # Configuration options for L7 DDoS detection.
41191
+ # Configuration options for L7 DDoS detection. This field is only supported in
41192
+ # Global Security Policies of type CLOUD_ARMOR.
41120
41193
  class SecurityPolicyAdaptiveProtectionConfigLayer7DdosDefenseConfig
41121
41194
  include Google::Apis::Core::Hashable
41122
41195
 
41123
- # If set to true, enables CAAP for L7 DDoS detection.
41196
+ # If set to true, enables CAAP for L7 DDoS detection. This field is only
41197
+ # supported in Global Security Policies of type CLOUD_ARMOR.
41124
41198
  # Corresponds to the JSON property `enable`
41125
41199
  # @return [Boolean]
41126
41200
  attr_accessor :enable
41127
41201
  alias_method :enable?, :enable
41128
41202
 
41129
41203
  # Rule visibility can be one of the following: STANDARD - opaque rules. (default)
41130
- # PREMIUM - transparent rules.
41204
+ # PREMIUM - transparent rules. This field is only supported in Global Security
41205
+ # Policies of type CLOUD_ARMOR.
41131
41206
  # Corresponds to the JSON property `ruleVisibility`
41132
41207
  # @return [String]
41133
41208
  attr_accessor :rule_visibility
@@ -41413,7 +41488,8 @@ module Google
41413
41488
  # using the redirect action with the type of GOOGLE_RECAPTCHA under the security
41414
41489
  # policy. The specified site key needs to be created from the reCAPTCHA API. The
41415
41490
  # user is responsible for the validity of the specified site key. If not
41416
- # specified, a Google-managed site key is used.
41491
+ # specified, a Google-managed site key is used. This field is only supported in
41492
+ # Global Security Policies of type CLOUD_ARMOR.
41417
41493
  # Corresponds to the JSON property `redirectSiteKey`
41418
41494
  # @return [String]
41419
41495
  attr_accessor :redirect_site_key
@@ -41461,7 +41537,8 @@ module Google
41461
41537
  # rate_limit_options to be set. - redirect: redirect to a different target. This
41462
41538
  # can either be an internal reCAPTCHA redirect, or an external URL-based
41463
41539
  # redirect via a 302 response. Parameters for this action can be configured via
41464
- # redirectOptions. - throttle: limit client traffic to the configured threshold.
41540
+ # redirectOptions. This action is only supported in Global Security Policies of
41541
+ # type CLOUD_ARMOR. - throttle: limit client traffic to the configured threshold.
41465
41542
  # Configure parameters for this action in rateLimitOptions. Requires
41466
41543
  # rate_limit_options to be set for this.
41467
41544
  # Corresponds to the JSON property `action`
@@ -41490,7 +41567,8 @@ module Google
41490
41567
  attr_accessor :enable_logging
41491
41568
  alias_method :enable_logging?, :enable_logging
41492
41569
 
41493
- # Optional, additional actions that are performed on headers.
41570
+ # Optional, additional actions that are performed on headers. This field is only
41571
+ # supported in Global Security Policies of type CLOUD_ARMOR.
41494
41572
  # Corresponds to the JSON property `headerAction`
41495
41573
  # @return [Google::Apis::ComputeAlpha::SecurityPolicyRuleHttpHeaderAction]
41496
41574
  attr_accessor :header_action
@@ -41541,7 +41619,8 @@ module Google
41541
41619
  attr_accessor :rate_limit_options
41542
41620
 
41543
41621
  # Parameters defining the redirect action. Cannot be specified for any other
41544
- # actions.
41622
+ # actions. This field is only supported in Global Security Policies of type
41623
+ # CLOUD_ARMOR.
41545
41624
  # Corresponds to the JSON property `redirectOptions`
41546
41625
  # @return [Google::Apis::ComputeAlpha::SecurityPolicyRuleRedirectOptions]
41547
41626
  attr_accessor :redirect_options
@@ -42076,7 +42155,8 @@ module Google
42076
42155
  # to either deny with a specified HTTP response code, or redirect to a
42077
42156
  # different endpoint. Valid options are `deny(STATUS)`, where valid values for `
42078
42157
  # STATUS` are 403, 404, 429, and 502, and `redirect`, where the redirect
42079
- # parameters come from `exceedRedirectOptions` below.
42158
+ # parameters come from `exceedRedirectOptions` below. The `redirect` action is
42159
+ # only supported in Global Security Policies of type CLOUD_ARMOR.
42080
42160
  # Corresponds to the JSON property `exceedAction`
42081
42161
  # @return [String]
42082
42162
  attr_accessor :exceed_action
@@ -42087,7 +42167,8 @@ module Google
42087
42167
  attr_accessor :exceed_action_rpc_status
42088
42168
 
42089
42169
  # Parameters defining the redirect action that is used as the exceed action.
42090
- # Cannot be specified if the exceed action is not redirect.
42170
+ # Cannot be specified if the exceed action is not redirect. This field is only
42171
+ # supported in Global Security Policies of type CLOUD_ARMOR.
42091
42172
  # Corresponds to the JSON property `exceedRedirectOptions`
42092
42173
  # @return [Google::Apis::ComputeAlpha::SecurityPolicyRuleRedirectOptions]
42093
42174
  attr_accessor :exceed_redirect_options
@@ -43688,6 +43769,11 @@ module Google
43688
43769
  # @return [Google::Apis::ComputeAlpha::CustomerEncryptionKey]
43689
43770
  attr_accessor :source_disk_encryption_key
43690
43771
 
43772
+ # The source disk whose recovery checkpoint will be used to create this snapshot.
43773
+ # Corresponds to the JSON property `sourceDiskForRecoveryCheckpoint`
43774
+ # @return [String]
43775
+ attr_accessor :source_disk_for_recovery_checkpoint
43776
+
43691
43777
  # [Output Only] The ID value of the disk used to create this snapshot. This
43692
43778
  # value may be used to determine whether the snapshot was taken from the current
43693
43779
  # or a previous instance of a given disk name.
@@ -43788,6 +43874,7 @@ module Google
43788
43874
  @snapshot_type = args[:snapshot_type] if args.key?(:snapshot_type)
43789
43875
  @source_disk = args[:source_disk] if args.key?(:source_disk)
43790
43876
  @source_disk_encryption_key = args[:source_disk_encryption_key] if args.key?(:source_disk_encryption_key)
43877
+ @source_disk_for_recovery_checkpoint = args[:source_disk_for_recovery_checkpoint] if args.key?(:source_disk_for_recovery_checkpoint)
43791
43878
  @source_disk_id = args[:source_disk_id] if args.key?(:source_disk_id)
43792
43879
  @source_instant_snapshot = args[:source_instant_snapshot] if args.key?(:source_instant_snapshot)
43793
43880
  @source_instant_snapshot_id = args[:source_instant_snapshot_id] if args.key?(:source_instant_snapshot_id)
@@ -47559,7 +47646,9 @@ module Google
47559
47646
  class TargetHttpsProxiesSetCertificateMapRequest
47560
47647
  include Google::Apis::Core::Hashable
47561
47648
 
47562
- # URL of the Certificate Map to associate with this TargetHttpsProxy.
47649
+ # URL of the Certificate Map to associate with this TargetHttpsProxy. Accepted
47650
+ # format is //certificatemanager.googleapis.com/projects/`project `/locations/`
47651
+ # location`/certificateMaps/`resourceName`.
47563
47652
  # Corresponds to the JSON property `certificateMap`
47564
47653
  # @return [String]
47565
47654
  attr_accessor :certificate_map
@@ -47649,7 +47738,9 @@ module Google
47649
47738
 
47650
47739
  # URL of a certificate map that identifies a certificate map associated with the
47651
47740
  # given target proxy. This field can only be set for global target proxies. If
47652
- # set, sslCertificates will be ignored.
47741
+ # set, sslCertificates will be ignored. Accepted format is //certificatemanager.
47742
+ # googleapis.com/projects/`project `/locations/`location`/certificateMaps/`
47743
+ # resourceName`.
47653
47744
  # Corresponds to the JSON property `certificateMap`
47654
47745
  # @return [String]
47655
47746
  attr_accessor :certificate_map
@@ -49131,7 +49222,9 @@ module Google
49131
49222
  class TargetSslProxiesSetCertificateMapRequest
49132
49223
  include Google::Apis::Core::Hashable
49133
49224
 
49134
- # URL of the Certificate Map to associate with this TargetSslProxy.
49225
+ # URL of the Certificate Map to associate with this TargetSslProxy. Accepted
49226
+ # format is //certificatemanager.googleapis.com/projects/`project `/locations/`
49227
+ # location`/certificateMaps/`resourceName`.
49135
49228
  # Corresponds to the JSON property `certificateMap`
49136
49229
  # @return [String]
49137
49230
  attr_accessor :certificate_map
@@ -49196,7 +49289,9 @@ module Google
49196
49289
 
49197
49290
  # URL of a certificate map that identifies a certificate map associated with the
49198
49291
  # given target proxy. This field can only be set for global target proxies. If
49199
- # set, sslCertificates will be ignored.
49292
+ # set, sslCertificates will be ignored. Accepted format is //certificatemanager.
49293
+ # googleapis.com/projects/`project `/locations/`location`/certificateMaps/`
49294
+ # resourceName`.
49200
49295
  # Corresponds to the JSON property `certificateMap`
49201
49296
  # @return [String]
49202
49297
  attr_accessor :certificate_map
@@ -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.64.0"
19
+ GEM_VERSION = "0.66.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 = "20230322"
25
+ REVISION = "20230418"
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
 
@@ -7511,6 +7517,7 @@ module Google
7511
7517
  property :source_snapshot, as: 'sourceSnapshot'
7512
7518
  property :source_snapshot_encryption_key, as: 'sourceSnapshotEncryptionKey', class: Google::Apis::ComputeAlpha::CustomerEncryptionKey, decorator: Google::Apis::ComputeAlpha::CustomerEncryptionKey::Representation
7513
7519
 
7520
+ property :storage_pool, as: 'storagePool'
7514
7521
  end
7515
7522
  end
7516
7523
 
@@ -8244,8 +8251,6 @@ module Google
8244
8251
  # @private
8245
8252
  class Representation < Google::Apis::Core::JsonRepresentation
8246
8253
  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
8254
  property :instance_properties, as: 'instanceProperties', class: Google::Apis::ComputeAlpha::InstanceProperties, decorator: Google::Apis::ComputeAlpha::InstanceProperties::Representation
8250
8255
 
8251
8256
  property :location_policy, as: 'locationPolicy', class: Google::Apis::ComputeAlpha::LocationPolicy, decorator: Google::Apis::ComputeAlpha::LocationPolicy::Representation
@@ -8266,6 +8271,17 @@ module Google
8266
8271
  end
8267
8272
  end
8268
8273
 
8274
+ class BulkInsertOperationStatus
8275
+ # @private
8276
+ class Representation < Google::Apis::Core::JsonRepresentation
8277
+ property :created_vm_count, as: 'createdVmCount'
8278
+ property :deleted_vm_count, as: 'deletedVmCount'
8279
+ property :failed_to_create_vm_count, as: 'failedToCreateVmCount'
8280
+ property :status, as: 'status'
8281
+ property :target_vm_count, as: 'targetVmCount'
8282
+ end
8283
+ end
8284
+
8269
8285
  class BundledLocalSsds
8270
8286
  # @private
8271
8287
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8631,6 +8647,7 @@ module Google
8631
8647
  property :source_snapshot_id, as: 'sourceSnapshotId'
8632
8648
  property :source_storage_object, as: 'sourceStorageObject'
8633
8649
  property :status, as: 'status'
8650
+ property :storage_pool, as: 'storagePool'
8634
8651
  property :storage_type, as: 'storageType'
8635
8652
  property :type, as: 'type'
8636
8653
  collection :user_licenses, as: 'userLicenses'
@@ -8675,6 +8692,8 @@ module Google
8675
8692
  class DiskAsyncReplication
8676
8693
  # @private
8677
8694
  class Representation < Google::Apis::Core::JsonRepresentation
8695
+ property :consistency_group_policy, as: 'consistencyGroupPolicy'
8696
+ property :consistency_group_policy_id, as: 'consistencyGroupPolicyId'
8678
8697
  property :disk, as: 'disk'
8679
8698
  property :disk_id, as: 'diskId'
8680
8699
  end
@@ -11682,6 +11701,14 @@ module Google
11682
11701
  end
11683
11702
  end
11684
11703
 
11704
+ class InstancesBulkInsertOperationMetadata
11705
+ # @private
11706
+ class Representation < Google::Apis::Core::JsonRepresentation
11707
+ hash :per_location_status, as: 'perLocationStatus', class: Google::Apis::ComputeAlpha::BulkInsertOperationStatus, decorator: Google::Apis::ComputeAlpha::BulkInsertOperationStatus::Representation
11708
+
11709
+ end
11710
+ end
11711
+
11685
11712
  class InstancesGetEffectiveFirewallsResponse
11686
11713
  # @private
11687
11714
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -14414,6 +14441,8 @@ module Google
14414
14441
  property :http_error_status_code, as: 'httpErrorStatusCode'
14415
14442
  property :id, :numeric_string => true, as: 'id'
14416
14443
  property :insert_time, as: 'insertTime'
14444
+ property :instances_bulk_insert_operation_metadata, as: 'instancesBulkInsertOperationMetadata', class: Google::Apis::ComputeAlpha::InstancesBulkInsertOperationMetadata, decorator: Google::Apis::ComputeAlpha::InstancesBulkInsertOperationMetadata::Representation
14445
+
14417
14446
  property :kind, as: 'kind'
14418
14447
  property :name, as: 'name'
14419
14448
  property :operation_group_id, as: 'operationGroupId'
@@ -16411,8 +16440,6 @@ module Google
16411
16440
 
16412
16441
  hash :service_integration_statuses, as: 'serviceIntegrationStatuses', class: Google::Apis::ComputeAlpha::ResourceStatusServiceIntegrationStatus, decorator: Google::Apis::ComputeAlpha::ResourceStatusServiceIntegrationStatus::Representation
16413
16442
 
16414
- property :upcoming_maintenance, as: 'upcomingMaintenance', class: Google::Apis::ComputeAlpha::ResourceStatusUpcomingMaintenance, decorator: Google::Apis::ComputeAlpha::ResourceStatusUpcomingMaintenance::Representation
16415
-
16416
16443
  end
16417
16444
  end
16418
16445
 
@@ -16440,13 +16467,6 @@ module Google
16440
16467
  end
16441
16468
  end
16442
16469
 
16443
- class ResourceStatusUpcomingMaintenance
16444
- # @private
16445
- class Representation < Google::Apis::Core::JsonRepresentation
16446
- property :can_reschedule, as: 'canReschedule'
16447
- end
16448
- end
16449
-
16450
16470
  class RolloutPolicy
16451
16471
  # @private
16452
16472
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -17832,6 +17852,7 @@ module Google
17832
17852
  property :source_disk, as: 'sourceDisk'
17833
17853
  property :source_disk_encryption_key, as: 'sourceDiskEncryptionKey', class: Google::Apis::ComputeAlpha::CustomerEncryptionKey, decorator: Google::Apis::ComputeAlpha::CustomerEncryptionKey::Representation
17834
17854
 
17855
+ property :source_disk_for_recovery_checkpoint, as: 'sourceDiskForRecoveryCheckpoint'
17835
17856
  property :source_disk_id, as: 'sourceDiskId'
17836
17857
  property :source_instant_snapshot, as: 'sourceInstantSnapshot'
17837
17858
  property :source_instant_snapshot_id, as: 'sourceInstantSnapshotId'
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.64.0
4
+ version: 0.66.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-02 00:00:00.000000000 Z
11
+ date: 2023-04-30 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.64.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_alpha/v0.66.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: []