Class: Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
- Inherits:
-
Object
- Object
- Google::Apis::IntegrationsV1::GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/integrations_v1/classes.rb,
lib/google/apis/integrations_v1/representations.rb,
lib/google/apis/integrations_v1/representations.rb
Overview
Request for CreateAppsScriptProject rpc call.
Instance Attribute Summary collapse
-
#apps_script_project ⇒ String
The name of the Apps Script project to be created.
-
#auth_config_id ⇒ String
The auth config id necessary to fetch the necessary credentials to create the project for external clients Corresponds to the JSON property
authConfigId.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
constructor
A new instance of GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest
Returns a new instance of GoogleCloudIntegrationsV1alphaCreateAppsScriptProjectRequest.
6150 6151 6152 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6150 def initialize(**args) update!(**args) end |
Instance Attribute Details
#apps_script_project ⇒ String
The name of the Apps Script project to be created.
Corresponds to the JSON property appsScriptProject
6142 6143 6144 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6142 def apps_script_project @apps_script_project end |
#auth_config_id ⇒ String
The auth config id necessary to fetch the necessary credentials to create the
project for external clients
Corresponds to the JSON property authConfigId
6148 6149 6150 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6148 def auth_config_id @auth_config_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6155 6156 6157 6158 |
# File 'lib/google/apis/integrations_v1/classes.rb', line 6155 def update!(**args) @apps_script_project = args[:apps_script_project] if args.key?(:apps_script_project) @auth_config_id = args[:auth_config_id] if args.key?(:auth_config_id) end |