Class: Google::Apis::ComputeBeta::NetworkEndpointGroup
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::NetworkEndpointGroup
- Defined in:
- generated/google/apis/compute_beta/classes.rb,
generated/google/apis/compute_beta/representations.rb,
generated/google/apis/compute_beta/representations.rb
Overview
Represents a collection of network endpoints.
Instance Attribute Summary collapse
-
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
-
#description ⇒ String
An optional description of this resource.
-
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource.
-
#kind ⇒ String
[Output Only] Type of the resource.
-
#load_balancer ⇒ Google::Apis::ComputeBeta::NetworkEndpointGroupLbNetworkEndpointGroup
Load balancing specific fields for network endpoint group.
-
#name ⇒ String
Name of the resource; provided by the client when the resource is created.
-
#network_endpoint_type ⇒ String
Type of network endpoints in this network endpoint group.
-
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
-
#size ⇒ Fixnum
[Output only] Number of network endpoints in the network endpoint group.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NetworkEndpointGroup
constructor
A new instance of NetworkEndpointGroup.
-
#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) ⇒ NetworkEndpointGroup
Returns a new instance of NetworkEndpointGroup
12937 12938 12939 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12937 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
12886 12887 12888 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12886 def @creation_timestamp end |
#description ⇒ String
An optional description of this resource. Provide this property when you
create the resource.
Corresponds to the JSON property description
12892 12893 12894 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12892 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
12898 12899 12900 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12898 def id @id end |
#kind ⇒ String
[Output Only] Type of the resource. Always compute#networkEndpointGroup for
network endpoint group.
Corresponds to the JSON property kind
12904 12905 12906 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12904 def kind @kind end |
#load_balancer ⇒ Google::Apis::ComputeBeta::NetworkEndpointGroupLbNetworkEndpointGroup
Load balancing specific fields for network endpoint group.
Corresponds to the JSON property loadBalancer
12909 12910 12911 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12909 def load_balancer @load_balancer end |
#name ⇒ String
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
12919 12920 12921 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12919 def name @name end |
#network_endpoint_type ⇒ String
Type of network endpoints in this network endpoint group. Currently the only
supported value is GCE_VM_IP_PORT.
Corresponds to the JSON property networkEndpointType
12925 12926 12927 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12925 def network_endpoint_type @network_endpoint_type end |
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
Corresponds to the JSON property selfLink
12930 12931 12932 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12930 def self_link @self_link end |
#size ⇒ Fixnum
[Output only] Number of network endpoints in the network endpoint group.
Corresponds to the JSON property size
12935 12936 12937 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12935 def size @size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 |
# File 'generated/google/apis/compute_beta/classes.rb', line 12942 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) @load_balancer = args[:load_balancer] if args.key?(:load_balancer) @name = args[:name] if args.key?(:name) @network_endpoint_type = args[:network_endpoint_type] if args.key?(:network_endpoint_type) @self_link = args[:self_link] if args.key?(:self_link) @size = args[:size] if args.key?(:size) end |