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
| 115 116 117 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 115 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
| 92 93 94 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 92 def create_time @create_time end | 
#name ⇒ String
Name of the broker in the format:
name
| 100 101 102 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 100 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
| 106 107 108 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 106 def title @title end | 
#url ⇒ String
Output only.
URL of the broker OSB-compliant endpoint, for example:
https://servicebroker.googleapis.com/projects/url
| 113 114 115 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 113 def url @url end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 120 121 122 123 124 125 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 120 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 |