@spottoai/types-package 1.0.2-beta.217 → 1.0.2-beta.218
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/accounts/azureSpSetup.d.ts +242 -0
- package/dist/accounts/azureSpSetup.d.ts.map +1 -0
- package/dist/accounts/azureSpSetup.js +3 -0
- package/dist/accounts/azureSpSetup.js.map +1 -0
- package/dist/accounts/index.d.ts +1 -0
- package/dist/accounts/index.d.ts.map +1 -1
- package/dist/accounts/index.js +1 -0
- package/dist/accounts/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
export type AzureSpSetupPhase = 'created' | 'authorizing' | 'authorized' | 'tenantSelectionRequired' | 'planning' | 'readyToExecute' | 'executing' | 'completed' | 'needsAdminAction' | 'failed' | 'cancelled' | 'expired';
|
|
2
|
+
export type AzureSpSetupResult = 'none' | 'complete' | 'partial' | 'needsAdminAction' | 'failed' | 'cancelled' | 'expired';
|
|
3
|
+
export type AzureSpSetupMode = 'createCloudAccount' | 'grantAdditionalPermissions';
|
|
4
|
+
export type AzureSpSetupErrorCode = 'access_denied' | 'duplicate_tenant' | 'target_cloud_account_required' | 'target_cloud_account_not_found' | 'target_cloud_account_tenant_mismatch' | 'target_cloud_account_not_service_principal' | 'insufficient_entra_permission' | 'insufficient_rbac_permission' | 'tenant_selection_required' | 'no_readable_subscription_selected' | 'subscription_reader_assignment_failed' | 'service_principal_validation_failed' | 'graph_admin_consent_failed' | 'billing_export_storage_failed' | 'billing_export_failed' | 'billing_export_unavailable' | 'provider_registration_failed' | 'optional_assignment_failed' | 'setup_expired' | 'setup_cancelled' | 'azure_propagation_pending' | 'unknown';
|
|
5
|
+
export type AzureSpPermissionRequirement = 'required' | 'recommended' | 'optional';
|
|
6
|
+
export type AzureSpPermissionStatus = 'notStarted' | 'running' | 'succeeded' | 'failed' | 'skipped' | 'alreadyExists';
|
|
7
|
+
export type AzureSpPermissionCapabilityStatus = 'unknown' | 'likelyAllowed' | 'likelyMissing';
|
|
8
|
+
export type AzureSpPermissionFailureBehavior = 'blockSetup' | 'completePartial' | 'warnOnly';
|
|
9
|
+
export type AzureSpPermissionScopeKind = 'tenant' | 'application' | 'servicePrincipal' | 'subscription' | 'tenantRoot' | 'managementGroup' | 'provider' | 'storageAccount' | 'storageContainer' | 'costManagementExport';
|
|
10
|
+
export type AzureSpPermissionKey = 'entraApplication' | 'entraServicePrincipal' | 'entraClientSecret' | 'subscriptionReader' | 'tenantRootReader' | 'monitoringReader' | 'logAnalyticsReader' | 'rootManagementGroupReader' | 'managementGroupReader' | 'reservationsReader' | 'savingsPlanReader' | 'graphApplicationReadAll' | 'costManagementProviderRegistration' | 'billingExportStorage' | 'billingExportContainer' | 'billingExportStorageBlobReader' | 'billingExportActualDaily' | 'billingExportAmortizedDaily' | 'billingExportActualBackfill' | 'billingExportAmortizedBackfill' | 'customWriteRoleDefinition' | 'customWriteRoleAssignment';
|
|
11
|
+
export type AzureSpOperationKind = 'discoverApplication' | 'createApplication' | 'discoverServicePrincipal' | 'createServicePrincipal' | 'createClientSecret' | 'assignAzureRole' | 'grantGraphAppRole' | 'registerProvider' | 'prepareStorage' | 'prepareContainer' | 'createOrUpdateCostExport' | 'queueCostExportRun' | 'createOrUpdateCustomRole' | 'validateServicePrincipal' | 'queueFirstSync';
|
|
12
|
+
export type AzureSpOperationPlannedAction = 'none' | 'create' | 'update' | 'grant' | 'queue' | 'skip';
|
|
13
|
+
export type AzureSpOperationCurrentState = 'missing' | 'alreadyExists' | 'unavailable' | 'unknown';
|
|
14
|
+
export type AzureSpOperationResultStatus = 'notStarted' | 'running' | 'alreadyExists' | 'created' | 'updated' | 'granted' | 'queued' | 'skipped' | 'unavailable' | 'failed';
|
|
15
|
+
export type AzureSpBillingExportMode = 'skip' | 'reuseExisting' | 'useExistingStorage' | 'createStorage';
|
|
16
|
+
export type AzureSpBillingExportDataset = 'ActualCost' | 'AmortizedCost';
|
|
17
|
+
export type AzureSpBillingExportResultStatus = 'notStarted' | 'existing' | 'created' | 'updated' | 'createdRunQueued' | 'queued' | 'requeued' | 'failed' | 'unavailable' | 'skipped';
|
|
18
|
+
export interface AzureSpSetupStartRequest {
|
|
19
|
+
redirectAfter?: string;
|
|
20
|
+
mode?: AzureSpSetupMode;
|
|
21
|
+
targetCloudAccountId?: string;
|
|
22
|
+
}
|
|
23
|
+
export interface AzureSpSetupStartResponse {
|
|
24
|
+
setupId: string;
|
|
25
|
+
authorizationUrl: string;
|
|
26
|
+
expiresAt: string;
|
|
27
|
+
}
|
|
28
|
+
export interface AzureSpSetupTenant {
|
|
29
|
+
tenantId: string;
|
|
30
|
+
displayName?: string;
|
|
31
|
+
label: string;
|
|
32
|
+
isAlreadyConnected: boolean;
|
|
33
|
+
connectedCloudAccountId?: string;
|
|
34
|
+
requiresTenantAuthorization: boolean;
|
|
35
|
+
}
|
|
36
|
+
export interface AzureSpSetupSubscriptionOption {
|
|
37
|
+
subscriptionId: string;
|
|
38
|
+
displayName: string;
|
|
39
|
+
tenantId: string;
|
|
40
|
+
state?: string;
|
|
41
|
+
isVisible: boolean;
|
|
42
|
+
isReadableCandidate: boolean;
|
|
43
|
+
isSelectedByDefault: boolean;
|
|
44
|
+
warningCode?: string;
|
|
45
|
+
warningMessage?: string;
|
|
46
|
+
}
|
|
47
|
+
export interface AzureSpPermissionManifestItem {
|
|
48
|
+
key: AzureSpPermissionKey;
|
|
49
|
+
requirement: AzureSpPermissionRequirement;
|
|
50
|
+
displayName: string;
|
|
51
|
+
userFacingLabel: string;
|
|
52
|
+
description: string;
|
|
53
|
+
scopeKind: AzureSpPermissionScopeKind;
|
|
54
|
+
defaultSelected: boolean;
|
|
55
|
+
userDeselectable: boolean;
|
|
56
|
+
requiredPrivilege: string;
|
|
57
|
+
detectOperation: AzureSpOperationKind;
|
|
58
|
+
applyOperation: AzureSpOperationKind;
|
|
59
|
+
failureBehavior: AzureSpPermissionFailureBehavior;
|
|
60
|
+
}
|
|
61
|
+
export interface AzureSpSetupPermissionPlanItem {
|
|
62
|
+
key: AzureSpPermissionKey;
|
|
63
|
+
instanceKey: string;
|
|
64
|
+
requirement: AzureSpPermissionRequirement;
|
|
65
|
+
scopeKind: AzureSpPermissionScopeKind;
|
|
66
|
+
displayName: string;
|
|
67
|
+
userFacingLabel: string;
|
|
68
|
+
description: string;
|
|
69
|
+
scope: string;
|
|
70
|
+
externalResourceId?: string;
|
|
71
|
+
idempotencyKey: string;
|
|
72
|
+
roleDefinitionName?: string;
|
|
73
|
+
requiredPrivilege: string;
|
|
74
|
+
selectedByDefault: boolean;
|
|
75
|
+
isDeselectable: boolean;
|
|
76
|
+
capabilityStatus: AzureSpPermissionCapabilityStatus;
|
|
77
|
+
capabilityReason?: string;
|
|
78
|
+
currentState: AzureSpOperationCurrentState;
|
|
79
|
+
plannedAction: AzureSpOperationPlannedAction;
|
|
80
|
+
detectOperation: AzureSpOperationKind;
|
|
81
|
+
applyOperation: AzureSpOperationKind;
|
|
82
|
+
failureBehavior: AzureSpPermissionFailureBehavior;
|
|
83
|
+
status: AzureSpPermissionStatus;
|
|
84
|
+
errorCode?: AzureSpSetupErrorCode;
|
|
85
|
+
message?: string;
|
|
86
|
+
}
|
|
87
|
+
export interface AzureSpSetupOperationResult {
|
|
88
|
+
operationKey: string;
|
|
89
|
+
permissionKey?: AzureSpPermissionKey;
|
|
90
|
+
instanceKey?: string;
|
|
91
|
+
operationKind: AzureSpOperationKind;
|
|
92
|
+
idempotencyKey: string;
|
|
93
|
+
externalResourceId?: string;
|
|
94
|
+
status: AzureSpOperationResultStatus;
|
|
95
|
+
safeMessage?: string;
|
|
96
|
+
errorCode?: AzureSpSetupErrorCode;
|
|
97
|
+
startedAt?: string;
|
|
98
|
+
completedAt?: string;
|
|
99
|
+
}
|
|
100
|
+
export interface AzureSpSetupProgressStep {
|
|
101
|
+
key: 'microsoftAuthorization' | 'tenantSelection' | 'servicePrincipal' | 'credential' | 'readerAccess' | 'optionalPermissions' | 'billingExports' | 'spottoValidation' | 'cloudAccountSaved' | 'firstSyncQueued';
|
|
102
|
+
status: AzureSpPermissionStatus;
|
|
103
|
+
message?: string;
|
|
104
|
+
}
|
|
105
|
+
export interface AzureSpBillingExportStorageOption {
|
|
106
|
+
storageAccountResourceId: string;
|
|
107
|
+
subscriptionId: string;
|
|
108
|
+
resourceGroupName: string;
|
|
109
|
+
storageAccountName: string;
|
|
110
|
+
location?: string;
|
|
111
|
+
isFromCompatibleExistingExport: boolean;
|
|
112
|
+
containerName?: string;
|
|
113
|
+
}
|
|
114
|
+
export interface AzureSpBillingExportDetectedExport {
|
|
115
|
+
subscriptionId: string;
|
|
116
|
+
dataset: AzureSpBillingExportDataset;
|
|
117
|
+
exportName: string;
|
|
118
|
+
exportResourceId: string;
|
|
119
|
+
storageAccountResourceId: string;
|
|
120
|
+
containerName: string;
|
|
121
|
+
rootFolderPath?: string;
|
|
122
|
+
isCompatible: boolean;
|
|
123
|
+
}
|
|
124
|
+
export interface AzureSpBillingExportPlan {
|
|
125
|
+
enabledByDefault: boolean;
|
|
126
|
+
selectedByDefault: boolean;
|
|
127
|
+
defaultContainerName: 'spotto-cost-exports';
|
|
128
|
+
defaultRootFolderPath: 'spotto';
|
|
129
|
+
defaultResourceGroupName: 'rg-spotto-cost-exports';
|
|
130
|
+
defaultLocation: 'australiaeast';
|
|
131
|
+
detectedCompatibleExports: AzureSpBillingExportDetectedExport[];
|
|
132
|
+
storageOptions: AzureSpBillingExportStorageOption[];
|
|
133
|
+
selectedMode?: AzureSpBillingExportMode;
|
|
134
|
+
selectedStorageAccountResourceId?: string;
|
|
135
|
+
selectedContainerName?: string;
|
|
136
|
+
createStorage?: {
|
|
137
|
+
subscriptionId: string;
|
|
138
|
+
resourceGroupName: string;
|
|
139
|
+
location: string;
|
|
140
|
+
storageAccountName: string;
|
|
141
|
+
containerName: string;
|
|
142
|
+
};
|
|
143
|
+
}
|
|
144
|
+
export interface AzureSpBillingExportResult {
|
|
145
|
+
subscriptionId: string;
|
|
146
|
+
dataset?: AzureSpBillingExportDataset;
|
|
147
|
+
effectiveDefinitionType?: 'ActualCost' | 'Usage' | 'AmortizedCost';
|
|
148
|
+
exportKind: 'recurring' | 'backfill' | 'storage' | 'providerRegistration';
|
|
149
|
+
exportName?: string;
|
|
150
|
+
periodName?: string;
|
|
151
|
+
status: AzureSpBillingExportResultStatus;
|
|
152
|
+
storageAccountResourceId?: string;
|
|
153
|
+
containerName?: string;
|
|
154
|
+
rootFolderPath?: string;
|
|
155
|
+
message?: string;
|
|
156
|
+
}
|
|
157
|
+
export interface AzureSpSetupStatusResponse {
|
|
158
|
+
setupId: string;
|
|
159
|
+
companyId: string;
|
|
160
|
+
mode: AzureSpSetupMode;
|
|
161
|
+
phase: AzureSpSetupPhase;
|
|
162
|
+
result: AzureSpSetupResult;
|
|
163
|
+
selectedTenantId?: string;
|
|
164
|
+
targetCloudAccountId?: string;
|
|
165
|
+
targetCloudAccountName?: string;
|
|
166
|
+
targetAzureApplicationAppId?: string;
|
|
167
|
+
permissionManifestVersion?: string;
|
|
168
|
+
targetPermissionManifestVersion?: string;
|
|
169
|
+
tenants?: AzureSpSetupTenant[];
|
|
170
|
+
subscriptions?: AzureSpSetupSubscriptionOption[];
|
|
171
|
+
permissionPlan?: AzureSpSetupPermissionPlanItem[];
|
|
172
|
+
billingExportPlan?: AzureSpBillingExportPlan;
|
|
173
|
+
billingExportResults?: AzureSpBillingExportResult[];
|
|
174
|
+
operationResults?: AzureSpSetupOperationResult[];
|
|
175
|
+
progress?: AzureSpSetupProgressStep[];
|
|
176
|
+
resultCloudAccountId?: string;
|
|
177
|
+
resultCloudAccountName?: string;
|
|
178
|
+
errorCode?: AzureSpSetupErrorCode;
|
|
179
|
+
errorMessage?: string;
|
|
180
|
+
expiresAt: string;
|
|
181
|
+
canRetry: boolean;
|
|
182
|
+
canExecute: boolean;
|
|
183
|
+
executionId?: string;
|
|
184
|
+
executionAttempt?: number;
|
|
185
|
+
leaseExpiresAt?: string;
|
|
186
|
+
}
|
|
187
|
+
export interface AzureSpSetupSelectTenantRequest {
|
|
188
|
+
tenantId: string;
|
|
189
|
+
}
|
|
190
|
+
export interface AzureSpSetupSelectTenantResponse extends AzureSpSetupStatusResponse {
|
|
191
|
+
selectedTenantId: string;
|
|
192
|
+
authorizationUrl?: string;
|
|
193
|
+
}
|
|
194
|
+
export interface AzureSpSetupAuthorizeTenantResponse {
|
|
195
|
+
setupId: string;
|
|
196
|
+
authorizationUrl: string;
|
|
197
|
+
expiresAt: string;
|
|
198
|
+
}
|
|
199
|
+
export interface AzureSpSetupPlanRequest {
|
|
200
|
+
subscriptionIds: string[];
|
|
201
|
+
selectedPermissionInstanceKeys?: string[];
|
|
202
|
+
useTenantRootReader?: boolean;
|
|
203
|
+
billingExports?: {
|
|
204
|
+
enabled: boolean;
|
|
205
|
+
mode?: AzureSpBillingExportMode;
|
|
206
|
+
reuseDetectedExportResourceIds?: string[];
|
|
207
|
+
storageAccountResourceId?: string;
|
|
208
|
+
createStorage?: {
|
|
209
|
+
subscriptionId: string;
|
|
210
|
+
resourceGroupName: string;
|
|
211
|
+
location: string;
|
|
212
|
+
storageAccountName: string;
|
|
213
|
+
containerName: string;
|
|
214
|
+
};
|
|
215
|
+
containerName?: string;
|
|
216
|
+
};
|
|
217
|
+
}
|
|
218
|
+
export interface AzureSpSetupPlanResponse extends AzureSpSetupStatusResponse {
|
|
219
|
+
phase: 'readyToExecute';
|
|
220
|
+
permissionPlan: AzureSpSetupPermissionPlanItem[];
|
|
221
|
+
subscriptions: AzureSpSetupSubscriptionOption[];
|
|
222
|
+
}
|
|
223
|
+
export interface AzureSpSetupExecuteRequest {
|
|
224
|
+
subscriptionIds: string[];
|
|
225
|
+
selectedPermissionInstanceKeys: string[];
|
|
226
|
+
billingExports?: AzureSpSetupPlanRequest['billingExports'];
|
|
227
|
+
cloudAccountName?: string;
|
|
228
|
+
groupNames?: string[];
|
|
229
|
+
readBitmask?: number;
|
|
230
|
+
writeBitmask?: number;
|
|
231
|
+
}
|
|
232
|
+
export type AzureSpSetupExecuteResponse = AzureSpSetupStatusResponse;
|
|
233
|
+
export interface AzureSpSetupExecuteSuccessResponse extends AzureSpSetupStatusResponse {
|
|
234
|
+
phase: 'completed';
|
|
235
|
+
result: 'complete' | 'partial';
|
|
236
|
+
resultCloudAccountId: string;
|
|
237
|
+
}
|
|
238
|
+
export interface AzureSpSetupCancelResponse extends AzureSpSetupStatusResponse {
|
|
239
|
+
phase: 'cancelled';
|
|
240
|
+
result: 'cancelled';
|
|
241
|
+
}
|
|
242
|
+
//# sourceMappingURL=azureSpSetup.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"azureSpSetup.d.ts","sourceRoot":"","sources":["../../src/accounts/azureSpSetup.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"azureSpSetup.js","sourceRoot":"","sources":["../../src/accounts/azureSpSetup.ts"],"names":[],"mappings":""}
|
package/dist/accounts/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/accounts/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/accounts/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,oBAAoB,CAAC;AACnC,cAAc,mBAAmB,CAAC;AAClC,cAAc,cAAc,CAAC"}
|
package/dist/accounts/index.js
CHANGED
|
@@ -15,6 +15,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./accounts"), exports);
|
|
18
|
+
__exportStar(require("./azureSpSetup"), exports);
|
|
18
19
|
__exportStar(require("./writePermissions"), exports);
|
|
19
20
|
__exportStar(require("./readPermissions"), exports);
|
|
20
21
|
__exportStar(require("./validation"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/accounts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,qDAAmC;AACnC,oDAAkC;AAClC,+CAA6B"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/accounts/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,6CAA2B;AAC3B,iDAA+B;AAC/B,qDAAmC;AACnC,oDAAkC;AAClC,+CAA6B"}
|