Class: Google::Apis::ComputeV1::Zone
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::Zone
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Overview
Represents a Zone resource. A zone is a deployment area. These deployment areas are subsets of a region. For example the zone us-east1-a is located in the us-east1 region. For more information, read Regions and Zones. (== resource_for beta.zones ==) (== resource_for v1.zones ==)
Instance Attribute Summary collapse
-
#available_cpu_platforms ⇒ Array<String>
[Output Only] Available cpu/platform selections for the zone.
-
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
-
#deprecated ⇒ Google::Apis::ComputeV1::DeprecationStatus
Deprecation status for a public resource.
-
#description ⇒ String
[Output Only] Textual description of the resource.
-
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource.
-
#kind ⇒ String
[Output Only] Type of the resource.
-
#name ⇒ String
[Output Only] Name of the resource.
-
#region ⇒ String
[Output Only] Full URL reference to the region which hosts the zone.
-
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
-
#status ⇒ String
[Output Only] Status of the zone, either UP or DOWN.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Zone
constructor
A new instance of Zone.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ Zone
Returns a new instance of Zone
26781 26782 26783 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26781 def initialize(**args) update!(**args) end |
Instance Attribute Details
#available_cpu_platforms ⇒ Array<String>
[Output Only] Available cpu/platform selections for the zone.
Corresponds to the JSON property availableCpuPlatforms
26733 26734 26735 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26733 def available_cpu_platforms @available_cpu_platforms end |
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
Corresponds to the JSON property creationTimestamp
26738 26739 26740 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26738 def @creation_timestamp end |
#deprecated ⇒ Google::Apis::ComputeV1::DeprecationStatus
Deprecation status for a public resource.
Corresponds to the JSON property deprecated
26743 26744 26745 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26743 def deprecated @deprecated end |
#description ⇒ String
[Output Only] Textual description of the resource.
Corresponds to the JSON property description
26748 26749 26750 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26748 def description @description end |
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource. This identifier is
defined by the server.
Corresponds to the JSON property id
26754 26755 26756 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26754 def id @id end |
#kind ⇒ String
[Output Only] Type of the resource. Always compute#zone for zones.
Corresponds to the JSON property kind
26759 26760 26761 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26759 def kind @kind end |
#name ⇒ String
[Output Only] Name of the resource.
Corresponds to the JSON property name
26764 26765 26766 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26764 def name @name end |
#region ⇒ String
[Output Only] Full URL reference to the region which hosts the zone.
Corresponds to the JSON property region
26769 26770 26771 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26769 def region @region end |
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
Corresponds to the JSON property selfLink
26774 26775 26776 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26774 def self_link @self_link end |
#status ⇒ String
[Output Only] Status of the zone, either UP or DOWN.
Corresponds to the JSON property status
26779 26780 26781 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26779 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 |
# File 'generated/google/apis/compute_v1/classes.rb', line 26786 def update!(**args) @available_cpu_platforms = args[:available_cpu_platforms] if args.key?(:available_cpu_platforms) @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp) @deprecated = args[:deprecated] if args.key?(:deprecated) @description = args[:description] if args.key?(:description) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @region = args[:region] if args.key?(:region) @self_link = args[:self_link] if args.key?(:self_link) @status = args[:status] if args.key?(:status) end |