@@ -2196,6 +2196,12 @@ class StoragePool
21962196 # @return [Fixnum]
21972197 attr_accessor :capacity_gib
21982198
2199+ # Output only. Total cold tier data rounded down to the nearest GiB used by the
2200+ # storage pool.
2201+ # Corresponds to the JSON property `coldTierSizeUsedGib`
2202+ # @return [Fixnum]
2203+ attr_accessor :cold_tier_size_used_gib
2204+
21992205 # Output only. Create time of the storage pool
22002206 # Corresponds to the JSON property `createTime`
22012207 # @return [String]
@@ -2242,6 +2248,12 @@ class StoragePool
22422248 # @return [Fixnum]
22432249 attr_accessor :hot_tier_size_gib
22442250
2251+ # Output only. Total hot tier data rounded down to the nearest GiB used by the
2252+ # storage pool.
2253+ # Corresponds to the JSON property `hotTierSizeUsedGib`
2254+ # @return [Fixnum]
2255+ attr_accessor :hot_tier_size_used_gib
2256+
22452257 # Optional. Specifies the KMS config to be used for volume encryption.
22462258 # Corresponds to the JSON property `kmsConfig`
22472259 # @return [String]
@@ -2348,13 +2360,15 @@ def update!(**args)
23482360 @allow_auto_tiering = args [ :allow_auto_tiering ] if args . key? ( :allow_auto_tiering )
23492361 @available_throughput_mibps = args [ :available_throughput_mibps ] if args . key? ( :available_throughput_mibps )
23502362 @capacity_gib = args [ :capacity_gib ] if args . key? ( :capacity_gib )
2363+ @cold_tier_size_used_gib = args [ :cold_tier_size_used_gib ] if args . key? ( :cold_tier_size_used_gib )
23512364 @create_time = args [ :create_time ] if args . key? ( :create_time )
23522365 @custom_performance_enabled = args [ :custom_performance_enabled ] if args . key? ( :custom_performance_enabled )
23532366 @description = args [ :description ] if args . key? ( :description )
23542367 @enable_hot_tier_auto_resize = args [ :enable_hot_tier_auto_resize ] if args . key? ( :enable_hot_tier_auto_resize )
23552368 @encryption_type = args [ :encryption_type ] if args . key? ( :encryption_type )
23562369 @global_access_allowed = args [ :global_access_allowed ] if args . key? ( :global_access_allowed )
23572370 @hot_tier_size_gib = args [ :hot_tier_size_gib ] if args . key? ( :hot_tier_size_gib )
2371+ @hot_tier_size_used_gib = args [ :hot_tier_size_used_gib ] if args . key? ( :hot_tier_size_used_gib )
23582372 @kms_config = args [ :kms_config ] if args . key? ( :kms_config )
23592373 @labels = args [ :labels ] if args . key? ( :labels )
23602374 @ldap_enabled = args [ :ldap_enabled ] if args . key? ( :ldap_enabled )
@@ -2637,6 +2651,12 @@ class Volume
26372651 attr_accessor :has_replication
26382652 alias_method :has_replication? , :has_replication
26392653
2654+ # Output only. Total hot tier data rounded down to the nearest GiB used by the
2655+ # Volume. This field is only used for flex Service Level
2656+ # Corresponds to the JSON property `hotTierSizeUsedGib`
2657+ # @return [Fixnum]
2658+ attr_accessor :hot_tier_size_used_gib
2659+
26402660 # The Hybrid Replication parameters for the volume.
26412661 # Corresponds to the JSON property `hybridReplicationParameters`
26422662 # @return [Google::Apis::NetappV1::HybridReplicationParameters]
@@ -2818,6 +2838,7 @@ def update!(**args)
28182838 @encryption_type = args [ :encryption_type ] if args . key? ( :encryption_type )
28192839 @export_policy = args [ :export_policy ] if args . key? ( :export_policy )
28202840 @has_replication = args [ :has_replication ] if args . key? ( :has_replication )
2841+ @hot_tier_size_used_gib = args [ :hot_tier_size_used_gib ] if args . key? ( :hot_tier_size_used_gib )
28212842 @hybrid_replication_parameters = args [ :hybrid_replication_parameters ] if args . key? ( :hybrid_replication_parameters )
28222843 @kerberos_enabled = args [ :kerberos_enabled ] if args . key? ( :kerberos_enabled )
28232844 @kms_config = args [ :kms_config ] if args . key? ( :kms_config )
0 commit comments