Class: Google::Apis::ComputeBeta::ServiceAttachment
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ServiceAttachment
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb
Overview
Represents a ServiceAttachment resource. A service attachment represents a service that a producer has exposed. It encapsulates the load balancer which fronts the service runs and a list of NAT IP ranges that the producers uses to represent the consumers connecting to the service.
Instance Attribute Summary collapse
-
#connection_preference ⇒ String
The connection preference of service attachment.
-
#consumer_forwarding_rules ⇒ Array<Google::Apis::ComputeBeta::ServiceAttachmentConsumerForwardingRule>
[Output Only] An array of forwarding rules for all the consumers connected to this service attachment.
-
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
-
#description ⇒ String
An optional description of this resource.
-
#enable_proxy_protocol ⇒ Boolean
(also: #enable_proxy_protocol?)
If true, enable the proxy protocol which is for supplying client TCP/IP address data in TCP connections that traverse proxies on their way to destination servers.
-
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource type.
-
#kind ⇒ String
[Output Only] Type of the resource.
-
#name ⇒ String
Name of the resource.
-
#nat_subnets ⇒ Array<String>
An array of URLs where each entry is the URL of a subnet provided by the service producer to use for NAT in this service attachment.
-
#producer_forwarding_rule ⇒ String
The URL of a forwarding rule with loadBalancingScheme INTERNAL* that is serving the endpoint identified by this service attachment.
-
#region ⇒ String
[Output Only] URL of the region where the service attachment resides.
-
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ServiceAttachment
constructor
A new instance of ServiceAttachment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ServiceAttachment
Returns a new instance of ServiceAttachment.
31089 31090 31091 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31089 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connection_preference ⇒ String
The connection preference of service attachment. The value can be set to
ACCEPT_AUTOMATIC. An ACCEPT_AUTOMATIC service attachment is one that always
accepts the connection from consumer forwarding rules.
Corresponds to the JSON property connectionPreference
31016 31017 31018 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31016 def connection_preference @connection_preference end |
#consumer_forwarding_rules ⇒ Array<Google::Apis::ComputeBeta::ServiceAttachmentConsumerForwardingRule>
[Output Only] An array of forwarding rules for all the consumers connected to
this service attachment.
Corresponds to the JSON property consumerForwardingRules
31022 31023 31024 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31022 def consumer_forwarding_rules @consumer_forwarding_rules end |
#creation_timestamp ⇒ String
[Output Only] Creation timestamp in RFC3339 text format.
Corresponds to the JSON property creationTimestamp
31027 31028 31029 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31027 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
31033 31034 31035 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31033 def description @description end |
#enable_proxy_protocol ⇒ Boolean Also known as: enable_proxy_protocol?
If true, enable the proxy protocol which is for supplying client TCP/IP
address data in TCP connections that traverse proxies on their way to
destination servers.
Corresponds to the JSON property enableProxyProtocol
31040 31041 31042 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31040 def enable_proxy_protocol @enable_proxy_protocol end |
#id ⇒ Fixnum
[Output Only] The unique identifier for the resource type. The server
generates this identifier.
Corresponds to the JSON property id
31047 31048 31049 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31047 def id @id end |
#kind ⇒ String
[Output Only] Type of the resource. Always compute#serviceAttachment for
service attachments.
Corresponds to the JSON property kind
31053 31054 31055 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31053 def kind @kind 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
31063 31064 31065 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31063 def name @name end |
#nat_subnets ⇒ Array<String>
An array of URLs where each entry is the URL of a subnet provided by the
service producer to use for NAT in this service attachment.
Corresponds to the JSON property natSubnets
31069 31070 31071 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31069 def nat_subnets @nat_subnets end |
#producer_forwarding_rule ⇒ String
The URL of a forwarding rule with loadBalancingScheme INTERNAL* that is
serving the endpoint identified by this service attachment.
Corresponds to the JSON property producerForwardingRule
31075 31076 31077 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31075 def producer_forwarding_rule @producer_forwarding_rule end |
#region ⇒ String
[Output Only] URL of the region where the service attachment resides. This
field applies only to the region resource. 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 region
31082 31083 31084 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31082 def region @region end |
#self_link ⇒ String
[Output Only] Server-defined URL for the resource.
Corresponds to the JSON property selfLink
31087 31088 31089 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31087 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 |
# File 'lib/google/apis/compute_beta/classes.rb', line 31094 def update!(**args) @connection_preference = args[:connection_preference] if args.key?(:connection_preference) @consumer_forwarding_rules = args[:consumer_forwarding_rules] if args.key?(:consumer_forwarding_rules) @creation_timestamp = args[:creation_timestamp] if args.key?(:creation_timestamp) @description = args[:description] if args.key?(:description) @enable_proxy_protocol = args[:enable_proxy_protocol] if args.key?(:enable_proxy_protocol) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) @nat_subnets = args[:nat_subnets] if args.key?(:nat_subnets) @producer_forwarding_rule = args[:producer_forwarding_rule] if args.key?(:producer_forwarding_rule) @region = args[:region] if args.key?(:region) @self_link = args[:self_link] if args.key?(:self_link) end |