Class: Google::Apis::ComputeBeta::ServiceAttachmentConsumerForwardingRule
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::ServiceAttachmentConsumerForwardingRule
- 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
[Output Only] A consumer forwarding rule connected to this service attachment. [Deprecated] Do not use.
Instance Attribute Summary collapse
-
#forwarding_rule ⇒ String
The url of a consumer forwarding rule.
-
#psc_connection_id ⇒ Fixnum
The PSC connection id of the PSC Forwarding Rule.
-
#status ⇒ String
The status of the forwarding rule.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ServiceAttachmentConsumerForwardingRule
constructor
A new instance of ServiceAttachmentConsumerForwardingRule.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ServiceAttachmentConsumerForwardingRule
Returns a new instance of ServiceAttachmentConsumerForwardingRule.
32135 32136 32137 |
# File 'lib/google/apis/compute_beta/classes.rb', line 32135 def initialize(**args) update!(**args) end |
Instance Attribute Details
#forwarding_rule ⇒ String
The url of a consumer forwarding rule.
Corresponds to the JSON property forwardingRule
32123 32124 32125 |
# File 'lib/google/apis/compute_beta/classes.rb', line 32123 def forwarding_rule @forwarding_rule end |
#psc_connection_id ⇒ Fixnum
The PSC connection id of the PSC Forwarding Rule.
Corresponds to the JSON property pscConnectionId
32128 32129 32130 |
# File 'lib/google/apis/compute_beta/classes.rb', line 32128 def psc_connection_id @psc_connection_id end |
#status ⇒ String
The status of the forwarding rule.
Corresponds to the JSON property status
32133 32134 32135 |
# File 'lib/google/apis/compute_beta/classes.rb', line 32133 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
32140 32141 32142 32143 32144 |
# File 'lib/google/apis/compute_beta/classes.rb', line 32140 def update!(**args) @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule) @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id) @status = args[:status] if args.key?(:status) end |