// // Generated code. Do not modify. // source: opensearch.proto // // @dart = 3.3 // ignore_for_file: annotate_overrides, camel_case_types, comment_references // ignore_for_file: constant_identifier_names, library_prefixes // ignore_for_file: non_constant_identifier_names, prefer_final_fields // ignore_for_file: unnecessary_import, unnecessary_this, unused_import import 'dart:core' as $core; import 'package:protobuf/protobuf.dart' as $pb; export 'package:protobuf/protobuf.dart' show GeneratedMessageGenericExtensions; class CreateOpenSearchUserRequest extends $pb.GeneratedMessage { factory CreateOpenSearchUserRequest({ $core.String? partnerAppID, }) { final $result = create(); if (partnerAppID != null) { $result.partnerAppID = partnerAppID; } return $result; } CreateOpenSearchUserRequest._() : super(); factory CreateOpenSearchUserRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CreateOpenSearchUserRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateOpenSearchUserRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'PartnerAppID', protoName: 'PartnerAppID') ..hasRequiredFields = false ; @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CreateOpenSearchUserRequest clone() => CreateOpenSearchUserRequest()..mergeFromMessage(this); @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CreateOpenSearchUserRequest copyWith(void Function(CreateOpenSearchUserRequest) updates) => super.copyWith((message) => updates(message as CreateOpenSearchUserRequest)) as CreateOpenSearchUserRequest; $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CreateOpenSearchUserRequest create() => CreateOpenSearchUserRequest._(); CreateOpenSearchUserRequest createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static CreateOpenSearchUserRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static CreateOpenSearchUserRequest? _defaultInstance; @$pb.TagNumber(1) $core.String get partnerAppID => $_getSZ(0); @$pb.TagNumber(1) set partnerAppID($core.String v) { $_setString(0, v); } @$pb.TagNumber(1) $core.bool hasPartnerAppID() => $_has(0); @$pb.TagNumber(1) void clearPartnerAppID() => $_clearField(1); } class CreateOpenSearchUserResponse extends $pb.GeneratedMessage { factory CreateOpenSearchUserResponse({ $core.String? username, $core.String? password, $core.String? index, }) { final $result = create(); if (username != null) { $result.username = username; } if (password != null) { $result.password = password; } if (index != null) { $result.index = index; } return $result; } CreateOpenSearchUserResponse._() : super(); factory CreateOpenSearchUserResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CreateOpenSearchUserResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateOpenSearchUserResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'Username', protoName: 'Username') ..aOS(2, _omitFieldNames ? '' : 'Password', protoName: 'Password') ..aOS(3, _omitFieldNames ? '' : 'Index', protoName: 'Index') ..hasRequiredFields = false ; @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CreateOpenSearchUserResponse clone() => CreateOpenSearchUserResponse()..mergeFromMessage(this); @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CreateOpenSearchUserResponse copyWith(void Function(CreateOpenSearchUserResponse) updates) => super.copyWith((message) => updates(message as CreateOpenSearchUserResponse)) as CreateOpenSearchUserResponse; $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CreateOpenSearchUserResponse create() => CreateOpenSearchUserResponse._(); CreateOpenSearchUserResponse createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static CreateOpenSearchUserResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static CreateOpenSearchUserResponse? _defaultInstance; @$pb.TagNumber(1) $core.String get username => $_getSZ(0); @$pb.TagNumber(1) set username($core.String v) { $_setString(0, v); } @$pb.TagNumber(1) $core.bool hasUsername() => $_has(0); @$pb.TagNumber(1) void clearUsername() => $_clearField(1); @$pb.TagNumber(2) $core.String get password => $_getSZ(1); @$pb.TagNumber(2) set password($core.String v) { $_setString(1, v); } @$pb.TagNumber(2) $core.bool hasPassword() => $_has(1); @$pb.TagNumber(2) void clearPassword() => $_clearField(2); @$pb.TagNumber(3) $core.String get index => $_getSZ(2); @$pb.TagNumber(3) set index($core.String v) { $_setString(2, v); } @$pb.TagNumber(3) $core.bool hasIndex() => $_has(2); @$pb.TagNumber(3) void clearIndex() => $_clearField(3); } class DeleteOpenSearchUserRequest extends $pb.GeneratedMessage { factory DeleteOpenSearchUserRequest({ $core.String? partnerAppID, }) { final $result = create(); if (partnerAppID != null) { $result.partnerAppID = partnerAppID; } return $result; } DeleteOpenSearchUserRequest._() : super(); factory DeleteOpenSearchUserRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory DeleteOpenSearchUserRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteOpenSearchUserRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'PartnerAppID', protoName: 'PartnerAppID') ..hasRequiredFields = false ; @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') DeleteOpenSearchUserRequest clone() => DeleteOpenSearchUserRequest()..mergeFromMessage(this); @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') DeleteOpenSearchUserRequest copyWith(void Function(DeleteOpenSearchUserRequest) updates) => super.copyWith((message) => updates(message as DeleteOpenSearchUserRequest)) as DeleteOpenSearchUserRequest; $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static DeleteOpenSearchUserRequest create() => DeleteOpenSearchUserRequest._(); DeleteOpenSearchUserRequest createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static DeleteOpenSearchUserRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static DeleteOpenSearchUserRequest? _defaultInstance; @$pb.TagNumber(1) $core.String get partnerAppID => $_getSZ(0); @$pb.TagNumber(1) set partnerAppID($core.String v) { $_setString(0, v); } @$pb.TagNumber(1) $core.bool hasPartnerAppID() => $_has(0); @$pb.TagNumber(1) void clearPartnerAppID() => $_clearField(1); } class DeleteOpenSearchUserResponse extends $pb.GeneratedMessage { factory DeleteOpenSearchUserResponse() => create(); DeleteOpenSearchUserResponse._() : super(); factory DeleteOpenSearchUserResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory DeleteOpenSearchUserResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteOpenSearchUserResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..hasRequiredFields = false ; @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') DeleteOpenSearchUserResponse clone() => DeleteOpenSearchUserResponse()..mergeFromMessage(this); @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') DeleteOpenSearchUserResponse copyWith(void Function(DeleteOpenSearchUserResponse) updates) => super.copyWith((message) => updates(message as DeleteOpenSearchUserResponse)) as DeleteOpenSearchUserResponse; $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static DeleteOpenSearchUserResponse create() => DeleteOpenSearchUserResponse._(); DeleteOpenSearchUserResponse createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static DeleteOpenSearchUserResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static DeleteOpenSearchUserResponse? _defaultInstance; } class CreateOpenSearchTenantRequest extends $pb.GeneratedMessage { factory CreateOpenSearchTenantRequest({ $core.String? name, $core.String? dashboardJSON, $core.String? mappingsJSON, }) { final $result = create(); if (name != null) { $result.name = name; } if (dashboardJSON != null) { $result.dashboardJSON = dashboardJSON; } if (mappingsJSON != null) { $result.mappingsJSON = mappingsJSON; } return $result; } CreateOpenSearchTenantRequest._() : super(); factory CreateOpenSearchTenantRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CreateOpenSearchTenantRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateOpenSearchTenantRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'Name', protoName: 'Name') ..aOS(2, _omitFieldNames ? '' : 'DashboardJSON', protoName: 'DashboardJSON') ..aOS(3, _omitFieldNames ? '' : 'MappingsJSON', protoName: 'MappingsJSON') ..hasRequiredFields = false ; @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CreateOpenSearchTenantRequest clone() => CreateOpenSearchTenantRequest()..mergeFromMessage(this); @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CreateOpenSearchTenantRequest copyWith(void Function(CreateOpenSearchTenantRequest) updates) => super.copyWith((message) => updates(message as CreateOpenSearchTenantRequest)) as CreateOpenSearchTenantRequest; $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CreateOpenSearchTenantRequest create() => CreateOpenSearchTenantRequest._(); CreateOpenSearchTenantRequest createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static CreateOpenSearchTenantRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static CreateOpenSearchTenantRequest? _defaultInstance; @$pb.TagNumber(1) $core.String get name => $_getSZ(0); @$pb.TagNumber(1) set name($core.String v) { $_setString(0, v); } @$pb.TagNumber(1) $core.bool hasName() => $_has(0); @$pb.TagNumber(1) void clearName() => $_clearField(1); @$pb.TagNumber(2) $core.String get dashboardJSON => $_getSZ(1); @$pb.TagNumber(2) set dashboardJSON($core.String v) { $_setString(1, v); } @$pb.TagNumber(2) $core.bool hasDashboardJSON() => $_has(1); @$pb.TagNumber(2) void clearDashboardJSON() => $_clearField(2); @$pb.TagNumber(3) $core.String get mappingsJSON => $_getSZ(2); @$pb.TagNumber(3) set mappingsJSON($core.String v) { $_setString(2, v); } @$pb.TagNumber(3) $core.bool hasMappingsJSON() => $_has(2); @$pb.TagNumber(3) void clearMappingsJSON() => $_clearField(3); } class CreateOpenSearchTenantResponse extends $pb.GeneratedMessage { factory CreateOpenSearchTenantResponse() => create(); CreateOpenSearchTenantResponse._() : super(); factory CreateOpenSearchTenantResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CreateOpenSearchTenantResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateOpenSearchTenantResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..hasRequiredFields = false ; @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CreateOpenSearchTenantResponse clone() => CreateOpenSearchTenantResponse()..mergeFromMessage(this); @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CreateOpenSearchTenantResponse copyWith(void Function(CreateOpenSearchTenantResponse) updates) => super.copyWith((message) => updates(message as CreateOpenSearchTenantResponse)) as CreateOpenSearchTenantResponse; $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CreateOpenSearchTenantResponse create() => CreateOpenSearchTenantResponse._(); CreateOpenSearchTenantResponse createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static CreateOpenSearchTenantResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static CreateOpenSearchTenantResponse? _defaultInstance; } class CreateOpenSearchProjectRoleRequest extends $pb.GeneratedMessage { factory CreateOpenSearchProjectRoleRequest({ $core.String? projectID, }) { final $result = create(); if (projectID != null) { $result.projectID = projectID; } return $result; } CreateOpenSearchProjectRoleRequest._() : super(); factory CreateOpenSearchProjectRoleRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CreateOpenSearchProjectRoleRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateOpenSearchProjectRoleRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID') ..hasRequiredFields = false ; @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CreateOpenSearchProjectRoleRequest clone() => CreateOpenSearchProjectRoleRequest()..mergeFromMessage(this); @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CreateOpenSearchProjectRoleRequest copyWith(void Function(CreateOpenSearchProjectRoleRequest) updates) => super.copyWith((message) => updates(message as CreateOpenSearchProjectRoleRequest)) as CreateOpenSearchProjectRoleRequest; $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CreateOpenSearchProjectRoleRequest create() => CreateOpenSearchProjectRoleRequest._(); CreateOpenSearchProjectRoleRequest createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static CreateOpenSearchProjectRoleRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static CreateOpenSearchProjectRoleRequest? _defaultInstance; @$pb.TagNumber(1) $core.String get projectID => $_getSZ(0); @$pb.TagNumber(1) set projectID($core.String v) { $_setString(0, v); } @$pb.TagNumber(1) $core.bool hasProjectID() => $_has(0); @$pb.TagNumber(1) void clearProjectID() => $_clearField(1); } class CreateOpenSearchProjectRoleResponse extends $pb.GeneratedMessage { factory CreateOpenSearchProjectRoleResponse() => create(); CreateOpenSearchProjectRoleResponse._() : super(); factory CreateOpenSearchProjectRoleResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory CreateOpenSearchProjectRoleResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'CreateOpenSearchProjectRoleResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..hasRequiredFields = false ; @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') CreateOpenSearchProjectRoleResponse clone() => CreateOpenSearchProjectRoleResponse()..mergeFromMessage(this); @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') CreateOpenSearchProjectRoleResponse copyWith(void Function(CreateOpenSearchProjectRoleResponse) updates) => super.copyWith((message) => updates(message as CreateOpenSearchProjectRoleResponse)) as CreateOpenSearchProjectRoleResponse; $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static CreateOpenSearchProjectRoleResponse create() => CreateOpenSearchProjectRoleResponse._(); CreateOpenSearchProjectRoleResponse createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static CreateOpenSearchProjectRoleResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static CreateOpenSearchProjectRoleResponse? _defaultInstance; } class DeleteOpenSearchProjectRequest extends $pb.GeneratedMessage { factory DeleteOpenSearchProjectRequest({ $core.String? projectID, }) { final $result = create(); if (projectID != null) { $result.projectID = projectID; } return $result; } DeleteOpenSearchProjectRequest._() : super(); factory DeleteOpenSearchProjectRequest.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory DeleteOpenSearchProjectRequest.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteOpenSearchProjectRequest', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..aOS(1, _omitFieldNames ? '' : 'ProjectID', protoName: 'ProjectID') ..hasRequiredFields = false ; @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') DeleteOpenSearchProjectRequest clone() => DeleteOpenSearchProjectRequest()..mergeFromMessage(this); @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') DeleteOpenSearchProjectRequest copyWith(void Function(DeleteOpenSearchProjectRequest) updates) => super.copyWith((message) => updates(message as DeleteOpenSearchProjectRequest)) as DeleteOpenSearchProjectRequest; $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static DeleteOpenSearchProjectRequest create() => DeleteOpenSearchProjectRequest._(); DeleteOpenSearchProjectRequest createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static DeleteOpenSearchProjectRequest getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static DeleteOpenSearchProjectRequest? _defaultInstance; @$pb.TagNumber(1) $core.String get projectID => $_getSZ(0); @$pb.TagNumber(1) set projectID($core.String v) { $_setString(0, v); } @$pb.TagNumber(1) $core.bool hasProjectID() => $_has(0); @$pb.TagNumber(1) void clearProjectID() => $_clearField(1); } class DeleteOpenSearchProjectResponse extends $pb.GeneratedMessage { factory DeleteOpenSearchProjectResponse() => create(); DeleteOpenSearchProjectResponse._() : super(); factory DeleteOpenSearchProjectResponse.fromBuffer($core.List<$core.int> i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromBuffer(i, r); factory DeleteOpenSearchProjectResponse.fromJson($core.String i, [$pb.ExtensionRegistry r = $pb.ExtensionRegistry.EMPTY]) => create()..mergeFromJson(i, r); static final $pb.BuilderInfo _i = $pb.BuilderInfo(_omitMessageNames ? '' : 'DeleteOpenSearchProjectResponse', package: const $pb.PackageName(_omitMessageNames ? '' : 'api'), createEmptyInstance: create) ..hasRequiredFields = false ; @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.deepCopy] instead. ' 'Will be removed in next major version') DeleteOpenSearchProjectResponse clone() => DeleteOpenSearchProjectResponse()..mergeFromMessage(this); @$core.Deprecated( 'Using this can add significant overhead to your binary. ' 'Use [GeneratedMessageGenericExtensions.rebuild] instead. ' 'Will be removed in next major version') DeleteOpenSearchProjectResponse copyWith(void Function(DeleteOpenSearchProjectResponse) updates) => super.copyWith((message) => updates(message as DeleteOpenSearchProjectResponse)) as DeleteOpenSearchProjectResponse; $pb.BuilderInfo get info_ => _i; @$core.pragma('dart2js:noInline') static DeleteOpenSearchProjectResponse create() => DeleteOpenSearchProjectResponse._(); DeleteOpenSearchProjectResponse createEmptyInstance() => create(); static $pb.PbList createRepeated() => $pb.PbList(); @$core.pragma('dart2js:noInline') static DeleteOpenSearchProjectResponse getDefault() => _defaultInstance ??= $pb.GeneratedMessage.$_defaultFor(create); static DeleteOpenSearchProjectResponse? _defaultInstance; } const _omitFieldNames = $core.bool.fromEnvironment('protobuf.omit_field_names'); const _omitMessageNames = $core.bool.fromEnvironment('protobuf.omit_message_names');