google_api_tool_results v0.1.0 GoogleApi.ToolResults.V1beta3.Api.Projects View Source

API calls for all endpoints tagged Projects.

Link to this section Summary

Functions

Gets the Tool Results settings for a project. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read from project

Creates a History. The returned History will have the id set. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the containing project does not exist

Lists Screenshot Clusters Returns the list of screenshot clusters corresponding to an execution. Screenshot clusters are created after the execution is finished. Clusters are created from a set of screenshots. Between any two screenshots, a matching score is calculated based off their metadata that determines how similar they are. Screenshots are placed in the cluster that has screens which have the highest matching scores

Creates an Execution. The returned Execution will have the id set. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the containing History does not exist

Gets an Execution. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the Execution does not exist

Lists Histories for a given Project. The executions are sorted by creation_time in descending order. The execution_id key will be used to order the executions with the same creation_time. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the containing History does not exist

Updates an existing Execution with the supplied partial entity. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if the requested state transition is illegal - NOT_FOUND - if the containing History does not exist

Creates a Step. The returned Step will have the id set. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if the step is too large (more than 10Mib) - NOT_FOUND - if the containing Execution does not exist

Gets a Step. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the Step does not exist

Retrieves a PerfMetricsSummary. May return any of the following error code(s): - NOT_FOUND - The specified PerfMetricsSummary does not exist

Lists Steps for a given Execution. The steps are sorted by creation_time in descending order. The step_id key will be used to order the steps with the same creation_time. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if an argument in the request happens to be invalid; e.g. if an attempt is made to list the children of a nonexistent Step - NOT_FOUND - if the containing Execution does not exist

Updates an existing Step with the supplied partial entity. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if the requested state transition is illegal (e.g try to upload a duplicate xml file), if the updated step is too large (more than 10Mib) - NOT_FOUND - if the containing Execution does not exist

Creates a PerfMetricsSummary resource. Returns the existing one if it has already been created. May return any of the following error code(s): - NOT_FOUND - The containing Step does not exist

Creates a PerfSampleSeries. May return any of the following error code(s): - ALREADY_EXISTS - PerfMetricSummary already exists for the given Step - NOT_FOUND - The containing Step does not exist

Gets a PerfSampleSeries. May return any of the following error code(s): - NOT_FOUND - The specified PerfSampleSeries does not exist

Lists PerfSampleSeries for a given Step. The request provides an optional filter which specifies one or more PerfMetricsType to include in the result; if none returns all. The resulting PerfSampleSeries are sorted by ids. May return any of the following canonical error codes: - NOT_FOUND - The containing Step does not exist

Creates a batch of PerfSamples - a client can submit multiple batches of Perf Samples through repeated calls to this method in order to split up a large request payload - duplicates and existing timestamp entries will be ignored. - the batch operation may partially succeed - the set of elements successfully inserted is returned in the response (omits items which already existed in the database). May return any of the following canonical error codes: - NOT_FOUND - The containing PerfSampleSeries does not exist

Lists the Performance Samples of a given Sample Series - The list results are sorted by timestamps ascending - The default page size is 500 samples; and maximum size allowed 5000 - The response token indicates the last returned PerfSample timestamp - When the results size exceeds the page size, submit a subsequent request including the page token to return the rest of the samples up to the page limit May return any of the following canonical error codes: - OUT_OF_RANGE - The specified request page_token is out of valid range - NOT_FOUND - The containing PerfSampleSeries does not exist

Publish xml files to an existing Step. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if the requested state transition is illegal, e.g try to upload a duplicate xml file or a file too large. - NOT_FOUND - if the containing Execution does not exist

Lists thumbnails of images attached to a step. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read from the project, or from any of the images - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the step does not exist, or if any of the images do not exist

Gets a History. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the History does not exist

Lists Histories for a given Project. The histories are sorted by modification time in descending order. The history_id key will be used to order the history with the same modification time. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the History does not exist

Creates resources for settings which have not yet been set. Currently, this creates a single resource: a Google Cloud Storage bucket, to be used as the default bucket for this project. The bucket is created in an FTL-own storage project. Except for in rare cases, calling this method in parallel from multiple clients will only create a single bucket. In order to avoid unnecessary storage charges, the bucket is configured to automatically delete objects older than 90 days. The bucket is created with the following permissions: - Owner access for owners of central storage project (FTL-owned) - Writer access for owners/editors of customer project - Reader access for viewers of customer project The default ACL on objects created in the bucket is: - Owner access for owners of central storage project - Reader access for owners/editors/viewers of customer project See Google Cloud Storage documentation for more details. If there is already a default bucket set and the project can access the bucket, this call does nothing. However, if the project doesn't have the permission to access the bucket or the bucket is deleted, a new bucket will be created. May return any canonical error codes, including the following: - PERMISSION_DENIED - if the user is not authorized to write to project - Any error code raised by Google Cloud Storage

Link to this section Functions

Link to this function toolresults_projects_get_settings(connection, project_id, opts \\ []) View Source
toolresults_projects_get_settings(Tesla.Env.client(), String.t(), keyword()) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.ProjectSettings.t()}
  | {:error, Tesla.Env.t()}

Gets the Tool Results settings for a project. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read from project

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.ProjectSettings{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_create(connection, project_id, opts \\ []) View Source
toolresults_projects_histories_create(Tesla.Env.client(), String.t(), keyword()) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.History.t()}
  | {:error, Tesla.Env.t()}

Creates a History. The returned History will have the id set. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the containing project does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :requestId (String.t): A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended.
    • :body (History):

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.History{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_clusters_get(connection, project_id, history_id, execution_id, cluster_id, opts \\ []) View Source
toolresults_projects_histories_executions_clusters_get(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.ScreenshotCluster.t()}
  | {:error, Tesla.Env.t()}

Retrieves a single screenshot cluster by its ID

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • execution_id (String.t): An Execution id. Required.
  • cluster_id (String.t): A Cluster id Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.ScreenshotCluster{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_clusters_list(connection, project_id, history_id, execution_id, opts \\ []) View Source
toolresults_projects_histories_executions_clusters_list(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.ListScreenshotClustersResponse.t()}
  | {:error, Tesla.Env.t()}

Lists Screenshot Clusters Returns the list of screenshot clusters corresponding to an execution. Screenshot clusters are created after the execution is finished. Clusters are created from a set of screenshots. Between any two screenshots, a matching score is calculated based off their metadata that determines how similar they are. Screenshots are placed in the cluster that has screens which have the highest matching scores.

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • execution_id (String.t): An Execution id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.ListScreenshotClustersResponse{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_create(connection, project_id, history_id, opts \\ []) View Source
toolresults_projects_histories_executions_create(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.Execution.t()}
  | {:error, Tesla.Env.t()}

Creates an Execution. The returned Execution will have the id set. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the containing History does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :requestId (String.t): A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended.
    • :body (Execution):

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.Execution{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_get(connection, project_id, history_id, execution_id, opts \\ []) View Source
toolresults_projects_histories_executions_get(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.Execution.t()}
  | {:error, Tesla.Env.t()}

Gets an Execution. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the Execution does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • execution_id (String.t): An Execution id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.Execution{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_list(connection, project_id, history_id, opts \\ []) View Source
toolresults_projects_histories_executions_list(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.ListExecutionsResponse.t()}
  | {:error, Tesla.Env.t()}

Lists Histories for a given Project. The executions are sorted by creation_time in descending order. The execution_id key will be used to order the executions with the same creation_time. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the containing History does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :pageSize (integer()): The maximum number of Executions to fetch. Default value: 25. The server will use this default if the field is not set or has a value of 0. Optional.
    • :pageToken (String.t): A continuation token to resume the query at the next item. Optional.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.ListExecutionsResponse{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_patch(connection, project_id, history_id, execution_id, opts \\ []) View Source
toolresults_projects_histories_executions_patch(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.Execution.t()}
  | {:error, Tesla.Env.t()}

Updates an existing Execution with the supplied partial entity. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if the requested state transition is illegal - NOT_FOUND - if the containing History does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): Required.
  • execution_id (String.t): Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :requestId (String.t): A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended.
    • :body (Execution):

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.Execution{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_create(connection, project_id, history_id, execution_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_create(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.Step.t()} | {:error, Tesla.Env.t()}

Creates a Step. The returned Step will have the id set. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write to project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if the step is too large (more than 10Mib) - NOT_FOUND - if the containing Execution does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • execution_id (String.t): A Execution id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :requestId (String.t): A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended.
    • :body (Step):

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.Step{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_get(connection, project_id, history_id, execution_id, step_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_get(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.Step.t()} | {:error, Tesla.Env.t()}

Gets a Step. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the Step does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • execution_id (String.t): A Execution id. Required.
  • step_id (String.t): A Step id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.Step{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_get_perf_metrics_summary(connection, project_id, history_id, execution_id, step_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_get_perf_metrics_summary(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.PerfMetricsSummary.t()}
  | {:error, Tesla.Env.t()}

Retrieves a PerfMetricsSummary. May return any of the following error code(s): - NOT_FOUND - The specified PerfMetricsSummary does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): The cloud project
  • history_id (String.t): A tool results history ID.
  • execution_id (String.t): A tool results execution ID.
  • step_id (String.t): A tool results step ID.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.PerfMetricsSummary{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_list(connection, project_id, history_id, execution_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_list(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.ListStepsResponse.t()}
  | {:error, Tesla.Env.t()}

Lists Steps for a given Execution. The steps are sorted by creation_time in descending order. The step_id key will be used to order the steps with the same creation_time. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if an argument in the request happens to be invalid; e.g. if an attempt is made to list the children of a nonexistent Step - NOT_FOUND - if the containing Execution does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • execution_id (String.t): A Execution id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :pageSize (integer()): The maximum number of Steps to fetch. Default value: 25. The server will use this default if the field is not set or has a value of 0. Optional.
    • :pageToken (String.t): A continuation token to resume the query at the next item. Optional.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.ListStepsResponse{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_patch(connection, project_id, history_id, execution_id, step_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_patch(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.Step.t()} | {:error, Tesla.Env.t()}

Updates an existing Step with the supplied partial entity. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if the requested state transition is illegal (e.g try to upload a duplicate xml file), if the updated step is too large (more than 10Mib) - NOT_FOUND - if the containing Execution does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • execution_id (String.t): A Execution id. Required.
  • step_id (String.t): A Step id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :requestId (String.t): A unique request ID for server to detect duplicated requests. For example, a UUID. Optional, but strongly recommended.
    • :body (Step):

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.Step{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_perf_metrics_summary_create(connection, project_id, history_id, execution_id, step_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_perf_metrics_summary_create(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.PerfMetricsSummary.t()}
  | {:error, Tesla.Env.t()}

Creates a PerfMetricsSummary resource. Returns the existing one if it has already been created. May return any of the following error code(s): - NOT_FOUND - The containing Step does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): The cloud project
  • history_id (String.t): A tool results history ID.
  • execution_id (String.t): A tool results execution ID.
  • step_id (String.t): A tool results step ID.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :body (PerfMetricsSummary):

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.PerfMetricsSummary{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_perf_sample_series_create(connection, project_id, history_id, execution_id, step_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_perf_sample_series_create(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.PerfSampleSeries.t()}
  | {:error, Tesla.Env.t()}

Creates a PerfSampleSeries. May return any of the following error code(s): - ALREADY_EXISTS - PerfMetricSummary already exists for the given Step - NOT_FOUND - The containing Step does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): The cloud project
  • history_id (String.t): A tool results history ID.
  • execution_id (String.t): A tool results execution ID.
  • step_id (String.t): A tool results step ID.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :body (PerfSampleSeries):

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.PerfSampleSeries{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_perf_sample_series_get(connection, project_id, history_id, execution_id, step_id, sample_series_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_perf_sample_series_get(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.PerfSampleSeries.t()}
  | {:error, Tesla.Env.t()}

Gets a PerfSampleSeries. May return any of the following error code(s): - NOT_FOUND - The specified PerfSampleSeries does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): The cloud project
  • history_id (String.t): A tool results history ID.
  • execution_id (String.t): A tool results execution ID.
  • step_id (String.t): A tool results step ID.
  • sample_series_id (String.t): A sample series id
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.PerfSampleSeries{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_perf_sample_series_list(connection, project_id, history_id, execution_id, step_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_perf_sample_series_list(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.ListPerfSampleSeriesResponse.t()}
  | {:error, Tesla.Env.t()}

Lists PerfSampleSeries for a given Step. The request provides an optional filter which specifies one or more PerfMetricsType to include in the result; if none returns all. The resulting PerfSampleSeries are sorted by ids. May return any of the following canonical error codes: - NOT_FOUND - The containing Step does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): The cloud project
  • history_id (String.t): A tool results history ID.
  • execution_id (String.t): A tool results execution ID.
  • step_id (String.t): A tool results step ID.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :filter ([String.t]): Specify one or more PerfMetricType values such as CPU to filter the result

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.ListPerfSampleSeriesResponse{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_perf_sample_series_samples_batch_create(connection, project_id, history_id, execution_id, step_id, sample_series_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_perf_sample_series_samples_batch_create(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.BatchCreatePerfSamplesResponse.t()}
  | {:error, Tesla.Env.t()}

Creates a batch of PerfSamples - a client can submit multiple batches of Perf Samples through repeated calls to this method in order to split up a large request payload - duplicates and existing timestamp entries will be ignored. - the batch operation may partially succeed - the set of elements successfully inserted is returned in the response (omits items which already existed in the database). May return any of the following canonical error codes: - NOT_FOUND - The containing PerfSampleSeries does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): The cloud project
  • history_id (String.t): A tool results history ID.
  • execution_id (String.t): A tool results execution ID.
  • step_id (String.t): A tool results step ID.
  • sample_series_id (String.t): A sample series id
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :body (BatchCreatePerfSamplesRequest):

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.BatchCreatePerfSamplesResponse{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_perf_sample_series_samples_list(connection, project_id, history_id, execution_id, step_id, sample_series_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_perf_sample_series_samples_list(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.ListPerfSamplesResponse.t()}
  | {:error, Tesla.Env.t()}

Lists the Performance Samples of a given Sample Series - The list results are sorted by timestamps ascending - The default page size is 500 samples; and maximum size allowed 5000 - The response token indicates the last returned PerfSample timestamp - When the results size exceeds the page size, submit a subsequent request including the page token to return the rest of the samples up to the page limit May return any of the following canonical error codes: - OUT_OF_RANGE - The specified request page_token is out of valid range - NOT_FOUND - The containing PerfSampleSeries does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): The cloud project
  • history_id (String.t): A tool results history ID.
  • execution_id (String.t): A tool results execution ID.
  • step_id (String.t): A tool results step ID.
  • sample_series_id (String.t): A sample series id
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :pageSize (integer()): The default page size is 500 samples, and the maximum size is 5000. If the page_size is greater than 5000, the effective page size will be 5000
    • :pageToken (String.t): Optional, the next_page_token returned in the previous response

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.ListPerfSamplesResponse{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_publish_xunit_xml_files(connection, project_id, history_id, execution_id, step_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_publish_xunit_xml_files(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.Step.t()} | {:error, Tesla.Env.t()}

Publish xml files to an existing Step. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to write project - INVALID_ARGUMENT - if the request is malformed - FAILED_PRECONDITION - if the requested state transition is illegal, e.g try to upload a duplicate xml file or a file too large. - NOT_FOUND - if the containing Execution does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • execution_id (String.t): A Execution id. Required.
  • step_id (String.t): A Step id. Note: This step must include a TestExecutionStep. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :body (PublishXunitXmlFilesRequest):

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.Step{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_executions_steps_thumbnails_list(connection, project_id, history_id, execution_id, step_id, opts \\ []) View Source
toolresults_projects_histories_executions_steps_thumbnails_list(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.ListStepThumbnailsResponse.t()}
  | {:error, Tesla.Env.t()}

Lists thumbnails of images attached to a step. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read from the project, or from any of the images - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the step does not exist, or if any of the images do not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • execution_id (String.t): An Execution id. Required.
  • step_id (String.t): A Step id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :pageSize (integer()): The maximum number of thumbnails to fetch. Default value: 50. The server will use this default if the field is not set or has a value of 0. Optional.
    • :pageToken (String.t): A continuation token to resume the query at the next item. Optional.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.ListStepThumbnailsResponse{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_get(connection, project_id, history_id, opts \\ []) View Source
toolresults_projects_histories_get(
  Tesla.Env.client(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.History.t()}
  | {:error, Tesla.Env.t()}

Gets a History. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the History does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • history_id (String.t): A History id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.History{}} on success {:error, info} on failure

Link to this function toolresults_projects_histories_list(connection, project_id, opts \\ []) View Source
toolresults_projects_histories_list(Tesla.Env.client(), String.t(), keyword()) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.ListHistoriesResponse.t()}
  | {:error, Tesla.Env.t()}

Lists Histories for a given Project. The histories are sorted by modification time in descending order. The history_id key will be used to order the history with the same modification time. May return any of the following canonical error codes: - PERMISSION_DENIED - if the user is not authorized to read project - INVALID_ARGUMENT - if the request is malformed - NOT_FOUND - if the History does not exist

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.
    • :filterByName (String.t): If set, only return histories with the given name. Optional.
    • :pageSize (integer()): The maximum number of Histories to fetch. Default value: 20. The server will use this default if the field is not set or has a value of 0. Any value greater than 100 will be treated as 100. Optional.
    • :pageToken (String.t): A continuation token to resume the query at the next item. Optional.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.ListHistoriesResponse{}} on success {:error, info} on failure

Link to this function toolresults_projects_initialize_settings(connection, project_id, opts \\ []) View Source
toolresults_projects_initialize_settings(
  Tesla.Env.client(),
  String.t(),
  keyword()
) ::
  {:ok, GoogleApi.ToolResults.V1beta3.Model.ProjectSettings.t()}
  | {:error, Tesla.Env.t()}

Creates resources for settings which have not yet been set. Currently, this creates a single resource: a Google Cloud Storage bucket, to be used as the default bucket for this project. The bucket is created in an FTL-own storage project. Except for in rare cases, calling this method in parallel from multiple clients will only create a single bucket. In order to avoid unnecessary storage charges, the bucket is configured to automatically delete objects older than 90 days. The bucket is created with the following permissions: - Owner access for owners of central storage project (FTL-owned) - Writer access for owners/editors of customer project - Reader access for viewers of customer project The default ACL on objects created in the bucket is: - Owner access for owners of central storage project - Reader access for owners/editors/viewers of customer project See Google Cloud Storage documentation for more details. If there is already a default bucket set and the project can access the bucket, this call does nothing. However, if the project doesn't have the permission to access the bucket or the bucket is deleted, a new bucket will be created. May return any canonical error codes, including the following: - PERMISSION_DENIED - if the user is not authorized to write to project - Any error code raised by Google Cloud Storage

Parameters

  • connection (GoogleApi.ToolResults.V1beta3.Connection): Connection to server
  • project_id (String.t): A Project id. Required.
  • opts (KeywordList): [optional] Optional parameters

    • :alt (String.t): Data format for the response.
    • :fields (String.t): Selector specifying which fields to include in a partial response.
    • :key (String.t): API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
    • :oauth_token (String.t): OAuth 2.0 token for the current user.
    • :prettyPrint (boolean()): Returns response with indentations and line breaks.
    • :quotaUser (String.t): An opaque string that represents a user for quota purposes. Must not exceed 40 characters.
    • :userIp (String.t): Deprecated. Please use quotaUser instead.

Returns

{:ok, %GoogleApi.ToolResults.V1beta3.Model.ProjectSettings{}} on success {:error, info} on failure