Class: Google::Apis::ComputeV1::StoragePoolDisk
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::StoragePoolDisk
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_v1/classes.rb,
lib/google/apis/compute_v1/representations.rb,
lib/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#attached_instances ⇒ Array<String>
Output only.
-
#creation_timestamp ⇒ String
Output only.
-
#disk ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#provisioned_iops ⇒ Fixnum
Output only.
-
#provisioned_throughput ⇒ Fixnum
Output only.
-
#resource_policies ⇒ Array<String>
Output only.
-
#size_gb ⇒ Fixnum
Output only.
-
#status ⇒ String
Output only.
-
#type ⇒ String
Output only.
-
#used_bytes ⇒ Fixnum
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StoragePoolDisk
constructor
A new instance of StoragePoolDisk.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StoragePoolDisk
Returns a new instance of StoragePoolDisk.
60277 60278 60279 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60277 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attached_instances ⇒ Array<String>
Output only. [Output Only] Instances this disk is attached to.
Corresponds to the JSON property attachedInstances
60222 60223 60224 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60222 def attached_instances @attached_instances end |
#creation_timestamp ⇒ String
Output only. [Output Only] Creation timestamp inRFC3339
text format.
Corresponds to the JSON property creationTimestamp
60228 60229 60230 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60228 def @creation_timestamp end |
#disk ⇒ String
Output only. [Output Only] The URL of the disk.
Corresponds to the JSON property disk
60233 60234 60235 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60233 def disk @disk end |
#name ⇒ String
Output only. [Output Only] The name of the disk.
Corresponds to the JSON property name
60238 60239 60240 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60238 def name @name end |
#provisioned_iops ⇒ Fixnum
Output only. [Output Only] The number of IOPS provisioned for the disk.
Corresponds to the JSON property provisionedIops
60243 60244 60245 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60243 def provisioned_iops @provisioned_iops end |
#provisioned_throughput ⇒ Fixnum
Output only. [Output Only] The throughput provisioned for the disk.
Corresponds to the JSON property provisionedThroughput
60248 60249 60250 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60248 def provisioned_throughput @provisioned_throughput end |
#resource_policies ⇒ Array<String>
Output only. [Output Only] Resource policies applied to disk for automatic
snapshot
creations.
Corresponds to the JSON property resourcePolicies
60255 60256 60257 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60255 def resource_policies @resource_policies end |
#size_gb ⇒ Fixnum
Output only. [Output Only] The disk size, in GB.
Corresponds to the JSON property sizeGb
60260 60261 60262 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60260 def size_gb @size_gb end |
#status ⇒ String
Output only. [Output Only] The disk status.
Corresponds to the JSON property status
60265 60266 60267 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60265 def status @status end |
#type ⇒ String
Output only. [Output Only] The disk type.
Corresponds to the JSON property type
60270 60271 60272 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60270 def type @type end |
#used_bytes ⇒ Fixnum
Output only. [Output Only] Amount of disk space used.
Corresponds to the JSON property usedBytes
60275 60276 60277 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60275 def used_bytes @used_bytes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
60282 60283 60284 60285 60286 60287 60288 60289 60290 60291 60292 60293 60294 |
# File 'lib/google/apis/compute_v1/classes.rb', line 60282 def update!(**args) @attached_instances = args[:attached_instances] if args.key?(:attached_instances) @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp) @disk = args[:disk] if args.key?(:disk) @name = args[:name] if args.key?(:name) @provisioned_iops = args[:provisioned_iops] if args.key?(:provisioned_iops) @provisioned_throughput = args[:provisioned_throughput] if args.key?(:provisioned_throughput) @resource_policies = args[:resource_policies] if args.key?(:resource_policies) @size_gb = args[:size_gb] if args.key?(:size_gb) @status = args[:status] if args.key?(:status) @type = args[:type] if args.key?(:type) @used_bytes = args[:used_bytes] if args.key?(:used_bytes) end |