Class: Google::Apis::ComputeAlpha::Region
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::Region
- 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 Region resource. A region is a geographical area where a resource is located. For more information, read Regions and Zones.
Instance Attribute Summary collapse
-
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
-
#deprecated ⇒ Google::Apis::ComputeAlpha::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.
-
#quotas ⇒ Array<Google::Apis::ComputeAlpha::Quota>
[Output Only] Quotas assigned to this region.
-
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
-
#self_link_with_id ⇒ String
[Output Only] Server-defined URL for this resource with the resource id.
-
#status ⇒ String
[Output Only] Status of the region, either UP or DOWN.
-
#supports_pzs ⇒ Boolean
(also: #supports_pzs?)
[Output Only] Reserved for future use.
-
#zones ⇒ Array<String>
[Output Only] A list of zones available in this region, in the form of resource URLs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Region
constructor
A new instance of Region.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Region
Returns a new instance of Region.
33862 33863 33864 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33862 def initialize(**args) update!(**args) end |
Instance Attribute Details
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
Corresponds to the JSON property creationTimestamp
33802 33803 33804 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33802 def @creation_timestamp end |
#deprecated ⇒ Google::Apis::ComputeAlpha::DeprecationStatus
Deprecation status for a public resource.
Corresponds to the JSON property deprecated
33807 33808 33809 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33807 def deprecated @deprecated end |
#description ⇒ String
[Output Only] Textual description of the resource.
Corresponds to the JSON property description
33812 33813 33814 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33812 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
33818 33819 33820 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33818 def id @id end |
#kind ⇒ String
[Output Only] Type of the resource. Always compute#region for regions.
Corresponds to the JSON property kind
33823 33824 33825 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33823 def kind @kind end |
#name ⇒ String
[Output Only] Name of the resource.
Corresponds to the JSON property name
33828 33829 33830 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33828 def name @name end |
#quotas ⇒ Array<Google::Apis::ComputeAlpha::Quota>
[Output Only] Quotas assigned to this region.
Corresponds to the JSON property quotas
33833 33834 33835 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33833 def quotas @quotas end |
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
Corresponds to the JSON property selfLink
33838 33839 33840 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33838 def self_link @self_link end |
#self_link_with_id ⇒ String
[Output Only] Server-defined URL for this resource with the resource id.
Corresponds to the JSON property selfLinkWithId
33843 33844 33845 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33843 def self_link_with_id @self_link_with_id end |
#status ⇒ String
[Output Only] Status of the region, either UP or DOWN.
Corresponds to the JSON property status
33848 33849 33850 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33848 def status @status end |
#supports_pzs ⇒ Boolean Also known as: supports_pzs?
[Output Only] Reserved for future use.
Corresponds to the JSON property supportsPzs
33853 33854 33855 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33853 def supports_pzs @supports_pzs end |
#zones ⇒ Array<String>
[Output Only] A list of zones available in this region, in the form of
resource URLs.
Corresponds to the JSON property zones
33860 33861 33862 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33860 def zones @zones end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
33867 33868 33869 33870 33871 33872 33873 33874 33875 33876 33877 33878 33879 33880 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 33867 def update!(**args) @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) @quotas = args[:quotas] if args.key?(:quotas) @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) @status = args[:status] if args.key?(:status) @supports_pzs = args[:supports_pzs] if args.key?(:supports_pzs) @zones = args[:zones] if args.key?(:zones) end |