@devopness/sdk-js 2.95.0 → 2.96.0
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/api/generated/apis/static-data-cloud-provider-service-instances-api.d.ts +1 -1
- package/dist/api/generated/apis/static-data-cloud-provider-service-instances-api.js +1 -1
- package/dist/api/generated/models/archived-environment-relation.d.ts +6 -0
- package/dist/api/generated/models/environment-relation.d.ts +6 -0
- package/dist/api/generated/models/user-billing.d.ts +7 -0
- package/package.json +1 -1
|
@@ -18,7 +18,7 @@ import { CloudInstanceRelation } from '../../generated/models';
|
|
|
18
18
|
export declare class StaticDataCloudProviderServiceInstancesApiService extends ApiBaseService {
|
|
19
19
|
/**
|
|
20
20
|
*
|
|
21
|
-
* @summary List `Cloud Provider Service`
|
|
21
|
+
* @summary List `Cloud Provider Service` instance types by region
|
|
22
22
|
* @param {string} cloudProviderServiceCode The cloud provider service code.
|
|
23
23
|
* @param {string} regionCode The region of the cloud provider to get related instances.
|
|
24
24
|
* @param {number} [page] Number of the page to be retrieved
|
|
@@ -31,7 +31,7 @@ const Exceptions_1 = require("../../../common/Exceptions");
|
|
|
31
31
|
class StaticDataCloudProviderServiceInstancesApiService extends ApiBaseService_1.ApiBaseService {
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
|
-
* @summary List `Cloud Provider Service`
|
|
34
|
+
* @summary List `Cloud Provider Service` instance types by region
|
|
35
35
|
* @param {string} cloudProviderServiceCode The cloud provider service code.
|
|
36
36
|
* @param {string} regionCode The region of the cloud provider to get related instances.
|
|
37
37
|
* @param {number} [page] Number of the page to be retrieved
|
|
@@ -40,6 +40,12 @@ export interface ArchivedEnvironmentRelation {
|
|
|
40
40
|
* @memberof ArchivedEnvironmentRelation
|
|
41
41
|
*/
|
|
42
42
|
type_human_readable: string;
|
|
43
|
+
/**
|
|
44
|
+
* Number of credits used in the current monthly billing cycle by actions of resources in the environment.
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof ArchivedEnvironmentRelation
|
|
47
|
+
*/
|
|
48
|
+
used_credits?: number;
|
|
43
49
|
/**
|
|
44
50
|
* The date and time when the record was created
|
|
45
51
|
* @type {string}
|
|
@@ -40,6 +40,12 @@ export interface EnvironmentRelation {
|
|
|
40
40
|
* @memberof EnvironmentRelation
|
|
41
41
|
*/
|
|
42
42
|
type_human_readable: string;
|
|
43
|
+
/**
|
|
44
|
+
* Number of credits used in the current monthly billing cycle by actions of resources in the environment.
|
|
45
|
+
* @type {number}
|
|
46
|
+
* @memberof EnvironmentRelation
|
|
47
|
+
*/
|
|
48
|
+
used_credits?: number;
|
|
43
49
|
/**
|
|
44
50
|
* The date and time when the record was created
|
|
45
51
|
* @type {string}
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
* https://openapi-generator.tech
|
|
10
10
|
* Do not edit the class manually.
|
|
11
11
|
*/
|
|
12
|
+
import { EnvironmentRelation } from './environment-relation';
|
|
12
13
|
import { Subscription } from './subscription';
|
|
13
14
|
/**
|
|
14
15
|
*
|
|
@@ -22,4 +23,10 @@ export interface UserBilling {
|
|
|
22
23
|
* @memberof UserBilling
|
|
23
24
|
*/
|
|
24
25
|
active_subscription: Subscription | null;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<EnvironmentRelation>}
|
|
29
|
+
* @memberof UserBilling
|
|
30
|
+
*/
|
|
31
|
+
environments: Array<EnvironmentRelation>;
|
|
25
32
|
}
|