google-apis-compute_v1 0.136.0 → 0.137.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: c9f8af21f65ceb420a3f05732630d568130cbe9731e0df11e39c055fb2efe8dc
4
- data.tar.gz: 07a60454174eb9c49033aceeb883fd195fba7b48a24b0cceefd00fd82dc9e8df
3
+ metadata.gz: 4dda5051a26e9349d81c9124b8ef45017b2d985c710e3c2bcdc89e149b1d2656
4
+ data.tar.gz: 6d61abdb82807f560da35145aa5859732e6af3f8746f58f06221baf8bd4dda52
5
5
  SHA512:
6
- metadata.gz: 627bcab035d3facc187685baef5e236d5d32600197206e5b5478b7d3efdb2fa5363b98d3f0f731ffc23bb0b42ae04fcd359d2700f9284c57bdddcc0d31fcb693
7
- data.tar.gz: 02ac4c8d59eec8b919dd4845124072c67c9e13a6d2e3a44a02a4a0cc4052aafc3d35e057c2dcc099195454d75a931772c1a39ecad608e38f130584a9545dc849
6
+ metadata.gz: 7b8477a04e316a96516ccfdc00ecd8e05cc3e27a1ce8c4394faaa69405f75c20692dce6360ca724effe28064963673fd039051457c2f9189d149bfc03e254d0c
7
+ data.tar.gz: 9a1ddfb0e511710f1cef72f8f2af7fd373d7ab10ad95fd81cc70a38e0b52430168b55a046f70b1a0a83ec0740859dca859769ba359ca2ed059bd3d9405e6b9d5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-compute_v1
2
2
 
3
+ ### v0.137.0 (2025-12-14)
4
+
5
+ * Regenerated from discovery document revision 20251210
6
+
3
7
  ### v0.136.0 (2025-12-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20251202
@@ -52668,6 +52668,11 @@ module Google
52668
52668
  # @return [String]
52669
52669
  attr_accessor :description
52670
52670
 
52671
+ # Exapool provisioned capacities for each SKU type
52672
+ # Corresponds to the JSON property `exapoolProvisionedCapacityGb`
52673
+ # @return [Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb]
52674
+ attr_accessor :exapool_provisioned_capacity_gb
52675
+
52671
52676
  # Output only. [Output Only] The unique identifier for the resource. This
52672
52677
  # identifier is
52673
52678
  # defined by the server.
@@ -52789,6 +52794,7 @@ module Google
52789
52794
  @capacity_provisioning_type = args[:capacity_provisioning_type] if args.key?(:capacity_provisioning_type)
52790
52795
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
52791
52796
  @description = args[:description] if args.key?(:description)
52797
+ @exapool_provisioned_capacity_gb = args[:exapool_provisioned_capacity_gb] if args.key?(:exapool_provisioned_capacity_gb)
52792
52798
  @id = args[:id] if args.key?(:id)
52793
52799
  @kind = args[:kind] if args.key?(:kind)
52794
52800
  @label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
@@ -53028,6 +53034,40 @@ module Google
53028
53034
  end
53029
53035
  end
53030
53036
 
53037
+ # Exapool provisioned capacities for each SKU type
53038
+ class StoragePoolExapoolProvisionedCapacityGb
53039
+ include Google::Apis::Core::Hashable
53040
+
53041
+ # Output only. Size, in GiB, of provisioned capacity-optimized capacity for this
53042
+ # Exapool
53043
+ # Corresponds to the JSON property `capacityOptimized`
53044
+ # @return [Fixnum]
53045
+ attr_accessor :capacity_optimized
53046
+
53047
+ # Output only. Size, in GiB, of provisioned read-optimized capacity for this
53048
+ # Exapool
53049
+ # Corresponds to the JSON property `readOptimized`
53050
+ # @return [Fixnum]
53051
+ attr_accessor :read_optimized
53052
+
53053
+ # Output only. Size, in GiB, of provisioned write-optimized capacity for this
53054
+ # Exapool
53055
+ # Corresponds to the JSON property `writeOptimized`
53056
+ # @return [Fixnum]
53057
+ attr_accessor :write_optimized
53058
+
53059
+ def initialize(**args)
53060
+ update!(**args)
53061
+ end
53062
+
53063
+ # Update properties of this object
53064
+ def update!(**args)
53065
+ @capacity_optimized = args[:capacity_optimized] if args.key?(:capacity_optimized)
53066
+ @read_optimized = args[:read_optimized] if args.key?(:read_optimized)
53067
+ @write_optimized = args[:write_optimized] if args.key?(:write_optimized)
53068
+ end
53069
+ end
53070
+
53031
53071
  # A list of StoragePool resources.
53032
53072
  class StoragePoolList
53033
53073
  include Google::Apis::Core::Hashable
@@ -53316,6 +53356,28 @@ module Google
53316
53356
  # @return [Fixnum]
53317
53357
  attr_accessor :disk_count
53318
53358
 
53359
+ # Output only. [Output Only] Maximum allowed read IOPS for this Exapool.
53360
+ # Corresponds to the JSON property `exapoolMaxReadIops`
53361
+ # @return [Fixnum]
53362
+ attr_accessor :exapool_max_read_iops
53363
+
53364
+ # Output only. [Output Only] Maximum allowed read throughput in MiB/s for
53365
+ # this Exapool.
53366
+ # Corresponds to the JSON property `exapoolMaxReadThroughput`
53367
+ # @return [Fixnum]
53368
+ attr_accessor :exapool_max_read_throughput
53369
+
53370
+ # Output only. [Output Only] Maximum allowed write IOPS for this Exapool.
53371
+ # Corresponds to the JSON property `exapoolMaxWriteIops`
53372
+ # @return [Fixnum]
53373
+ attr_accessor :exapool_max_write_iops
53374
+
53375
+ # Output only. [Output Only] Maximum allowed write throughput in MiB/s
53376
+ # for this Exapool.
53377
+ # Corresponds to the JSON property `exapoolMaxWriteThroughput`
53378
+ # @return [Fixnum]
53379
+ attr_accessor :exapool_max_write_throughput
53380
+
53319
53381
  # Output only. [Output Only] Timestamp of the last successful resize inRFC3339
53320
53382
  # text format.
53321
53383
  # Corresponds to the JSON property `lastResizeTimestamp`
@@ -53379,6 +53441,10 @@ module Google
53379
53441
  # Update properties of this object
53380
53442
  def update!(**args)
53381
53443
  @disk_count = args[:disk_count] if args.key?(:disk_count)
53444
+ @exapool_max_read_iops = args[:exapool_max_read_iops] if args.key?(:exapool_max_read_iops)
53445
+ @exapool_max_read_throughput = args[:exapool_max_read_throughput] if args.key?(:exapool_max_read_throughput)
53446
+ @exapool_max_write_iops = args[:exapool_max_write_iops] if args.key?(:exapool_max_write_iops)
53447
+ @exapool_max_write_throughput = args[:exapool_max_write_throughput] if args.key?(:exapool_max_write_throughput)
53382
53448
  @last_resize_timestamp = args[:last_resize_timestamp] if args.key?(:last_resize_timestamp)
53383
53449
  @max_total_provisioned_disk_capacity_gb = args[:max_total_provisioned_disk_capacity_gb] if args.key?(:max_total_provisioned_disk_capacity_gb)
53384
53450
  @pool_used_capacity_bytes = args[:pool_used_capacity_bytes] if args.key?(:pool_used_capacity_bytes)
@@ -54001,7 +54067,8 @@ module Google
54001
54067
  # explicitly set, it will not appear in get listings. If not set
54002
54068
  # the default behavior is determined by the org policy, if there is no org
54003
54069
  # policy specified, then it will default to disabled. This field isn't
54004
- # supported if the subnet purpose field is set toREGIONAL_MANAGED_PROXY.
54070
+ # supported if the subnet purpose field is set toREGIONAL_MANAGED_PROXY. It is
54071
+ # recommended to uselogConfig.enable field instead.
54005
54072
  # Corresponds to the JSON property `enableFlowLogs`
54006
54073
  # @return [Boolean]
54007
54074
  attr_accessor :enable_flow_logs
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ComputeV1
18
18
  # Version of the google-apis-compute_v1 gem
19
- GEM_VERSION = "0.136.0"
19
+ GEM_VERSION = "0.137.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 = "20251202"
25
+ REVISION = "20251210"
26
26
  end
27
27
  end
28
28
  end
@@ -6478,6 +6478,12 @@ module Google
6478
6478
  include Google::Apis::Core::JsonObjectSupport
6479
6479
  end
6480
6480
 
6481
+ class StoragePoolExapoolProvisionedCapacityGb
6482
+ class Representation < Google::Apis::Core::JsonRepresentation; end
6483
+
6484
+ include Google::Apis::Core::JsonObjectSupport
6485
+ end
6486
+
6481
6487
  class StoragePoolList
6482
6488
  class Representation < Google::Apis::Core::JsonRepresentation; end
6483
6489
 
@@ -19801,6 +19807,8 @@ module Google
19801
19807
  property :capacity_provisioning_type, as: 'capacityProvisioningType'
19802
19808
  property :creation_timestamp, as: 'creationTimestamp'
19803
19809
  property :description, as: 'description'
19810
+ property :exapool_provisioned_capacity_gb, as: 'exapoolProvisionedCapacityGb', class: Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb, decorator: Google::Apis::ComputeV1::StoragePoolExapoolProvisionedCapacityGb::Representation
19811
+
19804
19812
  property :id, :numeric_string => true, as: 'id'
19805
19813
  property :kind, as: 'kind'
19806
19814
  property :label_fingerprint, :base64 => true, as: 'labelFingerprint'
@@ -19873,6 +19881,15 @@ module Google
19873
19881
  end
19874
19882
  end
19875
19883
 
19884
+ class StoragePoolExapoolProvisionedCapacityGb
19885
+ # @private
19886
+ class Representation < Google::Apis::Core::JsonRepresentation
19887
+ property :capacity_optimized, :numeric_string => true, as: 'capacityOptimized'
19888
+ property :read_optimized, :numeric_string => true, as: 'readOptimized'
19889
+ property :write_optimized, :numeric_string => true, as: 'writeOptimized'
19890
+ end
19891
+ end
19892
+
19876
19893
  class StoragePoolList
19877
19894
  # @private
19878
19895
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -19945,6 +19962,10 @@ module Google
19945
19962
  # @private
19946
19963
  class Representation < Google::Apis::Core::JsonRepresentation
19947
19964
  property :disk_count, :numeric_string => true, as: 'diskCount'
19965
+ property :exapool_max_read_iops, :numeric_string => true, as: 'exapoolMaxReadIops'
19966
+ property :exapool_max_read_throughput, :numeric_string => true, as: 'exapoolMaxReadThroughput'
19967
+ property :exapool_max_write_iops, :numeric_string => true, as: 'exapoolMaxWriteIops'
19968
+ property :exapool_max_write_throughput, :numeric_string => true, as: 'exapoolMaxWriteThroughput'
19948
19969
  property :last_resize_timestamp, as: 'lastResizeTimestamp'
19949
19970
  property :max_total_provisioned_disk_capacity_gb, :numeric_string => true, as: 'maxTotalProvisionedDiskCapacityGb'
19950
19971
  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_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.136.0
4
+ version: 0.137.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.136.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-compute_v1/v0.137.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-compute_v1
62
62
  rdoc_options: []
63
63
  require_paths: