waldur-js-client 7.7.5 → 7.7.6-dev.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/types.gen.d.ts +30 -27
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -820,13 +820,13 @@ export type BasicCustomer = {
|
|
|
820
820
|
name: string;
|
|
821
821
|
};
|
|
822
822
|
export type BasicUser = {
|
|
823
|
-
readonly url
|
|
824
|
-
readonly uuid
|
|
823
|
+
readonly url?: string;
|
|
824
|
+
readonly uuid?: string;
|
|
825
825
|
/**
|
|
826
826
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
827
827
|
*/
|
|
828
|
-
username
|
|
829
|
-
readonly full_name
|
|
828
|
+
username?: string;
|
|
829
|
+
readonly full_name?: string;
|
|
830
830
|
native_name?: string;
|
|
831
831
|
/**
|
|
832
832
|
* Email address
|
|
@@ -2501,9 +2501,9 @@ export type FinancialReportEmailRequest = {
|
|
|
2501
2501
|
month: number;
|
|
2502
2502
|
};
|
|
2503
2503
|
export type Fingerprint = {
|
|
2504
|
-
readonly md5
|
|
2505
|
-
readonly sha256
|
|
2506
|
-
readonly sha512
|
|
2504
|
+
readonly md5?: string;
|
|
2505
|
+
readonly sha256?: string;
|
|
2506
|
+
readonly sha512?: string;
|
|
2507
2507
|
};
|
|
2508
2508
|
export type FirecrestJob = {
|
|
2509
2509
|
readonly url?: string;
|
|
@@ -9732,34 +9732,34 @@ export type RobotAccount = {
|
|
|
9732
9732
|
state?: RobotAccountStates;
|
|
9733
9733
|
};
|
|
9734
9734
|
export type RobotAccountDetails = {
|
|
9735
|
-
readonly url
|
|
9736
|
-
readonly uuid
|
|
9737
|
-
readonly created
|
|
9738
|
-
readonly modified
|
|
9735
|
+
readonly url?: string;
|
|
9736
|
+
readonly uuid?: string;
|
|
9737
|
+
readonly created?: string;
|
|
9738
|
+
readonly modified?: string;
|
|
9739
9739
|
username?: string;
|
|
9740
9740
|
description?: string;
|
|
9741
9741
|
readonly error_message?: string;
|
|
9742
9742
|
readonly error_traceback?: string;
|
|
9743
|
-
resource
|
|
9743
|
+
resource?: string;
|
|
9744
9744
|
/**
|
|
9745
9745
|
* Type of the robot account.
|
|
9746
9746
|
*/
|
|
9747
|
-
type
|
|
9748
|
-
readonly users
|
|
9747
|
+
type?: string;
|
|
9748
|
+
readonly users?: Array<BasicUser>;
|
|
9749
9749
|
keys?: unknown;
|
|
9750
|
-
readonly backend_id
|
|
9751
|
-
readonly fingerprints
|
|
9752
|
-
responsible_user
|
|
9750
|
+
readonly backend_id?: string;
|
|
9751
|
+
readonly fingerprints?: Array<Fingerprint>;
|
|
9752
|
+
responsible_user?: BasicUser | null;
|
|
9753
9753
|
state?: RobotAccountStates;
|
|
9754
|
-
readonly user_keys
|
|
9755
|
-
readonly resource_name
|
|
9756
|
-
readonly resource_uuid
|
|
9757
|
-
readonly project_name
|
|
9758
|
-
readonly project_uuid
|
|
9759
|
-
readonly customer_uuid
|
|
9760
|
-
readonly customer_name
|
|
9761
|
-
readonly offering_customer_uuid
|
|
9762
|
-
offering_plugin_options
|
|
9754
|
+
readonly user_keys?: Array<SshKey>;
|
|
9755
|
+
readonly resource_name?: string;
|
|
9756
|
+
readonly resource_uuid?: string;
|
|
9757
|
+
readonly project_name?: string;
|
|
9758
|
+
readonly project_uuid?: string;
|
|
9759
|
+
readonly customer_uuid?: string;
|
|
9760
|
+
readonly customer_name?: string;
|
|
9761
|
+
readonly offering_customer_uuid?: string;
|
|
9762
|
+
offering_plugin_options?: MergedPluginOptions;
|
|
9763
9763
|
};
|
|
9764
9764
|
export type RobotAccountErrorRequest = {
|
|
9765
9765
|
/**
|
|
@@ -25077,6 +25077,7 @@ export type MarketplaceRobotAccountsListData = {
|
|
|
25077
25077
|
*/
|
|
25078
25078
|
created?: string;
|
|
25079
25079
|
customer_uuid?: string;
|
|
25080
|
+
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_customer_uuid' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid'>;
|
|
25080
25081
|
/**
|
|
25081
25082
|
* Modified after
|
|
25082
25083
|
*/
|
|
@@ -25168,7 +25169,9 @@ export type MarketplaceRobotAccountsRetrieveData = {
|
|
|
25168
25169
|
path: {
|
|
25169
25170
|
uuid: string;
|
|
25170
25171
|
};
|
|
25171
|
-
query?:
|
|
25172
|
+
query?: {
|
|
25173
|
+
field?: Array<'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_customer_uuid' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid'>;
|
|
25174
|
+
};
|
|
25172
25175
|
url: '/api/marketplace-robot-accounts/{uuid}/';
|
|
25173
25176
|
};
|
|
25174
25177
|
export type MarketplaceRobotAccountsRetrieveResponses = {
|