You've already forked dart-core-sdk
3731 lines
192 KiB
Dart
3731 lines
192 KiB
Dart
// This is a generated file - do not edit.
|
|
//
|
|
// Generated from workflow.proto.
|
|
|
|
// @dart = 3.3
|
|
|
|
// ignore_for_file: annotate_overrides, camel_case_types, comment_references
|
|
// ignore_for_file: constant_identifier_names
|
|
// ignore_for_file: curly_braces_in_flow_control_structures
|
|
// ignore_for_file: deprecated_member_use_from_same_package, library_prefixes
|
|
// ignore_for_file: non_constant_identifier_names
|
|
|
|
import 'dart:core' as $core;
|
|
|
|
import 'package:protobuf/protobuf.dart' as $pb;
|
|
|
|
import 'base.pbenum.dart' as $4;
|
|
import 'clickhouse.pb.dart' as $3;
|
|
import 'module.pb.dart' as $2;
|
|
import 'shared.pb.dart' as $1;
|
|
|
|
export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions;
|
|
|
|
export 'workflow.pbenum.dart';
|
|
|
|
class RetryWorkflowRequest extends $pb.GeneratedMessage {
|
|
factory RetryWorkflowRequest({
|
|
$core.String? workflowId,
|
|
$core.String? runId,
|
|
$core.String? domain,
|
|
}) {
|
|
final result = create();
|
|
if (workflowId != null) result.workflowId = workflowId;
|
|
if (runId != null) result.runId = runId;
|
|
if (domain != null) result.domain = domain;
|
|
return result;
|
|
}
|
|
|
|
RetryWorkflowRequest._();
|
|
|
|
factory RetryWorkflowRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory RetryWorkflowRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RetryWorkflowRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'WorkflowId', protoName: 'WorkflowId')
|
|
..aOS(2, _omitFieldNames ? '' : 'RunId', protoName: 'RunId')
|
|
..aOS(3, _omitFieldNames ? '' : 'Domain', protoName: 'Domain')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
RetryWorkflowRequest clone() => RetryWorkflowRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
RetryWorkflowRequest copyWith(void Function(RetryWorkflowRequest) updates) => super.copyWith((message) => updates(message as RetryWorkflowRequest)) as RetryWorkflowRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static RetryWorkflowRequest create() => RetryWorkflowRequest._();
|
|
@$core.override
|
|
RetryWorkflowRequest createEmptyInstance() => create();
|
|
static $pb.PbList<RetryWorkflowRequest> createRepeated() => $pb.PbList<RetryWorkflowRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static RetryWorkflowRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RetryWorkflowRequest>(create);
|
|
static RetryWorkflowRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get workflowId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowId() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get runId => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set runId($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasRunId() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearRunId() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$core.String get domain => $_getSZ(2);
|
|
@$pb.TagNumber(3)
|
|
set domain($core.String value) => $_setString(2, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasDomain() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearDomain() => $_clearField(3);
|
|
}
|
|
|
|
class RetryWorkflowResult extends $pb.GeneratedMessage {
|
|
factory RetryWorkflowResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
RetryWorkflowResult._();
|
|
|
|
factory RetryWorkflowResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory RetryWorkflowResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RetryWorkflowResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
RetryWorkflowResult clone() => RetryWorkflowResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
RetryWorkflowResult copyWith(void Function(RetryWorkflowResult) updates) => super.copyWith((message) => updates(message as RetryWorkflowResult)) as RetryWorkflowResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static RetryWorkflowResult create() => RetryWorkflowResult._();
|
|
@$core.override
|
|
RetryWorkflowResult createEmptyInstance() => create();
|
|
static $pb.PbList<RetryWorkflowResult> createRepeated() => $pb.PbList<RetryWorkflowResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static RetryWorkflowResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RetryWorkflowResult>(create);
|
|
static RetryWorkflowResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowCreateProjectRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowCreateProjectRequest({
|
|
$core.String? organisationId,
|
|
$core.String? projectId,
|
|
$core.String? userSub,
|
|
$core.String? managerEmail,
|
|
$core.Iterable<$2.Module>? modules,
|
|
$4.ProjectType? projectType,
|
|
}) {
|
|
final result = create();
|
|
if (organisationId != null) result.organisationId = organisationId;
|
|
if (projectId != null) result.projectId = projectId;
|
|
if (userSub != null) result.userSub = userSub;
|
|
if (managerEmail != null) result.managerEmail = managerEmail;
|
|
if (modules != null) result.modules.addAll(modules);
|
|
if (projectType != null) result.projectType = projectType;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowCreateProjectRequest._();
|
|
|
|
factory StartWorkflowCreateProjectRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowCreateProjectRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowCreateProjectRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'OrganisationId', protoName: 'OrganisationId')
|
|
..aOS(2, _omitFieldNames ? '' : 'ProjectId', protoName: 'ProjectId')
|
|
..aOS(3, _omitFieldNames ? '' : 'UserSub', protoName: 'UserSub')
|
|
..aOS(4, _omitFieldNames ? '' : 'ManagerEmail', protoName: 'ManagerEmail')
|
|
..pc<$2.Module>(5, _omitFieldNames ? '' : 'Modules', $pb.PbFieldType.PM, protoName: 'Modules', subBuilder: $2.Module.create)
|
|
..e<$4.ProjectType>(6, _omitFieldNames ? '' : 'ProjectType', $pb.PbFieldType.OE, protoName: 'ProjectType', defaultOrMaker: $4.ProjectType.PROJECT_TYPE_UNKNOWN, valueOf: $4.ProjectType.valueOf, enumValues: $4.ProjectType.values)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateProjectRequest clone() => StartWorkflowCreateProjectRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateProjectRequest copyWith(void Function(StartWorkflowCreateProjectRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowCreateProjectRequest)) as StartWorkflowCreateProjectRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateProjectRequest create() => StartWorkflowCreateProjectRequest._();
|
|
@$core.override
|
|
StartWorkflowCreateProjectRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowCreateProjectRequest> createRepeated() => $pb.PbList<StartWorkflowCreateProjectRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateProjectRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowCreateProjectRequest>(create);
|
|
static StartWorkflowCreateProjectRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get organisationId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set organisationId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasOrganisationId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearOrganisationId() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get projectId => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set projectId($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasProjectId() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearProjectId() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$core.String get userSub => $_getSZ(2);
|
|
@$pb.TagNumber(3)
|
|
set userSub($core.String value) => $_setString(2, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasUserSub() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearUserSub() => $_clearField(3);
|
|
|
|
@$pb.TagNumber(4)
|
|
$core.String get managerEmail => $_getSZ(3);
|
|
@$pb.TagNumber(4)
|
|
set managerEmail($core.String value) => $_setString(3, value);
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasManagerEmail() => $_has(3);
|
|
@$pb.TagNumber(4)
|
|
void clearManagerEmail() => $_clearField(4);
|
|
|
|
@$pb.TagNumber(5)
|
|
$pb.PbList<$2.Module> get modules => $_getList(4);
|
|
|
|
@$pb.TagNumber(6)
|
|
$4.ProjectType get projectType => $_getN(5);
|
|
@$pb.TagNumber(6)
|
|
set projectType($4.ProjectType value) => $_setField(6, value);
|
|
@$pb.TagNumber(6)
|
|
$core.bool hasProjectType() => $_has(5);
|
|
@$pb.TagNumber(6)
|
|
void clearProjectType() => $_clearField(6);
|
|
}
|
|
|
|
class StartWorkflowCreateProjectResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowCreateProjectResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowCreateProjectResult._();
|
|
|
|
factory StartWorkflowCreateProjectResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowCreateProjectResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowCreateProjectResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateProjectResult clone() => StartWorkflowCreateProjectResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateProjectResult copyWith(void Function(StartWorkflowCreateProjectResult) updates) => super.copyWith((message) => updates(message as StartWorkflowCreateProjectResult)) as StartWorkflowCreateProjectResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateProjectResult create() => StartWorkflowCreateProjectResult._();
|
|
@$core.override
|
|
StartWorkflowCreateProjectResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowCreateProjectResult> createRepeated() => $pb.PbList<StartWorkflowCreateProjectResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateProjectResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowCreateProjectResult>(create);
|
|
static StartWorkflowCreateProjectResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowDeleteProjectRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeleteProjectRequest({
|
|
$core.String? organisationId,
|
|
$core.String? projectId,
|
|
$core.String? userId,
|
|
}) {
|
|
final result = create();
|
|
if (organisationId != null) result.organisationId = organisationId;
|
|
if (projectId != null) result.projectId = projectId;
|
|
if (userId != null) result.userId = userId;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeleteProjectRequest._();
|
|
|
|
factory StartWorkflowDeleteProjectRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeleteProjectRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeleteProjectRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'OrganisationId', protoName: 'OrganisationId')
|
|
..aOS(2, _omitFieldNames ? '' : 'ProjectId', protoName: 'ProjectId')
|
|
..aOS(3, _omitFieldNames ? '' : 'UserId', protoName: 'UserId')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteProjectRequest clone() => StartWorkflowDeleteProjectRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteProjectRequest copyWith(void Function(StartWorkflowDeleteProjectRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowDeleteProjectRequest)) as StartWorkflowDeleteProjectRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteProjectRequest create() => StartWorkflowDeleteProjectRequest._();
|
|
@$core.override
|
|
StartWorkflowDeleteProjectRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeleteProjectRequest> createRepeated() => $pb.PbList<StartWorkflowDeleteProjectRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteProjectRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeleteProjectRequest>(create);
|
|
static StartWorkflowDeleteProjectRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get organisationId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set organisationId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasOrganisationId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearOrganisationId() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get projectId => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set projectId($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasProjectId() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearProjectId() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$core.String get userId => $_getSZ(2);
|
|
@$pb.TagNumber(3)
|
|
set userId($core.String value) => $_setString(2, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasUserId() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearUserId() => $_clearField(3);
|
|
}
|
|
|
|
class StartWorkflowDeleteProjectResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeleteProjectResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeleteProjectResult._();
|
|
|
|
factory StartWorkflowDeleteProjectResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeleteProjectResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeleteProjectResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteProjectResult clone() => StartWorkflowDeleteProjectResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteProjectResult copyWith(void Function(StartWorkflowDeleteProjectResult) updates) => super.copyWith((message) => updates(message as StartWorkflowDeleteProjectResult)) as StartWorkflowDeleteProjectResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteProjectResult create() => StartWorkflowDeleteProjectResult._();
|
|
@$core.override
|
|
StartWorkflowDeleteProjectResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeleteProjectResult> createRepeated() => $pb.PbList<StartWorkflowDeleteProjectResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteProjectResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeleteProjectResult>(create);
|
|
static StartWorkflowDeleteProjectResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowDeleteCoreRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeleteCoreRequest({
|
|
$core.String? organisationId,
|
|
$core.String? projectId,
|
|
}) {
|
|
final result = create();
|
|
if (organisationId != null) result.organisationId = organisationId;
|
|
if (projectId != null) result.projectId = projectId;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeleteCoreRequest._();
|
|
|
|
factory StartWorkflowDeleteCoreRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeleteCoreRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeleteCoreRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'OrganisationId', protoName: 'OrganisationId')
|
|
..aOS(2, _omitFieldNames ? '' : 'ProjectId', protoName: 'ProjectId')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteCoreRequest clone() => StartWorkflowDeleteCoreRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteCoreRequest copyWith(void Function(StartWorkflowDeleteCoreRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowDeleteCoreRequest)) as StartWorkflowDeleteCoreRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteCoreRequest create() => StartWorkflowDeleteCoreRequest._();
|
|
@$core.override
|
|
StartWorkflowDeleteCoreRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeleteCoreRequest> createRepeated() => $pb.PbList<StartWorkflowDeleteCoreRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteCoreRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeleteCoreRequest>(create);
|
|
static StartWorkflowDeleteCoreRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get organisationId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set organisationId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasOrganisationId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearOrganisationId() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get projectId => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set projectId($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasProjectId() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearProjectId() => $_clearField(2);
|
|
}
|
|
|
|
class StartWorkflowDeleteCoreResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeleteCoreResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeleteCoreResult._();
|
|
|
|
factory StartWorkflowDeleteCoreResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeleteCoreResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeleteCoreResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteCoreResult clone() => StartWorkflowDeleteCoreResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteCoreResult copyWith(void Function(StartWorkflowDeleteCoreResult) updates) => super.copyWith((message) => updates(message as StartWorkflowDeleteCoreResult)) as StartWorkflowDeleteCoreResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteCoreResult create() => StartWorkflowDeleteCoreResult._();
|
|
@$core.override
|
|
StartWorkflowDeleteCoreResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeleteCoreResult> createRepeated() => $pb.PbList<StartWorkflowDeleteCoreResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteCoreResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeleteCoreResult>(create);
|
|
static StartWorkflowDeleteCoreResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowDeletePartnerAppRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeletePartnerAppRequest({
|
|
$core.String? organisationId,
|
|
$core.String? projectId,
|
|
$core.String? partnerAppId,
|
|
$core.String? userId,
|
|
}) {
|
|
final result = create();
|
|
if (organisationId != null) result.organisationId = organisationId;
|
|
if (projectId != null) result.projectId = projectId;
|
|
if (partnerAppId != null) result.partnerAppId = partnerAppId;
|
|
if (userId != null) result.userId = userId;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeletePartnerAppRequest._();
|
|
|
|
factory StartWorkflowDeletePartnerAppRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeletePartnerAppRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeletePartnerAppRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'OrganisationId', protoName: 'OrganisationId')
|
|
..aOS(2, _omitFieldNames ? '' : 'ProjectId', protoName: 'ProjectId')
|
|
..aOS(3, _omitFieldNames ? '' : 'PartnerAppId', protoName: 'PartnerAppId')
|
|
..aOS(4, _omitFieldNames ? '' : 'UserId', protoName: 'UserId')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeletePartnerAppRequest clone() => StartWorkflowDeletePartnerAppRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeletePartnerAppRequest copyWith(void Function(StartWorkflowDeletePartnerAppRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowDeletePartnerAppRequest)) as StartWorkflowDeletePartnerAppRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeletePartnerAppRequest create() => StartWorkflowDeletePartnerAppRequest._();
|
|
@$core.override
|
|
StartWorkflowDeletePartnerAppRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeletePartnerAppRequest> createRepeated() => $pb.PbList<StartWorkflowDeletePartnerAppRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeletePartnerAppRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeletePartnerAppRequest>(create);
|
|
static StartWorkflowDeletePartnerAppRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get organisationId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set organisationId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasOrganisationId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearOrganisationId() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get projectId => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set projectId($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasProjectId() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearProjectId() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$core.String get partnerAppId => $_getSZ(2);
|
|
@$pb.TagNumber(3)
|
|
set partnerAppId($core.String value) => $_setString(2, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasPartnerAppId() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearPartnerAppId() => $_clearField(3);
|
|
|
|
@$pb.TagNumber(4)
|
|
$core.String get userId => $_getSZ(3);
|
|
@$pb.TagNumber(4)
|
|
set userId($core.String value) => $_setString(3, value);
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasUserId() => $_has(3);
|
|
@$pb.TagNumber(4)
|
|
void clearUserId() => $_clearField(4);
|
|
}
|
|
|
|
class StartWorkflowDeletePartnerAppResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeletePartnerAppResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeletePartnerAppResult._();
|
|
|
|
factory StartWorkflowDeletePartnerAppResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeletePartnerAppResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeletePartnerAppResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeletePartnerAppResult clone() => StartWorkflowDeletePartnerAppResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeletePartnerAppResult copyWith(void Function(StartWorkflowDeletePartnerAppResult) updates) => super.copyWith((message) => updates(message as StartWorkflowDeletePartnerAppResult)) as StartWorkflowDeletePartnerAppResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeletePartnerAppResult create() => StartWorkflowDeletePartnerAppResult._();
|
|
@$core.override
|
|
StartWorkflowDeletePartnerAppResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeletePartnerAppResult> createRepeated() => $pb.PbList<StartWorkflowDeletePartnerAppResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeletePartnerAppResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeletePartnerAppResult>(create);
|
|
static StartWorkflowDeletePartnerAppResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowDeleteConnectionRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeleteConnectionRequest({
|
|
$core.String? organisationId,
|
|
$core.String? connectionId,
|
|
$core.String? userId,
|
|
}) {
|
|
final result = create();
|
|
if (organisationId != null) result.organisationId = organisationId;
|
|
if (connectionId != null) result.connectionId = connectionId;
|
|
if (userId != null) result.userId = userId;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeleteConnectionRequest._();
|
|
|
|
factory StartWorkflowDeleteConnectionRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeleteConnectionRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeleteConnectionRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'OrganisationId', protoName: 'OrganisationId')
|
|
..aOS(2, _omitFieldNames ? '' : 'ConnectionId', protoName: 'ConnectionId')
|
|
..aOS(3, _omitFieldNames ? '' : 'UserId', protoName: 'UserId')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteConnectionRequest clone() => StartWorkflowDeleteConnectionRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteConnectionRequest copyWith(void Function(StartWorkflowDeleteConnectionRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowDeleteConnectionRequest)) as StartWorkflowDeleteConnectionRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteConnectionRequest create() => StartWorkflowDeleteConnectionRequest._();
|
|
@$core.override
|
|
StartWorkflowDeleteConnectionRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeleteConnectionRequest> createRepeated() => $pb.PbList<StartWorkflowDeleteConnectionRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteConnectionRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeleteConnectionRequest>(create);
|
|
static StartWorkflowDeleteConnectionRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get organisationId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set organisationId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasOrganisationId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearOrganisationId() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get connectionId => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set connectionId($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasConnectionId() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearConnectionId() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$core.String get userId => $_getSZ(2);
|
|
@$pb.TagNumber(3)
|
|
set userId($core.String value) => $_setString(2, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasUserId() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearUserId() => $_clearField(3);
|
|
}
|
|
|
|
class StartWorkflowDeleteConnectionResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeleteConnectionResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeleteConnectionResult._();
|
|
|
|
factory StartWorkflowDeleteConnectionResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeleteConnectionResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeleteConnectionResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteConnectionResult clone() => StartWorkflowDeleteConnectionResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteConnectionResult copyWith(void Function(StartWorkflowDeleteConnectionResult) updates) => super.copyWith((message) => updates(message as StartWorkflowDeleteConnectionResult)) as StartWorkflowDeleteConnectionResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteConnectionResult create() => StartWorkflowDeleteConnectionResult._();
|
|
@$core.override
|
|
StartWorkflowDeleteConnectionResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeleteConnectionResult> createRepeated() => $pb.PbList<StartWorkflowDeleteConnectionResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteConnectionResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeleteConnectionResult>(create);
|
|
static StartWorkflowDeleteConnectionResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowBillingRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowBillingRequest({
|
|
$core.String? organisationId,
|
|
}) {
|
|
final result = create();
|
|
if (organisationId != null) result.organisationId = organisationId;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowBillingRequest._();
|
|
|
|
factory StartWorkflowBillingRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowBillingRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowBillingRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'OrganisationId', protoName: 'OrganisationId')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowBillingRequest clone() => StartWorkflowBillingRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowBillingRequest copyWith(void Function(StartWorkflowBillingRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowBillingRequest)) as StartWorkflowBillingRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowBillingRequest create() => StartWorkflowBillingRequest._();
|
|
@$core.override
|
|
StartWorkflowBillingRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowBillingRequest> createRepeated() => $pb.PbList<StartWorkflowBillingRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowBillingRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowBillingRequest>(create);
|
|
static StartWorkflowBillingRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get organisationId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set organisationId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasOrganisationId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearOrganisationId() => $_clearField(1);
|
|
}
|
|
|
|
class StartWorkflowBillingResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowBillingResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowBillingResult._();
|
|
|
|
factory StartWorkflowBillingResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowBillingResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowBillingResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowBillingResult clone() => StartWorkflowBillingResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowBillingResult copyWith(void Function(StartWorkflowBillingResult) updates) => super.copyWith((message) => updates(message as StartWorkflowBillingResult)) as StartWorkflowBillingResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowBillingResult create() => StartWorkflowBillingResult._();
|
|
@$core.override
|
|
StartWorkflowBillingResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowBillingResult> createRepeated() => $pb.PbList<StartWorkflowBillingResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowBillingResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowBillingResult>(create);
|
|
static StartWorkflowBillingResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StopWorkflowBillingRequest extends $pb.GeneratedMessage {
|
|
factory StopWorkflowBillingRequest({
|
|
$core.String? organisationId,
|
|
}) {
|
|
final result = create();
|
|
if (organisationId != null) result.organisationId = organisationId;
|
|
return result;
|
|
}
|
|
|
|
StopWorkflowBillingRequest._();
|
|
|
|
factory StopWorkflowBillingRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StopWorkflowBillingRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StopWorkflowBillingRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'OrganisationId', protoName: 'OrganisationId')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StopWorkflowBillingRequest clone() => StopWorkflowBillingRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StopWorkflowBillingRequest copyWith(void Function(StopWorkflowBillingRequest) updates) => super.copyWith((message) => updates(message as StopWorkflowBillingRequest)) as StopWorkflowBillingRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StopWorkflowBillingRequest create() => StopWorkflowBillingRequest._();
|
|
@$core.override
|
|
StopWorkflowBillingRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StopWorkflowBillingRequest> createRepeated() => $pb.PbList<StopWorkflowBillingRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StopWorkflowBillingRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StopWorkflowBillingRequest>(create);
|
|
static StopWorkflowBillingRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get organisationId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set organisationId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasOrganisationId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearOrganisationId() => $_clearField(1);
|
|
}
|
|
|
|
class StopWorkflowBillingResult extends $pb.GeneratedMessage {
|
|
factory StopWorkflowBillingResult() => create();
|
|
|
|
StopWorkflowBillingResult._();
|
|
|
|
factory StopWorkflowBillingResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StopWorkflowBillingResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StopWorkflowBillingResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StopWorkflowBillingResult clone() => StopWorkflowBillingResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StopWorkflowBillingResult copyWith(void Function(StopWorkflowBillingResult) updates) => super.copyWith((message) => updates(message as StopWorkflowBillingResult)) as StopWorkflowBillingResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StopWorkflowBillingResult create() => StopWorkflowBillingResult._();
|
|
@$core.override
|
|
StopWorkflowBillingResult createEmptyInstance() => create();
|
|
static $pb.PbList<StopWorkflowBillingResult> createRepeated() => $pb.PbList<StopWorkflowBillingResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StopWorkflowBillingResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StopWorkflowBillingResult>(create);
|
|
static StopWorkflowBillingResult? _defaultInstance;
|
|
}
|
|
|
|
class StartWorkflowExtractDataFromDBRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowExtractDataFromDBRequest({
|
|
$core.String? userId,
|
|
$core.String? projectId,
|
|
$core.Iterable<$1.BlockFilter>? blockFilters,
|
|
$core.String? targetType,
|
|
$core.Iterable<$core.String>? fields,
|
|
$core.String? listSeparator,
|
|
$core.String? decimalSeparator,
|
|
$core.Iterable<$core.String>? columnNames,
|
|
$core.String? targetDomain,
|
|
$core.Iterable<$core.MapEntry<$core.String, $1.TranslationMap>>? columnTranslationMaps,
|
|
$core.Iterable<$core.MapEntry<$core.int, $1.ExtractColumnFormat>>? columnFormats,
|
|
$core.String? targetTimeZone,
|
|
$core.String? dateFormat,
|
|
$core.String? numberFormat,
|
|
$1.TimeFormat? timeFormat,
|
|
}) {
|
|
final result = create();
|
|
if (userId != null) result.userId = userId;
|
|
if (projectId != null) result.projectId = projectId;
|
|
if (blockFilters != null) result.blockFilters.addAll(blockFilters);
|
|
if (targetType != null) result.targetType = targetType;
|
|
if (fields != null) result.fields.addAll(fields);
|
|
if (listSeparator != null) result.listSeparator = listSeparator;
|
|
if (decimalSeparator != null) result.decimalSeparator = decimalSeparator;
|
|
if (columnNames != null) result.columnNames.addAll(columnNames);
|
|
if (targetDomain != null) result.targetDomain = targetDomain;
|
|
if (columnTranslationMaps != null) result.columnTranslationMaps.addEntries(columnTranslationMaps);
|
|
if (columnFormats != null) result.columnFormats.addEntries(columnFormats);
|
|
if (targetTimeZone != null) result.targetTimeZone = targetTimeZone;
|
|
if (dateFormat != null) result.dateFormat = dateFormat;
|
|
if (numberFormat != null) result.numberFormat = numberFormat;
|
|
if (timeFormat != null) result.timeFormat = timeFormat;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowExtractDataFromDBRequest._();
|
|
|
|
factory StartWorkflowExtractDataFromDBRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowExtractDataFromDBRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowExtractDataFromDBRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'UserId', protoName: 'UserId')
|
|
..aOS(2, _omitFieldNames ? '' : 'ProjectId', protoName: 'ProjectId')
|
|
..pc<$1.BlockFilter>(3, _omitFieldNames ? '' : 'BlockFilters', $pb.PbFieldType.PM, protoName: 'BlockFilters', subBuilder: $1.BlockFilter.create)
|
|
..aOS(4, _omitFieldNames ? '' : 'TargetType', protoName: 'TargetType')
|
|
..pPS(5, _omitFieldNames ? '' : 'Fields', protoName: 'Fields')
|
|
..aOS(6, _omitFieldNames ? '' : 'ListSeparator', protoName: 'ListSeparator')
|
|
..aOS(7, _omitFieldNames ? '' : 'DecimalSeparator', protoName: 'DecimalSeparator')
|
|
..pPS(8, _omitFieldNames ? '' : 'ColumnNames', protoName: 'ColumnNames')
|
|
..aOS(9, _omitFieldNames ? '' : 'TargetDomain', protoName: 'TargetDomain')
|
|
..m<$core.String, $1.TranslationMap>(10, _omitFieldNames ? '' : 'ColumnTranslationMaps', protoName: 'ColumnTranslationMaps', entryClassName: 'StartWorkflowExtractDataFromDBRequest.ColumnTranslationMapsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: $1.TranslationMap.create, valueDefaultOrMaker: $1.TranslationMap.getDefault, packageName: const $pb.PackageName('api'))
|
|
..m<$core.int, $1.ExtractColumnFormat>(11, _omitFieldNames ? '' : 'ColumnFormats', protoName: 'ColumnFormats', entryClassName: 'StartWorkflowExtractDataFromDBRequest.ColumnFormatsEntry', keyFieldType: $pb.PbFieldType.O3, valueFieldType: $pb.PbFieldType.OM, valueCreator: $1.ExtractColumnFormat.create, valueDefaultOrMaker: $1.ExtractColumnFormat.getDefault, packageName: const $pb.PackageName('api'))
|
|
..aOS(12, _omitFieldNames ? '' : 'TargetTimeZone', protoName: 'TargetTimeZone')
|
|
..aOS(13, _omitFieldNames ? '' : 'DateFormat', protoName: 'DateFormat')
|
|
..aOS(14, _omitFieldNames ? '' : 'NumberFormat', protoName: 'NumberFormat')
|
|
..e<$1.TimeFormat>(15, _omitFieldNames ? '' : 'TimeFormat', $pb.PbFieldType.OE, protoName: 'TimeFormat', defaultOrMaker: $1.TimeFormat.H12, valueOf: $1.TimeFormat.valueOf, enumValues: $1.TimeFormat.values)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowExtractDataFromDBRequest clone() => StartWorkflowExtractDataFromDBRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowExtractDataFromDBRequest copyWith(void Function(StartWorkflowExtractDataFromDBRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowExtractDataFromDBRequest)) as StartWorkflowExtractDataFromDBRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowExtractDataFromDBRequest create() => StartWorkflowExtractDataFromDBRequest._();
|
|
@$core.override
|
|
StartWorkflowExtractDataFromDBRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowExtractDataFromDBRequest> createRepeated() => $pb.PbList<StartWorkflowExtractDataFromDBRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowExtractDataFromDBRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowExtractDataFromDBRequest>(create);
|
|
static StartWorkflowExtractDataFromDBRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get userId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set userId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasUserId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearUserId() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get projectId => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set projectId($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasProjectId() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearProjectId() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$pb.PbList<$1.BlockFilter> get blockFilters => $_getList(2);
|
|
|
|
@$pb.TagNumber(4)
|
|
$core.String get targetType => $_getSZ(3);
|
|
@$pb.TagNumber(4)
|
|
set targetType($core.String value) => $_setString(3, value);
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasTargetType() => $_has(3);
|
|
@$pb.TagNumber(4)
|
|
void clearTargetType() => $_clearField(4);
|
|
|
|
@$pb.TagNumber(5)
|
|
$pb.PbList<$core.String> get fields => $_getList(4);
|
|
|
|
@$pb.TagNumber(6)
|
|
$core.String get listSeparator => $_getSZ(5);
|
|
@$pb.TagNumber(6)
|
|
set listSeparator($core.String value) => $_setString(5, value);
|
|
@$pb.TagNumber(6)
|
|
$core.bool hasListSeparator() => $_has(5);
|
|
@$pb.TagNumber(6)
|
|
void clearListSeparator() => $_clearField(6);
|
|
|
|
@$pb.TagNumber(7)
|
|
$core.String get decimalSeparator => $_getSZ(6);
|
|
@$pb.TagNumber(7)
|
|
set decimalSeparator($core.String value) => $_setString(6, value);
|
|
@$pb.TagNumber(7)
|
|
$core.bool hasDecimalSeparator() => $_has(6);
|
|
@$pb.TagNumber(7)
|
|
void clearDecimalSeparator() => $_clearField(7);
|
|
|
|
@$pb.TagNumber(8)
|
|
$pb.PbList<$core.String> get columnNames => $_getList(7);
|
|
|
|
@$pb.TagNumber(9)
|
|
$core.String get targetDomain => $_getSZ(8);
|
|
@$pb.TagNumber(9)
|
|
set targetDomain($core.String value) => $_setString(8, value);
|
|
@$pb.TagNumber(9)
|
|
$core.bool hasTargetDomain() => $_has(8);
|
|
@$pb.TagNumber(9)
|
|
void clearTargetDomain() => $_clearField(9);
|
|
|
|
@$pb.TagNumber(10)
|
|
$pb.PbMap<$core.String, $1.TranslationMap> get columnTranslationMaps => $_getMap(9);
|
|
|
|
@$pb.TagNumber(11)
|
|
$pb.PbMap<$core.int, $1.ExtractColumnFormat> get columnFormats => $_getMap(10);
|
|
|
|
@$pb.TagNumber(12)
|
|
$core.String get targetTimeZone => $_getSZ(11);
|
|
@$pb.TagNumber(12)
|
|
set targetTimeZone($core.String value) => $_setString(11, value);
|
|
@$pb.TagNumber(12)
|
|
$core.bool hasTargetTimeZone() => $_has(11);
|
|
@$pb.TagNumber(12)
|
|
void clearTargetTimeZone() => $_clearField(12);
|
|
|
|
@$pb.TagNumber(13)
|
|
$core.String get dateFormat => $_getSZ(12);
|
|
@$pb.TagNumber(13)
|
|
set dateFormat($core.String value) => $_setString(12, value);
|
|
@$pb.TagNumber(13)
|
|
$core.bool hasDateFormat() => $_has(12);
|
|
@$pb.TagNumber(13)
|
|
void clearDateFormat() => $_clearField(13);
|
|
|
|
@$pb.TagNumber(14)
|
|
$core.String get numberFormat => $_getSZ(13);
|
|
@$pb.TagNumber(14)
|
|
set numberFormat($core.String value) => $_setString(13, value);
|
|
@$pb.TagNumber(14)
|
|
$core.bool hasNumberFormat() => $_has(13);
|
|
@$pb.TagNumber(14)
|
|
void clearNumberFormat() => $_clearField(14);
|
|
|
|
@$pb.TagNumber(15)
|
|
$1.TimeFormat get timeFormat => $_getN(14);
|
|
@$pb.TagNumber(15)
|
|
set timeFormat($1.TimeFormat value) => $_setField(15, value);
|
|
@$pb.TagNumber(15)
|
|
$core.bool hasTimeFormat() => $_has(14);
|
|
@$pb.TagNumber(15)
|
|
void clearTimeFormat() => $_clearField(15);
|
|
}
|
|
|
|
class StartWorkflowExtractDataFromDBResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowExtractDataFromDBResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowExtractDataFromDBResult._();
|
|
|
|
factory StartWorkflowExtractDataFromDBResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowExtractDataFromDBResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowExtractDataFromDBResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowExtractDataFromDBResult clone() => StartWorkflowExtractDataFromDBResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowExtractDataFromDBResult copyWith(void Function(StartWorkflowExtractDataFromDBResult) updates) => super.copyWith((message) => updates(message as StartWorkflowExtractDataFromDBResult)) as StartWorkflowExtractDataFromDBResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowExtractDataFromDBResult create() => StartWorkflowExtractDataFromDBResult._();
|
|
@$core.override
|
|
StartWorkflowExtractDataFromDBResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowExtractDataFromDBResult> createRepeated() => $pb.PbList<StartWorkflowExtractDataFromDBResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowExtractDataFromDBResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowExtractDataFromDBResult>(create);
|
|
static StartWorkflowExtractDataFromDBResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowExtractKPIRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowExtractKPIRequest({
|
|
$core.String? projectId,
|
|
$core.String? userId,
|
|
$3.CHQueryType? queryType,
|
|
$core.String? queryBlock,
|
|
$core.Iterable<$3.EntityBlockFilter>? entityBlockFilters,
|
|
$3.CHFilter? filter,
|
|
$core.Iterable<$3.CHDimension>? dimensions,
|
|
$core.Iterable<$3.CHMetric>? metrics,
|
|
$core.String? targetTimeZone,
|
|
$core.String? kpiGroupName,
|
|
$core.String? targetDomain,
|
|
$core.String? targetType,
|
|
$core.Iterable<$core.String>? fields,
|
|
$core.String? listSeparator,
|
|
$core.String? decimalSeparator,
|
|
$core.Iterable<$core.String>? columnNames,
|
|
$core.Iterable<$core.MapEntry<$core.String, $1.TranslationMap>>? columnTranslationMaps,
|
|
$core.Iterable<$core.int>? fieldIdxLVDetailedQuantity,
|
|
$core.Iterable<$core.MapEntry<$core.int, $1.ExtractColumnFormat>>? columnFormats,
|
|
$core.String? dateFormat,
|
|
$core.String? numberFormat,
|
|
$1.TimeFormat? timeFormat,
|
|
}) {
|
|
final result = create();
|
|
if (projectId != null) result.projectId = projectId;
|
|
if (userId != null) result.userId = userId;
|
|
if (queryType != null) result.queryType = queryType;
|
|
if (queryBlock != null) result.queryBlock = queryBlock;
|
|
if (entityBlockFilters != null) result.entityBlockFilters.addAll(entityBlockFilters);
|
|
if (filter != null) result.filter = filter;
|
|
if (dimensions != null) result.dimensions.addAll(dimensions);
|
|
if (metrics != null) result.metrics.addAll(metrics);
|
|
if (targetTimeZone != null) result.targetTimeZone = targetTimeZone;
|
|
if (kpiGroupName != null) result.kpiGroupName = kpiGroupName;
|
|
if (targetDomain != null) result.targetDomain = targetDomain;
|
|
if (targetType != null) result.targetType = targetType;
|
|
if (fields != null) result.fields.addAll(fields);
|
|
if (listSeparator != null) result.listSeparator = listSeparator;
|
|
if (decimalSeparator != null) result.decimalSeparator = decimalSeparator;
|
|
if (columnNames != null) result.columnNames.addAll(columnNames);
|
|
if (columnTranslationMaps != null) result.columnTranslationMaps.addEntries(columnTranslationMaps);
|
|
if (fieldIdxLVDetailedQuantity != null) result.fieldIdxLVDetailedQuantity.addAll(fieldIdxLVDetailedQuantity);
|
|
if (columnFormats != null) result.columnFormats.addEntries(columnFormats);
|
|
if (dateFormat != null) result.dateFormat = dateFormat;
|
|
if (numberFormat != null) result.numberFormat = numberFormat;
|
|
if (timeFormat != null) result.timeFormat = timeFormat;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowExtractKPIRequest._();
|
|
|
|
factory StartWorkflowExtractKPIRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowExtractKPIRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowExtractKPIRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'ProjectId', protoName: 'ProjectId')
|
|
..aOS(2, _omitFieldNames ? '' : 'UserId', protoName: 'UserId')
|
|
..e<$3.CHQueryType>(3, _omitFieldNames ? '' : 'QueryType', $pb.PbFieldType.OE, protoName: 'QueryType', defaultOrMaker: $3.CHQueryType.CH_QUERY_TYPE_UNKNOWN, valueOf: $3.CHQueryType.valueOf, enumValues: $3.CHQueryType.values)
|
|
..aOS(4, _omitFieldNames ? '' : 'QueryBlock', protoName: 'QueryBlock')
|
|
..pc<$3.EntityBlockFilter>(5, _omitFieldNames ? '' : 'EntityBlockFilters', $pb.PbFieldType.PM, protoName: 'EntityBlockFilters', subBuilder: $3.EntityBlockFilter.create)
|
|
..aOM<$3.CHFilter>(6, _omitFieldNames ? '' : 'Filter', protoName: 'Filter', subBuilder: $3.CHFilter.create)
|
|
..pc<$3.CHDimension>(7, _omitFieldNames ? '' : 'Dimensions', $pb.PbFieldType.PM, protoName: 'Dimensions', subBuilder: $3.CHDimension.create)
|
|
..pc<$3.CHMetric>(8, _omitFieldNames ? '' : 'Metrics', $pb.PbFieldType.PM, protoName: 'Metrics', subBuilder: $3.CHMetric.create)
|
|
..aOS(9, _omitFieldNames ? '' : 'TargetTimeZone', protoName: 'TargetTimeZone')
|
|
..aOS(10, _omitFieldNames ? '' : 'KpiGroupName', protoName: 'KpiGroupName')
|
|
..aOS(11, _omitFieldNames ? '' : 'TargetDomain', protoName: 'TargetDomain')
|
|
..aOS(12, _omitFieldNames ? '' : 'TargetType', protoName: 'TargetType')
|
|
..pPS(13, _omitFieldNames ? '' : 'Fields', protoName: 'Fields')
|
|
..aOS(14, _omitFieldNames ? '' : 'ListSeparator', protoName: 'ListSeparator')
|
|
..aOS(15, _omitFieldNames ? '' : 'DecimalSeparator', protoName: 'DecimalSeparator')
|
|
..pPS(16, _omitFieldNames ? '' : 'ColumnNames', protoName: 'ColumnNames')
|
|
..m<$core.String, $1.TranslationMap>(17, _omitFieldNames ? '' : 'ColumnTranslationMaps', protoName: 'ColumnTranslationMaps', entryClassName: 'StartWorkflowExtractKPIRequest.ColumnTranslationMapsEntry', keyFieldType: $pb.PbFieldType.OS, valueFieldType: $pb.PbFieldType.OM, valueCreator: $1.TranslationMap.create, valueDefaultOrMaker: $1.TranslationMap.getDefault, packageName: const $pb.PackageName('api'))
|
|
..p<$core.int>(18, _omitFieldNames ? '' : 'FieldIdxLVDetailedQuantity', $pb.PbFieldType.K3, protoName: 'FieldIdxLVDetailedQuantity')
|
|
..m<$core.int, $1.ExtractColumnFormat>(19, _omitFieldNames ? '' : 'ColumnFormats', protoName: 'ColumnFormats', entryClassName: 'StartWorkflowExtractKPIRequest.ColumnFormatsEntry', keyFieldType: $pb.PbFieldType.O3, valueFieldType: $pb.PbFieldType.OM, valueCreator: $1.ExtractColumnFormat.create, valueDefaultOrMaker: $1.ExtractColumnFormat.getDefault, packageName: const $pb.PackageName('api'))
|
|
..aOS(20, _omitFieldNames ? '' : 'DateFormat', protoName: 'DateFormat')
|
|
..aOS(21, _omitFieldNames ? '' : 'NumberFormat', protoName: 'NumberFormat')
|
|
..e<$1.TimeFormat>(22, _omitFieldNames ? '' : 'TimeFormat', $pb.PbFieldType.OE, protoName: 'TimeFormat', defaultOrMaker: $1.TimeFormat.H12, valueOf: $1.TimeFormat.valueOf, enumValues: $1.TimeFormat.values)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowExtractKPIRequest clone() => StartWorkflowExtractKPIRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowExtractKPIRequest copyWith(void Function(StartWorkflowExtractKPIRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowExtractKPIRequest)) as StartWorkflowExtractKPIRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowExtractKPIRequest create() => StartWorkflowExtractKPIRequest._();
|
|
@$core.override
|
|
StartWorkflowExtractKPIRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowExtractKPIRequest> createRepeated() => $pb.PbList<StartWorkflowExtractKPIRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowExtractKPIRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowExtractKPIRequest>(create);
|
|
static StartWorkflowExtractKPIRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get projectId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set projectId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasProjectId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearProjectId() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get userId => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set userId($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasUserId() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearUserId() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$3.CHQueryType get queryType => $_getN(2);
|
|
@$pb.TagNumber(3)
|
|
set queryType($3.CHQueryType value) => $_setField(3, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasQueryType() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearQueryType() => $_clearField(3);
|
|
|
|
@$pb.TagNumber(4)
|
|
$core.String get queryBlock => $_getSZ(3);
|
|
@$pb.TagNumber(4)
|
|
set queryBlock($core.String value) => $_setString(3, value);
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasQueryBlock() => $_has(3);
|
|
@$pb.TagNumber(4)
|
|
void clearQueryBlock() => $_clearField(4);
|
|
|
|
@$pb.TagNumber(5)
|
|
$pb.PbList<$3.EntityBlockFilter> get entityBlockFilters => $_getList(4);
|
|
|
|
@$pb.TagNumber(6)
|
|
$3.CHFilter get filter => $_getN(5);
|
|
@$pb.TagNumber(6)
|
|
set filter($3.CHFilter value) => $_setField(6, value);
|
|
@$pb.TagNumber(6)
|
|
$core.bool hasFilter() => $_has(5);
|
|
@$pb.TagNumber(6)
|
|
void clearFilter() => $_clearField(6);
|
|
@$pb.TagNumber(6)
|
|
$3.CHFilter ensureFilter() => $_ensure(5);
|
|
|
|
@$pb.TagNumber(7)
|
|
$pb.PbList<$3.CHDimension> get dimensions => $_getList(6);
|
|
|
|
@$pb.TagNumber(8)
|
|
$pb.PbList<$3.CHMetric> get metrics => $_getList(7);
|
|
|
|
@$pb.TagNumber(9)
|
|
$core.String get targetTimeZone => $_getSZ(8);
|
|
@$pb.TagNumber(9)
|
|
set targetTimeZone($core.String value) => $_setString(8, value);
|
|
@$pb.TagNumber(9)
|
|
$core.bool hasTargetTimeZone() => $_has(8);
|
|
@$pb.TagNumber(9)
|
|
void clearTargetTimeZone() => $_clearField(9);
|
|
|
|
@$pb.TagNumber(10)
|
|
$core.String get kpiGroupName => $_getSZ(9);
|
|
@$pb.TagNumber(10)
|
|
set kpiGroupName($core.String value) => $_setString(9, value);
|
|
@$pb.TagNumber(10)
|
|
$core.bool hasKpiGroupName() => $_has(9);
|
|
@$pb.TagNumber(10)
|
|
void clearKpiGroupName() => $_clearField(10);
|
|
|
|
@$pb.TagNumber(11)
|
|
$core.String get targetDomain => $_getSZ(10);
|
|
@$pb.TagNumber(11)
|
|
set targetDomain($core.String value) => $_setString(10, value);
|
|
@$pb.TagNumber(11)
|
|
$core.bool hasTargetDomain() => $_has(10);
|
|
@$pb.TagNumber(11)
|
|
void clearTargetDomain() => $_clearField(11);
|
|
|
|
@$pb.TagNumber(12)
|
|
$core.String get targetType => $_getSZ(11);
|
|
@$pb.TagNumber(12)
|
|
set targetType($core.String value) => $_setString(11, value);
|
|
@$pb.TagNumber(12)
|
|
$core.bool hasTargetType() => $_has(11);
|
|
@$pb.TagNumber(12)
|
|
void clearTargetType() => $_clearField(12);
|
|
|
|
@$pb.TagNumber(13)
|
|
$pb.PbList<$core.String> get fields => $_getList(12);
|
|
|
|
@$pb.TagNumber(14)
|
|
$core.String get listSeparator => $_getSZ(13);
|
|
@$pb.TagNumber(14)
|
|
set listSeparator($core.String value) => $_setString(13, value);
|
|
@$pb.TagNumber(14)
|
|
$core.bool hasListSeparator() => $_has(13);
|
|
@$pb.TagNumber(14)
|
|
void clearListSeparator() => $_clearField(14);
|
|
|
|
@$pb.TagNumber(15)
|
|
$core.String get decimalSeparator => $_getSZ(14);
|
|
@$pb.TagNumber(15)
|
|
set decimalSeparator($core.String value) => $_setString(14, value);
|
|
@$pb.TagNumber(15)
|
|
$core.bool hasDecimalSeparator() => $_has(14);
|
|
@$pb.TagNumber(15)
|
|
void clearDecimalSeparator() => $_clearField(15);
|
|
|
|
@$pb.TagNumber(16)
|
|
$pb.PbList<$core.String> get columnNames => $_getList(15);
|
|
|
|
@$pb.TagNumber(17)
|
|
$pb.PbMap<$core.String, $1.TranslationMap> get columnTranslationMaps => $_getMap(16);
|
|
|
|
@$pb.TagNumber(18)
|
|
$pb.PbList<$core.int> get fieldIdxLVDetailedQuantity => $_getList(17);
|
|
|
|
@$pb.TagNumber(19)
|
|
$pb.PbMap<$core.int, $1.ExtractColumnFormat> get columnFormats => $_getMap(18);
|
|
|
|
@$pb.TagNumber(20)
|
|
$core.String get dateFormat => $_getSZ(19);
|
|
@$pb.TagNumber(20)
|
|
set dateFormat($core.String value) => $_setString(19, value);
|
|
@$pb.TagNumber(20)
|
|
$core.bool hasDateFormat() => $_has(19);
|
|
@$pb.TagNumber(20)
|
|
void clearDateFormat() => $_clearField(20);
|
|
|
|
@$pb.TagNumber(21)
|
|
$core.String get numberFormat => $_getSZ(20);
|
|
@$pb.TagNumber(21)
|
|
set numberFormat($core.String value) => $_setString(20, value);
|
|
@$pb.TagNumber(21)
|
|
$core.bool hasNumberFormat() => $_has(20);
|
|
@$pb.TagNumber(21)
|
|
void clearNumberFormat() => $_clearField(21);
|
|
|
|
@$pb.TagNumber(22)
|
|
$1.TimeFormat get timeFormat => $_getN(21);
|
|
@$pb.TagNumber(22)
|
|
set timeFormat($1.TimeFormat value) => $_setField(22, value);
|
|
@$pb.TagNumber(22)
|
|
$core.bool hasTimeFormat() => $_has(21);
|
|
@$pb.TagNumber(22)
|
|
void clearTimeFormat() => $_clearField(22);
|
|
}
|
|
|
|
class StartWorkflowExtractKPIResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowExtractKPIResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowExtractKPIResult._();
|
|
|
|
factory StartWorkflowExtractKPIResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowExtractKPIResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowExtractKPIResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowExtractKPIResult clone() => StartWorkflowExtractKPIResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowExtractKPIResult copyWith(void Function(StartWorkflowExtractKPIResult) updates) => super.copyWith((message) => updates(message as StartWorkflowExtractKPIResult)) as StartWorkflowExtractKPIResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowExtractKPIResult create() => StartWorkflowExtractKPIResult._();
|
|
@$core.override
|
|
StartWorkflowExtractKPIResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowExtractKPIResult> createRepeated() => $pb.PbList<StartWorkflowExtractKPIResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowExtractKPIResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowExtractKPIResult>(create);
|
|
static StartWorkflowExtractKPIResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class RegisterModuleWorkflowsRequest extends $pb.GeneratedMessage {
|
|
factory RegisterModuleWorkflowsRequest({
|
|
$core.Iterable<$1.ModuleRegistration>? moduleRegistrations,
|
|
$core.String? tasklist,
|
|
}) {
|
|
final result = create();
|
|
if (moduleRegistrations != null) result.moduleRegistrations.addAll(moduleRegistrations);
|
|
if (tasklist != null) result.tasklist = tasklist;
|
|
return result;
|
|
}
|
|
|
|
RegisterModuleWorkflowsRequest._();
|
|
|
|
factory RegisterModuleWorkflowsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory RegisterModuleWorkflowsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RegisterModuleWorkflowsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..pc<$1.ModuleRegistration>(1, _omitFieldNames ? '' : 'ModuleRegistrations', $pb.PbFieldType.PM, protoName: 'ModuleRegistrations', subBuilder: $1.ModuleRegistration.create)
|
|
..aOS(2, _omitFieldNames ? '' : 'Tasklist', protoName: 'Tasklist')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
RegisterModuleWorkflowsRequest clone() => RegisterModuleWorkflowsRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
RegisterModuleWorkflowsRequest copyWith(void Function(RegisterModuleWorkflowsRequest) updates) => super.copyWith((message) => updates(message as RegisterModuleWorkflowsRequest)) as RegisterModuleWorkflowsRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static RegisterModuleWorkflowsRequest create() => RegisterModuleWorkflowsRequest._();
|
|
@$core.override
|
|
RegisterModuleWorkflowsRequest createEmptyInstance() => create();
|
|
static $pb.PbList<RegisterModuleWorkflowsRequest> createRepeated() => $pb.PbList<RegisterModuleWorkflowsRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static RegisterModuleWorkflowsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RegisterModuleWorkflowsRequest>(create);
|
|
static RegisterModuleWorkflowsRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$pb.PbList<$1.ModuleRegistration> get moduleRegistrations => $_getList(0);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get tasklist => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set tasklist($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasTasklist() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearTasklist() => $_clearField(2);
|
|
}
|
|
|
|
class RegisterModuleWorkflowsResult extends $pb.GeneratedMessage {
|
|
factory RegisterModuleWorkflowsResult() => create();
|
|
|
|
RegisterModuleWorkflowsResult._();
|
|
|
|
factory RegisterModuleWorkflowsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory RegisterModuleWorkflowsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'RegisterModuleWorkflowsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
RegisterModuleWorkflowsResult clone() => RegisterModuleWorkflowsResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
RegisterModuleWorkflowsResult copyWith(void Function(RegisterModuleWorkflowsResult) updates) => super.copyWith((message) => updates(message as RegisterModuleWorkflowsResult)) as RegisterModuleWorkflowsResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static RegisterModuleWorkflowsResult create() => RegisterModuleWorkflowsResult._();
|
|
@$core.override
|
|
RegisterModuleWorkflowsResult createEmptyInstance() => create();
|
|
static $pb.PbList<RegisterModuleWorkflowsResult> createRepeated() => $pb.PbList<RegisterModuleWorkflowsResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static RegisterModuleWorkflowsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<RegisterModuleWorkflowsResult>(create);
|
|
static RegisterModuleWorkflowsResult? _defaultInstance;
|
|
}
|
|
|
|
class DeregisterModuleWorkflowsRequest extends $pb.GeneratedMessage {
|
|
factory DeregisterModuleWorkflowsRequest({
|
|
$core.Iterable<$1.ModuleDeregistration>? moduleDeregistrations,
|
|
$core.String? tasklist,
|
|
}) {
|
|
final result = create();
|
|
if (moduleDeregistrations != null) result.moduleDeregistrations.addAll(moduleDeregistrations);
|
|
if (tasklist != null) result.tasklist = tasklist;
|
|
return result;
|
|
}
|
|
|
|
DeregisterModuleWorkflowsRequest._();
|
|
|
|
factory DeregisterModuleWorkflowsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory DeregisterModuleWorkflowsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeregisterModuleWorkflowsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..pc<$1.ModuleDeregistration>(1, _omitFieldNames ? '' : 'ModuleDeregistrations', $pb.PbFieldType.PM, protoName: 'ModuleDeregistrations', subBuilder: $1.ModuleDeregistration.create)
|
|
..aOS(2, _omitFieldNames ? '' : 'Tasklist', protoName: 'Tasklist')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
DeregisterModuleWorkflowsRequest clone() => DeregisterModuleWorkflowsRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
DeregisterModuleWorkflowsRequest copyWith(void Function(DeregisterModuleWorkflowsRequest) updates) => super.copyWith((message) => updates(message as DeregisterModuleWorkflowsRequest)) as DeregisterModuleWorkflowsRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static DeregisterModuleWorkflowsRequest create() => DeregisterModuleWorkflowsRequest._();
|
|
@$core.override
|
|
DeregisterModuleWorkflowsRequest createEmptyInstance() => create();
|
|
static $pb.PbList<DeregisterModuleWorkflowsRequest> createRepeated() => $pb.PbList<DeregisterModuleWorkflowsRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static DeregisterModuleWorkflowsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeregisterModuleWorkflowsRequest>(create);
|
|
static DeregisterModuleWorkflowsRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$pb.PbList<$1.ModuleDeregistration> get moduleDeregistrations => $_getList(0);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get tasklist => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set tasklist($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasTasklist() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearTasklist() => $_clearField(2);
|
|
}
|
|
|
|
class DeregisterModuleWorkflowsResult extends $pb.GeneratedMessage {
|
|
factory DeregisterModuleWorkflowsResult() => create();
|
|
|
|
DeregisterModuleWorkflowsResult._();
|
|
|
|
factory DeregisterModuleWorkflowsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory DeregisterModuleWorkflowsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeregisterModuleWorkflowsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
DeregisterModuleWorkflowsResult clone() => DeregisterModuleWorkflowsResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
DeregisterModuleWorkflowsResult copyWith(void Function(DeregisterModuleWorkflowsResult) updates) => super.copyWith((message) => updates(message as DeregisterModuleWorkflowsResult)) as DeregisterModuleWorkflowsResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static DeregisterModuleWorkflowsResult create() => DeregisterModuleWorkflowsResult._();
|
|
@$core.override
|
|
DeregisterModuleWorkflowsResult createEmptyInstance() => create();
|
|
static $pb.PbList<DeregisterModuleWorkflowsResult> createRepeated() => $pb.PbList<DeregisterModuleWorkflowsResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static DeregisterModuleWorkflowsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeregisterModuleWorkflowsResult>(create);
|
|
static DeregisterModuleWorkflowsResult? _defaultInstance;
|
|
}
|
|
|
|
class ModuleWorkflow extends $pb.GeneratedMessage {
|
|
factory ModuleWorkflow({
|
|
$1.WorkflowTypeEnum? workflowTarget,
|
|
$core.String? workflowPath,
|
|
$1.ModuleWorkflowTypeEnum? type,
|
|
$core.int? timeout,
|
|
$core.String? tasklist,
|
|
}) {
|
|
final result = create();
|
|
if (workflowTarget != null) result.workflowTarget = workflowTarget;
|
|
if (workflowPath != null) result.workflowPath = workflowPath;
|
|
if (type != null) result.type = type;
|
|
if (timeout != null) result.timeout = timeout;
|
|
if (tasklist != null) result.tasklist = tasklist;
|
|
return result;
|
|
}
|
|
|
|
ModuleWorkflow._();
|
|
|
|
factory ModuleWorkflow.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory ModuleWorkflow.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'ModuleWorkflow', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..e<$1.WorkflowTypeEnum>(1, _omitFieldNames ? '' : 'WorkflowTarget', $pb.PbFieldType.OE, protoName: 'WorkflowTarget', defaultOrMaker: $1.WorkflowTypeEnum.CREATE_PROJECT, valueOf: $1.WorkflowTypeEnum.valueOf, enumValues: $1.WorkflowTypeEnum.values)
|
|
..aOS(2, _omitFieldNames ? '' : 'WorkflowPath', protoName: 'WorkflowPath')
|
|
..e<$1.ModuleWorkflowTypeEnum>(3, _omitFieldNames ? '' : 'Type', $pb.PbFieldType.OE, protoName: 'Type', defaultOrMaker: $1.ModuleWorkflowTypeEnum.PRE_WORKFLOW, valueOf: $1.ModuleWorkflowTypeEnum.valueOf, enumValues: $1.ModuleWorkflowTypeEnum.values)
|
|
..a<$core.int>(4, _omitFieldNames ? '' : 'Timeout', $pb.PbFieldType.O3, protoName: 'Timeout')
|
|
..aOS(5, _omitFieldNames ? '' : 'Tasklist', protoName: 'Tasklist')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
ModuleWorkflow clone() => ModuleWorkflow()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
ModuleWorkflow copyWith(void Function(ModuleWorkflow) updates) => super.copyWith((message) => updates(message as ModuleWorkflow)) as ModuleWorkflow;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static ModuleWorkflow create() => ModuleWorkflow._();
|
|
@$core.override
|
|
ModuleWorkflow createEmptyInstance() => create();
|
|
static $pb.PbList<ModuleWorkflow> createRepeated() => $pb.PbList<ModuleWorkflow>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static ModuleWorkflow getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<ModuleWorkflow>(create);
|
|
static ModuleWorkflow? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowTypeEnum get workflowTarget => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowTarget($1.WorkflowTypeEnum value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowTarget() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowTarget() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get workflowPath => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set workflowPath($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasWorkflowPath() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearWorkflowPath() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$1.ModuleWorkflowTypeEnum get type => $_getN(2);
|
|
@$pb.TagNumber(3)
|
|
set type($1.ModuleWorkflowTypeEnum value) => $_setField(3, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasType() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearType() => $_clearField(3);
|
|
|
|
@$pb.TagNumber(4)
|
|
$core.int get timeout => $_getIZ(3);
|
|
@$pb.TagNumber(4)
|
|
set timeout($core.int value) => $_setSignedInt32(3, value);
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasTimeout() => $_has(3);
|
|
@$pb.TagNumber(4)
|
|
void clearTimeout() => $_clearField(4);
|
|
|
|
@$pb.TagNumber(5)
|
|
$core.String get tasklist => $_getSZ(4);
|
|
@$pb.TagNumber(5)
|
|
set tasklist($core.String value) => $_setString(4, value);
|
|
@$pb.TagNumber(5)
|
|
$core.bool hasTasklist() => $_has(4);
|
|
@$pb.TagNumber(5)
|
|
void clearTasklist() => $_clearField(5);
|
|
}
|
|
|
|
class GetModuleWorkflowsRequest extends $pb.GeneratedMessage {
|
|
factory GetModuleWorkflowsRequest({
|
|
$1.WorkflowTypeEnum? workflowTarget,
|
|
}) {
|
|
final result = create();
|
|
if (workflowTarget != null) result.workflowTarget = workflowTarget;
|
|
return result;
|
|
}
|
|
|
|
GetModuleWorkflowsRequest._();
|
|
|
|
factory GetModuleWorkflowsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory GetModuleWorkflowsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetModuleWorkflowsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..e<$1.WorkflowTypeEnum>(1, _omitFieldNames ? '' : 'WorkflowTarget', $pb.PbFieldType.OE, protoName: 'WorkflowTarget', defaultOrMaker: $1.WorkflowTypeEnum.CREATE_PROJECT, valueOf: $1.WorkflowTypeEnum.valueOf, enumValues: $1.WorkflowTypeEnum.values)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetModuleWorkflowsRequest clone() => GetModuleWorkflowsRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetModuleWorkflowsRequest copyWith(void Function(GetModuleWorkflowsRequest) updates) => super.copyWith((message) => updates(message as GetModuleWorkflowsRequest)) as GetModuleWorkflowsRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetModuleWorkflowsRequest create() => GetModuleWorkflowsRequest._();
|
|
@$core.override
|
|
GetModuleWorkflowsRequest createEmptyInstance() => create();
|
|
static $pb.PbList<GetModuleWorkflowsRequest> createRepeated() => $pb.PbList<GetModuleWorkflowsRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetModuleWorkflowsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetModuleWorkflowsRequest>(create);
|
|
static GetModuleWorkflowsRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowTypeEnum get workflowTarget => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowTarget($1.WorkflowTypeEnum value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowTarget() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowTarget() => $_clearField(1);
|
|
}
|
|
|
|
class GetModuleWorkflowsResult extends $pb.GeneratedMessage {
|
|
factory GetModuleWorkflowsResult({
|
|
$core.Iterable<ModuleWorkflow>? moduleWorkflows,
|
|
}) {
|
|
final result = create();
|
|
if (moduleWorkflows != null) result.moduleWorkflows.addAll(moduleWorkflows);
|
|
return result;
|
|
}
|
|
|
|
GetModuleWorkflowsResult._();
|
|
|
|
factory GetModuleWorkflowsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory GetModuleWorkflowsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetModuleWorkflowsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..pc<ModuleWorkflow>(1, _omitFieldNames ? '' : 'ModuleWorkflows', $pb.PbFieldType.PM, protoName: 'ModuleWorkflows', subBuilder: ModuleWorkflow.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetModuleWorkflowsResult clone() => GetModuleWorkflowsResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetModuleWorkflowsResult copyWith(void Function(GetModuleWorkflowsResult) updates) => super.copyWith((message) => updates(message as GetModuleWorkflowsResult)) as GetModuleWorkflowsResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetModuleWorkflowsResult create() => GetModuleWorkflowsResult._();
|
|
@$core.override
|
|
GetModuleWorkflowsResult createEmptyInstance() => create();
|
|
static $pb.PbList<GetModuleWorkflowsResult> createRepeated() => $pb.PbList<GetModuleWorkflowsResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetModuleWorkflowsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetModuleWorkflowsResult>(create);
|
|
static GetModuleWorkflowsResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$pb.PbList<ModuleWorkflow> get moduleWorkflows => $_getList(0);
|
|
}
|
|
|
|
class StopWorkflowRequest extends $pb.GeneratedMessage {
|
|
factory StopWorkflowRequest({
|
|
$core.String? workflowId,
|
|
$core.String? runId,
|
|
$core.String? domain,
|
|
}) {
|
|
final result = create();
|
|
if (workflowId != null) result.workflowId = workflowId;
|
|
if (runId != null) result.runId = runId;
|
|
if (domain != null) result.domain = domain;
|
|
return result;
|
|
}
|
|
|
|
StopWorkflowRequest._();
|
|
|
|
factory StopWorkflowRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StopWorkflowRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StopWorkflowRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'WorkflowId', protoName: 'WorkflowId')
|
|
..aOS(2, _omitFieldNames ? '' : 'RunId', protoName: 'RunId')
|
|
..aOS(3, _omitFieldNames ? '' : 'Domain', protoName: 'Domain')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StopWorkflowRequest clone() => StopWorkflowRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StopWorkflowRequest copyWith(void Function(StopWorkflowRequest) updates) => super.copyWith((message) => updates(message as StopWorkflowRequest)) as StopWorkflowRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StopWorkflowRequest create() => StopWorkflowRequest._();
|
|
@$core.override
|
|
StopWorkflowRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StopWorkflowRequest> createRepeated() => $pb.PbList<StopWorkflowRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StopWorkflowRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StopWorkflowRequest>(create);
|
|
static StopWorkflowRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get workflowId => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowId($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowId() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowId() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get runId => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set runId($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasRunId() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearRunId() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$core.String get domain => $_getSZ(2);
|
|
@$pb.TagNumber(3)
|
|
set domain($core.String value) => $_setString(2, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasDomain() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearDomain() => $_clearField(3);
|
|
}
|
|
|
|
class StopWorkflowResult extends $pb.GeneratedMessage {
|
|
factory StopWorkflowResult() => create();
|
|
|
|
StopWorkflowResult._();
|
|
|
|
factory StopWorkflowResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StopWorkflowResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StopWorkflowResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StopWorkflowResult clone() => StopWorkflowResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StopWorkflowResult copyWith(void Function(StopWorkflowResult) updates) => super.copyWith((message) => updates(message as StopWorkflowResult)) as StopWorkflowResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StopWorkflowResult create() => StopWorkflowResult._();
|
|
@$core.override
|
|
StopWorkflowResult createEmptyInstance() => create();
|
|
static $pb.PbList<StopWorkflowResult> createRepeated() => $pb.PbList<StopWorkflowResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StopWorkflowResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StopWorkflowResult>(create);
|
|
static StopWorkflowResult? _defaultInstance;
|
|
}
|
|
|
|
class StartWorkflowOptimizeClickhouseRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowOptimizeClickhouseRequest({
|
|
$core.bool? final_1,
|
|
$core.String? cronSchedule,
|
|
}) {
|
|
final result = create();
|
|
if (final_1 != null) result.final_1 = final_1;
|
|
if (cronSchedule != null) result.cronSchedule = cronSchedule;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowOptimizeClickhouseRequest._();
|
|
|
|
factory StartWorkflowOptimizeClickhouseRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowOptimizeClickhouseRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowOptimizeClickhouseRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOB(1, _omitFieldNames ? '' : 'Final', protoName: 'Final')
|
|
..aOS(2, _omitFieldNames ? '' : 'CronSchedule', protoName: 'CronSchedule')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowOptimizeClickhouseRequest clone() => StartWorkflowOptimizeClickhouseRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowOptimizeClickhouseRequest copyWith(void Function(StartWorkflowOptimizeClickhouseRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowOptimizeClickhouseRequest)) as StartWorkflowOptimizeClickhouseRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowOptimizeClickhouseRequest create() => StartWorkflowOptimizeClickhouseRequest._();
|
|
@$core.override
|
|
StartWorkflowOptimizeClickhouseRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowOptimizeClickhouseRequest> createRepeated() => $pb.PbList<StartWorkflowOptimizeClickhouseRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowOptimizeClickhouseRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowOptimizeClickhouseRequest>(create);
|
|
static StartWorkflowOptimizeClickhouseRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.bool get final_1 => $_getBF(0);
|
|
@$pb.TagNumber(1)
|
|
set final_1($core.bool value) => $_setBool(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasFinal_1() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearFinal_1() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get cronSchedule => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set cronSchedule($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasCronSchedule() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearCronSchedule() => $_clearField(2);
|
|
}
|
|
|
|
class StartWorkflowOptimizeClickhouseResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowOptimizeClickhouseResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowOptimizeClickhouseResult._();
|
|
|
|
factory StartWorkflowOptimizeClickhouseResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowOptimizeClickhouseResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowOptimizeClickhouseResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowOptimizeClickhouseResult clone() => StartWorkflowOptimizeClickhouseResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowOptimizeClickhouseResult copyWith(void Function(StartWorkflowOptimizeClickhouseResult) updates) => super.copyWith((message) => updates(message as StartWorkflowOptimizeClickhouseResult)) as StartWorkflowOptimizeClickhouseResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowOptimizeClickhouseResult create() => StartWorkflowOptimizeClickhouseResult._();
|
|
@$core.override
|
|
StartWorkflowOptimizeClickhouseResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowOptimizeClickhouseResult> createRepeated() => $pb.PbList<StartWorkflowOptimizeClickhouseResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowOptimizeClickhouseResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowOptimizeClickhouseResult>(create);
|
|
static StartWorkflowOptimizeClickhouseResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowCreateOrganisationRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowCreateOrganisationRequest({
|
|
$core.String? organisationID,
|
|
$core.String? managerEmail,
|
|
$core.String? userSub,
|
|
$core.Iterable<$2.Module>? modules,
|
|
}) {
|
|
final result = create();
|
|
if (organisationID != null) result.organisationID = organisationID;
|
|
if (managerEmail != null) result.managerEmail = managerEmail;
|
|
if (userSub != null) result.userSub = userSub;
|
|
if (modules != null) result.modules.addAll(modules);
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowCreateOrganisationRequest._();
|
|
|
|
factory StartWorkflowCreateOrganisationRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowCreateOrganisationRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowCreateOrganisationRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
|
..aOS(2, _omitFieldNames ? '' : 'ManagerEmail', protoName: 'ManagerEmail')
|
|
..aOS(3, _omitFieldNames ? '' : 'UserSub', protoName: 'UserSub')
|
|
..pc<$2.Module>(4, _omitFieldNames ? '' : 'Modules', $pb.PbFieldType.PM, protoName: 'Modules', subBuilder: $2.Module.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateOrganisationRequest clone() => StartWorkflowCreateOrganisationRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateOrganisationRequest copyWith(void Function(StartWorkflowCreateOrganisationRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowCreateOrganisationRequest)) as StartWorkflowCreateOrganisationRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateOrganisationRequest create() => StartWorkflowCreateOrganisationRequest._();
|
|
@$core.override
|
|
StartWorkflowCreateOrganisationRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowCreateOrganisationRequest> createRepeated() => $pb.PbList<StartWorkflowCreateOrganisationRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateOrganisationRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowCreateOrganisationRequest>(create);
|
|
static StartWorkflowCreateOrganisationRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get organisationID => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set organisationID($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasOrganisationID() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearOrganisationID() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get managerEmail => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set managerEmail($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasManagerEmail() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearManagerEmail() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$core.String get userSub => $_getSZ(2);
|
|
@$pb.TagNumber(3)
|
|
set userSub($core.String value) => $_setString(2, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasUserSub() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearUserSub() => $_clearField(3);
|
|
|
|
@$pb.TagNumber(4)
|
|
$pb.PbList<$2.Module> get modules => $_getList(3);
|
|
}
|
|
|
|
class StartWorkflowCreateOrganisationResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowCreateOrganisationResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowCreateOrganisationResult._();
|
|
|
|
factory StartWorkflowCreateOrganisationResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowCreateOrganisationResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowCreateOrganisationResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateOrganisationResult clone() => StartWorkflowCreateOrganisationResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateOrganisationResult copyWith(void Function(StartWorkflowCreateOrganisationResult) updates) => super.copyWith((message) => updates(message as StartWorkflowCreateOrganisationResult)) as StartWorkflowCreateOrganisationResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateOrganisationResult create() => StartWorkflowCreateOrganisationResult._();
|
|
@$core.override
|
|
StartWorkflowCreateOrganisationResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowCreateOrganisationResult> createRepeated() => $pb.PbList<StartWorkflowCreateOrganisationResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateOrganisationResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowCreateOrganisationResult>(create);
|
|
static StartWorkflowCreateOrganisationResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowDeleteOrganisationRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeleteOrganisationRequest({
|
|
$core.String? organisationID,
|
|
$core.String? userID,
|
|
}) {
|
|
final result = create();
|
|
if (organisationID != null) result.organisationID = organisationID;
|
|
if (userID != null) result.userID = userID;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeleteOrganisationRequest._();
|
|
|
|
factory StartWorkflowDeleteOrganisationRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeleteOrganisationRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeleteOrganisationRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
|
..aOS(2, _omitFieldNames ? '' : 'UserID', protoName: 'UserID')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteOrganisationRequest clone() => StartWorkflowDeleteOrganisationRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteOrganisationRequest copyWith(void Function(StartWorkflowDeleteOrganisationRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowDeleteOrganisationRequest)) as StartWorkflowDeleteOrganisationRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteOrganisationRequest create() => StartWorkflowDeleteOrganisationRequest._();
|
|
@$core.override
|
|
StartWorkflowDeleteOrganisationRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeleteOrganisationRequest> createRepeated() => $pb.PbList<StartWorkflowDeleteOrganisationRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteOrganisationRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeleteOrganisationRequest>(create);
|
|
static StartWorkflowDeleteOrganisationRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get organisationID => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set organisationID($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasOrganisationID() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearOrganisationID() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get userID => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set userID($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasUserID() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearUserID() => $_clearField(2);
|
|
}
|
|
|
|
class StartWorkflowDeleteOrganisationResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeleteOrganisationResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeleteOrganisationResult._();
|
|
|
|
factory StartWorkflowDeleteOrganisationResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeleteOrganisationResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeleteOrganisationResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteOrganisationResult clone() => StartWorkflowDeleteOrganisationResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteOrganisationResult copyWith(void Function(StartWorkflowDeleteOrganisationResult) updates) => super.copyWith((message) => updates(message as StartWorkflowDeleteOrganisationResult)) as StartWorkflowDeleteOrganisationResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteOrganisationResult create() => StartWorkflowDeleteOrganisationResult._();
|
|
@$core.override
|
|
StartWorkflowDeleteOrganisationResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeleteOrganisationResult> createRepeated() => $pb.PbList<StartWorkflowDeleteOrganisationResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteOrganisationResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeleteOrganisationResult>(create);
|
|
static StartWorkflowDeleteOrganisationResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowRecoverDataRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowRecoverDataRequest({
|
|
$core.String? projectID,
|
|
$1.ModelDataSetEnum? entity,
|
|
$1.RecoverType? recoveryType,
|
|
$core.bool? clearEntityData,
|
|
$core.bool? restartJob,
|
|
$core.String? organisationID,
|
|
}) {
|
|
final result = create();
|
|
if (projectID != null) result.projectID = projectID;
|
|
if (entity != null) result.entity = entity;
|
|
if (recoveryType != null) result.recoveryType = recoveryType;
|
|
if (clearEntityData != null) result.clearEntityData = clearEntityData;
|
|
if (restartJob != null) result.restartJob = restartJob;
|
|
if (organisationID != null) result.organisationID = organisationID;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowRecoverDataRequest._();
|
|
|
|
factory StartWorkflowRecoverDataRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowRecoverDataRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowRecoverDataRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
|
..e<$1.ModelDataSetEnum>(2, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $1.ModelDataSetEnum.ACTOR, valueOf: $1.ModelDataSetEnum.valueOf, enumValues: $1.ModelDataSetEnum.values)
|
|
..e<$1.RecoverType>(3, _omitFieldNames ? '' : 'RecoveryType', $pb.PbFieldType.OE, protoName: 'RecoveryType', defaultOrMaker: $1.RecoverType.RECOVER_OPENSEARCH, valueOf: $1.RecoverType.valueOf, enumValues: $1.RecoverType.values)
|
|
..aOB(4, _omitFieldNames ? '' : 'ClearEntityData', protoName: 'ClearEntityData')
|
|
..aOB(6, _omitFieldNames ? '' : 'RestartJob', protoName: 'RestartJob')
|
|
..aOS(7, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowRecoverDataRequest clone() => StartWorkflowRecoverDataRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowRecoverDataRequest copyWith(void Function(StartWorkflowRecoverDataRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowRecoverDataRequest)) as StartWorkflowRecoverDataRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowRecoverDataRequest create() => StartWorkflowRecoverDataRequest._();
|
|
@$core.override
|
|
StartWorkflowRecoverDataRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowRecoverDataRequest> createRepeated() => $pb.PbList<StartWorkflowRecoverDataRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowRecoverDataRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowRecoverDataRequest>(create);
|
|
static StartWorkflowRecoverDataRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get projectID => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set projectID($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasProjectID() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearProjectID() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$1.ModelDataSetEnum get entity => $_getN(1);
|
|
@$pb.TagNumber(2)
|
|
set entity($1.ModelDataSetEnum value) => $_setField(2, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasEntity() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearEntity() => $_clearField(2);
|
|
|
|
@$pb.TagNumber(3)
|
|
$1.RecoverType get recoveryType => $_getN(2);
|
|
@$pb.TagNumber(3)
|
|
set recoveryType($1.RecoverType value) => $_setField(3, value);
|
|
@$pb.TagNumber(3)
|
|
$core.bool hasRecoveryType() => $_has(2);
|
|
@$pb.TagNumber(3)
|
|
void clearRecoveryType() => $_clearField(3);
|
|
|
|
@$pb.TagNumber(4)
|
|
$core.bool get clearEntityData => $_getBF(3);
|
|
@$pb.TagNumber(4)
|
|
set clearEntityData($core.bool value) => $_setBool(3, value);
|
|
@$pb.TagNumber(4)
|
|
$core.bool hasClearEntityData() => $_has(3);
|
|
@$pb.TagNumber(4)
|
|
void clearClearEntityData() => $_clearField(4);
|
|
|
|
@$pb.TagNumber(6)
|
|
$core.bool get restartJob => $_getBF(4);
|
|
@$pb.TagNumber(6)
|
|
set restartJob($core.bool value) => $_setBool(4, value);
|
|
@$pb.TagNumber(6)
|
|
$core.bool hasRestartJob() => $_has(4);
|
|
@$pb.TagNumber(6)
|
|
void clearRestartJob() => $_clearField(6);
|
|
|
|
@$pb.TagNumber(7)
|
|
$core.String get organisationID => $_getSZ(5);
|
|
@$pb.TagNumber(7)
|
|
set organisationID($core.String value) => $_setString(5, value);
|
|
@$pb.TagNumber(7)
|
|
$core.bool hasOrganisationID() => $_has(5);
|
|
@$pb.TagNumber(7)
|
|
void clearOrganisationID() => $_clearField(7);
|
|
}
|
|
|
|
class StartWorkflowRecoverDataResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowRecoverDataResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowRecoverDataResult._();
|
|
|
|
factory StartWorkflowRecoverDataResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowRecoverDataResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowRecoverDataResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowRecoverDataResult clone() => StartWorkflowRecoverDataResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowRecoverDataResult copyWith(void Function(StartWorkflowRecoverDataResult) updates) => super.copyWith((message) => updates(message as StartWorkflowRecoverDataResult)) as StartWorkflowRecoverDataResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowRecoverDataResult create() => StartWorkflowRecoverDataResult._();
|
|
@$core.override
|
|
StartWorkflowRecoverDataResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowRecoverDataResult> createRepeated() => $pb.PbList<StartWorkflowRecoverDataResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowRecoverDataResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowRecoverDataResult>(create);
|
|
static StartWorkflowRecoverDataResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowCheckAndLaunchRecoverDataRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowCheckAndLaunchRecoverDataRequest({
|
|
$1.ModelDataSetEnum? entity,
|
|
$1.RecoverType? recoveryType,
|
|
}) {
|
|
final result = create();
|
|
if (entity != null) result.entity = entity;
|
|
if (recoveryType != null) result.recoveryType = recoveryType;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowCheckAndLaunchRecoverDataRequest._();
|
|
|
|
factory StartWorkflowCheckAndLaunchRecoverDataRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowCheckAndLaunchRecoverDataRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowCheckAndLaunchRecoverDataRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..e<$1.ModelDataSetEnum>(1, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $1.ModelDataSetEnum.ACTOR, valueOf: $1.ModelDataSetEnum.valueOf, enumValues: $1.ModelDataSetEnum.values)
|
|
..e<$1.RecoverType>(2, _omitFieldNames ? '' : 'RecoveryType', $pb.PbFieldType.OE, protoName: 'RecoveryType', defaultOrMaker: $1.RecoverType.RECOVER_OPENSEARCH, valueOf: $1.RecoverType.valueOf, enumValues: $1.RecoverType.values)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCheckAndLaunchRecoverDataRequest clone() => StartWorkflowCheckAndLaunchRecoverDataRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCheckAndLaunchRecoverDataRequest copyWith(void Function(StartWorkflowCheckAndLaunchRecoverDataRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowCheckAndLaunchRecoverDataRequest)) as StartWorkflowCheckAndLaunchRecoverDataRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCheckAndLaunchRecoverDataRequest create() => StartWorkflowCheckAndLaunchRecoverDataRequest._();
|
|
@$core.override
|
|
StartWorkflowCheckAndLaunchRecoverDataRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowCheckAndLaunchRecoverDataRequest> createRepeated() => $pb.PbList<StartWorkflowCheckAndLaunchRecoverDataRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCheckAndLaunchRecoverDataRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowCheckAndLaunchRecoverDataRequest>(create);
|
|
static StartWorkflowCheckAndLaunchRecoverDataRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.ModelDataSetEnum get entity => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set entity($1.ModelDataSetEnum value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasEntity() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearEntity() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$1.RecoverType get recoveryType => $_getN(1);
|
|
@$pb.TagNumber(2)
|
|
set recoveryType($1.RecoverType value) => $_setField(2, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasRecoveryType() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearRecoveryType() => $_clearField(2);
|
|
}
|
|
|
|
class StartWorkflowCheckAndLaunchRecoverDataResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowCheckAndLaunchRecoverDataResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowCheckAndLaunchRecoverDataResult._();
|
|
|
|
factory StartWorkflowCheckAndLaunchRecoverDataResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowCheckAndLaunchRecoverDataResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowCheckAndLaunchRecoverDataResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCheckAndLaunchRecoverDataResult clone() => StartWorkflowCheckAndLaunchRecoverDataResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCheckAndLaunchRecoverDataResult copyWith(void Function(StartWorkflowCheckAndLaunchRecoverDataResult) updates) => super.copyWith((message) => updates(message as StartWorkflowCheckAndLaunchRecoverDataResult)) as StartWorkflowCheckAndLaunchRecoverDataResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCheckAndLaunchRecoverDataResult create() => StartWorkflowCheckAndLaunchRecoverDataResult._();
|
|
@$core.override
|
|
StartWorkflowCheckAndLaunchRecoverDataResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowCheckAndLaunchRecoverDataResult> createRepeated() => $pb.PbList<StartWorkflowCheckAndLaunchRecoverDataResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCheckAndLaunchRecoverDataResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowCheckAndLaunchRecoverDataResult>(create);
|
|
static StartWorkflowCheckAndLaunchRecoverDataResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowUpdateMaterializedViewRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowUpdateMaterializedViewRequest({
|
|
$core.String? projectID,
|
|
$core.String? organisationID,
|
|
}) {
|
|
final result = create();
|
|
if (projectID != null) result.projectID = projectID;
|
|
if (organisationID != null) result.organisationID = organisationID;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowUpdateMaterializedViewRequest._();
|
|
|
|
factory StartWorkflowUpdateMaterializedViewRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowUpdateMaterializedViewRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowUpdateMaterializedViewRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
|
..aOS(2, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowUpdateMaterializedViewRequest clone() => StartWorkflowUpdateMaterializedViewRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowUpdateMaterializedViewRequest copyWith(void Function(StartWorkflowUpdateMaterializedViewRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowUpdateMaterializedViewRequest)) as StartWorkflowUpdateMaterializedViewRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowUpdateMaterializedViewRequest create() => StartWorkflowUpdateMaterializedViewRequest._();
|
|
@$core.override
|
|
StartWorkflowUpdateMaterializedViewRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowUpdateMaterializedViewRequest> createRepeated() => $pb.PbList<StartWorkflowUpdateMaterializedViewRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowUpdateMaterializedViewRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowUpdateMaterializedViewRequest>(create);
|
|
static StartWorkflowUpdateMaterializedViewRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get projectID => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set projectID($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasProjectID() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearProjectID() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$core.String get organisationID => $_getSZ(1);
|
|
@$pb.TagNumber(2)
|
|
set organisationID($core.String value) => $_setString(1, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasOrganisationID() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearOrganisationID() => $_clearField(2);
|
|
}
|
|
|
|
class StartWorkflowUpdateMaterializedViewResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowUpdateMaterializedViewResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowUpdateMaterializedViewResult._();
|
|
|
|
factory StartWorkflowUpdateMaterializedViewResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowUpdateMaterializedViewResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowUpdateMaterializedViewResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowUpdateMaterializedViewResult clone() => StartWorkflowUpdateMaterializedViewResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowUpdateMaterializedViewResult copyWith(void Function(StartWorkflowUpdateMaterializedViewResult) updates) => super.copyWith((message) => updates(message as StartWorkflowUpdateMaterializedViewResult)) as StartWorkflowUpdateMaterializedViewResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowUpdateMaterializedViewResult create() => StartWorkflowUpdateMaterializedViewResult._();
|
|
@$core.override
|
|
StartWorkflowUpdateMaterializedViewResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowUpdateMaterializedViewResult> createRepeated() => $pb.PbList<StartWorkflowUpdateMaterializedViewResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowUpdateMaterializedViewResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowUpdateMaterializedViewResult>(create);
|
|
static StartWorkflowUpdateMaterializedViewResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class GetWorkflowStateRequest extends $pb.GeneratedMessage {
|
|
factory GetWorkflowStateRequest({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
GetWorkflowStateRequest._();
|
|
|
|
factory GetWorkflowStateRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory GetWorkflowStateRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetWorkflowStateRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetWorkflowStateRequest clone() => GetWorkflowStateRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetWorkflowStateRequest copyWith(void Function(GetWorkflowStateRequest) updates) => super.copyWith((message) => updates(message as GetWorkflowStateRequest)) as GetWorkflowStateRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetWorkflowStateRequest create() => GetWorkflowStateRequest._();
|
|
@$core.override
|
|
GetWorkflowStateRequest createEmptyInstance() => create();
|
|
static $pb.PbList<GetWorkflowStateRequest> createRepeated() => $pb.PbList<GetWorkflowStateRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetWorkflowStateRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetWorkflowStateRequest>(create);
|
|
static GetWorkflowStateRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class GetWorkflowStateResult extends $pb.GeneratedMessage {
|
|
factory GetWorkflowStateResult({
|
|
$core.String? state,
|
|
}) {
|
|
final result = create();
|
|
if (state != null) result.state = state;
|
|
return result;
|
|
}
|
|
|
|
GetWorkflowStateResult._();
|
|
|
|
factory GetWorkflowStateResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory GetWorkflowStateResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetWorkflowStateResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'State', protoName: 'State')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetWorkflowStateResult clone() => GetWorkflowStateResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetWorkflowStateResult copyWith(void Function(GetWorkflowStateResult) updates) => super.copyWith((message) => updates(message as GetWorkflowStateResult)) as GetWorkflowStateResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetWorkflowStateResult create() => GetWorkflowStateResult._();
|
|
@$core.override
|
|
GetWorkflowStateResult createEmptyInstance() => create();
|
|
static $pb.PbList<GetWorkflowStateResult> createRepeated() => $pb.PbList<GetWorkflowStateResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetWorkflowStateResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetWorkflowStateResult>(create);
|
|
static GetWorkflowStateResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get state => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set state($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasState() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearState() => $_clearField(1);
|
|
}
|
|
|
|
class GetWorkflowExecutionInformationsRequest extends $pb.GeneratedMessage {
|
|
factory GetWorkflowExecutionInformationsRequest({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
GetWorkflowExecutionInformationsRequest._();
|
|
|
|
factory GetWorkflowExecutionInformationsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory GetWorkflowExecutionInformationsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetWorkflowExecutionInformationsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetWorkflowExecutionInformationsRequest clone() => GetWorkflowExecutionInformationsRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetWorkflowExecutionInformationsRequest copyWith(void Function(GetWorkflowExecutionInformationsRequest) updates) => super.copyWith((message) => updates(message as GetWorkflowExecutionInformationsRequest)) as GetWorkflowExecutionInformationsRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetWorkflowExecutionInformationsRequest create() => GetWorkflowExecutionInformationsRequest._();
|
|
@$core.override
|
|
GetWorkflowExecutionInformationsRequest createEmptyInstance() => create();
|
|
static $pb.PbList<GetWorkflowExecutionInformationsRequest> createRepeated() => $pb.PbList<GetWorkflowExecutionInformationsRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetWorkflowExecutionInformationsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetWorkflowExecutionInformationsRequest>(create);
|
|
static GetWorkflowExecutionInformationsRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class GetWorkflowExecutionInformationsResult extends $pb.GeneratedMessage {
|
|
factory GetWorkflowExecutionInformationsResult({
|
|
$core.String? workflowExecutionInformations,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecutionInformations != null) result.workflowExecutionInformations = workflowExecutionInformations;
|
|
return result;
|
|
}
|
|
|
|
GetWorkflowExecutionInformationsResult._();
|
|
|
|
factory GetWorkflowExecutionInformationsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory GetWorkflowExecutionInformationsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'GetWorkflowExecutionInformationsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'WorkflowExecutionInformations', protoName: 'WorkflowExecutionInformations')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetWorkflowExecutionInformationsResult clone() => GetWorkflowExecutionInformationsResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
GetWorkflowExecutionInformationsResult copyWith(void Function(GetWorkflowExecutionInformationsResult) updates) => super.copyWith((message) => updates(message as GetWorkflowExecutionInformationsResult)) as GetWorkflowExecutionInformationsResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetWorkflowExecutionInformationsResult create() => GetWorkflowExecutionInformationsResult._();
|
|
@$core.override
|
|
GetWorkflowExecutionInformationsResult createEmptyInstance() => create();
|
|
static $pb.PbList<GetWorkflowExecutionInformationsResult> createRepeated() => $pb.PbList<GetWorkflowExecutionInformationsResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static GetWorkflowExecutionInformationsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<GetWorkflowExecutionInformationsResult>(create);
|
|
static GetWorkflowExecutionInformationsResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get workflowExecutionInformations => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecutionInformations($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecutionInformations() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecutionInformations() => $_clearField(1);
|
|
}
|
|
|
|
class StartWorkflowDailyProjectsOperationsRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDailyProjectsOperationsRequest() => create();
|
|
|
|
StartWorkflowDailyProjectsOperationsRequest._();
|
|
|
|
factory StartWorkflowDailyProjectsOperationsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDailyProjectsOperationsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDailyProjectsOperationsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDailyProjectsOperationsRequest clone() => StartWorkflowDailyProjectsOperationsRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDailyProjectsOperationsRequest copyWith(void Function(StartWorkflowDailyProjectsOperationsRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowDailyProjectsOperationsRequest)) as StartWorkflowDailyProjectsOperationsRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDailyProjectsOperationsRequest create() => StartWorkflowDailyProjectsOperationsRequest._();
|
|
@$core.override
|
|
StartWorkflowDailyProjectsOperationsRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDailyProjectsOperationsRequest> createRepeated() => $pb.PbList<StartWorkflowDailyProjectsOperationsRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDailyProjectsOperationsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDailyProjectsOperationsRequest>(create);
|
|
static StartWorkflowDailyProjectsOperationsRequest? _defaultInstance;
|
|
}
|
|
|
|
class StartWorkflowDailyProjectsOperationsResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDailyProjectsOperationsResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDailyProjectsOperationsResult._();
|
|
|
|
factory StartWorkflowDailyProjectsOperationsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDailyProjectsOperationsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDailyProjectsOperationsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDailyProjectsOperationsResult clone() => StartWorkflowDailyProjectsOperationsResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDailyProjectsOperationsResult copyWith(void Function(StartWorkflowDailyProjectsOperationsResult) updates) => super.copyWith((message) => updates(message as StartWorkflowDailyProjectsOperationsResult)) as StartWorkflowDailyProjectsOperationsResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDailyProjectsOperationsResult create() => StartWorkflowDailyProjectsOperationsResult._();
|
|
@$core.override
|
|
StartWorkflowDailyProjectsOperationsResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDailyProjectsOperationsResult> createRepeated() => $pb.PbList<StartWorkflowDailyProjectsOperationsResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDailyProjectsOperationsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDailyProjectsOperationsResult>(create);
|
|
static StartWorkflowDailyProjectsOperationsResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowHealthCheckWorkflowsRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowHealthCheckWorkflowsRequest() => create();
|
|
|
|
StartWorkflowHealthCheckWorkflowsRequest._();
|
|
|
|
factory StartWorkflowHealthCheckWorkflowsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowHealthCheckWorkflowsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowHealthCheckWorkflowsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowHealthCheckWorkflowsRequest clone() => StartWorkflowHealthCheckWorkflowsRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowHealthCheckWorkflowsRequest copyWith(void Function(StartWorkflowHealthCheckWorkflowsRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowHealthCheckWorkflowsRequest)) as StartWorkflowHealthCheckWorkflowsRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowHealthCheckWorkflowsRequest create() => StartWorkflowHealthCheckWorkflowsRequest._();
|
|
@$core.override
|
|
StartWorkflowHealthCheckWorkflowsRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowHealthCheckWorkflowsRequest> createRepeated() => $pb.PbList<StartWorkflowHealthCheckWorkflowsRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowHealthCheckWorkflowsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowHealthCheckWorkflowsRequest>(create);
|
|
static StartWorkflowHealthCheckWorkflowsRequest? _defaultInstance;
|
|
}
|
|
|
|
class StartWorkflowHealthCheckWorkflowsResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowHealthCheckWorkflowsResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowHealthCheckWorkflowsResult._();
|
|
|
|
factory StartWorkflowHealthCheckWorkflowsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowHealthCheckWorkflowsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowHealthCheckWorkflowsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowHealthCheckWorkflowsResult clone() => StartWorkflowHealthCheckWorkflowsResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowHealthCheckWorkflowsResult copyWith(void Function(StartWorkflowHealthCheckWorkflowsResult) updates) => super.copyWith((message) => updates(message as StartWorkflowHealthCheckWorkflowsResult)) as StartWorkflowHealthCheckWorkflowsResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowHealthCheckWorkflowsResult create() => StartWorkflowHealthCheckWorkflowsResult._();
|
|
@$core.override
|
|
StartWorkflowHealthCheckWorkflowsResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowHealthCheckWorkflowsResult> createRepeated() => $pb.PbList<StartWorkflowHealthCheckWorkflowsResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowHealthCheckWorkflowsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowHealthCheckWorkflowsResult>(create);
|
|
static StartWorkflowHealthCheckWorkflowsResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowPruneDataRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowPruneDataRequest({
|
|
$core.String? projectID,
|
|
$1.EntityType? entity,
|
|
}) {
|
|
final result = create();
|
|
if (projectID != null) result.projectID = projectID;
|
|
if (entity != null) result.entity = entity;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowPruneDataRequest._();
|
|
|
|
factory StartWorkflowPruneDataRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowPruneDataRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowPruneDataRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
|
..e<$1.EntityType>(2, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $1.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $1.EntityType.valueOf, enumValues: $1.EntityType.values)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowPruneDataRequest clone() => StartWorkflowPruneDataRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowPruneDataRequest copyWith(void Function(StartWorkflowPruneDataRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowPruneDataRequest)) as StartWorkflowPruneDataRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowPruneDataRequest create() => StartWorkflowPruneDataRequest._();
|
|
@$core.override
|
|
StartWorkflowPruneDataRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowPruneDataRequest> createRepeated() => $pb.PbList<StartWorkflowPruneDataRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowPruneDataRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowPruneDataRequest>(create);
|
|
static StartWorkflowPruneDataRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get projectID => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set projectID($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasProjectID() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearProjectID() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$1.EntityType get entity => $_getN(1);
|
|
@$pb.TagNumber(2)
|
|
set entity($1.EntityType value) => $_setField(2, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasEntity() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearEntity() => $_clearField(2);
|
|
}
|
|
|
|
class StartWorkflowPruneDataResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowPruneDataResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowPruneDataResult._();
|
|
|
|
factory StartWorkflowPruneDataResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowPruneDataResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowPruneDataResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowPruneDataResult clone() => StartWorkflowPruneDataResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowPruneDataResult copyWith(void Function(StartWorkflowPruneDataResult) updates) => super.copyWith((message) => updates(message as StartWorkflowPruneDataResult)) as StartWorkflowPruneDataResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowPruneDataResult create() => StartWorkflowPruneDataResult._();
|
|
@$core.override
|
|
StartWorkflowPruneDataResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowPruneDataResult> createRepeated() => $pb.PbList<StartWorkflowPruneDataResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowPruneDataResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowPruneDataResult>(create);
|
|
static StartWorkflowPruneDataResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowSynchronizeRulesOnGitRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowSynchronizeRulesOnGitRequest() => create();
|
|
|
|
StartWorkflowSynchronizeRulesOnGitRequest._();
|
|
|
|
factory StartWorkflowSynchronizeRulesOnGitRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowSynchronizeRulesOnGitRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowSynchronizeRulesOnGitRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowSynchronizeRulesOnGitRequest clone() => StartWorkflowSynchronizeRulesOnGitRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowSynchronizeRulesOnGitRequest copyWith(void Function(StartWorkflowSynchronizeRulesOnGitRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowSynchronizeRulesOnGitRequest)) as StartWorkflowSynchronizeRulesOnGitRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowSynchronizeRulesOnGitRequest create() => StartWorkflowSynchronizeRulesOnGitRequest._();
|
|
@$core.override
|
|
StartWorkflowSynchronizeRulesOnGitRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowSynchronizeRulesOnGitRequest> createRepeated() => $pb.PbList<StartWorkflowSynchronizeRulesOnGitRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowSynchronizeRulesOnGitRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowSynchronizeRulesOnGitRequest>(create);
|
|
static StartWorkflowSynchronizeRulesOnGitRequest? _defaultInstance;
|
|
}
|
|
|
|
class StartWorkflowSynchronizeRulesOnGitResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowSynchronizeRulesOnGitResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowSynchronizeRulesOnGitResult._();
|
|
|
|
factory StartWorkflowSynchronizeRulesOnGitResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowSynchronizeRulesOnGitResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowSynchronizeRulesOnGitResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowSynchronizeRulesOnGitResult clone() => StartWorkflowSynchronizeRulesOnGitResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowSynchronizeRulesOnGitResult copyWith(void Function(StartWorkflowSynchronizeRulesOnGitResult) updates) => super.copyWith((message) => updates(message as StartWorkflowSynchronizeRulesOnGitResult)) as StartWorkflowSynchronizeRulesOnGitResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowSynchronizeRulesOnGitResult create() => StartWorkflowSynchronizeRulesOnGitResult._();
|
|
@$core.override
|
|
StartWorkflowSynchronizeRulesOnGitResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowSynchronizeRulesOnGitResult> createRepeated() => $pb.PbList<StartWorkflowSynchronizeRulesOnGitResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowSynchronizeRulesOnGitResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowSynchronizeRulesOnGitResult>(create);
|
|
static StartWorkflowSynchronizeRulesOnGitResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowAnonymizeDataRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowAnonymizeDataRequest({
|
|
$core.String? projectID,
|
|
$1.EntityType? entity,
|
|
}) {
|
|
final result = create();
|
|
if (projectID != null) result.projectID = projectID;
|
|
if (entity != null) result.entity = entity;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowAnonymizeDataRequest._();
|
|
|
|
factory StartWorkflowAnonymizeDataRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowAnonymizeDataRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowAnonymizeDataRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
|
..e<$1.EntityType>(2, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $1.EntityType.ENTITY_TYPE_UNKNOWN, valueOf: $1.EntityType.valueOf, enumValues: $1.EntityType.values)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowAnonymizeDataRequest clone() => StartWorkflowAnonymizeDataRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowAnonymizeDataRequest copyWith(void Function(StartWorkflowAnonymizeDataRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowAnonymizeDataRequest)) as StartWorkflowAnonymizeDataRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowAnonymizeDataRequest create() => StartWorkflowAnonymizeDataRequest._();
|
|
@$core.override
|
|
StartWorkflowAnonymizeDataRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowAnonymizeDataRequest> createRepeated() => $pb.PbList<StartWorkflowAnonymizeDataRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowAnonymizeDataRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowAnonymizeDataRequest>(create);
|
|
static StartWorkflowAnonymizeDataRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get projectID => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set projectID($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasProjectID() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearProjectID() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$1.EntityType get entity => $_getN(1);
|
|
@$pb.TagNumber(2)
|
|
set entity($1.EntityType value) => $_setField(2, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasEntity() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearEntity() => $_clearField(2);
|
|
}
|
|
|
|
class StartWorkflowAnonymizeDataResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowAnonymizeDataResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowAnonymizeDataResult._();
|
|
|
|
factory StartWorkflowAnonymizeDataResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowAnonymizeDataResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowAnonymizeDataResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowAnonymizeDataResult clone() => StartWorkflowAnonymizeDataResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowAnonymizeDataResult copyWith(void Function(StartWorkflowAnonymizeDataResult) updates) => super.copyWith((message) => updates(message as StartWorkflowAnonymizeDataResult)) as StartWorkflowAnonymizeDataResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowAnonymizeDataResult create() => StartWorkflowAnonymizeDataResult._();
|
|
@$core.override
|
|
StartWorkflowAnonymizeDataResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowAnonymizeDataResult> createRepeated() => $pb.PbList<StartWorkflowAnonymizeDataResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowAnonymizeDataResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowAnonymizeDataResult>(create);
|
|
static StartWorkflowAnonymizeDataResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowUpgradeModelRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowUpgradeModelRequest({
|
|
$core.String? projectID,
|
|
$1.ModelDataSetEnum? entity,
|
|
}) {
|
|
final result = create();
|
|
if (projectID != null) result.projectID = projectID;
|
|
if (entity != null) result.entity = entity;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowUpgradeModelRequest._();
|
|
|
|
factory StartWorkflowUpgradeModelRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowUpgradeModelRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowUpgradeModelRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
|
..e<$1.ModelDataSetEnum>(2, _omitFieldNames ? '' : 'Entity', $pb.PbFieldType.OE, protoName: 'Entity', defaultOrMaker: $1.ModelDataSetEnum.ACTOR, valueOf: $1.ModelDataSetEnum.valueOf, enumValues: $1.ModelDataSetEnum.values)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowUpgradeModelRequest clone() => StartWorkflowUpgradeModelRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowUpgradeModelRequest copyWith(void Function(StartWorkflowUpgradeModelRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowUpgradeModelRequest)) as StartWorkflowUpgradeModelRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowUpgradeModelRequest create() => StartWorkflowUpgradeModelRequest._();
|
|
@$core.override
|
|
StartWorkflowUpgradeModelRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowUpgradeModelRequest> createRepeated() => $pb.PbList<StartWorkflowUpgradeModelRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowUpgradeModelRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowUpgradeModelRequest>(create);
|
|
static StartWorkflowUpgradeModelRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get projectID => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set projectID($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasProjectID() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearProjectID() => $_clearField(1);
|
|
|
|
@$pb.TagNumber(2)
|
|
$1.ModelDataSetEnum get entity => $_getN(1);
|
|
@$pb.TagNumber(2)
|
|
set entity($1.ModelDataSetEnum value) => $_setField(2, value);
|
|
@$pb.TagNumber(2)
|
|
$core.bool hasEntity() => $_has(1);
|
|
@$pb.TagNumber(2)
|
|
void clearEntity() => $_clearField(2);
|
|
}
|
|
|
|
class StartWorkflowUpgradeModelResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowUpgradeModelResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowUpgradeModelResult._();
|
|
|
|
factory StartWorkflowUpgradeModelResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowUpgradeModelResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowUpgradeModelResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowUpgradeModelResult clone() => StartWorkflowUpgradeModelResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowUpgradeModelResult copyWith(void Function(StartWorkflowUpgradeModelResult) updates) => super.copyWith((message) => updates(message as StartWorkflowUpgradeModelResult)) as StartWorkflowUpgradeModelResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowUpgradeModelResult create() => StartWorkflowUpgradeModelResult._();
|
|
@$core.override
|
|
StartWorkflowUpgradeModelResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowUpgradeModelResult> createRepeated() => $pb.PbList<StartWorkflowUpgradeModelResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowUpgradeModelResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowUpgradeModelResult>(create);
|
|
static StartWorkflowUpgradeModelResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowSweepRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowSweepRequest({
|
|
$core.bool? dryRun,
|
|
}) {
|
|
final result = create();
|
|
if (dryRun != null) result.dryRun = dryRun;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowSweepRequest._();
|
|
|
|
factory StartWorkflowSweepRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowSweepRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowSweepRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOB(1, _omitFieldNames ? '' : 'DryRun', protoName: 'DryRun')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowSweepRequest clone() => StartWorkflowSweepRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowSweepRequest copyWith(void Function(StartWorkflowSweepRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowSweepRequest)) as StartWorkflowSweepRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowSweepRequest create() => StartWorkflowSweepRequest._();
|
|
@$core.override
|
|
StartWorkflowSweepRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowSweepRequest> createRepeated() => $pb.PbList<StartWorkflowSweepRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowSweepRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowSweepRequest>(create);
|
|
static StartWorkflowSweepRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.bool get dryRun => $_getBF(0);
|
|
@$pb.TagNumber(1)
|
|
set dryRun($core.bool value) => $_setBool(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasDryRun() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearDryRun() => $_clearField(1);
|
|
}
|
|
|
|
class StartWorkflowSweepResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowSweepResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowSweepResult._();
|
|
|
|
factory StartWorkflowSweepResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowSweepResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowSweepResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowSweepResult clone() => StartWorkflowSweepResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowSweepResult copyWith(void Function(StartWorkflowSweepResult) updates) => super.copyWith((message) => updates(message as StartWorkflowSweepResult)) as StartWorkflowSweepResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowSweepResult create() => StartWorkflowSweepResult._();
|
|
@$core.override
|
|
StartWorkflowSweepResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowSweepResult> createRepeated() => $pb.PbList<StartWorkflowSweepResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowSweepResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowSweepResult>(create);
|
|
static StartWorkflowSweepResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowCreateClickhouseRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowCreateClickhouseRequest({
|
|
$core.String? resourceID,
|
|
}) {
|
|
final result = create();
|
|
if (resourceID != null) result.resourceID = resourceID;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowCreateClickhouseRequest._();
|
|
|
|
factory StartWorkflowCreateClickhouseRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowCreateClickhouseRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowCreateClickhouseRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'ResourceID', protoName: 'ResourceID')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateClickhouseRequest clone() => StartWorkflowCreateClickhouseRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateClickhouseRequest copyWith(void Function(StartWorkflowCreateClickhouseRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowCreateClickhouseRequest)) as StartWorkflowCreateClickhouseRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateClickhouseRequest create() => StartWorkflowCreateClickhouseRequest._();
|
|
@$core.override
|
|
StartWorkflowCreateClickhouseRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowCreateClickhouseRequest> createRepeated() => $pb.PbList<StartWorkflowCreateClickhouseRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateClickhouseRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowCreateClickhouseRequest>(create);
|
|
static StartWorkflowCreateClickhouseRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get resourceID => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set resourceID($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasResourceID() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearResourceID() => $_clearField(1);
|
|
}
|
|
|
|
class StartWorkflowCreateClickhouseResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowCreateClickhouseResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowCreateClickhouseResult._();
|
|
|
|
factory StartWorkflowCreateClickhouseResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowCreateClickhouseResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowCreateClickhouseResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateClickhouseResult clone() => StartWorkflowCreateClickhouseResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCreateClickhouseResult copyWith(void Function(StartWorkflowCreateClickhouseResult) updates) => super.copyWith((message) => updates(message as StartWorkflowCreateClickhouseResult)) as StartWorkflowCreateClickhouseResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateClickhouseResult create() => StartWorkflowCreateClickhouseResult._();
|
|
@$core.override
|
|
StartWorkflowCreateClickhouseResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowCreateClickhouseResult> createRepeated() => $pb.PbList<StartWorkflowCreateClickhouseResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCreateClickhouseResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowCreateClickhouseResult>(create);
|
|
static StartWorkflowCreateClickhouseResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowDeleteClickhouseRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeleteClickhouseRequest({
|
|
$core.String? resourceID,
|
|
}) {
|
|
final result = create();
|
|
if (resourceID != null) result.resourceID = resourceID;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeleteClickhouseRequest._();
|
|
|
|
factory StartWorkflowDeleteClickhouseRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeleteClickhouseRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeleteClickhouseRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'ResourceID', protoName: 'ResourceID')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteClickhouseRequest clone() => StartWorkflowDeleteClickhouseRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteClickhouseRequest copyWith(void Function(StartWorkflowDeleteClickhouseRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowDeleteClickhouseRequest)) as StartWorkflowDeleteClickhouseRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteClickhouseRequest create() => StartWorkflowDeleteClickhouseRequest._();
|
|
@$core.override
|
|
StartWorkflowDeleteClickhouseRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeleteClickhouseRequest> createRepeated() => $pb.PbList<StartWorkflowDeleteClickhouseRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteClickhouseRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeleteClickhouseRequest>(create);
|
|
static StartWorkflowDeleteClickhouseRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get resourceID => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set resourceID($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasResourceID() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearResourceID() => $_clearField(1);
|
|
}
|
|
|
|
class StartWorkflowDeleteClickhouseResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowDeleteClickhouseResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowDeleteClickhouseResult._();
|
|
|
|
factory StartWorkflowDeleteClickhouseResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowDeleteClickhouseResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowDeleteClickhouseResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteClickhouseResult clone() => StartWorkflowDeleteClickhouseResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowDeleteClickhouseResult copyWith(void Function(StartWorkflowDeleteClickhouseResult) updates) => super.copyWith((message) => updates(message as StartWorkflowDeleteClickhouseResult)) as StartWorkflowDeleteClickhouseResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteClickhouseResult create() => StartWorkflowDeleteClickhouseResult._();
|
|
@$core.override
|
|
StartWorkflowDeleteClickhouseResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowDeleteClickhouseResult> createRepeated() => $pb.PbList<StartWorkflowDeleteClickhouseResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowDeleteClickhouseResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowDeleteClickhouseResult>(create);
|
|
static StartWorkflowDeleteClickhouseResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
class StartWorkflowCleanCassandraRequest extends $pb.GeneratedMessage {
|
|
factory StartWorkflowCleanCassandraRequest({
|
|
$core.String? resourceID,
|
|
}) {
|
|
final result = create();
|
|
if (resourceID != null) result.resourceID = resourceID;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowCleanCassandraRequest._();
|
|
|
|
factory StartWorkflowCleanCassandraRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowCleanCassandraRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowCleanCassandraRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOS(1, _omitFieldNames ? '' : 'ResourceID', protoName: 'ResourceID')
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCleanCassandraRequest clone() => StartWorkflowCleanCassandraRequest()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCleanCassandraRequest copyWith(void Function(StartWorkflowCleanCassandraRequest) updates) => super.copyWith((message) => updates(message as StartWorkflowCleanCassandraRequest)) as StartWorkflowCleanCassandraRequest;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCleanCassandraRequest create() => StartWorkflowCleanCassandraRequest._();
|
|
@$core.override
|
|
StartWorkflowCleanCassandraRequest createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowCleanCassandraRequest> createRepeated() => $pb.PbList<StartWorkflowCleanCassandraRequest>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCleanCassandraRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowCleanCassandraRequest>(create);
|
|
static StartWorkflowCleanCassandraRequest? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$core.String get resourceID => $_getSZ(0);
|
|
@$pb.TagNumber(1)
|
|
set resourceID($core.String value) => $_setString(0, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasResourceID() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearResourceID() => $_clearField(1);
|
|
}
|
|
|
|
class StartWorkflowCleanCassandraResult extends $pb.GeneratedMessage {
|
|
factory StartWorkflowCleanCassandraResult({
|
|
$1.WorkflowExecutionResult? workflowExecution,
|
|
}) {
|
|
final result = create();
|
|
if (workflowExecution != null) result.workflowExecution = workflowExecution;
|
|
return result;
|
|
}
|
|
|
|
StartWorkflowCleanCassandraResult._();
|
|
|
|
factory StartWorkflowCleanCassandraResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
factory StartWorkflowCleanCassandraResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
|
|
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'StartWorkflowCleanCassandraResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
..aOM<$1.WorkflowExecutionResult>(1, _omitFieldNames ? '' : 'WorkflowExecution', protoName: 'WorkflowExecution', subBuilder: $1.WorkflowExecutionResult.create)
|
|
..hasRequiredFields = false
|
|
;
|
|
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCleanCassandraResult clone() => StartWorkflowCleanCassandraResult()..mergeFromMessage(this);
|
|
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
StartWorkflowCleanCassandraResult copyWith(void Function(StartWorkflowCleanCassandraResult) updates) => super.copyWith((message) => updates(message as StartWorkflowCleanCassandraResult)) as StartWorkflowCleanCassandraResult;
|
|
|
|
@$core.override
|
|
$pb.BuilderInfo get info_ => _i;
|
|
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCleanCassandraResult create() => StartWorkflowCleanCassandraResult._();
|
|
@$core.override
|
|
StartWorkflowCleanCassandraResult createEmptyInstance() => create();
|
|
static $pb.PbList<StartWorkflowCleanCassandraResult> createRepeated() => $pb.PbList<StartWorkflowCleanCassandraResult>();
|
|
@$core.pragma('dart2js:noInline')
|
|
static StartWorkflowCleanCassandraResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<StartWorkflowCleanCassandraResult>(create);
|
|
static StartWorkflowCleanCassandraResult? _defaultInstance;
|
|
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult get workflowExecution => $_getN(0);
|
|
@$pb.TagNumber(1)
|
|
set workflowExecution($1.WorkflowExecutionResult value) => $_setField(1, value);
|
|
@$pb.TagNumber(1)
|
|
$core.bool hasWorkflowExecution() => $_has(0);
|
|
@$pb.TagNumber(1)
|
|
void clearWorkflowExecution() => $_clearField(1);
|
|
@$pb.TagNumber(1)
|
|
$1.WorkflowExecutionResult ensureWorkflowExecution() => $_ensure(0);
|
|
}
|
|
|
|
|
|
const $core.bool _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names');
|
|
const $core.bool _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');
|