Class: Google::Apis::ServicebrokerV1beta1::GoogleCloudServicebrokerV1beta1Broker
- Inherits:
-
Object
- Object
- Google::Apis::ServicebrokerV1beta1::GoogleCloudServicebrokerV1beta1Broker
- 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
Broker represents a consumable collection of Service Registry catalogs exposed as an OSB Broker.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#name ⇒ String
Name of the broker in the format:
/ /brokers/ . -
#title ⇒ String
User friendly title of the broker.
-
#url ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudServicebrokerV1beta1Broker
constructor
A new instance of GoogleCloudServicebrokerV1beta1Broker.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudServicebrokerV1beta1Broker
Returns a new instance of GoogleCloudServicebrokerV1beta1Broker
128 129 130 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 128 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Timestamp for when the broker was created.
Corresponds to the JSON property createTime
106 107 108 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 106 def create_time @create_time end |
#name ⇒ String
Name of the broker in the format:
name
114 115 116 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 114 def name @name end |
#title ⇒ String
User friendly title of the broker.
Limited to 1024 characters. Requests with longer titles will be rejected.
Corresponds to the JSON property title
120 121 122 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 120 def title @title end |
#url ⇒ String
Output only. URL of the broker OSB-compliant endpoint, for example:
https://servicebroker.googleapis.com/projects/url
126 127 128 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 126 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
133 134 135 136 137 138 |
# File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 133 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @name = args[:name] if args.key?(:name) @title = args[:title] if args.key?(:title) @url = args[:url] if args.key?(:url) end |