Class: Google::Apis::ServicebrokerV1beta1::GoogleCloudServicebrokerV1beta1GetBindingResponse
- Inherits:
-
Object
- Object
- Google::Apis::ServicebrokerV1beta1::GoogleCloudServicebrokerV1beta1GetBindingResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/servicebroker_v1beta1/classes.rb,
generated/google/apis/servicebroker_v1beta1/representations.rb,
generated/google/apis/servicebroker_v1beta1/representations.rb
Overview
Response for the GetBinding()
method.
Instance Attribute Summary collapse
-
#credentials ⇒ Hash<String,Object>
Credentials to use the binding.
-
#deployment_name ⇒ String
String containing the Deployment Manager deployment name that was created for this binding, Corresponds to the JSON property
deploymentName
. -
#description ⇒ String
Used to communicate description of the response.
-
#resource_name ⇒ String
Output only.
-
#route_service_url ⇒ String
A URL to which the platform may proxy requests for the address sent with bind_resource.route Corresponds to the JSON property
route_service_url
. -
#syslog_drain_url ⇒ String
From where to read system logs.
-
#volume_mounts ⇒ Array<Hash<String,Object>>
An array of configurations for mounting volumes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudServicebrokerV1beta1GetBindingResponse
constructor
A new instance of GoogleCloudServicebrokerV1beta1GetBindingResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudServicebrokerV1beta1GetBindingResponse
Returns a new instance of GoogleCloudServicebrokerV1beta1GetBindingResponse
367 368 369 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 367 def initialize(**args) update!(**args) end |
Instance Attribute Details
#credentials ⇒ Hash<String,Object>
Credentials to use the binding.
Corresponds to the JSON property credentials
327 328 329 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 327 def credentials @credentials end |
#deployment_name ⇒ String
String containing the Deployment Manager deployment name that was created
for this binding,
Corresponds to the JSON property deploymentName
333 334 335 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 333 def deployment_name @deployment_name end |
#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
341 342 343 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 341 def description @description end |
#resource_name ⇒ String
Output only.
The resource name of the binding, e.g.
projects/project_id/brokers/broker_id/service_instances/instance_id/bindings/
binding_id.
Corresponds to the JSON property resourceName
349 350 351 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 349 def resource_name @resource_name end |
#route_service_url ⇒ String
A URL to which the platform may proxy requests for the address sent with
bind_resource.route
Corresponds to the JSON property route_service_url
355 356 357 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 355 def route_service_url @route_service_url end |
#syslog_drain_url ⇒ String
From where to read system logs.
Corresponds to the JSON property syslog_drain_url
360 361 362 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 360 def syslog_drain_url @syslog_drain_url end |
#volume_mounts ⇒ Array<Hash<String,Object>>
An array of configurations for mounting volumes.
Corresponds to the JSON property volume_mounts
365 366 367 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 365 def volume_mounts @volume_mounts end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
372 373 374 375 376 377 378 379 380 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 372 def update!(**args) @credentials = args[:credentials] if args.key?(:credentials) @deployment_name = args[:deployment_name] if args.key?(:deployment_name) @description = args[:description] if args.key?(:description) @resource_name = args[:resource_name] if args.key?(:resource_name) @route_service_url = args[:route_service_url] if args.key?(:route_service_url) @syslog_drain_url = args[:syslog_drain_url] if args.key?(:syslog_drain_url) @volume_mounts = args[:volume_mounts] if args.key?(:volume_mounts) end |