You've already forked dart-core-sdk
Latest generation
This commit is contained in:
@@ -1,3 +1,3 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
Lib version: 1.11.0-SNAPSHOT-250729082707
|
Lib version: 1.11.0-SNAPSHOT-250729084434
|
||||||
|
|||||||
392
lib/org.pb.dart
392
lib/org.pb.dart
@@ -1911,398 +1911,6 @@ class DeprovisionGitOrgResult extends $pb.GeneratedMessage {
|
|||||||
static DeprovisionGitOrgResult? _defaultInstance;
|
static DeprovisionGitOrgResult? _defaultInstance;
|
||||||
}
|
}
|
||||||
|
|
||||||
class CreatePulsarRequest extends $pb.GeneratedMessage {
|
|
||||||
factory CreatePulsarRequest({
|
|
||||||
$core.String? organisationID,
|
|
||||||
$core.bool? createSubscriptions,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (organisationID != null) result.organisationID = organisationID;
|
|
||||||
if (createSubscriptions != null) result.createSubscriptions = createSubscriptions;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
CreatePulsarRequest._();
|
|
||||||
|
|
||||||
factory CreatePulsarRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreatePulsarRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreatePulsarRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
|
||||||
..aOB(3, _omitFieldNames ? '' : 'CreateSubscriptions', protoName: 'CreateSubscriptions')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarRequest clone() => CreatePulsarRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarRequest copyWith(void Function(CreatePulsarRequest) updates) => super.copyWith((message) => updates(message as CreatePulsarRequest)) as CreatePulsarRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarRequest create() => CreatePulsarRequest._();
|
|
||||||
@$core.override
|
|
||||||
CreatePulsarRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreatePulsarRequest> createRepeated() => $pb.PbList<CreatePulsarRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreatePulsarRequest>(create);
|
|
||||||
static CreatePulsarRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get organisationID => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set organisationID($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasOrganisationID() => $_has(0);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearOrganisationID() => $_clearField(2);
|
|
||||||
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool get createSubscriptions => $_getBF(1);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
set createSubscriptions($core.bool value) => $_setBool(1, value);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
$core.bool hasCreateSubscriptions() => $_has(1);
|
|
||||||
@$pb.TagNumber(3)
|
|
||||||
void clearCreateSubscriptions() => $_clearField(3);
|
|
||||||
}
|
|
||||||
|
|
||||||
class CreatePulsarSubscriptionsRequest extends $pb.GeneratedMessage {
|
|
||||||
factory CreatePulsarSubscriptionsRequest({
|
|
||||||
$core.String? organisationID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (organisationID != null) result.organisationID = organisationID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
CreatePulsarSubscriptionsRequest._();
|
|
||||||
|
|
||||||
factory CreatePulsarSubscriptionsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreatePulsarSubscriptionsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreatePulsarSubscriptionsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarSubscriptionsRequest clone() => CreatePulsarSubscriptionsRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarSubscriptionsRequest copyWith(void Function(CreatePulsarSubscriptionsRequest) updates) => super.copyWith((message) => updates(message as CreatePulsarSubscriptionsRequest)) as CreatePulsarSubscriptionsRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarSubscriptionsRequest create() => CreatePulsarSubscriptionsRequest._();
|
|
||||||
@$core.override
|
|
||||||
CreatePulsarSubscriptionsRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreatePulsarSubscriptionsRequest> createRepeated() => $pb.PbList<CreatePulsarSubscriptionsRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarSubscriptionsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreatePulsarSubscriptionsRequest>(create);
|
|
||||||
static CreatePulsarSubscriptionsRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get organisationID => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set organisationID($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasOrganisationID() => $_has(0);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearOrganisationID() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
class CreatePulsarMissPartitionsRequest extends $pb.GeneratedMessage {
|
|
||||||
factory CreatePulsarMissPartitionsRequest({
|
|
||||||
$core.String? organisationID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (organisationID != null) result.organisationID = organisationID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
CreatePulsarMissPartitionsRequest._();
|
|
||||||
|
|
||||||
factory CreatePulsarMissPartitionsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreatePulsarMissPartitionsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreatePulsarMissPartitionsRequest', 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.')
|
|
||||||
CreatePulsarMissPartitionsRequest clone() => CreatePulsarMissPartitionsRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarMissPartitionsRequest copyWith(void Function(CreatePulsarMissPartitionsRequest) updates) => super.copyWith((message) => updates(message as CreatePulsarMissPartitionsRequest)) as CreatePulsarMissPartitionsRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarMissPartitionsRequest create() => CreatePulsarMissPartitionsRequest._();
|
|
||||||
@$core.override
|
|
||||||
CreatePulsarMissPartitionsRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreatePulsarMissPartitionsRequest> createRepeated() => $pb.PbList<CreatePulsarMissPartitionsRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarMissPartitionsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreatePulsarMissPartitionsRequest>(create);
|
|
||||||
static CreatePulsarMissPartitionsRequest? _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 CreatePulsarResult extends $pb.GeneratedMessage {
|
|
||||||
factory CreatePulsarResult({
|
|
||||||
$core.String? iD,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (iD != null) result.iD = iD;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
CreatePulsarResult._();
|
|
||||||
|
|
||||||
factory CreatePulsarResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreatePulsarResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreatePulsarResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'ID', protoName: 'ID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarResult clone() => CreatePulsarResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarResult copyWith(void Function(CreatePulsarResult) updates) => super.copyWith((message) => updates(message as CreatePulsarResult)) as CreatePulsarResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarResult create() => CreatePulsarResult._();
|
|
||||||
@$core.override
|
|
||||||
CreatePulsarResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreatePulsarResult> createRepeated() => $pb.PbList<CreatePulsarResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreatePulsarResult>(create);
|
|
||||||
static CreatePulsarResult? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.String get iD => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
set iD($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
$core.bool hasID() => $_has(0);
|
|
||||||
@$pb.TagNumber(1)
|
|
||||||
void clearID() => $_clearField(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
class CreatePulsarSubscriptionsResult extends $pb.GeneratedMessage {
|
|
||||||
factory CreatePulsarSubscriptionsResult() => create();
|
|
||||||
|
|
||||||
CreatePulsarSubscriptionsResult._();
|
|
||||||
|
|
||||||
factory CreatePulsarSubscriptionsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreatePulsarSubscriptionsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreatePulsarSubscriptionsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarSubscriptionsResult clone() => CreatePulsarSubscriptionsResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarSubscriptionsResult copyWith(void Function(CreatePulsarSubscriptionsResult) updates) => super.copyWith((message) => updates(message as CreatePulsarSubscriptionsResult)) as CreatePulsarSubscriptionsResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarSubscriptionsResult create() => CreatePulsarSubscriptionsResult._();
|
|
||||||
@$core.override
|
|
||||||
CreatePulsarSubscriptionsResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreatePulsarSubscriptionsResult> createRepeated() => $pb.PbList<CreatePulsarSubscriptionsResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarSubscriptionsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreatePulsarSubscriptionsResult>(create);
|
|
||||||
static CreatePulsarSubscriptionsResult? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
class CreatePulsarMissPartitionsResult extends $pb.GeneratedMessage {
|
|
||||||
factory CreatePulsarMissPartitionsResult() => create();
|
|
||||||
|
|
||||||
CreatePulsarMissPartitionsResult._();
|
|
||||||
|
|
||||||
factory CreatePulsarMissPartitionsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreatePulsarMissPartitionsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreatePulsarMissPartitionsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarMissPartitionsResult clone() => CreatePulsarMissPartitionsResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreatePulsarMissPartitionsResult copyWith(void Function(CreatePulsarMissPartitionsResult) updates) => super.copyWith((message) => updates(message as CreatePulsarMissPartitionsResult)) as CreatePulsarMissPartitionsResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarMissPartitionsResult create() => CreatePulsarMissPartitionsResult._();
|
|
||||||
@$core.override
|
|
||||||
CreatePulsarMissPartitionsResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreatePulsarMissPartitionsResult> createRepeated() => $pb.PbList<CreatePulsarMissPartitionsResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreatePulsarMissPartitionsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreatePulsarMissPartitionsResult>(create);
|
|
||||||
static CreatePulsarMissPartitionsResult? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
class CreateAllPulsarMissPartitionsRequest extends $pb.GeneratedMessage {
|
|
||||||
factory CreateAllPulsarMissPartitionsRequest() => create();
|
|
||||||
|
|
||||||
CreateAllPulsarMissPartitionsRequest._();
|
|
||||||
|
|
||||||
factory CreateAllPulsarMissPartitionsRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreateAllPulsarMissPartitionsRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAllPulsarMissPartitionsRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreateAllPulsarMissPartitionsRequest clone() => CreateAllPulsarMissPartitionsRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreateAllPulsarMissPartitionsRequest copyWith(void Function(CreateAllPulsarMissPartitionsRequest) updates) => super.copyWith((message) => updates(message as CreateAllPulsarMissPartitionsRequest)) as CreateAllPulsarMissPartitionsRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreateAllPulsarMissPartitionsRequest create() => CreateAllPulsarMissPartitionsRequest._();
|
|
||||||
@$core.override
|
|
||||||
CreateAllPulsarMissPartitionsRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreateAllPulsarMissPartitionsRequest> createRepeated() => $pb.PbList<CreateAllPulsarMissPartitionsRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreateAllPulsarMissPartitionsRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateAllPulsarMissPartitionsRequest>(create);
|
|
||||||
static CreateAllPulsarMissPartitionsRequest? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
class CreateAllPulsarMissPartitionsResult extends $pb.GeneratedMessage {
|
|
||||||
factory CreateAllPulsarMissPartitionsResult() => create();
|
|
||||||
|
|
||||||
CreateAllPulsarMissPartitionsResult._();
|
|
||||||
|
|
||||||
factory CreateAllPulsarMissPartitionsResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory CreateAllPulsarMissPartitionsResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateAllPulsarMissPartitionsResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreateAllPulsarMissPartitionsResult clone() => CreateAllPulsarMissPartitionsResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
CreateAllPulsarMissPartitionsResult copyWith(void Function(CreateAllPulsarMissPartitionsResult) updates) => super.copyWith((message) => updates(message as CreateAllPulsarMissPartitionsResult)) as CreateAllPulsarMissPartitionsResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreateAllPulsarMissPartitionsResult create() => CreateAllPulsarMissPartitionsResult._();
|
|
||||||
@$core.override
|
|
||||||
CreateAllPulsarMissPartitionsResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<CreateAllPulsarMissPartitionsResult> createRepeated() => $pb.PbList<CreateAllPulsarMissPartitionsResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static CreateAllPulsarMissPartitionsResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<CreateAllPulsarMissPartitionsResult>(create);
|
|
||||||
static CreateAllPulsarMissPartitionsResult? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeletePulsarRequest extends $pb.GeneratedMessage {
|
|
||||||
factory DeletePulsarRequest({
|
|
||||||
$core.String? organisationID,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (organisationID != null) result.organisationID = organisationID;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
DeletePulsarRequest._();
|
|
||||||
|
|
||||||
factory DeletePulsarRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeletePulsarRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeletePulsarRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..aOS(2, _omitFieldNames ? '' : 'OrganisationID', protoName: 'OrganisationID')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeletePulsarRequest clone() => DeletePulsarRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeletePulsarRequest copyWith(void Function(DeletePulsarRequest) updates) => super.copyWith((message) => updates(message as DeletePulsarRequest)) as DeletePulsarRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeletePulsarRequest create() => DeletePulsarRequest._();
|
|
||||||
@$core.override
|
|
||||||
DeletePulsarRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeletePulsarRequest> createRepeated() => $pb.PbList<DeletePulsarRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeletePulsarRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeletePulsarRequest>(create);
|
|
||||||
static DeletePulsarRequest? _defaultInstance;
|
|
||||||
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.String get organisationID => $_getSZ(0);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set organisationID($core.String value) => $_setString(0, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasOrganisationID() => $_has(0);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearOrganisationID() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeletePulsarResult extends $pb.GeneratedMessage {
|
|
||||||
factory DeletePulsarResult() => create();
|
|
||||||
|
|
||||||
DeletePulsarResult._();
|
|
||||||
|
|
||||||
factory DeletePulsarResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory DeletePulsarResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeletePulsarResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeletePulsarResult clone() => DeletePulsarResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
DeletePulsarResult copyWith(void Function(DeletePulsarResult) updates) => super.copyWith((message) => updates(message as DeletePulsarResult)) as DeletePulsarResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeletePulsarResult create() => DeletePulsarResult._();
|
|
||||||
@$core.override
|
|
||||||
DeletePulsarResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<DeletePulsarResult> createRepeated() => $pb.PbList<DeletePulsarResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static DeletePulsarResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<DeletePulsarResult>(create);
|
|
||||||
static DeletePulsarResult? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeleteOrganisationInDBRequest extends $pb.GeneratedMessage {
|
class DeleteOrganisationInDBRequest extends $pb.GeneratedMessage {
|
||||||
factory DeleteOrganisationInDBRequest({
|
factory DeleteOrganisationInDBRequest({
|
||||||
$core.String? organisationID,
|
$core.String? organisationID,
|
||||||
|
|||||||
@@ -112,26 +112,6 @@ class OrganisationServiceClient extends $grpc.Client {
|
|||||||
return $createUnaryCall(_$deprovisionGitOrg, request, options: options);
|
return $createUnaryCall(_$deprovisionGitOrg, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CreatePulsarResult> createPulsar($0.CreatePulsarRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$createPulsar, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CreatePulsarSubscriptionsResult> createPulsarSubscriptions($0.CreatePulsarSubscriptionsRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$createPulsarSubscriptions, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.DeletePulsarResult> deletePulsar($0.DeletePulsarRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$deletePulsar, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CreatePulsarMissPartitionsResult> createPulsarMissPartitions($0.CreatePulsarMissPartitionsRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$createPulsarMissPartitions, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CreateAllPulsarMissPartitionsResult> createAllPulsarMissPartitions($0.CreateAllPulsarMissPartitionsRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$createAllPulsarMissPartitions, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.DeleteOrganisationInDBResult> deleteOrganisationInDB($0.DeleteOrganisationInDBRequest request, {$grpc.CallOptions? options,}) {
|
$grpc.ResponseFuture<$0.DeleteOrganisationInDBResult> deleteOrganisationInDB($0.DeleteOrganisationInDBRequest request, {$grpc.CallOptions? options,}) {
|
||||||
return $createUnaryCall(_$deleteOrganisationInDB, request, options: options);
|
return $createUnaryCall(_$deleteOrganisationInDB, request, options: options);
|
||||||
}
|
}
|
||||||
@@ -218,26 +198,6 @@ class OrganisationServiceClient extends $grpc.Client {
|
|||||||
'/api.OrganisationService/DeprovisionGitOrg',
|
'/api.OrganisationService/DeprovisionGitOrg',
|
||||||
($0.DeprovisionGitOrgRequest value) => value.writeToBuffer(),
|
($0.DeprovisionGitOrgRequest value) => value.writeToBuffer(),
|
||||||
$0.DeprovisionGitOrgResult.fromBuffer);
|
$0.DeprovisionGitOrgResult.fromBuffer);
|
||||||
static final _$createPulsar = $grpc.ClientMethod<$0.CreatePulsarRequest, $0.CreatePulsarResult>(
|
|
||||||
'/api.OrganisationService/CreatePulsar',
|
|
||||||
($0.CreatePulsarRequest value) => value.writeToBuffer(),
|
|
||||||
$0.CreatePulsarResult.fromBuffer);
|
|
||||||
static final _$createPulsarSubscriptions = $grpc.ClientMethod<$0.CreatePulsarSubscriptionsRequest, $0.CreatePulsarSubscriptionsResult>(
|
|
||||||
'/api.OrganisationService/CreatePulsarSubscriptions',
|
|
||||||
($0.CreatePulsarSubscriptionsRequest value) => value.writeToBuffer(),
|
|
||||||
$0.CreatePulsarSubscriptionsResult.fromBuffer);
|
|
||||||
static final _$deletePulsar = $grpc.ClientMethod<$0.DeletePulsarRequest, $0.DeletePulsarResult>(
|
|
||||||
'/api.OrganisationService/DeletePulsar',
|
|
||||||
($0.DeletePulsarRequest value) => value.writeToBuffer(),
|
|
||||||
$0.DeletePulsarResult.fromBuffer);
|
|
||||||
static final _$createPulsarMissPartitions = $grpc.ClientMethod<$0.CreatePulsarMissPartitionsRequest, $0.CreatePulsarMissPartitionsResult>(
|
|
||||||
'/api.OrganisationService/CreatePulsarMissPartitions',
|
|
||||||
($0.CreatePulsarMissPartitionsRequest value) => value.writeToBuffer(),
|
|
||||||
$0.CreatePulsarMissPartitionsResult.fromBuffer);
|
|
||||||
static final _$createAllPulsarMissPartitions = $grpc.ClientMethod<$0.CreateAllPulsarMissPartitionsRequest, $0.CreateAllPulsarMissPartitionsResult>(
|
|
||||||
'/api.OrganisationService/CreateAllPulsarMissPartitions',
|
|
||||||
($0.CreateAllPulsarMissPartitionsRequest value) => value.writeToBuffer(),
|
|
||||||
$0.CreateAllPulsarMissPartitionsResult.fromBuffer);
|
|
||||||
static final _$deleteOrganisationInDB = $grpc.ClientMethod<$0.DeleteOrganisationInDBRequest, $0.DeleteOrganisationInDBResult>(
|
static final _$deleteOrganisationInDB = $grpc.ClientMethod<$0.DeleteOrganisationInDBRequest, $0.DeleteOrganisationInDBResult>(
|
||||||
'/api.OrganisationService/DeleteOrganisationInDB',
|
'/api.OrganisationService/DeleteOrganisationInDB',
|
||||||
($0.DeleteOrganisationInDBRequest value) => value.writeToBuffer(),
|
($0.DeleteOrganisationInDBRequest value) => value.writeToBuffer(),
|
||||||
@@ -389,41 +349,6 @@ abstract class OrganisationServiceBase extends $grpc.Service {
|
|||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $0.DeprovisionGitOrgRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $0.DeprovisionGitOrgRequest.fromBuffer(value),
|
||||||
($0.DeprovisionGitOrgResult value) => value.writeToBuffer()));
|
($0.DeprovisionGitOrgResult value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$0.CreatePulsarRequest, $0.CreatePulsarResult>(
|
|
||||||
'CreatePulsar',
|
|
||||||
createPulsar_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.CreatePulsarRequest.fromBuffer(value),
|
|
||||||
($0.CreatePulsarResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.CreatePulsarSubscriptionsRequest, $0.CreatePulsarSubscriptionsResult>(
|
|
||||||
'CreatePulsarSubscriptions',
|
|
||||||
createPulsarSubscriptions_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.CreatePulsarSubscriptionsRequest.fromBuffer(value),
|
|
||||||
($0.CreatePulsarSubscriptionsResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.DeletePulsarRequest, $0.DeletePulsarResult>(
|
|
||||||
'DeletePulsar',
|
|
||||||
deletePulsar_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.DeletePulsarRequest.fromBuffer(value),
|
|
||||||
($0.DeletePulsarResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.CreatePulsarMissPartitionsRequest, $0.CreatePulsarMissPartitionsResult>(
|
|
||||||
'CreatePulsarMissPartitions',
|
|
||||||
createPulsarMissPartitions_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.CreatePulsarMissPartitionsRequest.fromBuffer(value),
|
|
||||||
($0.CreatePulsarMissPartitionsResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.CreateAllPulsarMissPartitionsRequest, $0.CreateAllPulsarMissPartitionsResult>(
|
|
||||||
'CreateAllPulsarMissPartitions',
|
|
||||||
createAllPulsarMissPartitions_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.CreateAllPulsarMissPartitionsRequest.fromBuffer(value),
|
|
||||||
($0.CreateAllPulsarMissPartitionsResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.DeleteOrganisationInDBRequest, $0.DeleteOrganisationInDBResult>(
|
$addMethod($grpc.ServiceMethod<$0.DeleteOrganisationInDBRequest, $0.DeleteOrganisationInDBResult>(
|
||||||
'DeleteOrganisationInDB',
|
'DeleteOrganisationInDB',
|
||||||
deleteOrganisationInDB_Pre,
|
deleteOrganisationInDB_Pre,
|
||||||
@@ -553,36 +478,6 @@ abstract class OrganisationServiceBase extends $grpc.Service {
|
|||||||
|
|
||||||
$async.Future<$0.DeprovisionGitOrgResult> deprovisionGitOrg($grpc.ServiceCall call, $0.DeprovisionGitOrgRequest request);
|
$async.Future<$0.DeprovisionGitOrgResult> deprovisionGitOrg($grpc.ServiceCall call, $0.DeprovisionGitOrgRequest request);
|
||||||
|
|
||||||
$async.Future<$0.CreatePulsarResult> createPulsar_Pre($grpc.ServiceCall $call, $async.Future<$0.CreatePulsarRequest> $request) async {
|
|
||||||
return createPulsar($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.CreatePulsarResult> createPulsar($grpc.ServiceCall call, $0.CreatePulsarRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.CreatePulsarSubscriptionsResult> createPulsarSubscriptions_Pre($grpc.ServiceCall $call, $async.Future<$0.CreatePulsarSubscriptionsRequest> $request) async {
|
|
||||||
return createPulsarSubscriptions($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.CreatePulsarSubscriptionsResult> createPulsarSubscriptions($grpc.ServiceCall call, $0.CreatePulsarSubscriptionsRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.DeletePulsarResult> deletePulsar_Pre($grpc.ServiceCall $call, $async.Future<$0.DeletePulsarRequest> $request) async {
|
|
||||||
return deletePulsar($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.DeletePulsarResult> deletePulsar($grpc.ServiceCall call, $0.DeletePulsarRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.CreatePulsarMissPartitionsResult> createPulsarMissPartitions_Pre($grpc.ServiceCall $call, $async.Future<$0.CreatePulsarMissPartitionsRequest> $request) async {
|
|
||||||
return createPulsarMissPartitions($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.CreatePulsarMissPartitionsResult> createPulsarMissPartitions($grpc.ServiceCall call, $0.CreatePulsarMissPartitionsRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.CreateAllPulsarMissPartitionsResult> createAllPulsarMissPartitions_Pre($grpc.ServiceCall $call, $async.Future<$0.CreateAllPulsarMissPartitionsRequest> $request) async {
|
|
||||||
return createAllPulsarMissPartitions($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.CreateAllPulsarMissPartitionsResult> createAllPulsarMissPartitions($grpc.ServiceCall call, $0.CreateAllPulsarMissPartitionsRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.DeleteOrganisationInDBResult> deleteOrganisationInDB_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteOrganisationInDBRequest> $request) async {
|
$async.Future<$0.DeleteOrganisationInDBResult> deleteOrganisationInDB_Pre($grpc.ServiceCall $call, $async.Future<$0.DeleteOrganisationInDBRequest> $request) async {
|
||||||
return deleteOrganisationInDB($call, await $request);
|
return deleteOrganisationInDB($call, await $request);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -560,121 +560,6 @@ const DeprovisionGitOrgResult$json = {
|
|||||||
final $typed_data.Uint8List deprovisionGitOrgResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List deprovisionGitOrgResultDescriptor = $convert.base64Decode(
|
||||||
'ChdEZXByb3Zpc2lvbkdpdE9yZ1Jlc3VsdA==');
|
'ChdEZXByb3Zpc2lvbkdpdE9yZ1Jlc3VsdA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use createPulsarRequestDescriptor instead')
|
|
||||||
const CreatePulsarRequest$json = {
|
|
||||||
'1': 'CreatePulsarRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'OrganisationID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'OrganisationID'},
|
|
||||||
{'1': 'CreateSubscriptions', '3': 3, '4': 1, '5': 8, '10': 'CreateSubscriptions'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreatePulsarRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createPulsarRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChNDcmVhdGVQdWxzYXJSZXF1ZXN0Ei8KDk9yZ2FuaXNhdGlvbklEGAIgASgJQgf6QgRyAhABUg'
|
|
||||||
'5PcmdhbmlzYXRpb25JRBIwChNDcmVhdGVTdWJzY3JpcHRpb25zGAMgASgIUhNDcmVhdGVTdWJz'
|
|
||||||
'Y3JpcHRpb25zOhaSQRMKEdIBDk9yZ2FuaXNhdGlvbklk');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createPulsarSubscriptionsRequestDescriptor instead')
|
|
||||||
const CreatePulsarSubscriptionsRequest$json = {
|
|
||||||
'1': 'CreatePulsarSubscriptionsRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'OrganisationID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'OrganisationID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreatePulsarSubscriptionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createPulsarSubscriptionsRequestDescriptor = $convert.base64Decode(
|
|
||||||
'CiBDcmVhdGVQdWxzYXJTdWJzY3JpcHRpb25zUmVxdWVzdBIvCg5PcmdhbmlzYXRpb25JRBgCIA'
|
|
||||||
'EoCUIH+kIEcgIQAVIOT3JnYW5pc2F0aW9uSUQ6FpJBEwoR0gEOT3JnYW5pc2F0aW9uSWQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createPulsarMissPartitionsRequestDescriptor instead')
|
|
||||||
const CreatePulsarMissPartitionsRequest$json = {
|
|
||||||
'1': 'CreatePulsarMissPartitionsRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'OrganisationID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'OrganisationID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreatePulsarMissPartitionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createPulsarMissPartitionsRequestDescriptor = $convert.base64Decode(
|
|
||||||
'CiFDcmVhdGVQdWxzYXJNaXNzUGFydGl0aW9uc1JlcXVlc3QSLwoOT3JnYW5pc2F0aW9uSUQYAS'
|
|
||||||
'ABKAlCB/pCBHICEAFSDk9yZ2FuaXNhdGlvbklEOhaSQRMKEdIBDk9yZ2FuaXNhdGlvbklk');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createPulsarResultDescriptor instead')
|
|
||||||
const CreatePulsarResult$json = {
|
|
||||||
'1': 'CreatePulsarResult',
|
|
||||||
'2': [
|
|
||||||
{'1': 'ID', '3': 1, '4': 1, '5': 9, '10': 'ID'},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreatePulsarResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createPulsarResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChJDcmVhdGVQdWxzYXJSZXN1bHQSDgoCSUQYASABKAlSAklE');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createPulsarSubscriptionsResultDescriptor instead')
|
|
||||||
const CreatePulsarSubscriptionsResult$json = {
|
|
||||||
'1': 'CreatePulsarSubscriptionsResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreatePulsarSubscriptionsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createPulsarSubscriptionsResultDescriptor = $convert.base64Decode(
|
|
||||||
'Ch9DcmVhdGVQdWxzYXJTdWJzY3JpcHRpb25zUmVzdWx0');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createPulsarMissPartitionsResultDescriptor instead')
|
|
||||||
const CreatePulsarMissPartitionsResult$json = {
|
|
||||||
'1': 'CreatePulsarMissPartitionsResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreatePulsarMissPartitionsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createPulsarMissPartitionsResultDescriptor = $convert.base64Decode(
|
|
||||||
'CiBDcmVhdGVQdWxzYXJNaXNzUGFydGl0aW9uc1Jlc3VsdA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createAllPulsarMissPartitionsRequestDescriptor instead')
|
|
||||||
const CreateAllPulsarMissPartitionsRequest$json = {
|
|
||||||
'1': 'CreateAllPulsarMissPartitionsRequest',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreateAllPulsarMissPartitionsRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createAllPulsarMissPartitionsRequestDescriptor = $convert.base64Decode(
|
|
||||||
'CiRDcmVhdGVBbGxQdWxzYXJNaXNzUGFydGl0aW9uc1JlcXVlc3Q=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use createAllPulsarMissPartitionsResultDescriptor instead')
|
|
||||||
const CreateAllPulsarMissPartitionsResult$json = {
|
|
||||||
'1': 'CreateAllPulsarMissPartitionsResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `CreateAllPulsarMissPartitionsResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List createAllPulsarMissPartitionsResultDescriptor = $convert.base64Decode(
|
|
||||||
'CiNDcmVhdGVBbGxQdWxzYXJNaXNzUGFydGl0aW9uc1Jlc3VsdA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deletePulsarRequestDescriptor instead')
|
|
||||||
const DeletePulsarRequest$json = {
|
|
||||||
'1': 'DeletePulsarRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'OrganisationID', '3': 2, '4': 1, '5': 9, '8': {}, '10': 'OrganisationID'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeletePulsarRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deletePulsarRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChNEZWxldGVQdWxzYXJSZXF1ZXN0Ei8KDk9yZ2FuaXNhdGlvbklEGAIgASgJQgf6QgRyAhABUg'
|
|
||||||
'5PcmdhbmlzYXRpb25JRDoWkkETChHSAQ5PcmdhbmlzYXRpb25JZA==');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deletePulsarResultDescriptor instead')
|
|
||||||
const DeletePulsarResult$json = {
|
|
||||||
'1': 'DeletePulsarResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `DeletePulsarResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List deletePulsarResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChJEZWxldGVQdWxzYXJSZXN1bHQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteOrganisationInDBRequestDescriptor instead')
|
@$core.Deprecated('Use deleteOrganisationInDBRequestDescriptor instead')
|
||||||
const DeleteOrganisationInDBRequest$json = {
|
const DeleteOrganisationInDBRequest$json = {
|
||||||
'1': 'DeleteOrganisationInDBRequest',
|
'1': 'DeleteOrganisationInDBRequest',
|
||||||
|
|||||||
@@ -1092,94 +1092,6 @@ class CreateClickhouseResult extends $pb.GeneratedMessage {
|
|||||||
void clearID() => $_clearField(1);
|
void clearID() => $_clearField(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
class OptimizeClickhouseRequest extends $pb.GeneratedMessage {
|
|
||||||
factory OptimizeClickhouseRequest({
|
|
||||||
$core.String? projectID,
|
|
||||||
$core.bool? final_2,
|
|
||||||
}) {
|
|
||||||
final result = create();
|
|
||||||
if (projectID != null) result.projectID = projectID;
|
|
||||||
if (final_2 != null) result.final_2 = final_2;
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
OptimizeClickhouseRequest._();
|
|
||||||
|
|
||||||
factory OptimizeClickhouseRequest.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory OptimizeClickhouseRequest.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OptimizeClickhouseRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID')
|
|
||||||
..aOB(2, _omitFieldNames ? '' : 'Final', protoName: 'Final')
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
OptimizeClickhouseRequest clone() => OptimizeClickhouseRequest()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
OptimizeClickhouseRequest copyWith(void Function(OptimizeClickhouseRequest) updates) => super.copyWith((message) => updates(message as OptimizeClickhouseRequest)) as OptimizeClickhouseRequest;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static OptimizeClickhouseRequest create() => OptimizeClickhouseRequest._();
|
|
||||||
@$core.override
|
|
||||||
OptimizeClickhouseRequest createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<OptimizeClickhouseRequest> createRepeated() => $pb.PbList<OptimizeClickhouseRequest>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static OptimizeClickhouseRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<OptimizeClickhouseRequest>(create);
|
|
||||||
static OptimizeClickhouseRequest? _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.bool get final_2 => $_getBF(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
set final_2($core.bool value) => $_setBool(1, value);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
$core.bool hasFinal_2() => $_has(1);
|
|
||||||
@$pb.TagNumber(2)
|
|
||||||
void clearFinal_2() => $_clearField(2);
|
|
||||||
}
|
|
||||||
|
|
||||||
class OptimizeClickhouseResult extends $pb.GeneratedMessage {
|
|
||||||
factory OptimizeClickhouseResult() => create();
|
|
||||||
|
|
||||||
OptimizeClickhouseResult._();
|
|
||||||
|
|
||||||
factory OptimizeClickhouseResult.fromBuffer($core.List<$core.int> data, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(data, registry);
|
|
||||||
factory OptimizeClickhouseResult.fromJson($core.String json, [$pb.ExtensionRegistry registry = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(json, registry);
|
|
||||||
|
|
||||||
static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'OptimizeClickhouseResult', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create)
|
|
||||||
..hasRequiredFields = false
|
|
||||||
;
|
|
||||||
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
OptimizeClickhouseResult clone() => OptimizeClickhouseResult()..mergeFromMessage(this);
|
|
||||||
@$core.Deprecated('See https://github.com/google/protobuf.dart/issues/998.')
|
|
||||||
OptimizeClickhouseResult copyWith(void Function(OptimizeClickhouseResult) updates) => super.copyWith((message) => updates(message as OptimizeClickhouseResult)) as OptimizeClickhouseResult;
|
|
||||||
|
|
||||||
@$core.override
|
|
||||||
$pb.BuilderInfo get info_ => _i;
|
|
||||||
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static OptimizeClickhouseResult create() => OptimizeClickhouseResult._();
|
|
||||||
@$core.override
|
|
||||||
OptimizeClickhouseResult createEmptyInstance() => create();
|
|
||||||
static $pb.PbList<OptimizeClickhouseResult> createRepeated() => $pb.PbList<OptimizeClickhouseResult>();
|
|
||||||
@$core.pragma('dart2js:noInline')
|
|
||||||
static OptimizeClickhouseResult getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor<OptimizeClickhouseResult>(create);
|
|
||||||
static OptimizeClickhouseResult? _defaultInstance;
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeleteCassandraRequest extends $pb.GeneratedMessage {
|
class DeleteCassandraRequest extends $pb.GeneratedMessage {
|
||||||
factory DeleteCassandraRequest({
|
factory DeleteCassandraRequest({
|
||||||
$core.String? projectID,
|
$core.String? projectID,
|
||||||
|
|||||||
@@ -92,10 +92,6 @@ class ProjectServiceClient extends $grpc.Client {
|
|||||||
return $createUnaryCall(_$deleteCassandra, request, options: options);
|
return $createUnaryCall(_$deleteCassandra, request, options: options);
|
||||||
}
|
}
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.OptimizeClickhouseResult> optimizeClickhouse($0.OptimizeClickhouseRequest request, {$grpc.CallOptions? options,}) {
|
|
||||||
return $createUnaryCall(_$optimizeClickhouse, request, options: options);
|
|
||||||
}
|
|
||||||
|
|
||||||
$grpc.ResponseFuture<$0.CleanDeletedProjectsResult> cleanDeletedProjects($0.CleanDeletedProjectsRequest request, {$grpc.CallOptions? options,}) {
|
$grpc.ResponseFuture<$0.CleanDeletedProjectsResult> cleanDeletedProjects($0.CleanDeletedProjectsRequest request, {$grpc.CallOptions? options,}) {
|
||||||
return $createUnaryCall(_$cleanDeletedProjects, request, options: options);
|
return $createUnaryCall(_$cleanDeletedProjects, request, options: options);
|
||||||
}
|
}
|
||||||
@@ -162,10 +158,6 @@ class ProjectServiceClient extends $grpc.Client {
|
|||||||
'/api.ProjectService/DeleteCassandra',
|
'/api.ProjectService/DeleteCassandra',
|
||||||
($0.DeleteCassandraRequest value) => value.writeToBuffer(),
|
($0.DeleteCassandraRequest value) => value.writeToBuffer(),
|
||||||
$0.DeleteCassandraResult.fromBuffer);
|
$0.DeleteCassandraResult.fromBuffer);
|
||||||
static final _$optimizeClickhouse = $grpc.ClientMethod<$0.OptimizeClickhouseRequest, $0.OptimizeClickhouseResult>(
|
|
||||||
'/api.ProjectService/OptimizeClickhouse',
|
|
||||||
($0.OptimizeClickhouseRequest value) => value.writeToBuffer(),
|
|
||||||
$0.OptimizeClickhouseResult.fromBuffer);
|
|
||||||
static final _$cleanDeletedProjects = $grpc.ClientMethod<$0.CleanDeletedProjectsRequest, $0.CleanDeletedProjectsResult>(
|
static final _$cleanDeletedProjects = $grpc.ClientMethod<$0.CleanDeletedProjectsRequest, $0.CleanDeletedProjectsResult>(
|
||||||
'/api.ProjectService/CleanDeletedProjects',
|
'/api.ProjectService/CleanDeletedProjects',
|
||||||
($0.CleanDeletedProjectsRequest value) => value.writeToBuffer(),
|
($0.CleanDeletedProjectsRequest value) => value.writeToBuffer(),
|
||||||
@@ -282,13 +274,6 @@ abstract class ProjectServiceBase extends $grpc.Service {
|
|||||||
false,
|
false,
|
||||||
($core.List<$core.int> value) => $0.DeleteCassandraRequest.fromBuffer(value),
|
($core.List<$core.int> value) => $0.DeleteCassandraRequest.fromBuffer(value),
|
||||||
($0.DeleteCassandraResult value) => value.writeToBuffer()));
|
($0.DeleteCassandraResult value) => value.writeToBuffer()));
|
||||||
$addMethod($grpc.ServiceMethod<$0.OptimizeClickhouseRequest, $0.OptimizeClickhouseResult>(
|
|
||||||
'OptimizeClickhouse',
|
|
||||||
optimizeClickhouse_Pre,
|
|
||||||
false,
|
|
||||||
false,
|
|
||||||
($core.List<$core.int> value) => $0.OptimizeClickhouseRequest.fromBuffer(value),
|
|
||||||
($0.OptimizeClickhouseResult value) => value.writeToBuffer()));
|
|
||||||
$addMethod($grpc.ServiceMethod<$0.CleanDeletedProjectsRequest, $0.CleanDeletedProjectsResult>(
|
$addMethod($grpc.ServiceMethod<$0.CleanDeletedProjectsRequest, $0.CleanDeletedProjectsResult>(
|
||||||
'CleanDeletedProjects',
|
'CleanDeletedProjects',
|
||||||
cleanDeletedProjects_Pre,
|
cleanDeletedProjects_Pre,
|
||||||
@@ -388,12 +373,6 @@ abstract class ProjectServiceBase extends $grpc.Service {
|
|||||||
|
|
||||||
$async.Future<$0.DeleteCassandraResult> deleteCassandra($grpc.ServiceCall call, $0.DeleteCassandraRequest request);
|
$async.Future<$0.DeleteCassandraResult> deleteCassandra($grpc.ServiceCall call, $0.DeleteCassandraRequest request);
|
||||||
|
|
||||||
$async.Future<$0.OptimizeClickhouseResult> optimizeClickhouse_Pre($grpc.ServiceCall $call, $async.Future<$0.OptimizeClickhouseRequest> $request) async {
|
|
||||||
return optimizeClickhouse($call, await $request);
|
|
||||||
}
|
|
||||||
|
|
||||||
$async.Future<$0.OptimizeClickhouseResult> optimizeClickhouse($grpc.ServiceCall call, $0.OptimizeClickhouseRequest request);
|
|
||||||
|
|
||||||
$async.Future<$0.CleanDeletedProjectsResult> cleanDeletedProjects_Pre($grpc.ServiceCall $call, $async.Future<$0.CleanDeletedProjectsRequest> $request) async {
|
$async.Future<$0.CleanDeletedProjectsResult> cleanDeletedProjects_Pre($grpc.ServiceCall $call, $async.Future<$0.CleanDeletedProjectsRequest> $request) async {
|
||||||
return cleanDeletedProjects($call, await $request);
|
return cleanDeletedProjects($call, await $request);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -323,30 +323,6 @@ const CreateClickhouseResult$json = {
|
|||||||
final $typed_data.Uint8List createClickhouseResultDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List createClickhouseResultDescriptor = $convert.base64Decode(
|
||||||
'ChZDcmVhdGVDbGlja2hvdXNlUmVzdWx0Eg4KAklEGAEgASgJUgJJRA==');
|
'ChZDcmVhdGVDbGlja2hvdXNlUmVzdWx0Eg4KAklEGAEgASgJUgJJRA==');
|
||||||
|
|
||||||
@$core.Deprecated('Use optimizeClickhouseRequestDescriptor instead')
|
|
||||||
const OptimizeClickhouseRequest$json = {
|
|
||||||
'1': 'OptimizeClickhouseRequest',
|
|
||||||
'2': [
|
|
||||||
{'1': 'ProjectID', '3': 1, '4': 1, '5': 9, '8': {}, '10': 'ProjectID'},
|
|
||||||
{'1': 'Final', '3': 2, '4': 1, '5': 8, '10': 'Final'},
|
|
||||||
],
|
|
||||||
'7': {},
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `OptimizeClickhouseRequest`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List optimizeClickhouseRequestDescriptor = $convert.base64Decode(
|
|
||||||
'ChlPcHRpbWl6ZUNsaWNraG91c2VSZXF1ZXN0EiUKCVByb2plY3RJRBgBIAEoCUIH+kIEcgIQAV'
|
|
||||||
'IJUHJvamVjdElEEhQKBUZpbmFsGAIgASgIUgVGaW5hbDoRkkEOCgzSAQlQcm9qZWN0SUQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use optimizeClickhouseResultDescriptor instead')
|
|
||||||
const OptimizeClickhouseResult$json = {
|
|
||||||
'1': 'OptimizeClickhouseResult',
|
|
||||||
};
|
|
||||||
|
|
||||||
/// Descriptor for `OptimizeClickhouseResult`. Decode as a `google.protobuf.DescriptorProto`.
|
|
||||||
final $typed_data.Uint8List optimizeClickhouseResultDescriptor = $convert.base64Decode(
|
|
||||||
'ChhPcHRpbWl6ZUNsaWNraG91c2VSZXN1bHQ=');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use deleteCassandraRequestDescriptor instead')
|
@$core.Deprecated('Use deleteCassandraRequestDescriptor instead')
|
||||||
const DeleteCassandraRequest$json = {
|
const DeleteCassandraRequest$json = {
|
||||||
'1': 'DeleteCassandraRequest',
|
'1': 'DeleteCassandraRequest',
|
||||||
|
|||||||
@@ -131,17 +131,17 @@ class WorkflowTypeEnum extends $pb.ProtobufEnum {
|
|||||||
static const WorkflowTypeEnum DELETE_CONNECTION = WorkflowTypeEnum._(4, _omitEnumNames ? '' : 'DELETE_CONNECTION');
|
static const WorkflowTypeEnum DELETE_CONNECTION = WorkflowTypeEnum._(4, _omitEnumNames ? '' : 'DELETE_CONNECTION');
|
||||||
static const WorkflowTypeEnum BILLING = WorkflowTypeEnum._(5, _omitEnumNames ? '' : 'BILLING');
|
static const WorkflowTypeEnum BILLING = WorkflowTypeEnum._(5, _omitEnumNames ? '' : 'BILLING');
|
||||||
static const WorkflowTypeEnum EXTRACT_DATA = WorkflowTypeEnum._(6, _omitEnumNames ? '' : 'EXTRACT_DATA');
|
static const WorkflowTypeEnum EXTRACT_DATA = WorkflowTypeEnum._(6, _omitEnumNames ? '' : 'EXTRACT_DATA');
|
||||||
static const WorkflowTypeEnum STOP_FLINK = WorkflowTypeEnum._(7, _omitEnumNames ? '' : 'STOP_FLINK');
|
/// STOP_FLINK = 7; deprecated
|
||||||
static const WorkflowTypeEnum START_FLINK = WorkflowTypeEnum._(8, _omitEnumNames ? '' : 'START_FLINK');
|
/// START_FLINK = 8; deprecated
|
||||||
static const WorkflowTypeEnum STOP_IDLE_FLINK = WorkflowTypeEnum._(9, _omitEnumNames ? '' : 'STOP_IDLE_FLINK');
|
/// STOP_IDLE_FLINK = 9; deprecated
|
||||||
static const WorkflowTypeEnum OPTIMIZE_CLICKHOUSE = WorkflowTypeEnum._(10, _omitEnumNames ? '' : 'OPTIMIZE_CLICKHOUSE');
|
static const WorkflowTypeEnum OPTIMIZE_CLICKHOUSE = WorkflowTypeEnum._(10, _omitEnumNames ? '' : 'OPTIMIZE_CLICKHOUSE');
|
||||||
static const WorkflowTypeEnum WAKEUP_FLINK = WorkflowTypeEnum._(11, _omitEnumNames ? '' : 'WAKEUP_FLINK');
|
/// WAKEUP_FLINK = 11; deprecated
|
||||||
static const WorkflowTypeEnum CREATE_ORGANISATION = WorkflowTypeEnum._(12, _omitEnumNames ? '' : 'CREATE_ORGANISATION');
|
static const WorkflowTypeEnum CREATE_ORGANISATION = WorkflowTypeEnum._(12, _omitEnumNames ? '' : 'CREATE_ORGANISATION');
|
||||||
static const WorkflowTypeEnum DELETE_ORGANISATION = WorkflowTypeEnum._(13, _omitEnumNames ? '' : 'DELETE_ORGANISATION');
|
static const WorkflowTypeEnum DELETE_ORGANISATION = WorkflowTypeEnum._(13, _omitEnumNames ? '' : 'DELETE_ORGANISATION');
|
||||||
static const WorkflowTypeEnum PROVISION_PULSAR_DOMAIN = WorkflowTypeEnum._(14, _omitEnumNames ? '' : 'PROVISION_PULSAR_DOMAIN');
|
/// PROVISION_PULSAR_DOMAIN = 14; deprecated
|
||||||
static const WorkflowTypeEnum DEPROVISION_PULSAR_DOMAIN = WorkflowTypeEnum._(15, _omitEnumNames ? '' : 'DEPROVISION_PULSAR_DOMAIN');
|
/// DEPROVISION_PULSAR_DOMAIN = 15; deprecated
|
||||||
static const WorkflowTypeEnum PROVISION_PULSAR_ORGANISATION = WorkflowTypeEnum._(16, _omitEnumNames ? '' : 'PROVISION_PULSAR_ORGANISATION');
|
/// PROVISION_PULSAR_ORGANISATION = 16; deprecated
|
||||||
static const WorkflowTypeEnum DEPROVISION_PULSAR_ORGANISATION = WorkflowTypeEnum._(17, _omitEnumNames ? '' : 'DEPROVISION_PULSAR_ORGANISATION');
|
/// DEPROVISION_PULSAR_ORGANISATION = 17; deprecated
|
||||||
static const WorkflowTypeEnum RECOVER_DATA = WorkflowTypeEnum._(18, _omitEnumNames ? '' : 'RECOVER_DATA');
|
static const WorkflowTypeEnum RECOVER_DATA = WorkflowTypeEnum._(18, _omitEnumNames ? '' : 'RECOVER_DATA');
|
||||||
static const WorkflowTypeEnum DAILY_PROJECTS_OPERATIONS = WorkflowTypeEnum._(19, _omitEnumNames ? '' : 'DAILY_PROJECTS_OPERATIONS');
|
static const WorkflowTypeEnum DAILY_PROJECTS_OPERATIONS = WorkflowTypeEnum._(19, _omitEnumNames ? '' : 'DAILY_PROJECTS_OPERATIONS');
|
||||||
static const WorkflowTypeEnum HEALTH_CHECK_WORKFLOWS = WorkflowTypeEnum._(20, _omitEnumNames ? '' : 'HEALTH_CHECK_WORKFLOWS');
|
static const WorkflowTypeEnum HEALTH_CHECK_WORKFLOWS = WorkflowTypeEnum._(20, _omitEnumNames ? '' : 'HEALTH_CHECK_WORKFLOWS');
|
||||||
@@ -164,17 +164,9 @@ class WorkflowTypeEnum extends $pb.ProtobufEnum {
|
|||||||
DELETE_CONNECTION,
|
DELETE_CONNECTION,
|
||||||
BILLING,
|
BILLING,
|
||||||
EXTRACT_DATA,
|
EXTRACT_DATA,
|
||||||
STOP_FLINK,
|
|
||||||
START_FLINK,
|
|
||||||
STOP_IDLE_FLINK,
|
|
||||||
OPTIMIZE_CLICKHOUSE,
|
OPTIMIZE_CLICKHOUSE,
|
||||||
WAKEUP_FLINK,
|
|
||||||
CREATE_ORGANISATION,
|
CREATE_ORGANISATION,
|
||||||
DELETE_ORGANISATION,
|
DELETE_ORGANISATION,
|
||||||
PROVISION_PULSAR_DOMAIN,
|
|
||||||
DEPROVISION_PULSAR_DOMAIN,
|
|
||||||
PROVISION_PULSAR_ORGANISATION,
|
|
||||||
DEPROVISION_PULSAR_ORGANISATION,
|
|
||||||
RECOVER_DATA,
|
RECOVER_DATA,
|
||||||
DAILY_PROJECTS_OPERATIONS,
|
DAILY_PROJECTS_OPERATIONS,
|
||||||
HEALTH_CHECK_WORKFLOWS,
|
HEALTH_CHECK_WORKFLOWS,
|
||||||
|
|||||||
@@ -110,17 +110,9 @@ const WorkflowTypeEnum$json = {
|
|||||||
{'1': 'DELETE_CONNECTION', '2': 4},
|
{'1': 'DELETE_CONNECTION', '2': 4},
|
||||||
{'1': 'BILLING', '2': 5},
|
{'1': 'BILLING', '2': 5},
|
||||||
{'1': 'EXTRACT_DATA', '2': 6},
|
{'1': 'EXTRACT_DATA', '2': 6},
|
||||||
{'1': 'STOP_FLINK', '2': 7},
|
|
||||||
{'1': 'START_FLINK', '2': 8},
|
|
||||||
{'1': 'STOP_IDLE_FLINK', '2': 9},
|
|
||||||
{'1': 'OPTIMIZE_CLICKHOUSE', '2': 10},
|
{'1': 'OPTIMIZE_CLICKHOUSE', '2': 10},
|
||||||
{'1': 'WAKEUP_FLINK', '2': 11},
|
|
||||||
{'1': 'CREATE_ORGANISATION', '2': 12},
|
{'1': 'CREATE_ORGANISATION', '2': 12},
|
||||||
{'1': 'DELETE_ORGANISATION', '2': 13},
|
{'1': 'DELETE_ORGANISATION', '2': 13},
|
||||||
{'1': 'PROVISION_PULSAR_DOMAIN', '2': 14},
|
|
||||||
{'1': 'DEPROVISION_PULSAR_DOMAIN', '2': 15},
|
|
||||||
{'1': 'PROVISION_PULSAR_ORGANISATION', '2': 16},
|
|
||||||
{'1': 'DEPROVISION_PULSAR_ORGANISATION', '2': 17},
|
|
||||||
{'1': 'RECOVER_DATA', '2': 18},
|
{'1': 'RECOVER_DATA', '2': 18},
|
||||||
{'1': 'DAILY_PROJECTS_OPERATIONS', '2': 19},
|
{'1': 'DAILY_PROJECTS_OPERATIONS', '2': 19},
|
||||||
{'1': 'HEALTH_CHECK_WORKFLOWS', '2': 20},
|
{'1': 'HEALTH_CHECK_WORKFLOWS', '2': 20},
|
||||||
@@ -141,18 +133,14 @@ const WorkflowTypeEnum$json = {
|
|||||||
final $typed_data.Uint8List workflowTypeEnumDescriptor = $convert.base64Decode(
|
final $typed_data.Uint8List workflowTypeEnumDescriptor = $convert.base64Decode(
|
||||||
'ChBXb3JrZmxvd1R5cGVFbnVtEhIKDkNSRUFURV9QUk9KRUNUEAASEgoOREVMRVRFX1BST0pFQ1'
|
'ChBXb3JrZmxvd1R5cGVFbnVtEhIKDkNSRUFURV9QUk9KRUNUEAASEgoOREVMRVRFX1BST0pFQ1'
|
||||||
'QQARIPCgtERUxFVEVfQ09SRRACEhYKEkRFTEVURV9QQVJUTkVSX0FQUBADEhUKEURFTEVURV9D'
|
'QQARIPCgtERUxFVEVfQ09SRRACEhYKEkRFTEVURV9QQVJUTkVSX0FQUBADEhUKEURFTEVURV9D'
|
||||||
'T05ORUNUSU9OEAQSCwoHQklMTElORxAFEhAKDEVYVFJBQ1RfREFUQRAGEg4KClNUT1BfRkxJTk'
|
'T05ORUNUSU9OEAQSCwoHQklMTElORxAFEhAKDEVYVFJBQ1RfREFUQRAGEhcKE09QVElNSVpFX0'
|
||||||
'sQBxIPCgtTVEFSVF9GTElOSxAIEhMKD1NUT1BfSURMRV9GTElOSxAJEhcKE09QVElNSVpFX0NM'
|
'NMSUNLSE9VU0UQChIXChNDUkVBVEVfT1JHQU5JU0FUSU9OEAwSFwoTREVMRVRFX09SR0FOSVNB'
|
||||||
'SUNLSE9VU0UQChIQCgxXQUtFVVBfRkxJTksQCxIXChNDUkVBVEVfT1JHQU5JU0FUSU9OEAwSFw'
|
'VElPThANEhAKDFJFQ09WRVJfREFUQRASEh0KGURBSUxZX1BST0pFQ1RTX09QRVJBVElPTlMQEx'
|
||||||
'oTREVMRVRFX09SR0FOSVNBVElPThANEhsKF1BST1ZJU0lPTl9QVUxTQVJfRE9NQUlOEA4SHQoZ'
|
'IaChZIRUFMVEhfQ0hFQ0tfV09SS0ZMT1dTEBQSFAoQRVhUUkFDVF9LUElfREFUQRAVEhwKGFVQ'
|
||||||
'REVQUk9WSVNJT05fUFVMU0FSX0RPTUFJThAPEiEKHVBST1ZJU0lPTl9QVUxTQVJfT1JHQU5JU0'
|
'REFURV9NQVRFUklBTElaRURfVklFVxAWEg4KClBSVU5FX0RBVEEQFxIhCh1DSEVDS19BTkRfTE'
|
||||||
'FUSU9OEBASIwofREVQUk9WSVNJT05fUFVMU0FSX09SR0FOSVNBVElPThAREhAKDFJFQ09WRVJf'
|
'FVTkNIX1JFQ09WRVJfREFUQRAYEhwKGFNZTkNIUk9OSVpFX1JVTEVTX09OX0dJVBAZEhIKDkFO'
|
||||||
'REFUQRASEh0KGURBSUxZX1BST0pFQ1RTX09QRVJBVElPTlMQExIaChZIRUFMVEhfQ0hFQ0tfV0'
|
'T05ZTUlaRV9EQVRBEBoSEQoNVVBHUkFERV9NT0RFTBAbEgkKBVNXRUVQEBwSDwoLREVMRVRFX1'
|
||||||
'9SS0ZMT1dTEBQSFAoQRVhUUkFDVF9LUElfREFUQRAVEhwKGFVQREFURV9NQVRFUklBTElaRURf'
|
'NJVEUQHRIPCgtDUkVBVEVfU0lURRAe');
|
||||||
'VklFVxAWEg4KClBSVU5FX0RBVEEQFxIhCh1DSEVDS19BTkRfTEFVTkNIX1JFQ09WRVJfREFUQR'
|
|
||||||
'AYEhwKGFNZTkNIUk9OSVpFX1JVTEVTX09OX0dJVBAZEhIKDkFOT05ZTUlaRV9EQVRBEBoSEQoN'
|
|
||||||
'VVBHUkFERV9NT0RFTBAbEgkKBVNXRUVQEBwSDwoLREVMRVRFX1NJVEUQHRIPCgtDUkVBVEVfU0'
|
|
||||||
'lURRAe');
|
|
||||||
|
|
||||||
@$core.Deprecated('Use moduleWorkflowTypeEnumDescriptor instead')
|
@$core.Deprecated('Use moduleWorkflowTypeEnumDescriptor instead')
|
||||||
const ModuleWorkflowTypeEnum$json = {
|
const ModuleWorkflowTypeEnum$json = {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
name: dart_core_sdk
|
name: dart_core_sdk
|
||||||
description: dart libs from core model proto files
|
description: dart libs from core model proto files
|
||||||
version: 1.11.0-SNAPSHOT-250729082707
|
version: 1.11.0-SNAPSHOT-250729084434
|
||||||
homepage: ''
|
homepage: ''
|
||||||
publish_to: ''
|
publish_to: ''
|
||||||
repository: ''
|
repository: ''
|
||||||
|
|||||||
Reference in New Issue
Block a user