Class: Google::Apis::ToolresultsV1beta3::ProjectSettings
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ToolresultsV1beta3::ProjectSettings
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/toolresults_v1beta3/classes.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb,
 generated/google/apis/toolresults_v1beta3/representations.rb
Overview
Per-project settings for the Tool Results service.
Instance Attribute Summary collapse
- 
  
    
      #default_bucket  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the Google Cloud Storage bucket to which results are written. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the project's settings. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ProjectSettings 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ProjectSettings. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ProjectSettings
Returns a new instance of ProjectSettings
| 1538 1539 1540 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1538 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#default_bucket ⇒ String
The name of the Google Cloud Storage bucket to which results are written.
By default, this is unset.
In update request: optional In response: optional
Corresponds to the JSON property defaultBucket
| 1529 1530 1531 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1529 def default_bucket @default_bucket end | 
#name ⇒ String
The name of the project's settings.
Always of the form: projects/project-id/settings
In update request: never set In response: always set
Corresponds to the JSON property name
| 1536 1537 1538 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1536 def name @name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1543 1544 1545 1546 | # File 'generated/google/apis/toolresults_v1beta3/classes.rb', line 1543 def update!(**args) @default_bucket = args[:default_bucket] if args.key?(:default_bucket) @name = args[:name] if args.key?(:name) end |