Class: Google::Apis::ServicebrokerV1alpha1::GoogleCloudServicebrokerV1alpha1DeleteServiceInstanceResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServicebrokerV1alpha1::GoogleCloudServicebrokerV1alpha1DeleteServiceInstanceResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicebroker_v1alpha1/classes.rb,
generated/google/apis/servicebroker_v1alpha1/representations.rb,
generated/google/apis/servicebroker_v1alpha1/representations.rb
Overview
Response for the DeleteServiceInstance()
method.
Instance Attribute Summary collapse
-
#description ⇒ String
Used to communicate description of the response.
-
#operation ⇒ String
If broker executes operation asynchronously, this is the operation ID that can be polled to check the completion status of said operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudServicebrokerV1alpha1DeleteServiceInstanceResponse
constructor
A new instance of GoogleCloudServicebrokerV1alpha1DeleteServiceInstanceResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudServicebrokerV1alpha1DeleteServiceInstanceResponse
Returns a new instance of GoogleCloudServicebrokerV1alpha1DeleteServiceInstanceResponse
247 248 249 |
# File 'generated/google/apis/servicebroker_v1alpha1/classes.rb', line 247 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Used to communicate description of the response. Usually for non-standard
error codes.
https://github.com/openservicebrokerapi/servicebroker/blob/master/spec.md#
service-broker-errors
Corresponds to the JSON property description
239 240 241 |
# File 'generated/google/apis/servicebroker_v1alpha1/classes.rb', line 239 def description @description end |
#operation ⇒ String
If broker executes operation asynchronously, this is the operation ID that
can be polled to check the completion status of said operation.
Corresponds to the JSON property operation
245 246 247 |
# File 'generated/google/apis/servicebroker_v1alpha1/classes.rb', line 245 def operation @operation end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
252 253 254 255 |
# File 'generated/google/apis/servicebroker_v1alpha1/classes.rb', line 252 def update!(**args) @description = args[:description] if args.key?(:description) @operation = args[:operation] if args.key?(:operation) end |