@stack-spot/portal-network 0.228.0 → 0.229.1

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/api/account.d.ts +331 -5
  3. package/dist/api/account.d.ts.map +1 -1
  4. package/dist/api/account.js +167 -5
  5. package/dist/api/account.js.map +1 -1
  6. package/dist/api/ai.d.ts +2 -1
  7. package/dist/api/ai.d.ts.map +1 -1
  8. package/dist/api/ai.js.map +1 -1
  9. package/dist/api-addresses.d.ts.map +1 -1
  10. package/dist/api-addresses.js +0 -1
  11. package/dist/api-addresses.js.map +1 -1
  12. package/dist/apis-itau.json +0 -8
  13. package/dist/apis.json +0 -8
  14. package/dist/client/account.d.ts.map +1 -1
  15. package/dist/client/account.js +6 -6
  16. package/dist/client/types.d.ts +0 -48
  17. package/dist/client/types.d.ts.map +1 -1
  18. package/dist/index.d.ts +0 -1
  19. package/dist/index.d.ts.map +1 -1
  20. package/dist/index.js +0 -1
  21. package/dist/index.js.map +1 -1
  22. package/package.json +2 -2
  23. package/src/api/account.ts +590 -5
  24. package/src/api/ai.ts +2 -1
  25. package/src/api-addresses.ts +0 -1
  26. package/src/apis-itau.json +0 -8
  27. package/src/apis.json +0 -8
  28. package/src/client/account.ts +10 -10
  29. package/src/client/types.ts +9 -66
  30. package/src/index.ts +0 -1
  31. package/dist/api/cloudServices.d.ts +0 -614
  32. package/dist/api/cloudServices.d.ts.map +0 -1
  33. package/dist/api/cloudServices.js +0 -355
  34. package/dist/api/cloudServices.js.map +0 -1
  35. package/dist/client/cloud-services.d.ts +0 -113
  36. package/dist/client/cloud-services.d.ts.map +0 -1
  37. package/dist/client/cloud-services.js +0 -146
  38. package/dist/client/cloud-services.js.map +0 -1
  39. package/src/api/cloudServices.ts +0 -1445
  40. package/src/client/cloud-services.ts +0 -94
@@ -1,614 +0,0 @@
1
- /**
2
- * OpenAPI definition
3
- * v0
4
- * DO NOT MODIFY - This file has been generated using oazapfts.
5
- * See https://www.npmjs.com/package/oazapfts
6
- */
7
- import * as Oazapfts from "@oazapfts/runtime";
8
- export declare const defaults: Oazapfts.Defaults<Oazapfts.CustomHeaders>;
9
- export declare const servers: {
10
- generatedServerUrl: string;
11
- };
12
- export type GuardrailUpdate = {
13
- /** The ID of GuardRail that will be updated */
14
- id: string;
15
- /** The GuardRail title */
16
- title?: string;
17
- /** A description explaining what GuardRail do */
18
- description?: string;
19
- /** Indicates if GuardRail is active to users use it */
20
- active?: boolean;
21
- /** Indicates if GuardRail is configurable for user */
22
- configurable?: boolean;
23
- /** Type of implementation */
24
- implementation?: "RECOMENDATION" | "MANDATORY";
25
- /** Type of action taken by GuardRail */
26
- action?: "REMEDIATION" | "NOTIFICATION" | "NOT_IMPLEMENTED";
27
- /** The type of GuardRail. [SCP, GUARDRAIL] */
28
- "type"?: "SCP" | "GUARDRAIL";
29
- };
30
- export type ValidationDetails = {
31
- code: string;
32
- field?: string;
33
- details?: string;
34
- values?: string[];
35
- };
36
- export type GuardrailRequest = {
37
- /** The baseline id that GuardRail belongs */
38
- baselineId: string;
39
- /** The GuardRail title */
40
- title: string;
41
- /** A description explaining what GuardRail do */
42
- description: string;
43
- /** Indicates if GuardRail is active to users use it */
44
- active: boolean;
45
- /** Indicates if GuardRail is configurable for user */
46
- configurable: boolean;
47
- /** Type of implementation */
48
- implementation: "RECOMENDATION" | "MANDATORY";
49
- /** Type of action taken by GuardRail */
50
- action: "REMEDIATION" | "NOTIFICATION" | "NOT_IMPLEMENTED";
51
- /** The type of GuardRail. [SCP, GUARDRAIL] */
52
- "type": "SCP" | "GUARDRAIL";
53
- };
54
- export type GuardrailDetails = {
55
- /** The guardrail ID */
56
- id: string;
57
- };
58
- export type BaselineUpdate = {
59
- /** The baseline title */
60
- title: string;
61
- /** The date when that Baseline was published */
62
- publishedAt?: string;
63
- /** Status of the baseline, if it's published or a draft */
64
- status?: string;
65
- };
66
- export type BillingAccountSummaryResponse = {
67
- /** ULID identifier for each billing account. */
68
- id: string;
69
- /** Slug identifier for each billing account. */
70
- name: string;
71
- /** StackSpot's ULID identifier for each client. */
72
- stackSpotAccountId: string;
73
- };
74
- export type BillingAccountRequest = {
75
- /** Slug identifier for each billing account. */
76
- name: string;
77
- /** StackSpot's ULID identifier for each client. */
78
- stackSpotAccountId: string;
79
- /** The AWS S3 bucket name used for CUR (Cost and Usage Report). */
80
- awsCurBucketName: string;
81
- /** The AWS region where the CUR bucket is located. */
82
- awsCurBucketRegion: string;
83
- /** The name of the AWS CUR report. */
84
- awsCurReportName: string;
85
- /** The prefix used in the AWS CUR bucket for reports. */
86
- awsCurPrefix: string;
87
- /** The AWS IAM Role ARN with permissions to access CUR data. */
88
- awsRoleArn: string;
89
- /** The AWS Secret Manager secret ARN containing the External ID. */
90
- awsSecretIdArn: string;
91
- };
92
- export type BillingAccountDetailsResponse = {
93
- /** ULID identifier for each billing account. */
94
- id: string;
95
- /** Slug identifier for each billing account. */
96
- name: string;
97
- /** StackSpot's ULID identifier for each client. */
98
- stackSpotAccountId: string;
99
- /** The AWS S3 bucket name used for CUR (Cost and Usage Report). */
100
- awsCurBucketName: string;
101
- /** The AWS region where the CUR bucket is located. */
102
- awsCurBucketRegion: string;
103
- /** The name of the AWS CUR report. */
104
- awsCurReportName: string;
105
- /** The prefix used in the AWS CUR bucket for reports. */
106
- awsCurPrefix: string;
107
- /** The AWS IAM Role ARN with permissions to access CUR data. */
108
- awsRoleArn: string;
109
- /** The AWS Secret Manager secret ARN containing the External ID. */
110
- awsSecretIdArn?: string;
111
- /** Timestamp of when the billing account was marked as deleted. */
112
- deletedAt?: string;
113
- /** Timestamp of when the billing account was created. */
114
- createdAt: string;
115
- /** Timestamp of the last update to the billing account. */
116
- updatedAt: string;
117
- };
118
- export type Ulid = {
119
- value: string;
120
- };
121
- export type Filter = {
122
- /** A categorical attribute for context or categorization in billing data. */
123
- "type": "REGION" | "SERVICE_NAME" | "SUB_ACCOUNT_ID" | "TAG_KEY" | "TAG_VALUE";
124
- /** Defines the exact value the filter will look for within the specified type. */
125
- value: string;
126
- };
127
- export type ChargePeriod = {
128
- /** Represents the end date of the charge period. */
129
- end: string;
130
- /** Represents the end date of the charge period. */
131
- start: string;
132
- };
133
- export type AllocationCostRequest = {
134
- /** StackSpot's ULID identifier for each client. */
135
- stackSpotAccountId: string;
136
- /** StackSpot-assigned ULID identifiers for a billing account. */
137
- billingAccountId: Ulid[];
138
- /** StackSpot-assigned ULID identifiers for a billing account. */
139
- filter: Filter[];
140
- /** Defines the row's time-based granularity. */
141
- granularity: "PERIOD" | "MONTH";
142
- /** A categorical attribute that provides context or categorization to billing data. */
143
- dimension: "SERVICE_NAME" | "TAG" | "USAGE_UNIT";
144
- chargePeriod: ChargePeriod;
145
- };
146
- export type ServiceNameResponse = GetCostAndUsageData & {
147
- chargePeriod?: ChargePeriod;
148
- /** Represents an offering that can be purchased from a cloud provider. */
149
- serviceName?: string;
150
- /** Effective cost post discounts and amortizations. */
151
- effectiveCost?: number;
152
- };
153
- export type TagResponse = GetCostAndUsageData & {
154
- chargePeriod?: ChargePeriod;
155
- /** Tag key: Identifies a grouping attribute or category for resources or constructs. */
156
- tagKey?: string;
157
- /** Tag value: Specifies the group or category detail that the resource or construct belongs to. */
158
- tagValue?: string;
159
- /** Effective cost post discounts and amortizations. */
160
- effectiveCost?: number;
161
- };
162
- export type UsageUnitResponse = GetCostAndUsageData & {
163
- chargePeriod?: ChargePeriod;
164
- /** Represents an offering that can be purchased from a cloud provider. */
165
- serviceName?: string;
166
- /** Represents the volume of a given resource or service used or purchased based on the Usage Unit. */
167
- usageQuantity?: number;
168
- /** Defines the unit of measurement for the resource or service. */
169
- usageUnit?: string;
170
- /** Effective cost post discounts and amortizations. */
171
- effectiveCost?: number;
172
- };
173
- export type GetCostAndUsageData = ({
174
- "type": "ServiceNameResponse";
175
- } & ServiceNameResponse) | ({
176
- "type": "TagResponse";
177
- } & TagResponse) | ({
178
- "type": "UsageUnitResponse";
179
- } & UsageUnitResponse);
180
- export type AllocationCostResponse = {
181
- /** Unique identifier for the task, used for tracking and retrieval. */
182
- id: string;
183
- /** Current status of the task, indicating its lifecycle phase. */
184
- status: "PROCESSING" | "SUCCESS" | "ERROR";
185
- /** Contains processed data, available when status is SUCCESS. */
186
- data: GetCostAndUsageData[];
187
- /** Optional details on processing status, providing task insights or error explanations. */
188
- message: string;
189
- };
190
- export type ProblemDetail = {
191
- "type"?: string;
192
- title?: string;
193
- status?: number;
194
- detail?: string;
195
- instance?: string;
196
- properties?: {
197
- [key: string]: object;
198
- };
199
- };
200
- export type RegisterOfferRequest = {
201
- /** The Stackspot account ID to associate the offer with */
202
- stackspotAccountId: string;
203
- /** The Cloud Offer type to be registered */
204
- cloudOffer: "Reseller" | "Managed" | "FullyManaged";
205
- };
206
- export type CreateContractRequest = {
207
- stackSpotAccountId: Ulid;
208
- factor: number;
209
- startDate: string;
210
- };
211
- export type Contract = {
212
- id: string;
213
- stackSpotAccountId: string;
214
- factor: number;
215
- startDate: string;
216
- };
217
- export type LinkResourceTypeToStackspotAccountRequest = {
218
- stackspotAccountId: Ulid;
219
- serviceIds: Ulid[];
220
- };
221
- export type BaselineResponse = {
222
- /** The ID of baseline that will be updated */
223
- id: string;
224
- /** The baseline title */
225
- title: string;
226
- /** The date when that Baseline was published */
227
- publishedAt?: string;
228
- /** Status of the baseline, if it's published or a draft */
229
- status?: string;
230
- };
231
- export type BaselineRequest = {
232
- /** The baseline title */
233
- title: string;
234
- /** The date when that Baseline was published */
235
- publishedAt?: string;
236
- /** Status of the baseline, if it's published or a draft */
237
- status?: string;
238
- };
239
- export type BaselineDetails = {
240
- /** The baseline ID */
241
- id: string;
242
- };
243
- export type GuardrailStatusResponse = {
244
- /** The baseline id that GuardRail belongs */
245
- baselineId: string;
246
- /** The guardrail id */
247
- guardrailId: string;
248
- /** The GuardRail title */
249
- title: string;
250
- /** A description explaining what GuardRail do */
251
- description: string;
252
- /** Indicates if GuardRail is configurable for user */
253
- configurable: boolean;
254
- /** Implementation type of Guardrail */
255
- implementation: "RECOMENDATION" | "MANDATORY";
256
- /** Action taken by the Guardrail */
257
- action: "REMEDIATION" | "NOTIFICATION" | "NOT_IMPLEMENTED";
258
- /** Indicates if GuardRail is enabled */
259
- enabled: boolean;
260
- };
261
- export type GroupedGuardrailResponse = {
262
- /** The baseline id that GuardRail belongs */
263
- baselineId: string;
264
- /** The baseline title that GuardRail belongs */
265
- baselineTitle: string;
266
- /** All GuardRails attached to a Baseline */
267
- guardrails: GuardrailStatusResponse[];
268
- };
269
- export type DailyCostSummary = {
270
- date: string;
271
- cost: number;
272
- };
273
- export type CostByWorkspace = {
274
- /** Title of the workspace. */
275
- workspaceName: string;
276
- /** Cost associated with the workspace. */
277
- cost: number;
278
- };
279
- export type CostOverview = {
280
- /** Costs from the current month. */
281
- currentMonth: number;
282
- /** Costs from the last month. */
283
- lastMonth: number;
284
- /** Costs from the past three months. */
285
- lastThreeMonths: number;
286
- currentMonthAverage: number;
287
- currentMonthDaily: DailyCostSummary[];
288
- costByWorkspace: CostByWorkspace[];
289
- };
290
- export type AttachmentBase64 = {
291
- filename: string;
292
- base64: string;
293
- contentType: string;
294
- };
295
- export type AllocationCost = {
296
- name: string;
297
- costValue: number;
298
- };
299
- export type PaginatedResponseAllocationCost = {
300
- data: AllocationCost[];
301
- nextPage?: string;
302
- prevPage?: string;
303
- count: number;
304
- };
305
- export type AllocationCostDetails = {
306
- serviceName: string;
307
- stackSpotUsageType: string;
308
- quantity: number;
309
- costValue: number;
310
- };
311
- export type PaginatedResponseAllocationCostDetails = {
312
- data: AllocationCostDetails[];
313
- nextPage?: string;
314
- prevPage?: string;
315
- count: number;
316
- };
317
- export type ManagedResource = {
318
- /** Unique identifier. */
319
- id: string;
320
- /** The resource name. */
321
- name: string;
322
- cloudAccountId: string;
323
- cloudProviderRegion: string;
324
- /** The environment type. */
325
- environmentName: string;
326
- /** Created at. */
327
- createdAt?: string;
328
- /** The resource status. */
329
- status?: "Up" | "Down" | "Starting" | "Unknown";
330
- };
331
- export type ManagedResourceList = {
332
- data: ManagedResource[];
333
- pageToken?: string;
334
- };
335
- export type ServiceResource = {
336
- id: Ulid;
337
- /** The service resource name */
338
- name: string;
339
- };
340
- export type ManagedService = {
341
- /** Unique identifier. */
342
- id: string;
343
- /** The service name. */
344
- name: string;
345
- /** List of resources. */
346
- resources: ServiceResource[];
347
- };
348
- export type AccountCloudOfferResponse = {
349
- stackspotAccountId: string;
350
- offer: "Reseller" | "Managed" | "FullyManaged";
351
- };
352
- export type Alert = {
353
- /** Auto id of the alert. */
354
- id: string;
355
- /** Describe the pillar of the alert. It can be security, reliability or cost optimization. */
356
- pillar: "SECURITY" | "COST_OPTIMIZATION" | "RELIABILITY";
357
- /** Describe the environment of the alert. It can be production, staging or development. */
358
- environment: string;
359
- /** Workspace of the alert. */
360
- workspace: string;
361
- /** Describe the severity of the alert. It can be mandatory, high, medium or low. */
362
- severity: "LOW" | "MEDIUM" | "HIGH" | "MANDATORY";
363
- /** Describe the title of the alert. */
364
- title: string;
365
- /** Description of the alert. */
366
- description: string;
367
- /** Short description about what can be done in order to resolve the issue. */
368
- remediationText: string;
369
- /** Url that contains a detailed documentation to resolve the issue. */
370
- remediationUrl: string;
371
- /** Policy of the issue that created the alert. */
372
- awsPolicy: string;
373
- /** Id of the alert in AWS. */
374
- sourceAlertId: string;
375
- /** Id of the resource. */
376
- resourceId?: string;
377
- /** Status of the alert. It can be pending, completed or not applicable. */
378
- status: "PENDING" | "NOT_APPLICABLE" | "COMPLETED";
379
- };
380
- export type PaginatedResponseAlert = {
381
- data: Alert[];
382
- nextPage?: string;
383
- prevPage?: string;
384
- count: number;
385
- };
386
- export type ServiceSummary = {
387
- id: string;
388
- name: string;
389
- };
390
- /**
391
- * Update a GuardRail
392
- */
393
- export declare function updateGuardrail({ guardrailUpdate }: {
394
- guardrailUpdate: GuardrailUpdate;
395
- }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
396
- /**
397
- * Create a GuardRail
398
- */
399
- export declare function createGuardrail({ guardrailRequest }: {
400
- guardrailRequest: GuardrailRequest;
401
- }, opts?: Oazapfts.RequestOpts): Promise<GuardrailDetails>;
402
- /**
403
- * Update a baseline
404
- */
405
- export declare function updateBaseline({ baselineId, baselineUpdate }: {
406
- baselineId: string;
407
- baselineUpdate: BaselineUpdate;
408
- }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
409
- /**
410
- * Retrieves billing account summaries
411
- */
412
- export declare function listBillingAccounts({ stackSpotAccountId, showDeleted }: {
413
- stackSpotAccountId: string;
414
- showDeleted?: boolean;
415
- }, opts?: Oazapfts.RequestOpts): Promise<BillingAccountSummaryResponse>;
416
- /**
417
- * Create new billing account
418
- */
419
- export declare function createBillingAccount({ billingAccountRequest }: {
420
- billingAccountRequest: BillingAccountRequest;
421
- }, opts?: Oazapfts.RequestOpts): Promise<BillingAccountDetailsResponse>;
422
- /**
423
- * Retrieves cost and usage metrics for your account.
424
- */
425
- export declare function processAllocationCostRequest({ allocationCostRequest }: {
426
- allocationCostRequest: AllocationCostRequest;
427
- }, opts?: Oazapfts.RequestOpts): Promise<AllocationCostResponse>;
428
- /**
429
- * Enable a GuardRail in any level
430
- */
431
- export declare function enableGuardrail({ account, workspace, env, enable, guardrailId }: {
432
- account: string;
433
- workspace?: string;
434
- env?: string;
435
- enable: boolean;
436
- guardrailId: string;
437
- }, opts?: Oazapfts.RequestOpts): Promise<unknown>;
438
- /**
439
- * Register a cloud offer for a Stackspot Account.
440
- */
441
- export declare function registerOffer({ registerOfferRequest }: {
442
- registerOfferRequest: RegisterOfferRequest;
443
- }, opts?: Oazapfts.RequestOpts): Promise<"100 CONTINUE" | "101 SWITCHING_PROTOCOLS" | "102 PROCESSING" | "103 EARLY_HINTS" | "103 CHECKPOINT" | "200 OK" | "201 CREATED" | "202 ACCEPTED" | "203 NON_AUTHORITATIVE_INFORMATION" | "204 NO_CONTENT" | "205 RESET_CONTENT" | "206 PARTIAL_CONTENT" | "207 MULTI_STATUS" | "208 ALREADY_REPORTED" | "226 IM_USED" | "300 MULTIPLE_CHOICES" | "301 MOVED_PERMANENTLY" | "302 FOUND" | "302 MOVED_TEMPORARILY" | "303 SEE_OTHER" | "304 NOT_MODIFIED" | "305 USE_PROXY" | "307 TEMPORARY_REDIRECT" | "308 PERMANENT_REDIRECT" | "400 BAD_REQUEST" | "401 UNAUTHORIZED" | "402 PAYMENT_REQUIRED" | "403 FORBIDDEN" | "404 NOT_FOUND" | "405 METHOD_NOT_ALLOWED" | "406 NOT_ACCEPTABLE" | "407 PROXY_AUTHENTICATION_REQUIRED" | "408 REQUEST_TIMEOUT" | "409 CONFLICT" | "410 GONE" | "411 LENGTH_REQUIRED" | "412 PRECONDITION_FAILED" | "413 PAYLOAD_TOO_LARGE" | "413 REQUEST_ENTITY_TOO_LARGE" | "414 URI_TOO_LONG" | "414 REQUEST_URI_TOO_LONG" | "415 UNSUPPORTED_MEDIA_TYPE" | "416 REQUESTED_RANGE_NOT_SATISFIABLE" | "417 EXPECTATION_FAILED" | "418 I_AM_A_TEAPOT" | "419 INSUFFICIENT_SPACE_ON_RESOURCE" | "420 METHOD_FAILURE" | "421 DESTINATION_LOCKED" | "422 UNPROCESSABLE_ENTITY" | "423 LOCKED" | "424 FAILED_DEPENDENCY" | "425 TOO_EARLY" | "426 UPGRADE_REQUIRED" | "428 PRECONDITION_REQUIRED" | "429 TOO_MANY_REQUESTS" | "431 REQUEST_HEADER_FIELDS_TOO_LARGE" | "451 UNAVAILABLE_FOR_LEGAL_REASONS" | "500 INTERNAL_SERVER_ERROR" | "501 NOT_IMPLEMENTED" | "502 BAD_GATEWAY" | "503 SERVICE_UNAVAILABLE" | "504 GATEWAY_TIMEOUT" | "505 HTTP_VERSION_NOT_SUPPORTED" | "506 VARIANT_ALSO_NEGOTIATES" | "507 INSUFFICIENT_STORAGE" | "508 LOOP_DETECTED" | "509 BANDWIDTH_LIMIT_EXCEEDED" | "510 NOT_EXTENDED" | "511 NETWORK_AUTHENTICATION_REQUIRED">;
444
- export declare function createNewContract({ createContractRequest }: {
445
- createContractRequest: CreateContractRequest;
446
- }, opts?: Oazapfts.RequestOpts): Promise<Contract>;
447
- /**
448
- * Links services to a Stackspot account, allowing users from that account to see resources in CRE
449
- */
450
- export declare function linkResourceTypesToStackspotAccount({ linkResourceTypeToStackspotAccountRequest }: {
451
- linkResourceTypeToStackspotAccountRequest: LinkResourceTypeToStackspotAccountRequest;
452
- }, opts?: Oazapfts.RequestOpts): Promise<"100 CONTINUE" | "101 SWITCHING_PROTOCOLS" | "102 PROCESSING" | "103 EARLY_HINTS" | "103 CHECKPOINT" | "200 OK" | "201 CREATED" | "202 ACCEPTED" | "203 NON_AUTHORITATIVE_INFORMATION" | "204 NO_CONTENT" | "205 RESET_CONTENT" | "206 PARTIAL_CONTENT" | "207 MULTI_STATUS" | "208 ALREADY_REPORTED" | "226 IM_USED" | "300 MULTIPLE_CHOICES" | "301 MOVED_PERMANENTLY" | "302 FOUND" | "302 MOVED_TEMPORARILY" | "303 SEE_OTHER" | "304 NOT_MODIFIED" | "305 USE_PROXY" | "307 TEMPORARY_REDIRECT" | "308 PERMANENT_REDIRECT" | "400 BAD_REQUEST" | "401 UNAUTHORIZED" | "402 PAYMENT_REQUIRED" | "403 FORBIDDEN" | "404 NOT_FOUND" | "405 METHOD_NOT_ALLOWED" | "406 NOT_ACCEPTABLE" | "407 PROXY_AUTHENTICATION_REQUIRED" | "408 REQUEST_TIMEOUT" | "409 CONFLICT" | "410 GONE" | "411 LENGTH_REQUIRED" | "412 PRECONDITION_FAILED" | "413 PAYLOAD_TOO_LARGE" | "413 REQUEST_ENTITY_TOO_LARGE" | "414 URI_TOO_LONG" | "414 REQUEST_URI_TOO_LONG" | "415 UNSUPPORTED_MEDIA_TYPE" | "416 REQUESTED_RANGE_NOT_SATISFIABLE" | "417 EXPECTATION_FAILED" | "418 I_AM_A_TEAPOT" | "419 INSUFFICIENT_SPACE_ON_RESOURCE" | "420 METHOD_FAILURE" | "421 DESTINATION_LOCKED" | "422 UNPROCESSABLE_ENTITY" | "423 LOCKED" | "424 FAILED_DEPENDENCY" | "425 TOO_EARLY" | "426 UPGRADE_REQUIRED" | "428 PRECONDITION_REQUIRED" | "429 TOO_MANY_REQUESTS" | "431 REQUEST_HEADER_FIELDS_TOO_LARGE" | "451 UNAVAILABLE_FOR_LEGAL_REASONS" | "500 INTERNAL_SERVER_ERROR" | "501 NOT_IMPLEMENTED" | "502 BAD_GATEWAY" | "503 SERVICE_UNAVAILABLE" | "504 GATEWAY_TIMEOUT" | "505 HTTP_VERSION_NOT_SUPPORTED" | "506 VARIANT_ALSO_NEGOTIATES" | "507 INSUFFICIENT_STORAGE" | "508 LOOP_DETECTED" | "509 BANDWIDTH_LIMIT_EXCEEDED" | "510 NOT_EXTENDED" | "511 NETWORK_AUTHENTICATION_REQUIRED">;
453
- /**
454
- * Return all baseline registered
455
- */
456
- export declare function getBaselines(opts?: Oazapfts.RequestOpts): Promise<BaselineResponse[]>;
457
- /**
458
- * Create a baseline
459
- */
460
- export declare function createBaseline({ baselineRequest }: {
461
- baselineRequest: BaselineRequest;
462
- }, opts?: Oazapfts.RequestOpts): Promise<BaselineDetails>;
463
- /**
464
- * Retrieves details from a billing account
465
- */
466
- export declare function getBillingAccountById({ stackSpotAccountId, billingAccountId }: {
467
- stackSpotAccountId: string;
468
- billingAccountId: string;
469
- }, opts?: Oazapfts.RequestOpts): Promise<BillingAccountDetailsResponse>;
470
- /**
471
- * Delete a billing account
472
- */
473
- export declare function deleteBillingAccountById({ stackSpotAccountId, billingAccountId }: {
474
- stackSpotAccountId: string;
475
- billingAccountId: string;
476
- }, opts?: Oazapfts.RequestOpts): Promise<BillingAccountDetailsResponse>;
477
- /**
478
- * Get all GuardRails
479
- */
480
- export declare function getGuardrails({ account, workspace, env }: {
481
- account: string;
482
- workspace?: string;
483
- env?: string;
484
- }, opts?: Oazapfts.RequestOpts): Promise<GroupedGuardrailResponse[]>;
485
- /**
486
- * Get overview of costs, with current month, last month and three last month
487
- */
488
- export declare function getCostOverview({ sortBy, sortOrder }: {
489
- sortBy?: string;
490
- sortOrder?: string;
491
- }, opts?: Oazapfts.RequestOpts): Promise<CostOverview>;
492
- export declare function downloadCsvFiles({ year, month }: {
493
- year: number;
494
- month: number;
495
- }, opts?: Oazapfts.RequestOpts): Promise<AttachmentBase64>;
496
- /**
497
- * List all tags.
498
- */
499
- export declare function getAllTags({ stackspotAccountId }: {
500
- stackspotAccountId: string;
501
- }, opts?: Oazapfts.RequestOpts): Promise<string[]>;
502
- /**
503
- * lists all subTags of a given tag with their respective costs.
504
- */
505
- export declare function getAllocationCostTagValues({ masterAccount, tag, startDate, endDate, sort, page, pageSize }: {
506
- masterAccount: string;
507
- tag: string;
508
- startDate: string;
509
- endDate: string;
510
- sort?: ("NAME_ASC" | "NAME_DESC" | "COST_VALUE_ASC" | "COST_VALUE_DESC")[];
511
- page?: number;
512
- pageSize?: number;
513
- }, opts?: Oazapfts.RequestOpts): Promise<PaginatedResponseAllocationCost>;
514
- /**
515
- * List all services of a subtag. Each service contains name and cost value.
516
- */
517
- export declare function getAllocationCostServices({ masterAccount, tag, tagValueName, startDate, endDate, sort, page, pageSize }: {
518
- masterAccount: string;
519
- tag: string;
520
- tagValueName: string;
521
- startDate: string;
522
- endDate: string;
523
- sort?: ("NAME_ASC" | "NAME_DESC" | "COST_VALUE_ASC" | "COST_VALUE_DESC")[];
524
- page?: number;
525
- pageSize?: number;
526
- }, opts?: Oazapfts.RequestOpts): Promise<PaginatedResponseAllocationCost>;
527
- /**
528
- * list service details
529
- */
530
- export declare function getAllocationCostServiceDetails({ masterAccount, tag, tagValueName, serviceName, startDate, endDate, $type, filter, page, pageSize, sort }: {
531
- masterAccount: string;
532
- tag: string;
533
- tagValueName: string;
534
- serviceName: string;
535
- startDate: string;
536
- endDate: string;
537
- $type: string;
538
- filter?: string[];
539
- page?: number;
540
- pageSize?: number;
541
- sort?: ("NAME_ASC" | "NAME_DESC" | "COST_VALUE_ASC" | "COST_VALUE_DESC")[];
542
- }, opts?: Oazapfts.RequestOpts): Promise<PaginatedResponseAllocationCostDetails>;
543
- /**
544
- * list all master accounts
545
- */
546
- export declare function getAllMasterAccount({ stackspotAccountId }: {
547
- stackspotAccountId: string;
548
- }, opts?: Oazapfts.RequestOpts): Promise<string[]>;
549
- /**
550
- * list filters related to the type
551
- */
552
- export declare function getAllocationCostFilters({ $type }: {
553
- $type: "SUB_ACCOUNT_ID" | "REGION";
554
- }, opts?: Oazapfts.RequestOpts): Promise<string[]>;
555
- /**
556
- * returns the detailed csv with the masterAccount CUR information
557
- */
558
- export declare function getAllocationCostCsv({ stackspotAccountId, masterAccount, startDate, endDate }: {
559
- stackspotAccountId: string;
560
- masterAccount: string;
561
- startDate: string;
562
- endDate: string;
563
- }, opts?: Oazapfts.RequestOpts): Promise<AttachmentBase64>;
564
- /**
565
- * List Instances of a particular Service Resource running in a Workspace
566
- */
567
- export declare function listInstances({ workspaceId, resourceId, pageToken, search }: {
568
- workspaceId: string;
569
- resourceId: string;
570
- pageToken?: string;
571
- search?: string;
572
- }, opts?: Oazapfts.RequestOpts): Promise<ManagedResourceList>;
573
- /**
574
- * List Managed Services
575
- */
576
- export declare function listServices(opts?: Oazapfts.RequestOpts): Promise<ManagedService[]>;
577
- /**
578
- * A detailed description of a particular Instance
579
- */
580
- export declare function getInstanceDetails({ cloudAccountId, resourceId, instanceId }: {
581
- cloudAccountId: string;
582
- resourceId: string;
583
- instanceId: string;
584
- }, opts?: Oazapfts.RequestOpts): Promise<object>;
585
- /**
586
- * Get the cloud offer of a Stackspot Account.
587
- */
588
- export declare function getOfferOfAccount({ id }: {
589
- id: string;
590
- }, opts?: Oazapfts.RequestOpts): Promise<AccountCloudOfferResponse>;
591
- /**
592
- * Get pages alerts from workspace and environment. That alerts can be filtered
593
- */
594
- export declare function getAlerts({ workspace, env, pillar, severity, status, search, sort, page, pageSize }: {
595
- workspace: string;
596
- env: string;
597
- pillar?: "SECURITY" | "COST_OPTIMIZATION" | "RELIABILITY";
598
- severity?: "LOW" | "MEDIUM" | "HIGH" | "MANDATORY";
599
- status?: "PENDING" | "NOT_APPLICABLE" | "COMPLETED";
600
- search?: string;
601
- sort?: ("STATUS_ASC" | "STATUS_DESC" | "POLICIES_ASC" | "POLICIES_DESC" | "PILLAR_ASC" | "PILLAR_DESC" | "SEVERITY_ASC" | "SEVERITY_DESC")[];
602
- page?: number;
603
- pageSize?: number;
604
- }, opts?: Oazapfts.RequestOpts): Promise<PaginatedResponseAlert>;
605
- export declare function downloadDataByAccountId({ stackspotAccountId, year, month }: {
606
- stackspotAccountId: string;
607
- year: number;
608
- month: number;
609
- }, opts?: Oazapfts.RequestOpts): Promise<AttachmentBase64>;
610
- /**
611
- * List available services
612
- */
613
- export declare function listServices1(opts?: Oazapfts.RequestOpts): Promise<ServiceSummary[]>;
614
- //# sourceMappingURL=cloudServices.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"cloudServices.d.ts","sourceRoot":"","sources":["../../src/api/cloudServices.ts"],"names":[],"mappings":"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"}