Class: Google::Apis::RedisV1beta1::PscConnection

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/redis_v1beta1/classes.rb,
lib/google/apis/redis_v1beta1/representations.rb,
lib/google/apis/redis_v1beta1/representations.rb

Overview

Details of consumer resources in a PSC connection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PscConnection

Returns a new instance of PscConnection.



2161
2162
2163
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2161

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#addressString

Output only. The IP allocated on the consumer network for the PSC forwarding rule. Corresponds to the JSON property address

Returns:

  • (String)


2136
2137
2138
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2136

def address
  @address
end

#forwarding_ruleString

Output only. The URI of the consumer side forwarding rule. Example: projects/ projectNumOrId/regions/us-east1/forwardingRules/resourceId. Corresponds to the JSON property forwardingRule

Returns:

  • (String)


2142
2143
2144
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2142

def forwarding_rule
  @forwarding_rule
end

#networkString

The consumer network where the IP address resides, in the form of projects/ project_id/global/networks/network_id. Corresponds to the JSON property network

Returns:

  • (String)


2148
2149
2150
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2148

def network
  @network
end

#project_idString

Output only. The consumer project_id where the forwarding rule is created from. Corresponds to the JSON property projectId

Returns:

  • (String)


2153
2154
2155
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2153

def project_id
  @project_id
end

#psc_connection_idString

Output only. The PSC connection id of the forwarding rule connected to the service attachment. Corresponds to the JSON property pscConnectionId

Returns:

  • (String)


2159
2160
2161
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2159

def psc_connection_id
  @psc_connection_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2166
2167
2168
2169
2170
2171
2172
# File 'lib/google/apis/redis_v1beta1/classes.rb', line 2166

def update!(**args)
  @address = args[:address] if args.key?(:address)
  @forwarding_rule = args[:forwarding_rule] if args.key?(:forwarding_rule)
  @network = args[:network] if args.key?(:network)
  @project_id = args[:project_id] if args.key?(:project_id)
  @psc_connection_id = args[:psc_connection_id] if args.key?(:psc_connection_id)
end