waldur-js-client 8.0.9-dev.34 → 8.0.9-dev.35
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/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/sdk.gen.d.ts +7 -1
- package/dist/sdk.gen.js +14 -0
- package/dist/types.gen.d.ts +41 -0
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -23462,6 +23462,20 @@ export const openstackRoutersAvailableExternalNetworksList = (options) => (optio
|
|
|
23462
23462
|
url: '/api/openstack-routers/{uuid}/available_external_networks/',
|
|
23463
23463
|
...options
|
|
23464
23464
|
});
|
|
23465
|
+
/**
|
|
23466
|
+
* Effective routes for this router
|
|
23467
|
+
*
|
|
23468
|
+
* Compose the router's routing table from three sources: the default route inherited from the external gateway subnet, the on-link routes implied by each attached interface, and the user-set static routes. SNAT state is reported alongside.
|
|
23469
|
+
*/
|
|
23470
|
+
export const openstackRoutersEffectiveRoutesRetrieve = (options) => (options.client ?? client).get({
|
|
23471
|
+
security: [
|
|
23472
|
+
{ name: 'Authorization', type: 'apiKey' },
|
|
23473
|
+
{ scheme: 'bearer', type: 'http' },
|
|
23474
|
+
{ scheme: 'bearer', type: 'http' }
|
|
23475
|
+
],
|
|
23476
|
+
url: '/api/openstack-routers/{uuid}/effective_routes/',
|
|
23477
|
+
...options
|
|
23478
|
+
});
|
|
23465
23479
|
/**
|
|
23466
23480
|
* Remove external gateway
|
|
23467
23481
|
*
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -7119,6 +7119,35 @@ export type DuplicateCallRequestRequest = {
|
|
|
7119
7119
|
copy_assignment_configuration?: boolean;
|
|
7120
7120
|
};
|
|
7121
7121
|
export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'offering-usage' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
|
|
7122
|
+
export type EffectiveRoute = {
|
|
7123
|
+
destination: string;
|
|
7124
|
+
/**
|
|
7125
|
+
* An IPv4 or IPv6 address.
|
|
7126
|
+
*/
|
|
7127
|
+
nexthop: string | string | null;
|
|
7128
|
+
source: EffectiveRouteSourceEnum;
|
|
7129
|
+
subnet_uuid?: string | null;
|
|
7130
|
+
subnet_name?: string;
|
|
7131
|
+
subnet_cidr?: string;
|
|
7132
|
+
port_uuid?: string | null;
|
|
7133
|
+
port_backend_id?: string;
|
|
7134
|
+
/**
|
|
7135
|
+
* An IPv4 or IPv6 address.
|
|
7136
|
+
*/
|
|
7137
|
+
ip_on_router?: string | string | null;
|
|
7138
|
+
/**
|
|
7139
|
+
* An IPv4 or IPv6 address.
|
|
7140
|
+
*/
|
|
7141
|
+
gateway_ip_on_router?: string | string | null;
|
|
7142
|
+
external_network_uuid?: string | null;
|
|
7143
|
+
external_network_name?: string;
|
|
7144
|
+
};
|
|
7145
|
+
export type EffectiveRouteSourceEnum = 'default' | 'connected' | 'static';
|
|
7146
|
+
export type EffectiveRoutesResponse = {
|
|
7147
|
+
snat: boolean | null;
|
|
7148
|
+
has_external_gateway: boolean;
|
|
7149
|
+
routes: Array<EffectiveRoute>;
|
|
7150
|
+
};
|
|
7122
7151
|
export type EligibilityCheck = {
|
|
7123
7152
|
is_eligible: boolean;
|
|
7124
7153
|
restrictions: Array<string>;
|
|
@@ -70098,6 +70127,18 @@ export type OpenstackRoutersAvailableExternalNetworksListResponses = {
|
|
|
70098
70127
|
200: Array<AvailableExternalNetwork>;
|
|
70099
70128
|
};
|
|
70100
70129
|
export type OpenstackRoutersAvailableExternalNetworksListResponse = OpenstackRoutersAvailableExternalNetworksListResponses[keyof OpenstackRoutersAvailableExternalNetworksListResponses];
|
|
70130
|
+
export type OpenstackRoutersEffectiveRoutesRetrieveData = {
|
|
70131
|
+
body?: never;
|
|
70132
|
+
path: {
|
|
70133
|
+
uuid: string;
|
|
70134
|
+
};
|
|
70135
|
+
query?: never;
|
|
70136
|
+
url: '/api/openstack-routers/{uuid}/effective_routes/';
|
|
70137
|
+
};
|
|
70138
|
+
export type OpenstackRoutersEffectiveRoutesRetrieveResponses = {
|
|
70139
|
+
200: EffectiveRoutesResponse;
|
|
70140
|
+
};
|
|
70141
|
+
export type OpenstackRoutersEffectiveRoutesRetrieveResponse = OpenstackRoutersEffectiveRoutesRetrieveResponses[keyof OpenstackRoutersEffectiveRoutesRetrieveResponses];
|
|
70101
70142
|
export type OpenstackRoutersRemoveExternalGatewayData = {
|
|
70102
70143
|
body?: never;
|
|
70103
70144
|
path: {
|