2021-10-22 10:04:38 +01:00
|
|
|
import { ConnectionStatusType, ContainerStatusType } from "../Common/Constants";
|
2021-09-04 07:04:26 +01:00
|
|
|
|
2021-01-20 15:15:01 +00:00
|
|
|
export interface DatabaseAccount {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
location: string;
|
|
|
|
type: string;
|
|
|
|
kind: string;
|
|
|
|
properties: DatabaseAccountExtendedProperties;
|
2022-06-01 23:25:56 +01:00
|
|
|
systemData?: DatabaseAccountSystemData;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface DatabaseAccountSystemData {
|
|
|
|
createdAt: string;
|
2021-01-20 15:15:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface DatabaseAccountExtendedProperties {
|
2021-03-11 05:02:55 +00:00
|
|
|
documentEndpoint?: string;
|
2021-07-13 13:20:13 +01:00
|
|
|
disableLocalAuth?: boolean;
|
2021-03-11 05:02:55 +00:00
|
|
|
tableEndpoint?: string;
|
|
|
|
gremlinEndpoint?: string;
|
|
|
|
cassandraEndpoint?: string;
|
2021-01-20 15:15:01 +00:00
|
|
|
configurationOverrides?: ConfigurationOverrides;
|
|
|
|
capabilities?: Capability[];
|
|
|
|
enableMultipleWriteLocations?: boolean;
|
|
|
|
mongoEndpoint?: string;
|
|
|
|
readLocations?: DatabaseAccountResponseLocation[];
|
|
|
|
writeLocations?: DatabaseAccountResponseLocation[];
|
|
|
|
enableFreeTier?: boolean;
|
|
|
|
enableAnalyticalStorage?: boolean;
|
2021-05-19 05:02:45 +01:00
|
|
|
isVirtualNetworkFilterEnabled?: boolean;
|
|
|
|
ipRules?: IpRule[];
|
2021-05-26 21:01:13 +01:00
|
|
|
privateEndpointConnections?: unknown[];
|
2021-10-31 02:45:16 +00:00
|
|
|
capacity?: { totalThroughputLimit: number };
|
2021-11-05 17:23:21 +00:00
|
|
|
locations?: DatabaseAccountResponseLocation[];
|
2022-10-06 19:32:19 +01:00
|
|
|
postgresqlEndpoint?: string;
|
2021-01-20 15:15:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface DatabaseAccountResponseLocation {
|
|
|
|
documentEndpoint: string;
|
|
|
|
failoverPriority: number;
|
|
|
|
id: string;
|
|
|
|
locationId: string;
|
|
|
|
locationName: string;
|
|
|
|
provisioningState: string;
|
|
|
|
}
|
|
|
|
|
2021-05-19 05:02:45 +01:00
|
|
|
export interface IpRule {
|
|
|
|
ipAddressOrRange: string;
|
|
|
|
}
|
|
|
|
|
2021-01-20 15:15:01 +00:00
|
|
|
export interface ConfigurationOverrides {
|
|
|
|
EnableBsonSchema: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Capability {
|
|
|
|
name: string;
|
|
|
|
description: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AccessInputMetadata {
|
|
|
|
accountName: string;
|
|
|
|
apiEndpoint: string;
|
|
|
|
apiKind: number;
|
|
|
|
documentEndpoint: string;
|
|
|
|
expiryTimestamp: string;
|
|
|
|
mongoEndpoint?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum ApiKind {
|
|
|
|
SQL = 0,
|
|
|
|
MongoDB,
|
|
|
|
Table,
|
|
|
|
Cassandra,
|
|
|
|
Graph,
|
|
|
|
MongoDBCompute,
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface GenerateTokenResponse {
|
|
|
|
readWrite: string;
|
|
|
|
read: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Subscription {
|
|
|
|
uniqueDisplayName: string;
|
|
|
|
displayName: string;
|
|
|
|
subscriptionId: string;
|
|
|
|
tenantId: string;
|
|
|
|
state: string;
|
|
|
|
subscriptionPolicies: SubscriptionPolicies;
|
|
|
|
authorizationSource: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface SubscriptionPolicies {
|
|
|
|
locationPlacementId: string;
|
|
|
|
quotaId: string;
|
|
|
|
spendingLimit?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Resource {
|
|
|
|
_rid: string;
|
|
|
|
_self: string;
|
|
|
|
_etag: string;
|
|
|
|
_ts: number | string;
|
|
|
|
id: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IType {
|
|
|
|
name: string;
|
|
|
|
code: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IDataField {
|
|
|
|
dataType: IType;
|
|
|
|
hasNulls: boolean;
|
|
|
|
isArray: boolean;
|
|
|
|
schemaType: IType;
|
|
|
|
name: string;
|
|
|
|
path: string;
|
|
|
|
maxRepetitionLevel: number;
|
|
|
|
maxDefinitionLevel: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ISchema {
|
|
|
|
id: string;
|
|
|
|
accountName: string;
|
|
|
|
resource: string;
|
|
|
|
fields: IDataField[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ISchemaRequest {
|
|
|
|
id: string;
|
|
|
|
subscriptionId: string;
|
|
|
|
resourceGroup: string;
|
|
|
|
accountName: string;
|
|
|
|
resource: string;
|
|
|
|
status: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Collection extends Resource {
|
2021-04-13 18:03:25 +01:00
|
|
|
// Only in Mongo collections loaded via ARM
|
|
|
|
shardKey?: {
|
|
|
|
[key: string]: string;
|
|
|
|
};
|
2021-01-20 15:15:01 +00:00
|
|
|
defaultTtl?: number;
|
|
|
|
indexingPolicy?: IndexingPolicy;
|
|
|
|
partitionKey?: PartitionKey;
|
|
|
|
statistics?: Statistic[];
|
|
|
|
uniqueKeyPolicy?: UniqueKeyPolicy;
|
|
|
|
conflictResolutionPolicy?: ConflictResolutionPolicy;
|
|
|
|
changeFeedPolicy?: ChangeFeedPolicy;
|
|
|
|
analyticalStorageTtl?: number;
|
|
|
|
geospatialConfig?: GeospatialConfig;
|
|
|
|
schema?: ISchema;
|
|
|
|
requestSchema?: () => void;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Database extends Resource {
|
|
|
|
collections?: Collection[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface DocumentId extends Resource {}
|
|
|
|
|
|
|
|
export interface ConflictId extends Resource {
|
|
|
|
resourceId?: string;
|
|
|
|
resourceType?: string;
|
|
|
|
operationType?: string;
|
|
|
|
content?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AuthHeaders {
|
|
|
|
"x-ms-date": string;
|
|
|
|
authorization: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface KeyResource {
|
|
|
|
Token: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IndexingPolicy {
|
|
|
|
automatic: boolean;
|
2021-05-21 02:34:29 +01:00
|
|
|
indexingMode: "consistent" | "lazy" | "none";
|
2021-01-20 15:15:01 +00:00
|
|
|
includedPaths: any;
|
|
|
|
excludedPaths: any;
|
|
|
|
compositeIndexes?: any;
|
|
|
|
spatialIndexes?: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface PartitionKey {
|
|
|
|
paths: string[];
|
2021-05-21 02:34:29 +01:00
|
|
|
kind: "Hash" | "Range" | "MultiHash";
|
2021-01-20 15:15:01 +00:00
|
|
|
version: number;
|
|
|
|
systemKey?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Statistic {
|
|
|
|
documentCount: number;
|
|
|
|
id: string;
|
|
|
|
partitionKeys: any[];
|
|
|
|
sizeInKB: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface QueryPreparationTimes {
|
|
|
|
queryCompilationTime: any;
|
|
|
|
logicalPlanBuildTime: any;
|
|
|
|
physicalPlanBuildTime: any;
|
|
|
|
queryOptimizationTime: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RuntimeExecutionTimes {
|
|
|
|
queryEngineExecutionTime: any;
|
|
|
|
systemFunctionExecutionTime: any;
|
|
|
|
userDefinedFunctionExecutionTime: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface QueryMetrics {
|
|
|
|
clientSideMetrics: any;
|
|
|
|
documentLoadTime: any;
|
|
|
|
documentWriteTime: any;
|
|
|
|
indexHitDocumentCount: number;
|
|
|
|
indexLookupTime: any;
|
|
|
|
outputDocumentCount: number;
|
|
|
|
outputDocumentSize: number;
|
|
|
|
queryPreparationTimes: QueryPreparationTimes;
|
|
|
|
retrievedDocumentCount: number;
|
|
|
|
retrievedDocumentSize: number;
|
|
|
|
runtimeExecutionTimes: RuntimeExecutionTimes;
|
|
|
|
totalQueryExecutionTime: any;
|
|
|
|
vmExecutionTime: any;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Offer {
|
|
|
|
id: string;
|
|
|
|
autoscaleMaxThroughput: number | undefined;
|
|
|
|
manualThroughput: number | undefined;
|
|
|
|
minimumThroughput: number | undefined;
|
|
|
|
offerDefinition?: SDKOfferDefinition;
|
|
|
|
offerReplacePending: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface SDKOfferDefinition extends Resource {
|
|
|
|
offerVersion?: string;
|
|
|
|
offerType?: string;
|
|
|
|
content?: {
|
|
|
|
offerThroughput: number;
|
|
|
|
offerIsRUPerMinuteThroughputEnabled?: boolean;
|
|
|
|
collectionThroughputInfo?: OfferThroughputInfo;
|
|
|
|
offerAutopilotSettings?: AutoPilotOfferSettings;
|
|
|
|
};
|
|
|
|
resource?: string;
|
|
|
|
offerResourceId?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface OfferThroughputInfo {
|
|
|
|
minimumRUForCollection: number;
|
|
|
|
numPhysicalPartitions: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UniqueKeyPolicy {
|
|
|
|
uniqueKeys: UniqueKey[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UniqueKey {
|
|
|
|
paths: string[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreateDatabaseAndCollectionRequest {
|
|
|
|
databaseId: string;
|
|
|
|
collectionId: string;
|
|
|
|
offerThroughput: number;
|
|
|
|
databaseLevelThroughput: boolean;
|
|
|
|
partitionKey?: PartitionKey;
|
|
|
|
indexingPolicy?: IndexingPolicy;
|
|
|
|
uniqueKeyPolicy?: UniqueKeyPolicy;
|
|
|
|
autoPilot?: AutoPilotCreationSettings;
|
|
|
|
analyticalStorageTtl?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AutoPilotCreationSettings {
|
|
|
|
maxThroughput?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Query {
|
|
|
|
id: string;
|
|
|
|
resourceId: string;
|
|
|
|
queryName: string;
|
|
|
|
query: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AutoPilotOfferSettings {
|
|
|
|
maximumTierThroughput?: number;
|
|
|
|
maxThroughput?: number;
|
|
|
|
targetMaxThroughput?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreateDatabaseParams {
|
|
|
|
autoPilotMaxThroughput?: number;
|
|
|
|
databaseId: string;
|
|
|
|
databaseLevelThroughput?: boolean;
|
|
|
|
offerThroughput?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface CreateCollectionParams {
|
|
|
|
createNewDatabase: boolean;
|
|
|
|
collectionId: string;
|
|
|
|
databaseId: string;
|
|
|
|
databaseLevelThroughput: boolean;
|
|
|
|
offerThroughput: number;
|
|
|
|
analyticalStorageTtl?: number;
|
|
|
|
autoPilotMaxThroughput?: number;
|
|
|
|
indexingPolicy?: IndexingPolicy;
|
|
|
|
partitionKey?: PartitionKey;
|
|
|
|
uniqueKeyPolicy?: UniqueKeyPolicy;
|
|
|
|
createMongoWildcardIndex?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ReadDatabaseOfferParams {
|
|
|
|
databaseId: string;
|
|
|
|
databaseResourceId?: string;
|
|
|
|
offerId?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ReadCollectionOfferParams {
|
|
|
|
collectionId: string;
|
|
|
|
databaseId: string;
|
|
|
|
collectionResourceId?: string;
|
|
|
|
offerId?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface UpdateOfferParams {
|
|
|
|
currentOffer: Offer;
|
|
|
|
databaseId: string;
|
|
|
|
autopilotThroughput: number;
|
|
|
|
manualThroughput: number;
|
|
|
|
collectionId?: string;
|
|
|
|
migrateToAutoPilot?: boolean;
|
|
|
|
migrateToManual?: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Notification {
|
|
|
|
id: string;
|
|
|
|
kind: string;
|
|
|
|
accountName: string;
|
|
|
|
action: any;
|
|
|
|
buttonValue?: any;
|
|
|
|
collectionName?: string;
|
|
|
|
databaseName?: string;
|
|
|
|
description: string;
|
|
|
|
endDateUtc: number;
|
|
|
|
seenAtUtc: number;
|
|
|
|
state: string;
|
|
|
|
type: string;
|
|
|
|
updatedAtUtc: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum ConflictResolutionMode {
|
|
|
|
Custom = "Custom",
|
|
|
|
LastWriterWins = "LastWriterWins",
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents the conflict resolution policy configuration for specifying how to resolve conflicts
|
|
|
|
* in case writes from different regions result in conflicts on documents in the collection in the Azure Cosmos DB service.
|
|
|
|
*/
|
|
|
|
export interface ConflictResolutionPolicy {
|
|
|
|
/**
|
|
|
|
* Gets or sets the ConflictResolutionMode in the Azure Cosmos DB service. By default it is ConflictResolutionMode.LastWriterWins.
|
|
|
|
*/
|
|
|
|
mode?: keyof typeof ConflictResolutionMode;
|
|
|
|
/**
|
|
|
|
* Gets or sets the path which is present in each document in the Azure Cosmos DB service for last writer wins conflict-resolution.
|
|
|
|
* This path must be present in each document and must be an integer value.
|
|
|
|
* In case of a conflict occuring on a document, the document with the higher integer value in the specified path will be picked.
|
|
|
|
* If the path is unspecified, by default the timestamp path will be used.
|
|
|
|
*
|
|
|
|
* This value should only be set when using ConflictResolutionMode.LastWriterWins.
|
|
|
|
*
|
|
|
|
* ```typescript
|
|
|
|
* conflictResolutionPolicy.ConflictResolutionPath = "/name/first";
|
|
|
|
* ```
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
conflictResolutionPath?: string;
|
|
|
|
/**
|
|
|
|
* Gets or sets the StoredProcedure which is used for conflict resolution in the Azure Cosmos DB service.
|
|
|
|
* This stored procedure may be created after the Container is created and can be changed as required.
|
|
|
|
*
|
|
|
|
* 1. This value should only be set when using ConflictResolutionMode.Custom.
|
|
|
|
* 2. In case the stored procedure fails or throws an exception, the conflict resolution will default to registering conflicts in the conflicts feed.
|
|
|
|
*
|
|
|
|
* ```typescript
|
|
|
|
* conflictResolutionPolicy.ConflictResolutionProcedure = "resolveConflict"
|
|
|
|
* ```
|
|
|
|
*/
|
|
|
|
conflictResolutionProcedure?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ChangeFeedPolicy {
|
|
|
|
retentionDuration: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface GeospatialConfig {
|
|
|
|
type: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RegionEndpoint {
|
|
|
|
name: string;
|
|
|
|
documentAccountEndpoint: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface Tenant {
|
|
|
|
displayName: string;
|
|
|
|
id: string;
|
|
|
|
tenantId: string;
|
|
|
|
countryCode: string;
|
|
|
|
domains: Array<string>;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface AccountKeys {
|
|
|
|
primaryMasterKey: string;
|
|
|
|
secondaryMasterKey: string;
|
|
|
|
primaryReadonlyMasterKey: string;
|
|
|
|
secondaryReadonlyMasterKey: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface OperationStatus {
|
|
|
|
status: string;
|
|
|
|
id?: string;
|
|
|
|
name?: string; // operationId
|
|
|
|
properties?: any;
|
|
|
|
error?: { code: string; message: string };
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface NotebookWorkspaceConnectionInfo {
|
|
|
|
authToken: string;
|
|
|
|
notebookServerEndpoint: string;
|
2021-10-22 10:04:38 +01:00
|
|
|
forwardingId: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ContainerInfo {
|
2021-10-22 15:41:13 +01:00
|
|
|
durationLeftInMinutes: number;
|
2022-06-21 19:19:45 +01:00
|
|
|
phoenixServerInfo: NotebookWorkspaceConnectionInfo;
|
2021-10-22 10:04:38 +01:00
|
|
|
status: ContainerStatusType;
|
2021-01-20 15:15:01 +00:00
|
|
|
}
|
|
|
|
|
2021-10-22 15:41:13 +01:00
|
|
|
export interface IProvisionData {
|
|
|
|
cosmosEndpoint: string;
|
2022-06-21 13:48:18 +01:00
|
|
|
poolId: string;
|
2021-10-22 15:41:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
export interface IContainerData {
|
|
|
|
forwardingId: string;
|
|
|
|
}
|
|
|
|
|
2022-06-15 22:08:06 +01:00
|
|
|
export interface IDbAccountAllow {
|
|
|
|
status: number;
|
|
|
|
message?: string;
|
|
|
|
type?: string;
|
|
|
|
}
|
|
|
|
|
2021-10-22 15:41:13 +01:00
|
|
|
export interface IResponse<T> {
|
|
|
|
status: number;
|
|
|
|
data: T;
|
|
|
|
}
|
|
|
|
|
2022-05-23 11:58:45 +01:00
|
|
|
export interface IPhoenixError {
|
2022-03-30 13:59:37 +01:00
|
|
|
message: string;
|
|
|
|
type: string;
|
|
|
|
}
|
|
|
|
|
2022-05-23 11:58:45 +01:00
|
|
|
export interface IMaxAllocationTimeExceeded extends IPhoenixError {
|
2022-03-30 13:59:37 +01:00
|
|
|
earliestAllocationTimestamp: string;
|
|
|
|
maxAllocationTimePerDayPerUserInMinutes: string;
|
|
|
|
}
|
|
|
|
|
2022-05-23 11:58:45 +01:00
|
|
|
export interface IMaxDbAccountsPerUserExceeded extends IPhoenixError {
|
2022-03-30 13:59:37 +01:00
|
|
|
maxSimultaneousConnectionsPerUser: string;
|
|
|
|
}
|
|
|
|
|
2022-05-23 11:58:45 +01:00
|
|
|
export interface IMaxUsersPerDbAccountExceeded extends IPhoenixError {
|
2022-03-30 13:59:37 +01:00
|
|
|
maxSimultaneousUsersPerDbAccount: string;
|
|
|
|
}
|
|
|
|
|
2021-10-22 15:41:13 +01:00
|
|
|
export interface IPhoenixConnectionInfoResult {
|
2022-08-30 22:08:52 +01:00
|
|
|
readonly phoenixServiceInfo?: IPhoenixServiceInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface IPhoenixServiceInfo {
|
2022-06-21 19:19:45 +01:00
|
|
|
readonly authToken?: string;
|
|
|
|
readonly phoenixServiceUrl?: string;
|
2021-10-22 15:41:13 +01:00
|
|
|
readonly forwardingId?: string;
|
|
|
|
}
|
|
|
|
|
2021-01-20 15:15:01 +00:00
|
|
|
export interface NotebookWorkspaceFeedResponse {
|
|
|
|
value: NotebookWorkspace[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface NotebookWorkspace {
|
|
|
|
id: string;
|
|
|
|
name: string;
|
|
|
|
properties: {
|
|
|
|
status: string;
|
|
|
|
notebookServerEndpoint: string;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface NotebookConfigurationEndpoints {
|
|
|
|
path: string;
|
|
|
|
endpoints: NotebookConfigurationEndpointInfo[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface NotebookConfigurationEndpointInfo {
|
|
|
|
type: string;
|
|
|
|
endpoint: string;
|
|
|
|
username: string;
|
|
|
|
password: string;
|
|
|
|
token: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface SparkClusterConnectionInfo {
|
|
|
|
userName: string;
|
|
|
|
password: string;
|
|
|
|
endpoints: SparkClusterEndpoint[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface SparkClusterEndpoint {
|
|
|
|
kind: SparkClusterEndpointKind;
|
|
|
|
endpoint: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export enum SparkClusterEndpointKind {
|
|
|
|
SparkUI = "SparkUI",
|
|
|
|
HistoryServerUI = "HistoryServerUI",
|
|
|
|
Livy = "Livy",
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RpParameters {
|
|
|
|
db: string;
|
|
|
|
offerThroughput?: number;
|
|
|
|
st: Boolean;
|
|
|
|
sid: string;
|
|
|
|
rg: string;
|
|
|
|
dba: string;
|
|
|
|
partitionKeyVersion?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MongoParameters extends RpParameters {
|
|
|
|
pk?: string;
|
|
|
|
resourceUrl?: string;
|
|
|
|
coll?: string;
|
|
|
|
cd?: Boolean;
|
|
|
|
is?: Boolean;
|
|
|
|
rid?: string;
|
|
|
|
rtype?: string;
|
|
|
|
isAutoPilot?: Boolean;
|
|
|
|
autoPilotThroughput?: string;
|
|
|
|
analyticalStorageTtl?: number;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface MemoryUsageInfo {
|
|
|
|
freeKB: number;
|
|
|
|
totalKB: number;
|
|
|
|
}
|
2021-09-04 07:04:26 +01:00
|
|
|
|
|
|
|
export interface ContainerConnectionInfo {
|
|
|
|
status: ConnectionStatusType;
|
|
|
|
//need to add ram and rom info
|
|
|
|
}
|
2022-03-30 13:59:37 +01:00
|
|
|
|
|
|
|
export enum PhoenixErrorType {
|
|
|
|
MaxAllocationTimeExceeded = "MaxAllocationTimeExceeded",
|
|
|
|
MaxDbAccountsPerUserExceeded = "MaxDbAccountsPerUserExceeded",
|
|
|
|
MaxUsersPerDbAccountExceeded = "MaxUsersPerDbAccountExceeded",
|
|
|
|
AllocationValidationResult = "AllocationValidationResult",
|
|
|
|
RegionNotServicable = "RegionNotServicable",
|
|
|
|
SubscriptionNotAllowed = "SubscriptionNotAllowed",
|
2022-05-23 11:58:45 +01:00
|
|
|
UnknownError = "UnknownError",
|
2022-06-15 22:08:06 +01:00
|
|
|
PhoenixFlightFallback = "PhoenixFlightFallback",
|
2022-07-27 17:05:56 +01:00
|
|
|
UserMissingPermissionsError = "UserMissingPermissionsError",
|
2022-03-30 13:59:37 +01:00
|
|
|
}
|