Repository URL to install this package:
|
Version:
4.5.4.dev1 ▾
|
"""
@generated by mypy-protobuf. Do not edit manually!
isort:skip_file
"""
import builtins
import google.protobuf.descriptor
import google.protobuf.internal.containers
import google.protobuf.message
import typing
import typing_extensions
DESCRIPTOR: google.protobuf.descriptor.FileDescriptor = ...
class Status(google.protobuf.message.Message):
"""Current form of the dataset"""
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
class PropertiesEntry(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
KEY_FIELD_NUMBER: builtins.int
VALUE_FIELD_NUMBER: builtins.int
key: typing.Text = ...
value: typing.Text = ...
def __init__(self,
*,
key : typing.Text = ...,
value : typing.Text = ...,
) -> None: ...
def ClearField(self, field_name: typing_extensions.Literal[u"key",b"key",u"value",b"value"]) -> None: ...
class Stage(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
class Pending(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
def __init__(self,
) -> None: ...
class Processing(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
def __init__(self,
) -> None: ...
class Ready(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
def __init__(self,
) -> None: ...
class Error(google.protobuf.message.Message):
DESCRIPTOR: google.protobuf.descriptor.Descriptor = ...
def __init__(self,
) -> None: ...
PENDING_FIELD_NUMBER: builtins.int
PROCESSING_FIELD_NUMBER: builtins.int
READY_FIELD_NUMBER: builtins.int
ERROR_FIELD_NUMBER: builtins.int
@property
def pending(self) -> global___Status.Stage.Pending: ...
@property
def processing(self) -> global___Status.Stage.Processing: ...
@property
def ready(self) -> global___Status.Stage.Ready: ...
@property
def error(self) -> global___Status.Stage.Error: ...
def __init__(self,
*,
pending : typing.Optional[global___Status.Stage.Pending] = ...,
processing : typing.Optional[global___Status.Stage.Processing] = ...,
ready : typing.Optional[global___Status.Stage.Ready] = ...,
error : typing.Optional[global___Status.Stage.Error] = ...,
) -> None: ...
def HasField(self, field_name: typing_extensions.Literal[u"error",b"error",u"pending",b"pending",u"processing",b"processing",u"ready",b"ready",u"stage",b"stage"]) -> builtins.bool: ...
def ClearField(self, field_name: typing_extensions.Literal[u"error",b"error",u"pending",b"pending",u"processing",b"processing",u"ready",b"ready",u"stage",b"stage"]) -> None: ...
def WhichOneof(self, oneof_group: typing_extensions.Literal[u"stage",b"stage"]) -> typing.Optional[typing_extensions.Literal["pending","processing","ready","error"]]: ...
UUID_FIELD_NUMBER: builtins.int
DATASET_FIELD_NUMBER: builtins.int
MANAGER_FIELD_NUMBER: builtins.int
DATETIME_FIELD_NUMBER: builtins.int
TASK_FIELD_NUMBER: builtins.int
STAGE_FIELD_NUMBER: builtins.int
PROPERTIES_FIELD_NUMBER: builtins.int
uuid: typing.Text = ...
dataset: typing.Text = ...
manager: typing.Text = ...
datetime: typing.Text = ...
"""ISO 8601 datetime"""
task: typing.Text = ...
@property
def stage(self) -> global___Status.Stage: ...
@property
def properties(self) -> google.protobuf.internal.containers.ScalarMap[typing.Text, typing.Text]:
"""Other properties"""
pass
def __init__(self,
*,
uuid : typing.Text = ...,
dataset : typing.Text = ...,
manager : typing.Text = ...,
datetime : typing.Text = ...,
task : typing.Text = ...,
stage : typing.Optional[global___Status.Stage] = ...,
properties : typing.Optional[typing.Mapping[typing.Text, typing.Text]] = ...,
) -> None: ...
def HasField(self, field_name: typing_extensions.Literal[u"stage",b"stage"]) -> builtins.bool: ...
def ClearField(self, field_name: typing_extensions.Literal[u"dataset",b"dataset",u"datetime",b"datetime",u"manager",b"manager",u"properties",b"properties",u"stage",b"stage",u"task",b"task",u"uuid",b"uuid"]) -> None: ...
global___Status = Status