google-apis-compute_beta 0.128.0 → 0.129.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: 4ea894355c8ab15f61ad408772d79d702dd7f9cf50ab6adfcecbdef410052f75
|
|
4
|
+
data.tar.gz: 1324d9cf94b03cd611a1d8c054db341b2e15d23219cbce492918ce854f8d544e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44a4bc7c582c45e47fd58633a982af62859d37bfefc3e9dad8f8d0074efd86ee0790b0974f5488fa6fa04c44a00f6b72e2488fb454336656d29aa125da6f9050
|
|
7
|
+
data.tar.gz: 7cd4802b934f3252c4260d6c10bd1dcc8ce72da8e5339d58787a44bb276dbf649c7a6e2b028ff200bea0bd868dc497683c55490425cada73026efc03a44b7b5b
|
data/CHANGELOG.md
CHANGED
|
@@ -16340,17 +16340,19 @@ module Google
|
|
|
16340
16340
|
class GlobalVmExtensionPolicyRolloutOperationRolloutInput
|
|
16341
16341
|
include Google::Apis::Core::Hashable
|
|
16342
16342
|
|
|
16343
|
-
# Optional.
|
|
16344
|
-
#
|
|
16345
|
-
#
|
|
16346
|
-
#
|
|
16347
|
-
# the
|
|
16348
|
-
#
|
|
16349
|
-
#
|
|
16350
|
-
#
|
|
16351
|
-
#
|
|
16352
|
-
#
|
|
16353
|
-
#
|
|
16343
|
+
# Optional. Specifies the behavior of the rollout if a conflict is detected in a
|
|
16344
|
+
# project during a rollout. This only applies to `insert` and `update`
|
|
16345
|
+
# methods.
|
|
16346
|
+
# A conflict occurs in the following cases:
|
|
16347
|
+
# * `insert` method: If the zonal policy already exists when the insert
|
|
16348
|
+
# happens.
|
|
16349
|
+
# * `update` method: If the zonal policy was modified by a zonal API call
|
|
16350
|
+
# outside of this rollout.
|
|
16351
|
+
# Possible values are the following:
|
|
16352
|
+
# * `""` (empty string): If a conflict occurs, the local value is not
|
|
16353
|
+
# overwritten. This is the default behavior.
|
|
16354
|
+
# * `"overwrite"`: If a conflict occurs, the local value is overwritten
|
|
16355
|
+
# with the rollout value.
|
|
16354
16356
|
# Corresponds to the JSON property `conflictBehavior`
|
|
16355
16357
|
# @return [String]
|
|
16356
16358
|
attr_accessor :conflict_behavior
|
|
@@ -16367,10 +16369,16 @@ module Google
|
|
|
16367
16369
|
# @return [String]
|
|
16368
16370
|
attr_accessor :predefined_rollout_plan
|
|
16369
16371
|
|
|
16370
|
-
# Optional. The UUID
|
|
16371
|
-
#
|
|
16372
|
-
#
|
|
16373
|
-
#
|
|
16372
|
+
# Optional. The UUID that identifies a policy rollout retry attempt for update
|
|
16373
|
+
# and
|
|
16374
|
+
# delete operations. Set this field only when retrying a rollout for an
|
|
16375
|
+
# existing extension policy.
|
|
16376
|
+
# * `update` method: Lets you retry policy rollout without changes.
|
|
16377
|
+
# An error occurs if you set retry_uuid but the policy is modified.
|
|
16378
|
+
# * `delete` method: Lets you retry policy deletion rollout if the
|
|
16379
|
+
# previous deletion rollout is not finished and the policy is in the
|
|
16380
|
+
# DELETING state. If you set this field when the policy is not in the
|
|
16381
|
+
# DELETING state, an error occurs.
|
|
16374
16382
|
# Corresponds to the JSON property `retryUuid`
|
|
16375
16383
|
# @return [String]
|
|
16376
16384
|
attr_accessor :retry_uuid
|
|
@@ -59846,6 +59854,11 @@ module Google
|
|
|
59846
59854
|
# @return [String]
|
|
59847
59855
|
attr_accessor :description
|
|
59848
59856
|
|
|
59857
|
+
# Exapool provisioned capacities for each SKU type
|
|
59858
|
+
# Corresponds to the JSON property `exapoolProvisionedCapacityGb`
|
|
59859
|
+
# @return [Google::Apis::ComputeBeta::StoragePoolExapoolProvisionedCapacityGb]
|
|
59860
|
+
attr_accessor :exapool_provisioned_capacity_gb
|
|
59861
|
+
|
|
59849
59862
|
# Output only. [Output Only] The unique identifier for the resource. This
|
|
59850
59863
|
# identifier is
|
|
59851
59864
|
# defined by the server.
|
|
@@ -59967,6 +59980,7 @@ module Google
|
|
|
59967
59980
|
@capacity_provisioning_type = args[:capacity_provisioning_type] if args.key?(:capacity_provisioning_type)
|
|
59968
59981
|
@creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
|
|
59969
59982
|
@description = args[:description] if args.key?(:description)
|
|
59983
|
+
@exapool_provisioned_capacity_gb = args[:exapool_provisioned_capacity_gb] if args.key?(:exapool_provisioned_capacity_gb)
|
|
59970
59984
|
@id = args[:id] if args.key?(:id)
|
|
59971
59985
|
@kind = args[:kind] if args.key?(:kind)
|
|
59972
59986
|
@label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
|
|
@@ -60206,6 +60220,40 @@ module Google
|
|
|
60206
60220
|
end
|
|
60207
60221
|
end
|
|
60208
60222
|
|
|
60223
|
+
# Exapool provisioned capacities for each SKU type
|
|
60224
|
+
class StoragePoolExapoolProvisionedCapacityGb
|
|
60225
|
+
include Google::Apis::Core::Hashable
|
|
60226
|
+
|
|
60227
|
+
# Output only. Size, in GiB, of provisioned capacity-optimized capacity for this
|
|
60228
|
+
# Exapool
|
|
60229
|
+
# Corresponds to the JSON property `capacityOptimized`
|
|
60230
|
+
# @return [Fixnum]
|
|
60231
|
+
attr_accessor :capacity_optimized
|
|
60232
|
+
|
|
60233
|
+
# Output only. Size, in GiB, of provisioned read-optimized capacity for this
|
|
60234
|
+
# Exapool
|
|
60235
|
+
# Corresponds to the JSON property `readOptimized`
|
|
60236
|
+
# @return [Fixnum]
|
|
60237
|
+
attr_accessor :read_optimized
|
|
60238
|
+
|
|
60239
|
+
# Output only. Size, in GiB, of provisioned write-optimized capacity for this
|
|
60240
|
+
# Exapool
|
|
60241
|
+
# Corresponds to the JSON property `writeOptimized`
|
|
60242
|
+
# @return [Fixnum]
|
|
60243
|
+
attr_accessor :write_optimized
|
|
60244
|
+
|
|
60245
|
+
def initialize(**args)
|
|
60246
|
+
update!(**args)
|
|
60247
|
+
end
|
|
60248
|
+
|
|
60249
|
+
# Update properties of this object
|
|
60250
|
+
def update!(**args)
|
|
60251
|
+
@capacity_optimized = args[:capacity_optimized] if args.key?(:capacity_optimized)
|
|
60252
|
+
@read_optimized = args[:read_optimized] if args.key?(:read_optimized)
|
|
60253
|
+
@write_optimized = args[:write_optimized] if args.key?(:write_optimized)
|
|
60254
|
+
end
|
|
60255
|
+
end
|
|
60256
|
+
|
|
60209
60257
|
# A list of StoragePool resources.
|
|
60210
60258
|
class StoragePoolList
|
|
60211
60259
|
include Google::Apis::Core::Hashable
|
|
@@ -60494,6 +60542,28 @@ module Google
|
|
|
60494
60542
|
# @return [Fixnum]
|
|
60495
60543
|
attr_accessor :disk_count
|
|
60496
60544
|
|
|
60545
|
+
# Output only. [Output Only] Maximum allowed read IOPS for this Exapool.
|
|
60546
|
+
# Corresponds to the JSON property `exapoolMaxReadIops`
|
|
60547
|
+
# @return [Fixnum]
|
|
60548
|
+
attr_accessor :exapool_max_read_iops
|
|
60549
|
+
|
|
60550
|
+
# Output only. [Output Only] Maximum allowed read throughput in MiB/s for
|
|
60551
|
+
# this Exapool.
|
|
60552
|
+
# Corresponds to the JSON property `exapoolMaxReadThroughput`
|
|
60553
|
+
# @return [Fixnum]
|
|
60554
|
+
attr_accessor :exapool_max_read_throughput
|
|
60555
|
+
|
|
60556
|
+
# Output only. [Output Only] Maximum allowed write IOPS for this Exapool.
|
|
60557
|
+
# Corresponds to the JSON property `exapoolMaxWriteIops`
|
|
60558
|
+
# @return [Fixnum]
|
|
60559
|
+
attr_accessor :exapool_max_write_iops
|
|
60560
|
+
|
|
60561
|
+
# Output only. [Output Only] Maximum allowed write throughput in MiB/s
|
|
60562
|
+
# for this Exapool.
|
|
60563
|
+
# Corresponds to the JSON property `exapoolMaxWriteThroughput`
|
|
60564
|
+
# @return [Fixnum]
|
|
60565
|
+
attr_accessor :exapool_max_write_throughput
|
|
60566
|
+
|
|
60497
60567
|
# Output only. [Output Only] Timestamp of the last successful resize inRFC3339
|
|
60498
60568
|
# text format.
|
|
60499
60569
|
# Corresponds to the JSON property `lastResizeTimestamp`
|
|
@@ -60557,6 +60627,10 @@ module Google
|
|
|
60557
60627
|
# Update properties of this object
|
|
60558
60628
|
def update!(**args)
|
|
60559
60629
|
@disk_count = args[:disk_count] if args.key?(:disk_count)
|
|
60630
|
+
@exapool_max_read_iops = args[:exapool_max_read_iops] if args.key?(:exapool_max_read_iops)
|
|
60631
|
+
@exapool_max_read_throughput = args[:exapool_max_read_throughput] if args.key?(:exapool_max_read_throughput)
|
|
60632
|
+
@exapool_max_write_iops = args[:exapool_max_write_iops] if args.key?(:exapool_max_write_iops)
|
|
60633
|
+
@exapool_max_write_throughput = args[:exapool_max_write_throughput] if args.key?(:exapool_max_write_throughput)
|
|
60560
60634
|
@last_resize_timestamp = args[:last_resize_timestamp] if args.key?(:last_resize_timestamp)
|
|
60561
60635
|
@max_total_provisioned_disk_capacity_gb = args[:max_total_provisioned_disk_capacity_gb] if args.key?(:max_total_provisioned_disk_capacity_gb)
|
|
60562
60636
|
@pool_used_capacity_bytes = args[:pool_used_capacity_bytes] if args.key?(:pool_used_capacity_bytes)
|
|
@@ -61199,7 +61273,8 @@ module Google
|
|
|
61199
61273
|
# explicitly set, it will not appear in get listings. If not set
|
|
61200
61274
|
# the default behavior is determined by the org policy, if there is no org
|
|
61201
61275
|
# policy specified, then it will default to disabled. This field isn't
|
|
61202
|
-
# supported if the subnet purpose field is set toREGIONAL_MANAGED_PROXY.
|
|
61276
|
+
# supported if the subnet purpose field is set toREGIONAL_MANAGED_PROXY. It is
|
|
61277
|
+
# recommended to uselogConfig.enable field instead.
|
|
61203
61278
|
# Corresponds to the JSON property `enableFlowLogs`
|
|
61204
61279
|
# @return [Boolean]
|
|
61205
61280
|
attr_accessor :enable_flow_logs
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ComputeBeta
|
|
18
18
|
# Version of the google-apis-compute_beta gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.129.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251210"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -7420,6 +7420,12 @@ module Google
|
|
|
7420
7420
|
include Google::Apis::Core::JsonObjectSupport
|
|
7421
7421
|
end
|
|
7422
7422
|
|
|
7423
|
+
class StoragePoolExapoolProvisionedCapacityGb
|
|
7424
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7425
|
+
|
|
7426
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
7427
|
+
end
|
|
7428
|
+
|
|
7423
7429
|
class StoragePoolList
|
|
7424
7430
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
7425
7431
|
|
|
@@ -22585,6 +22591,8 @@ module Google
|
|
|
22585
22591
|
property :capacity_provisioning_type, as: 'capacityProvisioningType'
|
|
22586
22592
|
property :creation_timestamp, as: 'creationTimestamp'
|
|
22587
22593
|
property :description, as: 'description'
|
|
22594
|
+
property :exapool_provisioned_capacity_gb, as: 'exapoolProvisionedCapacityGb', class: Google::Apis::ComputeBeta::StoragePoolExapoolProvisionedCapacityGb, decorator: Google::Apis::ComputeBeta::StoragePoolExapoolProvisionedCapacityGb::Representation
|
|
22595
|
+
|
|
22588
22596
|
property :id, :numeric_string => true, as: 'id'
|
|
22589
22597
|
property :kind, as: 'kind'
|
|
22590
22598
|
property :label_fingerprint, :base64 => true, as: 'labelFingerprint'
|
|
@@ -22657,6 +22665,15 @@ module Google
|
|
|
22657
22665
|
end
|
|
22658
22666
|
end
|
|
22659
22667
|
|
|
22668
|
+
class StoragePoolExapoolProvisionedCapacityGb
|
|
22669
|
+
# @private
|
|
22670
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
22671
|
+
property :capacity_optimized, :numeric_string => true, as: 'capacityOptimized'
|
|
22672
|
+
property :read_optimized, :numeric_string => true, as: 'readOptimized'
|
|
22673
|
+
property :write_optimized, :numeric_string => true, as: 'writeOptimized'
|
|
22674
|
+
end
|
|
22675
|
+
end
|
|
22676
|
+
|
|
22660
22677
|
class StoragePoolList
|
|
22661
22678
|
# @private
|
|
22662
22679
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -22729,6 +22746,10 @@ module Google
|
|
|
22729
22746
|
# @private
|
|
22730
22747
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
22731
22748
|
property :disk_count, :numeric_string => true, as: 'diskCount'
|
|
22749
|
+
property :exapool_max_read_iops, :numeric_string => true, as: 'exapoolMaxReadIops'
|
|
22750
|
+
property :exapool_max_read_throughput, :numeric_string => true, as: 'exapoolMaxReadThroughput'
|
|
22751
|
+
property :exapool_max_write_iops, :numeric_string => true, as: 'exapoolMaxWriteIops'
|
|
22752
|
+
property :exapool_max_write_throughput, :numeric_string => true, as: 'exapoolMaxWriteThroughput'
|
|
22732
22753
|
property :last_resize_timestamp, as: 'lastResizeTimestamp'
|
|
22733
22754
|
property :max_total_provisioned_disk_capacity_gb, :numeric_string => true, as: 'maxTotalProvisionedDiskCapacityGb'
|
|
22734
22755
|
property :pool_used_capacity_bytes, :numeric_string => true, as: 'poolUsedCapacityBytes'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-compute_beta
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.129.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-compute_beta/v0.129.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_beta
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|