Class: Google::Apis::ComputeV1::PublicDelegatedPrefixPublicDelegatedSubPrefix
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::PublicDelegatedPrefixPublicDelegatedSubPrefix
- 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
Overview
Represents a sub PublicDelegatedPrefix.
Instance Attribute Summary collapse
-
#allocatable_prefix_length ⇒ Fixnum
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
-
#delegatee_project ⇒ String
Name of the project scoping this PublicDelegatedSubPrefix.
-
#description ⇒ String
An optional description of this resource.
-
#ip_cidr_range ⇒ String
The IP address range, in CIDR format, represented by this sub public delegated prefix.
-
#is_address ⇒ Boolean
(also: #is_address?)
Whether the sub prefix is delegated to create Address resources in the delegatee project.
-
#mode ⇒ String
The PublicDelegatedSubPrefix mode for IPv6 only.
-
#name ⇒ String
The name of the sub public delegated prefix.
-
#region ⇒ String
[Output Only] The region of the sub public delegated prefix if it is regional.
-
#status ⇒ String
[Output Only] The status of the sub public delegated prefix.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PublicDelegatedPrefixPublicDelegatedSubPrefix
constructor
A new instance of PublicDelegatedPrefixPublicDelegatedSubPrefix.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PublicDelegatedPrefixPublicDelegatedSubPrefix
Returns a new instance of PublicDelegatedPrefixPublicDelegatedSubPrefix.
31439 31440 31441 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31439 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allocatable_prefix_length ⇒ Fixnum
The allocatable prefix length supported by this PublicDelegatedSubPrefix.
Corresponds to the JSON property allocatablePrefixLength
31392 31393 31394 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31392 def allocatable_prefix_length @allocatable_prefix_length end |
#delegatee_project ⇒ String
Name of the project scoping this PublicDelegatedSubPrefix.
Corresponds to the JSON property delegateeProject
31397 31398 31399 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31397 def delegatee_project @delegatee_project end |
#description ⇒ String
An optional description of this resource. Provide this property when you
create the resource.
Corresponds to the JSON property description
31403 31404 31405 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31403 def description @description end |
#ip_cidr_range ⇒ String
The IP address range, in CIDR format, represented by this sub public delegated
prefix.
Corresponds to the JSON property ipCidrRange
31409 31410 31411 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31409 def ip_cidr_range @ip_cidr_range end |
#is_address ⇒ Boolean Also known as: is_address?
Whether the sub prefix is delegated to create Address resources in the
delegatee project.
Corresponds to the JSON property isAddress
31415 31416 31417 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31415 def is_address @is_address end |
#mode ⇒ String
The PublicDelegatedSubPrefix mode for IPv6 only.
Corresponds to the JSON property mode
31421 31422 31423 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31421 def mode @mode end |
#name ⇒ String
The name of the sub public delegated prefix.
Corresponds to the JSON property name
31426 31427 31428 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31426 def name @name end |
#region ⇒ String
[Output Only] The region of the sub public delegated prefix if it is regional.
If absent, the sub prefix is global.
Corresponds to the JSON property region
31432 31433 31434 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31432 def region @region end |
#status ⇒ String
[Output Only] The status of the sub public delegated prefix.
Corresponds to the JSON property status
31437 31438 31439 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31437 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 |
# File 'lib/google/apis/compute_v1/classes.rb', line 31444 def update!(**args) @allocatable_prefix_length = args[:allocatable_prefix_length] if args.key?(:allocatable_prefix_length) @delegatee_project = args[:delegatee_project] if args.key?(:delegatee_project) @description = args[:description] if args.key?(:description) @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range) @is_address = args[:is_address] if args.key?(:is_address) @mode = args[:mode] if args.key?(:mode) @name = args[:name] if args.key?(:name) @region = args[:region] if args.key?(:region) @status = args[:status] if args.key?(:status) end |