Class: Google::Apis::ComputeAlpha::StoragePool

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb

Overview

Represents a zonal storage pool resource.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StoragePool

Returns a new instance of StoragePool.



47174
47175
47176
# File 'lib/google/apis/compute_alpha/classes.rb', line 47174

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#creation_timestampString

[Output Only] Creation timestamp in RFC3339 text format. Corresponds to the JSON property creationTimestamp

Returns:

  • (String)


47071
47072
47073
# File 'lib/google/apis/compute_alpha/classes.rb', line 47071

def creation_timestamp
  @creation_timestamp
end

#descriptionString

An optional description of this resource. Provide this property when you create the resource. Corresponds to the JSON property description

Returns:

  • (String)


47077
47078
47079
# File 'lib/google/apis/compute_alpha/classes.rb', line 47077

def description
  @description
end

#idFixnum

[Output Only] The unique identifier for the resource. This identifier is defined by the server. Corresponds to the JSON property id

Returns:

  • (Fixnum)


47083
47084
47085
# File 'lib/google/apis/compute_alpha/classes.rb', line 47083

def id
  @id
end

#kindString

[Output Only] Type of the resource. Always compute#storagePool for storage pools. Corresponds to the JSON property kind

Returns:

  • (String)


47089
47090
47091
# File 'lib/google/apis/compute_alpha/classes.rb', line 47089

def kind
  @kind
end

#label_fingerprintString

A fingerprint for the labels being applied to this storage pool, which is essentially a hash of the labels set used for optimistic locking. The fingerprint is initially generated by Compute Engine and changes after every request to modify or update labels. You must always provide an up-to-date fingerprint hash in order to update or change labels, otherwise the request will fail with error 412 conditionNotMet. To see the latest fingerprint, make a get() request to retrieve a storage pool. Corresponds to the JSON property labelFingerprint NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


47101
47102
47103
# File 'lib/google/apis/compute_alpha/classes.rb', line 47101

def label_fingerprint
  @label_fingerprint
end

#labelsHash<String,String>

Labels to apply to this storage pool. These can be later modified by the setLabels method. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


47107
47108
47109
# File 'lib/google/apis/compute_alpha/classes.rb', line 47107

def labels
  @labels
end

#nameString

Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a- z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash. Corresponds to the JSON property name

Returns:

  • (String)


47117
47118
47119
# File 'lib/google/apis/compute_alpha/classes.rb', line 47117

def name
  @name
end

#provisioned_iopsFixnum

Provsioned IOPS of the storage pool. Corresponds to the JSON property provisionedIops

Returns:

  • (Fixnum)


47122
47123
47124
# File 'lib/google/apis/compute_alpha/classes.rb', line 47122

def provisioned_iops
  @provisioned_iops
end

#provisioned_throughputFixnum

Provisioned throughput of the storage pool. Only relevant if the storage pool type is hyperdisk-balanced or hyperdisk-throughput. Corresponds to the JSON property provisionedThroughput

Returns:

  • (Fixnum)


47128
47129
47130
# File 'lib/google/apis/compute_alpha/classes.rb', line 47128

def provisioned_throughput
  @provisioned_throughput
end

#resource_statusGoogle::Apis::ComputeAlpha::StoragePoolResourceStatus

[Output Only] Contains output only fields. Corresponds to the JSON property resourceStatus



47133
47134
47135
# File 'lib/google/apis/compute_alpha/classes.rb', line 47133

def resource_status
  @resource_status
end

[Output Only] Server-defined fully-qualified URL for this resource. Corresponds to the JSON property selfLink

Returns:

  • (String)


47138
47139
47140
# File 'lib/google/apis/compute_alpha/classes.rb', line 47138

def self_link
  @self_link
end

[Output Only] Server-defined URL for this resource's resource id. Corresponds to the JSON property selfLinkWithId

Returns:

  • (String)


47143
47144
47145
# File 'lib/google/apis/compute_alpha/classes.rb', line 47143

def self_link_with_id
  @self_link_with_id
end

#size_gbFixnum

Size, in GiB, of the storage pool. Corresponds to the JSON property sizeGb

Returns:

  • (Fixnum)


47148
47149
47150
# File 'lib/google/apis/compute_alpha/classes.rb', line 47148

def size_gb
  @size_gb
end

#stateString

[Output Only] The status of storage pool creation. - CREATING: Storage pool is provisioning. storagePool. - FAILED: Storage pool creation failed. - READY: Storage pool is ready for use. - DELETING: Storage pool is deleting. Corresponds to the JSON property state

Returns:

  • (String)


47155
47156
47157
# File 'lib/google/apis/compute_alpha/classes.rb', line 47155

def state
  @state
end

#statusGoogle::Apis::ComputeAlpha::StoragePoolResourceStatus

[Output Only] Contains output only fields. Corresponds to the JSON property status



47160
47161
47162
# File 'lib/google/apis/compute_alpha/classes.rb', line 47160

def status
  @status
end

#storage_pool_typeString

Type of the storage pool. Corresponds to the JSON property storagePoolType

Returns:

  • (String)


47165
47166
47167
# File 'lib/google/apis/compute_alpha/classes.rb', line 47165

def storage_pool_type
  @storage_pool_type
end

#zoneString

[Output Only] URL of the zone where the storage pool resides. You must specify this field as part of the HTTP request URL. It is not settable as a field in the request body. Corresponds to the JSON property zone

Returns:

  • (String)


47172
47173
47174
# File 'lib/google/apis/compute_alpha/classes.rb', line 47172

def zone
  @zone
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



47179
47180
47181
47182
47183
47184
47185
47186
47187
47188
47189
47190
47191
47192
47193
47194
47195
47196
47197
# File 'lib/google/apis/compute_alpha/classes.rb', line 47179

def update!(**args)
  @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp)
  @description = args[:description] if args.key?(:description)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @label_fingerprint = args[:label_fingerprint] if args.key?(:label_fingerprint)
  @labels = args[:labels] if args.key?(:labels)
  @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_status = args[:resource_status] if args.key?(:resource_status)
  @self_link = args[:self_link] if args.key?(:self_link)
  @self_link_with_id = args[:self_link_with_id] if args.key?(:self_link_with_id)
  @size_gb = args[:size_gb] if args.key?(:size_gb)
  @state = args[:state] if args.key?(:state)
  @status = args[:status] if args.key?(:status)
  @storage_pool_type = args[:storage_pool_type] if args.key?(:storage_pool_type)
  @zone = args[:zone] if args.key?(:zone)
end