Class: Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppConfig
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ScriptV1::GoogleAppsScriptTypeWebAppConfig
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/script_v1/classes.rb,
 generated/google/apis/script_v1/representations.rb,
 generated/google/apis/script_v1/representations.rb
Overview
Web app entry point configuration.
Instance Attribute Summary collapse
- 
  
    
      #access  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Who has permission to run the web app. 
- 
  
    
      #execute_as  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Who to execute the web app as. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GoogleAppsScriptTypeWebAppConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GoogleAppsScriptTypeWebAppConfig. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleAppsScriptTypeWebAppConfig
Returns a new instance of GoogleAppsScriptTypeWebAppConfig
| 693 694 695 | # File 'generated/google/apis/script_v1/classes.rb', line 693 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#access ⇒ String
Who has permission to run the web app.
Corresponds to the JSON property access
| 686 687 688 | # File 'generated/google/apis/script_v1/classes.rb', line 686 def access @access end | 
#execute_as ⇒ String
Who to execute the web app as.
Corresponds to the JSON property executeAs
| 691 692 693 | # File 'generated/google/apis/script_v1/classes.rb', line 691 def execute_as @execute_as end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 698 699 700 701 | # File 'generated/google/apis/script_v1/classes.rb', line 698 def update!(**args) @access = args[:access] if args.key?(:access) @execute_as = args[:execute_as] if args.key?(:execute_as) end |