Liking cljdoc? Tell your friends :D

happygapi.workflows.projects

Workflows API: projects. Manage workflow definitions. To execute workflows and manage executions, see the Workflows Executions API. See: https://cloud.google.com/workflowsapi/reference/rest/v1/projects

Workflows API: projects.
Manage workflow definitions. To execute workflows and manage executions, see the Workflows Executions API.
See: https://cloud.google.com/workflowsapi/reference/rest/v1/projects
raw docstring

locations-get$clj

(locations-get$ auth parameters)

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/get

Required parameters: name

Optional parameters: none

Gets information about a location.

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/get

Required parameters: name

Optional parameters: none

Gets information about a location.
sourceraw docstring

locations-list$clj

(locations-list$ auth parameters)

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/list

Required parameters: name

Optional parameters: pageSize, pageToken, filter

Lists information about the supported locations for this service.

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/list

Required parameters: name

Optional parameters: pageSize, pageToken, filter

Lists information about the supported locations for this service.
sourceraw docstring

locations-operations-delete$clj

(locations-operations-delete$ auth parameters)

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/operations/delete

Required parameters: name

Optional parameters: none

Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns google.rpc.Code.UNIMPLEMENTED.

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/operations/delete

Required parameters: name

Optional parameters: none

Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
sourceraw docstring

locations-operations-get$clj

(locations-operations-get$ auth parameters)

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/operations/get

Required parameters: name

Optional parameters: none

Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/operations/get

Required parameters: name

Optional parameters: none

Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.
sourceraw docstring

locations-operations-list$clj

(locations-operations-list$ auth parameters)

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/operations/list

Required parameters: name

Optional parameters: filter, pageToken, pageSize

Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns UNIMPLEMENTED. NOTE: the name binding allows API services to override the binding to use different resource name schemes, such as users/*/operations. To override the binding, API services can add a binding such as "/v1/{name=users/*}/operations" to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/operations/list

Required parameters: name

Optional parameters: filter, pageToken, pageSize

Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to override the binding to use different resource name schemes, such as `users/*/operations`. To override the binding, API services can add a binding such as `"/v1/{name=users/*}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.
sourceraw docstring

locations-workflows-create$clj

(locations-workflows-create$ auth parameters body)

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/workflows/create

Required parameters: parent

Optional parameters: workflowId

Body:

{:description string, :serviceAccount string, :labels {}, :sourceContents string, :revisionCreateTime string, :name string, :createTime string, :revisionId string, :state string, :updateTime string}

Creates a new workflow. If a workflow with the specified name already exists in the specified project and location, the long running operation will return ALREADY_EXISTS error.

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/workflows/create

Required parameters: parent

Optional parameters: workflowId

Body: 

{:description string,
 :serviceAccount string,
 :labels {},
 :sourceContents string,
 :revisionCreateTime string,
 :name string,
 :createTime string,
 :revisionId string,
 :state string,
 :updateTime string}

Creates a new workflow. If a workflow with the specified name already exists in the specified project and location, the long running operation will return ALREADY_EXISTS error.
sourceraw docstring

locations-workflows-delete$clj

(locations-workflows-delete$ auth parameters)

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/workflows/delete

Required parameters: name

Optional parameters: none

Deletes a workflow with the specified name. This method also cancels and deletes all running executions of the workflow.

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/workflows/delete

Required parameters: name

Optional parameters: none

Deletes a workflow with the specified name. This method also cancels and deletes all running executions of the workflow.
sourceraw docstring

locations-workflows-get$clj

(locations-workflows-get$ auth parameters)

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/workflows/get

Required parameters: name

Optional parameters: none

Gets details of a single Workflow.

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/workflows/get

Required parameters: name

Optional parameters: none

Gets details of a single Workflow.
sourceraw docstring

locations-workflows-list$clj

(locations-workflows-list$ auth parameters)

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/workflows/list

Required parameters: parent

Optional parameters: pageSize, orderBy, pageToken, filter

Lists Workflows in a given project and location. The default order is not specified.

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/workflows/list

Required parameters: parent

Optional parameters: pageSize, orderBy, pageToken, filter

Lists Workflows in a given project and location. The default order is not specified.
sourceraw docstring

locations-workflows-patch$clj

(locations-workflows-patch$ auth parameters body)

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/workflows/patch

Required parameters: name

Optional parameters: updateMask

Body:

{:description string, :serviceAccount string, :labels {}, :sourceContents string, :revisionCreateTime string, :name string, :createTime string, :revisionId string, :state string, :updateTime string}

Updates an existing workflow. Running this method has no impact on already running executions of the workflow. A new revision of the workflow may be created as a result of a successful update operation. In that case, such revision will be used in new workflow executions.

https://cloud.google.com/workflowsapi/reference/rest/v1/projects/locations/workflows/patch

Required parameters: name

Optional parameters: updateMask

Body: 

{:description string,
 :serviceAccount string,
 :labels {},
 :sourceContents string,
 :revisionCreateTime string,
 :name string,
 :createTime string,
 :revisionId string,
 :state string,
 :updateTime string}

Updates an existing workflow. Running this method has no impact on already running executions of the workflow. A new revision of the workflow may be created as a result of a successful update operation. In that case, such revision will be used in new workflow executions.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close