waldur-js-client 8.0.9-dev.34 → 8.0.9-dev.36

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/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
  *
@@ -24600,6 +24614,20 @@ export const openstackTenantsSetQuotas = (options) => (options.client ?? client)
24600
24614
  ...options.headers
24601
24615
  }
24602
24616
  });
24617
+ /**
24618
+ * Tenant network topology
24619
+ *
24620
+ * Compose the tenant's network topology — routers, networks, subnets, ports, instances, floating IPs, external networks, and inbound RBAC shares — as a graph (nodes + edges). Read-only; all data comes from already-pulled state, no Neutron calls.
24621
+ */
24622
+ export const openstackTenantsTopologyRetrieve = (options) => (options.client ?? client).get({
24623
+ security: [
24624
+ { name: 'Authorization', type: 'apiKey' },
24625
+ { scheme: 'bearer', type: 'http' },
24626
+ { scheme: 'bearer', type: 'http' }
24627
+ ],
24628
+ url: '/api/openstack-tenants/{uuid}/topology/',
24629
+ ...options
24630
+ });
24603
24631
  /**
24604
24632
  * Unlink resource
24605
24633
  *
@@ -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>;
@@ -9340,7 +9369,6 @@ export type KeycloakUserGroupMembershipRequest = {
9340
9369
  };
9341
9370
  export type KeycloakUserGroupMembershipState = 'pending' | 'active';
9342
9371
  export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
9343
- export type KindEnum = 'default' | 'course' | 'public';
9344
9372
  export type LoginpagelayoutEnum = 'split-screen' | 'centered-card' | 'minimal' | 'full-hero' | 'gradient' | 'stacked' | 'right-split' | 'glassmorphism' | 'neumorphism' | 'animated-gradient' | 'video-background' | 'bottom-sheet' | 'tabbed' | 'wizard' | 'stats' | 'news' | 'carousel' | 'logo-watermark' | 'brand-pattern' | 'duotone' | 'diagonal' | 'time-based' | 'seasonal' | 'weather';
9345
9373
  export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
9346
9374
  export type LevelEnum = 'DEBUG' | 'INFO' | 'WARNING' | 'ERROR' | 'CRITICAL';
@@ -17317,7 +17345,7 @@ export type PatchedProjectRequest = {
17317
17345
  /**
17318
17346
  * Project type
17319
17347
  */
17320
- kind?: KindEnum;
17348
+ kind?: ProjectKindEnum;
17321
17349
  /**
17322
17350
  * Internal notes visible only to staff and support users (HTML content will be sanitized)
17323
17351
  */
@@ -18695,7 +18723,7 @@ export type Project = {
18695
18723
  /**
18696
18724
  * Project type
18697
18725
  */
18698
- kind?: KindEnum;
18726
+ kind?: ProjectKindEnum;
18699
18727
  readonly is_removed?: boolean;
18700
18728
  /**
18701
18729
  * Metadata about project termination (read-only)
@@ -19026,6 +19054,7 @@ export type ProjectInfoRequest = {
19026
19054
  */
19027
19055
  allowed_destinations?: string | null;
19028
19056
  };
19057
+ export type ProjectKindEnum = 'default' | 'course' | 'public';
19029
19058
  export type ProjectMapping = {
19030
19059
  uuid: string;
19031
19060
  name: string;
@@ -19160,7 +19189,7 @@ export type ProjectRequest = {
19160
19189
  /**
19161
19190
  * Project type
19162
19191
  */
19163
- kind?: KindEnum;
19192
+ kind?: ProjectKindEnum;
19164
19193
  /**
19165
19194
  * Internal notes visible only to staff and support users (HTML content will be sanitized)
19166
19195
  */
@@ -25768,6 +25797,10 @@ export type TenantSecurityGroupUpdateRequest = {
25768
25797
  description?: string;
25769
25798
  rules?: Array<OpenStackSecurityGroupRuleUpdateByNameRequest>;
25770
25799
  };
25800
+ export type TenantTopology = {
25801
+ nodes: Array<TopologyNode>;
25802
+ edges: Array<TopologyEdge>;
25803
+ };
25771
25804
  export type ThreadSession = {
25772
25805
  readonly uuid?: string;
25773
25806
  name?: string;
@@ -25940,6 +25973,22 @@ export type TopServiceProviderByResources = {
25940
25973
  */
25941
25974
  projects_count: number;
25942
25975
  };
25976
+ export type TopologyEdge = {
25977
+ source: string;
25978
+ target: string;
25979
+ kind: TopologyEdgeKindEnum;
25980
+ };
25981
+ export type TopologyEdgeKindEnum = 'contains' | 'has_subnet' | 'has_port' | 'has_interface' | 'attached_to' | 'gateway' | 'floating_for' | 'shared_with';
25982
+ export type TopologyNode = {
25983
+ id: string;
25984
+ type: TopologyNodeTypeEnum;
25985
+ name: string;
25986
+ uuid?: string | null;
25987
+ attrs: {
25988
+ [key: string]: unknown;
25989
+ };
25990
+ };
25991
+ export type TopologyNodeTypeEnum = 'tenant' | 'router' | 'network' | 'subnet' | 'port' | 'instance' | 'floating_ip' | 'external_network' | 'rbac_share';
25943
25992
  export type TotalCustomerCost = {
25944
25993
  readonly total: number;
25945
25994
  readonly price: number;
@@ -28414,7 +28463,7 @@ export type ProjectRequestForm = {
28414
28463
  /**
28415
28464
  * Project type
28416
28465
  */
28417
- kind?: KindEnum;
28466
+ kind?: ProjectKindEnum;
28418
28467
  /**
28419
28468
  * Internal notes visible only to staff and support users (HTML content will be sanitized)
28420
28469
  */
@@ -28465,7 +28514,7 @@ export type ProjectRequestMultipart = {
28465
28514
  /**
28466
28515
  * Project type
28467
28516
  */
28468
- kind?: KindEnum;
28517
+ kind?: ProjectKindEnum;
28469
28518
  /**
28470
28519
  * Internal notes visible only to staff and support users (HTML content will be sanitized)
28471
28520
  */
@@ -28516,7 +28565,7 @@ export type PatchedProjectRequestForm = {
28516
28565
  /**
28517
28566
  * Project type
28518
28567
  */
28519
- kind?: KindEnum;
28568
+ kind?: ProjectKindEnum;
28520
28569
  /**
28521
28570
  * Internal notes visible only to staff and support users (HTML content will be sanitized)
28522
28571
  */
@@ -28567,7 +28616,7 @@ export type PatchedProjectRequestMultipart = {
28567
28616
  /**
28568
28617
  * Project type
28569
28618
  */
28570
- kind?: KindEnum;
28619
+ kind?: ProjectKindEnum;
28571
28620
  /**
28572
28621
  * Internal notes visible only to staff and support users (HTML content will be sanitized)
28573
28622
  */
@@ -70098,6 +70147,18 @@ export type OpenstackRoutersAvailableExternalNetworksListResponses = {
70098
70147
  200: Array<AvailableExternalNetwork>;
70099
70148
  };
70100
70149
  export type OpenstackRoutersAvailableExternalNetworksListResponse = OpenstackRoutersAvailableExternalNetworksListResponses[keyof OpenstackRoutersAvailableExternalNetworksListResponses];
70150
+ export type OpenstackRoutersEffectiveRoutesRetrieveData = {
70151
+ body?: never;
70152
+ path: {
70153
+ uuid: string;
70154
+ };
70155
+ query?: never;
70156
+ url: '/api/openstack-routers/{uuid}/effective_routes/';
70157
+ };
70158
+ export type OpenstackRoutersEffectiveRoutesRetrieveResponses = {
70159
+ 200: EffectiveRoutesResponse;
70160
+ };
70161
+ export type OpenstackRoutersEffectiveRoutesRetrieveResponse = OpenstackRoutersEffectiveRoutesRetrieveResponses[keyof OpenstackRoutersEffectiveRoutesRetrieveResponses];
70101
70162
  export type OpenstackRoutersRemoveExternalGatewayData = {
70102
70163
  body?: never;
70103
70164
  path: {
@@ -72130,6 +72191,18 @@ export type OpenstackTenantsSetQuotasResponses = {
72130
72191
  202: Status;
72131
72192
  };
72132
72193
  export type OpenstackTenantsSetQuotasResponse = OpenstackTenantsSetQuotasResponses[keyof OpenstackTenantsSetQuotasResponses];
72194
+ export type OpenstackTenantsTopologyRetrieveData = {
72195
+ body?: never;
72196
+ path: {
72197
+ uuid: string;
72198
+ };
72199
+ query?: never;
72200
+ url: '/api/openstack-tenants/{uuid}/topology/';
72201
+ };
72202
+ export type OpenstackTenantsTopologyRetrieveResponses = {
72203
+ 200: TenantTopology;
72204
+ };
72205
+ export type OpenstackTenantsTopologyRetrieveResponse = OpenstackTenantsTopologyRetrieveResponses[keyof OpenstackTenantsTopologyRetrieveResponses];
72133
72206
  export type OpenstackTenantsUnlinkData = {
72134
72207
  body?: never;
72135
72208
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.34",
3
+ "version": "8.0.9-dev.36",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",