Skip to content

workflows.v1beta#

zen_api.workflows.v1beta #

Classes:

JobResourcesServiceGetAvailableResourcesRequest dataclass #

JobResourcesServiceGetAvailableResourcesRequest()

Bases: Message

The JobResourcesServiceGetAvailableResourcesRequest class.

JobResourcesServiceGetAvailableResourcesResponse dataclass #

JobResourcesServiceGetAvailableResourcesResponse(resources: List[str] = betterproto.string_field(1))

Bases: Message

Response containing the list of all available resource workflow parameters.

Attributes:

  • resources (List[str]) –

    The list of all available resource workflow parameters.

resources class-attribute instance-attribute #

resources: List[str] = string_field(1)

The list of all available resource workflow parameters.

JobResourcesServiceGetBooleanValueRequest dataclass #

JobResourcesServiceGetBooleanValueRequest(resource_id: str = betterproto.string_field(1))

Bases: Message

The JobResourcesServiceGetBooleanValueRequest class.

Attributes:

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

JobResourcesServiceGetBooleanValueResponse dataclass #

JobResourcesServiceGetBooleanValueResponse(value: bool = betterproto.bool_field(1))

Bases: Message

Response containing the resource's value.

Attributes:

  • value (bool) –

    The resource's value.

value class-attribute instance-attribute #

value: bool = bool_field(1)

The resource's value.

JobResourcesServiceGetDateTimeValueRequest dataclass #

JobResourcesServiceGetDateTimeValueRequest(resource_id: str = betterproto.string_field(1))

Bases: Message

The JobResourcesServiceGetDateTimeValueRequest class.

Attributes:

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

JobResourcesServiceGetDateTimeValueResponse dataclass #

JobResourcesServiceGetDateTimeValueResponse(value: str = betterproto.string_field(1))

Bases: Message

Response containing the resource's value.

Attributes:

  • value (str) –

    The resource's date and time string value in ISO 8601 format.

value class-attribute instance-attribute #

value: str = string_field(1)

The resource's date and time string value in ISO 8601 format.

JobResourcesServiceGetDateValueRequest dataclass #

JobResourcesServiceGetDateValueRequest(resource_id: str = betterproto.string_field(1))

Bases: Message

The JobResourcesServiceGetDateValueRequest class.

Attributes:

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

JobResourcesServiceGetDateValueResponse dataclass #

JobResourcesServiceGetDateValueResponse(value: str = betterproto.string_field(1))

Bases: Message

Response containing the resource's value.

Attributes:

  • value (str) –

    The resource's date string value in ISO 8601 format.

value class-attribute instance-attribute #

value: str = string_field(1)

The resource's date string value in ISO 8601 format.

JobResourcesServiceGetDoubleValueRequest dataclass #

JobResourcesServiceGetDoubleValueRequest(resource_id: str = betterproto.string_field(1))

Bases: Message

The JobResourcesServiceGetDoubleValueRequest class.

Attributes:

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

JobResourcesServiceGetDoubleValueResponse dataclass #

JobResourcesServiceGetDoubleValueResponse(value: float = betterproto.double_field(1))

Bases: Message

Response containing the resource's value.

Attributes:

  • value (float) –

    The resource's value.

value class-attribute instance-attribute #

value: float = double_field(1)

The resource's value.

JobResourcesServiceGetFloatValueRequest dataclass #

JobResourcesServiceGetFloatValueRequest(resource_id: str = betterproto.string_field(1))

Bases: Message

The JobResourcesServiceGetFloatValueRequest class.

Attributes:

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

JobResourcesServiceGetFloatValueResponse dataclass #

JobResourcesServiceGetFloatValueResponse(value: float = betterproto.float_field(1))

Bases: Message

Response containing the resource's value.

Attributes:

  • value (float) –

    The resource's value.

value class-attribute instance-attribute #

value: float = float_field(1)

The resource's value.

JobResourcesServiceGetIntegerValueRequest dataclass #

JobResourcesServiceGetIntegerValueRequest(resource_id: str = betterproto.string_field(1))

Bases: Message

The JobResourcesServiceGetIntegerValueRequest class.

Attributes:

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

JobResourcesServiceGetIntegerValueResponse dataclass #

JobResourcesServiceGetIntegerValueResponse(value: int = betterproto.int32_field(1))

Bases: Message

Response containing the resource's value.

Attributes:

  • value (int) –

    The resource's value.

value class-attribute instance-attribute #

value: int = int32_field(1)

The resource's value.

JobResourcesServiceGetLongValueRequest dataclass #

JobResourcesServiceGetLongValueRequest(resource_id: str = betterproto.string_field(1))

Bases: Message

The JobResourcesServiceGetLongValueRequest class.

Attributes:

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

JobResourcesServiceGetLongValueResponse dataclass #

JobResourcesServiceGetLongValueResponse(value: int = betterproto.int64_field(1))

Bases: Message

Response containing the resource's value.

Attributes:

  • value (int) –

    The resource's value.

value class-attribute instance-attribute #

value: int = int64_field(1)

The resource's value.

JobResourcesServiceGetStringValueRequest dataclass #

JobResourcesServiceGetStringValueRequest(resource_id: str = betterproto.string_field(1))

Bases: Message

The JobResourcesServiceGetStringValueRequest class.

Attributes:

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

JobResourcesServiceGetStringValueResponse dataclass #

JobResourcesServiceGetStringValueResponse(value: str = betterproto.string_field(1))

Bases: Message

Response containing the resource's value.

Attributes:

  • value (str) –

    The resource's value.

value class-attribute instance-attribute #

value: str = string_field(1)

The resource's value.

JobResourcesServiceGetTimeValueRequest dataclass #

JobResourcesServiceGetTimeValueRequest(resource_id: str = betterproto.string_field(1))

Bases: Message

The JobResourcesServiceGetTimeValueRequest class.

Attributes:

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

JobResourcesServiceGetTimeValueResponse dataclass #

JobResourcesServiceGetTimeValueResponse(value: str = betterproto.string_field(1))

Bases: Message

Response containing the resource's value.

Attributes:

  • value (str) –

    The resource's time string value in ISO 8601 format.

value class-attribute instance-attribute #

value: str = string_field(1)

The resource's time string value in ISO 8601 format.

JobResourcesServiceHasResourceRequest dataclass #

JobResourcesServiceHasResourceRequest(resource_id: str = betterproto.string_field(1))

Bases: Message

The JobResourcesServiceHasResourceRequest class.

Attributes:

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

JobResourcesServiceHasResourceResponse dataclass #

JobResourcesServiceHasResourceResponse(has_resource: bool = betterproto.bool_field(1))

Bases: Message

Response containing information if the current job has a resource with the specified ID.

Attributes:

  • has_resource (bool) –

    A value indicating whether the current job has a resource with the specified ID.

has_resource class-attribute instance-attribute #

has_resource: bool = bool_field(1)

A value indicating whether the current job has a resource with the specified ID.

JobResourcesServiceIsJobLoadedRequest dataclass #

JobResourcesServiceIsJobLoadedRequest()

Bases: Message

The JobResourcesServiceIsJobLoadedRequest class.

JobResourcesServiceIsJobLoadedResponse dataclass #

JobResourcesServiceIsJobLoadedResponse(is_job_loaded: bool = betterproto.bool_field(1))

Bases: Message

Response containing information if a job is loaded.

Attributes:

  • is_job_loaded (bool) –

    A value indicating whether a job is loaded.

is_job_loaded class-attribute instance-attribute #

is_job_loaded: bool = bool_field(1)

A value indicating whether a job is loaded.

JobResourcesServiceSetBooleanValueRequest dataclass #

JobResourcesServiceSetBooleanValueRequest(resource_id: str = betterproto.string_field(1), value: bool = betterproto.bool_field(2))

Bases: Message

The JobResourcesServiceSetBooleanValueRequest class.

Attributes:

  • resource_id (str) –

    The ID of the resource.

  • value (bool) –

    The resource's value.

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

value class-attribute instance-attribute #

value: bool = bool_field(2)

The resource's value.

JobResourcesServiceSetBooleanValueResponse dataclass #

JobResourcesServiceSetBooleanValueResponse()

Bases: Message

The JobResourcesServiceSetBooleanValueResponse class.

JobResourcesServiceSetDateTimeValueRequest dataclass #

JobResourcesServiceSetDateTimeValueRequest(resource_id: str = betterproto.string_field(1), value: str = betterproto.string_field(2))

Bases: Message

The JobResourcesServiceSetDateTimeValueRequest class.

Attributes:

  • resource_id (str) –

    The ID of the resource.

  • value (str) –

    The resource's value.

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

value class-attribute instance-attribute #

value: str = string_field(2)

The resource's value.

JobResourcesServiceSetDateTimeValueResponse dataclass #

JobResourcesServiceSetDateTimeValueResponse()

Bases: Message

The JobResourcesServiceSetDateTimeValueResponse class.

JobResourcesServiceSetDateValueRequest dataclass #

JobResourcesServiceSetDateValueRequest(resource_id: str = betterproto.string_field(1), value: str = betterproto.string_field(2))

Bases: Message

The JobResourcesServiceSetDateValueRequest class.

Attributes:

  • resource_id (str) –

    The ID of the resource.

  • value (str) –

    The resource's value.

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

value class-attribute instance-attribute #

value: str = string_field(2)

The resource's value.

JobResourcesServiceSetDateValueResponse dataclass #

JobResourcesServiceSetDateValueResponse()

Bases: Message

The JobResourcesServiceSetDateValueResponse class.

JobResourcesServiceSetDoubleValueRequest dataclass #

JobResourcesServiceSetDoubleValueRequest(resource_id: str = betterproto.string_field(1), value: float = betterproto.double_field(2))

Bases: Message

The JobResourcesServiceSetDoubleValueRequest class.

Attributes:

  • resource_id (str) –

    The ID of the resource.

  • value (float) –

    The resource's value.

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

value class-attribute instance-attribute #

value: float = double_field(2)

The resource's value.

JobResourcesServiceSetDoubleValueResponse dataclass #

JobResourcesServiceSetDoubleValueResponse()

Bases: Message

The JobResourcesServiceSetDoubleValueResponse class.

JobResourcesServiceSetFloatValueRequest dataclass #

JobResourcesServiceSetFloatValueRequest(resource_id: str = betterproto.string_field(1), value: float = betterproto.float_field(2))

Bases: Message

The JobResourcesServiceSetFloatValueRequest class.

Attributes:

  • resource_id (str) –

    The ID of the resource.

  • value (float) –

    The resource's value.

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

value class-attribute instance-attribute #

value: float = float_field(2)

The resource's value.

JobResourcesServiceSetFloatValueResponse dataclass #

JobResourcesServiceSetFloatValueResponse()

Bases: Message

The JobResourcesServiceSetFloatValueResponse class.

JobResourcesServiceSetIntegerValueRequest dataclass #

JobResourcesServiceSetIntegerValueRequest(resource_id: str = betterproto.string_field(1), value: int = betterproto.int32_field(2))

Bases: Message

The JobResourcesServiceSetIntegerValueRequest class.

Attributes:

  • resource_id (str) –

    The ID of the resource.

  • value (int) –

    The resource's value.

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

value class-attribute instance-attribute #

value: int = int32_field(2)

The resource's value.

JobResourcesServiceSetIntegerValueResponse dataclass #

JobResourcesServiceSetIntegerValueResponse()

Bases: Message

The JobResourcesServiceSetIntegerValueResponse class.

JobResourcesServiceSetLongValueRequest dataclass #

JobResourcesServiceSetLongValueRequest(resource_id: str = betterproto.string_field(1), value: int = betterproto.int64_field(2))

Bases: Message

The JobResourcesServiceSetLongValueRequest class.

Attributes:

  • resource_id (str) –

    The ID of the resource.

  • value (int) –

    The resource's value.

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

value class-attribute instance-attribute #

value: int = int64_field(2)

The resource's value.

JobResourcesServiceSetLongValueResponse dataclass #

JobResourcesServiceSetLongValueResponse()

Bases: Message

The JobResourcesServiceSetLongValueResponse class.

JobResourcesServiceSetStringValueRequest dataclass #

JobResourcesServiceSetStringValueRequest(resource_id: str = betterproto.string_field(1), value: str = betterproto.string_field(2))

Bases: Message

The JobResourcesServiceSetStringValueRequest class.

Attributes:

  • resource_id (str) –

    The ID of the resource.

  • value (str) –

    The resource's value.

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

value class-attribute instance-attribute #

value: str = string_field(2)

The resource's value.

JobResourcesServiceSetStringValueResponse dataclass #

JobResourcesServiceSetStringValueResponse()

Bases: Message

The JobResourcesServiceSetStringValueResponse class.

JobResourcesServiceSetTimeValueRequest dataclass #

JobResourcesServiceSetTimeValueRequest(resource_id: str = betterproto.string_field(1), value: str = betterproto.string_field(2))

Bases: Message

The JobResourcesServiceSetTimeValueRequest class.

Attributes:

  • resource_id (str) –

    The ID of the resource.

  • value (str) –

    The resource's value.

resource_id class-attribute instance-attribute #

resource_id: str = string_field(1)

The ID of the resource.

value class-attribute instance-attribute #

value: str = string_field(2)

The resource's value.

JobResourcesServiceSetTimeValueResponse dataclass #

JobResourcesServiceSetTimeValueResponse()

Bases: Message

The JobResourcesServiceSetTimeValueResponse class.