Class: Google::Apis::ServicebrokerV1beta1::GoogleCloudServicebrokerV1beta1DashboardClient
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ServicebrokerV1beta1::GoogleCloudServicebrokerV1beta1DashboardClient
 
- 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
Message containing information required to activate Dashboard SSO feature.
Instance Attribute Summary collapse
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The id of the Oauth client that the dashboard will use. 
- 
  
    
      #redirect_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A URI for the service dashboard. 
- 
  
    
      #secret  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A secret for the dashboard client. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleCloudServicebrokerV1beta1DashboardClient 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleCloudServicebrokerV1beta1DashboardClient. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudServicebrokerV1beta1DashboardClient
Returns a new instance of GoogleCloudServicebrokerV1beta1DashboardClient
| 233 234 235 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 233 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#id ⇒ String
The id of the Oauth client that the dashboard will use.
Corresponds to the JSON property id
| 220 221 222 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 220 def id @id end | 
#redirect_uri ⇒ String
A URI for the service dashboard.
Validated by the OAuth token server when the dashboard requests a token.
Corresponds to the JSON property redirect_uri
| 226 227 228 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 226 def redirect_uri @redirect_uri end | 
#secret ⇒ String
A secret for the dashboard client.
Corresponds to the JSON property secret
| 231 232 233 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 231 def secret @secret end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 238 239 240 241 242 | # File 'generated/google/apis/servicebroker_v1beta1/classes.rb', line 238 def update!(**args) @id = args[:id] if args.key?(:id) @redirect_uri = args[:redirect_uri] if args.key?(:redirect_uri) @secret = args[:secret] if args.key?(:secret) end |