waldur-js-client 7.8.3-dev.2 → 7.8.3-dev.3
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 +23 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2336,6 +2336,27 @@ export type DeleteAttachmentsRequest = {
|
|
|
2336
2336
|
};
|
|
2337
2337
|
export type DependencyLogicOperatorEnum = 'and' | 'or';
|
|
2338
2338
|
export type DeploymentModeEnum = 'self_managed' | 'managed';
|
|
2339
|
+
export type DeprecatedNetworkRbacPolicy = {
|
|
2340
|
+
readonly url: string;
|
|
2341
|
+
readonly uuid: string;
|
|
2342
|
+
readonly network: string;
|
|
2343
|
+
readonly network_name: string;
|
|
2344
|
+
target_tenant: string;
|
|
2345
|
+
readonly target_tenant_name: string;
|
|
2346
|
+
readonly backend_id: string;
|
|
2347
|
+
/**
|
|
2348
|
+
* Type of access granted - either shared access or external network access
|
|
2349
|
+
*/
|
|
2350
|
+
policy_type?: PolicyTypeEnum;
|
|
2351
|
+
readonly created: string;
|
|
2352
|
+
};
|
|
2353
|
+
export type DeprecatedNetworkRbacPolicyRequest = {
|
|
2354
|
+
target_tenant: string;
|
|
2355
|
+
/**
|
|
2356
|
+
* Type of access granted - either shared access or external network access
|
|
2357
|
+
*/
|
|
2358
|
+
policy_type?: PolicyTypeEnum;
|
|
2359
|
+
};
|
|
2339
2360
|
export type DetailState = {
|
|
2340
2361
|
readonly detail: string;
|
|
2341
2362
|
readonly state: string;
|
|
@@ -32949,7 +32970,7 @@ export type OpenstackNetworksPullResponses = {
|
|
|
32949
32970
|
200: unknown;
|
|
32950
32971
|
};
|
|
32951
32972
|
export type OpenstackNetworksRbacPolicyCreateData = {
|
|
32952
|
-
body:
|
|
32973
|
+
body: DeprecatedNetworkRbacPolicyRequest;
|
|
32953
32974
|
path: {
|
|
32954
32975
|
uuid: string;
|
|
32955
32976
|
};
|
|
@@ -32957,7 +32978,7 @@ export type OpenstackNetworksRbacPolicyCreateData = {
|
|
|
32957
32978
|
url: '/api/openstack-networks/{uuid}/rbac_policy_create/';
|
|
32958
32979
|
};
|
|
32959
32980
|
export type OpenstackNetworksRbacPolicyCreateResponses = {
|
|
32960
|
-
200:
|
|
32981
|
+
200: DeprecatedNetworkRbacPolicy;
|
|
32961
32982
|
};
|
|
32962
32983
|
export type OpenstackNetworksRbacPolicyCreateResponse = OpenstackNetworksRbacPolicyCreateResponses[keyof OpenstackNetworksRbacPolicyCreateResponses];
|
|
32963
32984
|
export type OpenstackNetworksRbacPolicyDeleteDestroyData = {
|