Application Integration API . projects . locations . appsScriptProjects

Instance Methods

close()

Close httplib2 connections.

create(parent, body=None, x__xgafv=None)

Creates an Apps Script project.

link(parent, body=None, x__xgafv=None)

Links a existing Apps Script project.

Method Details

close()
Close httplib2 connections.
create(parent, body=None, x__xgafv=None)
Creates an Apps Script project.

Args:
  parent: string, Required. The project that the executed integration belongs to. (required)
  body: object, The request body.
    The object takes the form of:

{ # Request for CreateAppsScriptProject rpc call.
  "appsScriptProject": "A String", # The name of the Apps Script project to be created.
  "authConfigId": "A String", # The auth config id necessary to fetch the necessary credentials to create the project for external clients
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response for CreateAppsScriptProject rpc call.
  "projectId": "A String", # The created AppsScriptProject ID.
}
link(parent, body=None, x__xgafv=None)
Links a existing Apps Script project.

Args:
  parent: string, Required. The project that the executed integration belongs to. (required)
  body: object, The request body.
    The object takes the form of:

{ # Request for LinkAppsScriptProject rpc call.
  "scriptId": "A String", # The id of the Apps Script project to be linked.
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Response for LinkAppsScriptProject rpc call.
  "scriptId": "A String", # The id of the linked Apps Script project.
}