Class: Google::Apis::ServicenetworkingV1::DeleteConnectionRequest
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1::DeleteConnectionRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicenetworking_v1/classes.rb,
lib/google/apis/servicenetworking_v1/representations.rb,
lib/google/apis/servicenetworking_v1/representations.rb
Overview
Request to delete a private service access connection. The call will fail if there are any managed service instances using this connection.
Instance Attribute Summary collapse
-
#consumer_network ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeleteConnectionRequest
constructor
A new instance of DeleteConnectionRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeleteConnectionRequest
Returns a new instance of DeleteConnectionRequest.
1456 1457 1458 |
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 1456 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consumer_network ⇒ String
Required. The network that the consumer is using to connect with services.
Must be in the form of projects/project
/global/networks/network
project
is a project number, as in '12345' network
is a network name.
Corresponds to the JSON property consumerNetwork
1454 1455 1456 |
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 1454 def consumer_network @consumer_network end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1461 1462 1463 |
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 1461 def update!(**args) @consumer_network = args[:consumer_network] if args.key?(:consumer_network) end |