waldur-js-client 8.0.9-dev.49 → 8.0.9-dev.50

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
@@ -12706,6 +12706,20 @@ export const marketplaceProviderOfferingsExportOffering = (options) => (options.
12706
12706
  ...options.headers
12707
12707
  }
12708
12708
  });
12709
+ /**
12710
+ * Get structured GLauth tree for an offering
12711
+ *
12712
+ * Returns the same set of users, groups and robot accounts as `glauth_users_config`, but as a structured JSON tree suitable for navigation in admin UIs. Source of truth for the TOML endpoint.
12713
+ */
12714
+ export const marketplaceProviderOfferingsGlauthTreeRetrieve = (options) => (options.client ?? client).get({
12715
+ security: [
12716
+ { name: 'Authorization', type: 'apiKey' },
12717
+ { scheme: 'bearer', type: 'http' },
12718
+ { scheme: 'bearer', type: 'http' }
12719
+ ],
12720
+ url: '/api/marketplace-provider-offerings/{uuid}/glauth_tree/',
12721
+ ...options
12722
+ });
12709
12723
  /**
12710
12724
  * Get GLauth user configuration
12711
12725
  *
@@ -13957,6 +13971,20 @@ export const marketplaceProviderResourcesDetailsRetrieve = (options) => (options
13957
13971
  url: '/api/marketplace-provider-resources/{uuid}/details/',
13958
13972
  ...options
13959
13973
  });
13974
+ /**
13975
+ * Get structured GLauth tree for a resource
13976
+ *
13977
+ * Structured JSON tree (offering, groups, users, robot accounts) scoped to one resource's project. Source of truth for the `glauth_users_config` TOML on this viewset.
13978
+ */
13979
+ export const marketplaceProviderResourcesGlauthTreeRetrieve = (options) => (options.client ?? client).get({
13980
+ security: [
13981
+ { name: 'Authorization', type: 'apiKey' },
13982
+ { scheme: 'bearer', type: 'http' },
13983
+ { scheme: 'bearer', type: 'http' }
13984
+ ],
13985
+ url: '/api/marketplace-provider-resources/{uuid}/glauth_tree/',
13986
+ ...options
13987
+ });
13960
13988
  /**
13961
13989
  * Get GLauth user configuration for a resource
13962
13990
  *
@@ -15141,6 +15169,20 @@ export const marketplaceResourcesEstimateRenewal = (options) => (options.client
15141
15169
  ...options.headers
15142
15170
  }
15143
15171
  });
15172
+ /**
15173
+ * Get structured GLauth tree for a resource
15174
+ *
15175
+ * Structured JSON tree (offering, groups, users, robot accounts) scoped to one resource's project. Source of truth for the `glauth_users_config` TOML on this viewset.
15176
+ */
15177
+ export const marketplaceResourcesGlauthTreeRetrieve = (options) => (options.client ?? client).get({
15178
+ security: [
15179
+ { name: 'Authorization', type: 'apiKey' },
15180
+ { scheme: 'bearer', type: 'http' },
15181
+ { scheme: 'bearer', type: 'http' }
15182
+ ],
15183
+ url: '/api/marketplace-resources/{uuid}/glauth_tree/',
15184
+ ...options
15185
+ });
15144
15186
  /**
15145
15187
  * Get GLauth user configuration for a resource
15146
15188
  *
@@ -7958,6 +7958,61 @@ export type GenerateSuggestionsResponse = {
7958
7958
  source_used: string;
7959
7959
  suggestions: Array<string>;
7960
7960
  };
7961
+ export type GlauthGroupKind = 'project' | 'resource_role' | 'resource_project_role';
7962
+ export type GlauthTree = {
7963
+ offering: GlauthTreeOffering;
7964
+ groups: Array<GlauthTreeGroup>;
7965
+ users: Array<GlauthTreeUser>;
7966
+ robot_accounts: Array<GlauthTreeRobotAccount>;
7967
+ };
7968
+ export type GlauthTreeGroup = {
7969
+ gid: number;
7970
+ name: string;
7971
+ kind: GlauthGroupKind;
7972
+ scope: GlauthTreeScope;
7973
+ role: string | null;
7974
+ members: Array<string>;
7975
+ };
7976
+ export type GlauthTreeMembership = {
7977
+ gid: number;
7978
+ group_name: string;
7979
+ kind: GlauthGroupKind;
7980
+ role: string | null;
7981
+ };
7982
+ export type GlauthTreeOffering = {
7983
+ uuid: string;
7984
+ name: string;
7985
+ slug: string | null;
7986
+ };
7987
+ export type GlauthTreeRobotAccount = {
7988
+ username: string;
7989
+ uidnumber: number | null;
7990
+ personal_group: number | null;
7991
+ login_shell: string | null;
7992
+ home_dir: string | null;
7993
+ ssh_keys: Array<string>;
7994
+ };
7995
+ export type GlauthTreeScope = {
7996
+ type: GlauthTreeScopeTypeEnum;
7997
+ uuid: string;
7998
+ name: string | null;
7999
+ slug?: string | null;
8000
+ resource_uuid?: string | null;
8001
+ };
8002
+ export type GlauthTreeScopeTypeEnum = 'resource' | 'resource_project' | 'project';
8003
+ export type GlauthTreeUser = {
8004
+ username: string;
8005
+ uidnumber: number | null;
8006
+ disabled: boolean;
8007
+ personal_group: number | null;
8008
+ mail: string | null;
8009
+ givenname: string | null;
8010
+ sn: string | null;
8011
+ login_shell: string | null;
8012
+ home_dir: string | null;
8013
+ ssh_keys: Array<string>;
8014
+ memberships: Array<GlauthTreeMembership>;
8015
+ };
7961
8016
  export type GlobalUserDataAccessLog = {
7962
8017
  uuid: string;
7963
8018
  timestamp: string;
@@ -10262,7 +10317,7 @@ export type MergedPluginOptions = {
10262
10317
  /**
10263
10318
  * Required user role in a project for provisioning of resources
10264
10319
  */
10265
- required_team_role_for_provisioning?: string;
10320
+ required_team_role_for_provisioning?: string | null;
10266
10321
  /**
10267
10322
  * If set to True, users will be able to upload purchase orders.
10268
10323
  */
@@ -10314,7 +10369,7 @@ export type MergedPluginOptions = {
10314
10369
  /**
10315
10370
  * Python format string for generating resource names. Available variables: {customer_name}, {customer_slug}, {project_name}, {project_slug}, {offering_name}, {offering_slug}, {plan_name}, {counter}, {attributes[KEY]}.
10316
10371
  */
10317
- resource_name_pattern?: string;
10372
+ resource_name_pattern?: string | null;
10318
10373
  /**
10319
10374
  * If set, it will be used as a default MTU for the first network in a tenant
10320
10375
  */
@@ -10387,6 +10442,30 @@ export type MergedPluginOptions = {
10387
10442
  * GLAuth initial usergroup number
10388
10443
  */
10389
10444
  initial_usergroup_number?: number;
10445
+ /**
10446
+ * GLAuth initial gid for role-aware groups (one per (resource|resource-project, role) tuple). Must leave at least 50000 gids of headroom above initial_usergroup_number to avoid collisions.
10447
+ */
10448
+ initial_rolegroup_number?: number;
10449
+ /**
10450
+ * Mapping of Waldur role names (on Resource scope) to emitted role tokens used in group name rendering. Roles outside the map are skipped. Example: {"PI": "admin", "Member": "member"}.
10451
+ */
10452
+ resource_role_map?: {
10453
+ [key: string]: string;
10454
+ };
10455
+ /**
10456
+ * Mapping of Waldur role names (on ResourceProject scope) to emitted role tokens. Same semantics as resource_role_map.
10457
+ */
10458
+ resource_project_role_map?: {
10459
+ [key: string]: string;
10460
+ };
10461
+ /**
10462
+ * string.Template for resource-scope role group names. Variables: ${role_name}, ${resource_slug}, ${customer_slug}, ${project_slug}.
10463
+ */
10464
+ resource_role_group_template?: string;
10465
+ /**
10466
+ * string.Template for resource-project-scope role group names. Adds ${rp_uuid}, ${rp_uuid_short}, ${project_name} to the variables available for resource-scope templates.
10467
+ */
10468
+ resource_project_role_group_template?: string;
10390
10469
  /**
10391
10470
  * GLAuth prefix for anonymized usernames
10392
10471
  */
@@ -10572,7 +10651,7 @@ export type MergedPluginOptionsRequest = {
10572
10651
  /**
10573
10652
  * Required user role in a project for provisioning of resources
10574
10653
  */
10575
- required_team_role_for_provisioning?: string;
10654
+ required_team_role_for_provisioning?: string | null;
10576
10655
  /**
10577
10656
  * If set to True, users will be able to upload purchase orders.
10578
10657
  */
@@ -10624,7 +10703,7 @@ export type MergedPluginOptionsRequest = {
10624
10703
  /**
10625
10704
  * Python format string for generating resource names. Available variables: {customer_name}, {customer_slug}, {project_name}, {project_slug}, {offering_name}, {offering_slug}, {plan_name}, {counter}, {attributes[KEY]}.
10626
10705
  */
10627
- resource_name_pattern?: string;
10706
+ resource_name_pattern?: string | null;
10628
10707
  /**
10629
10708
  * If set, it will be used as a default MTU for the first network in a tenant
10630
10709
  */
@@ -10697,6 +10776,30 @@ export type MergedPluginOptionsRequest = {
10697
10776
  * GLAuth initial usergroup number
10698
10777
  */
10699
10778
  initial_usergroup_number?: number;
10779
+ /**
10780
+ * GLAuth initial gid for role-aware groups (one per (resource|resource-project, role) tuple). Must leave at least 50000 gids of headroom above initial_usergroup_number to avoid collisions.
10781
+ */
10782
+ initial_rolegroup_number?: number;
10783
+ /**
10784
+ * Mapping of Waldur role names (on Resource scope) to emitted role tokens used in group name rendering. Roles outside the map are skipped. Example: {"PI": "admin", "Member": "member"}.
10785
+ */
10786
+ resource_role_map?: {
10787
+ [key: string]: string;
10788
+ };
10789
+ /**
10790
+ * Mapping of Waldur role names (on ResourceProject scope) to emitted role tokens. Same semantics as resource_role_map.
10791
+ */
10792
+ resource_project_role_map?: {
10793
+ [key: string]: string;
10794
+ };
10795
+ /**
10796
+ * string.Template for resource-scope role group names. Variables: ${role_name}, ${resource_slug}, ${customer_slug}, ${project_slug}.
10797
+ */
10798
+ resource_role_group_template?: string;
10799
+ /**
10800
+ * string.Template for resource-project-scope role group names. Adds ${rp_uuid}, ${rp_uuid_short}, ${project_name} to the variables available for resource-scope templates.
10801
+ */
10802
+ resource_project_role_group_template?: string;
10700
10803
  /**
10701
10804
  * GLAuth prefix for anonymized usernames
10702
10805
  */
@@ -14768,6 +14871,7 @@ export type OpenStackNestedSubNet = {
14768
14871
  * If True, DHCP service will be enabled on this subnet
14769
14872
  */
14770
14873
  enable_dhcp?: boolean;
14874
+ readonly port_security_enabled?: boolean;
14771
14875
  };
14772
14876
  export type OpenStackNestedSubNetRequest = {
14773
14877
  name: string;
@@ -14890,6 +14994,10 @@ export type OpenStackNetwork = {
14890
14994
  */
14891
14995
  readonly mtu?: number | null;
14892
14996
  readonly rbac_policies?: Array<NetworkRbacPolicy>;
14997
+ /**
14998
+ * Default port_security_enabled for ports on this network. When False, ports created on this network inherit disabled port security unless explicitly overridden.
14999
+ */
15000
+ readonly port_security_enabled?: boolean;
14893
15001
  readonly marketplace_offering_uuid?: string | null;
14894
15002
  readonly marketplace_offering_name?: string | null;
14895
15003
  readonly marketplace_offering_type?: string | null;
@@ -15647,6 +15755,7 @@ export type OpenStackSubNet = {
15647
15755
  * Is subnet connected to the default tenant router.
15648
15756
  */
15649
15757
  readonly is_connected?: boolean;
15758
+ readonly port_security_enabled?: boolean;
15650
15759
  readonly marketplace_offering_uuid?: string | null;
15651
15760
  readonly marketplace_offering_name?: string | null;
15652
15761
  readonly marketplace_offering_type?: string | null;
@@ -30042,7 +30151,7 @@ export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
30042
30151
  export type OpenStackListenerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_pool' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
30043
30152
  export type OpenStackLoadBalancerFieldEnum = 'access_url' | 'attached_floating_ip' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'provider' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid' | 'vip_address' | 'vip_port' | 'vip_security_groups' | 'vip_subnet';
30044
30153
  export type NetworkRbacPolicyDirectionEnum = 'all' | 'inbound' | 'outbound';
30045
- export type OpenStackNetworkFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid';
30154
+ export type OpenStackNetworkFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid';
30046
30155
  export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'pool' | 'pool_name' | 'pool_uuid' | 'project' | 'project_name' | 'project_uuid' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet' | 'url' | 'uuid' | 'weight';
30047
30156
  export type OpenStackPoolFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'lb_algorithm' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
30048
30157
  export type OpenStackPortFieldEnum = 'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'target_tenant' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
@@ -30051,7 +30160,7 @@ export type OpenStackRouterFieldEnum = 'access_url' | 'backend_id' | 'created' |
30051
30160
  export type OpenStackSecurityGroupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'rules' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
30052
30161
  export type OpenStackServerGroupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'display_name' | 'error_message' | 'error_traceback' | 'instances' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'policy' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
30053
30162
  export type OpenStackSnapshotFieldEnum = 'access_url' | 'action' | 'action_details' | 'backend_id' | 'backups' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'kept_until' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'metadata' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'restorations' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'source_volume' | 'source_volume_marketplace_uuid' | 'source_volume_name' | 'state' | 'url' | 'uuid';
30054
- export type OpenStackSubNetFieldEnum = 'access_url' | 'allocation_pools' | 'backend_id' | 'cidr' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disable_gateway' | 'dns_nameservers' | 'enable_dhcp' | 'error_message' | 'error_traceback' | 'gateway_ip' | 'host_routes' | 'ip_version' | 'is_connected' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'url' | 'uuid';
30163
+ export type OpenStackSubNetFieldEnum = 'access_url' | 'allocation_pools' | 'backend_id' | 'cidr' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disable_gateway' | 'dns_nameservers' | 'enable_dhcp' | 'error_message' | 'error_traceback' | 'gateway_ip' | 'host_routes' | 'ip_version' | 'is_connected' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'url' | 'uuid';
30055
30164
  export type OpenStackTenantFieldEnum = 'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'external_network_ref_name' | 'external_network_ref_uuid' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid';
30056
30165
  export type OpenStackVolumeFieldEnum = 'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'bootable' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device' | 'error_message' | 'error_traceback' | 'extend_enabled' | 'image' | 'image_metadata' | 'image_name' | 'instance' | 'instance_marketplace_uuid' | 'instance_name' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'metadata' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'source_snapshot' | 'state' | 'tenant' | 'tenant_uuid' | 'type' | 'type_name' | 'url' | 'uuid';
30057
30166
  export type PaymentProfileOEnum = '-is_active' | '-name' | '-payment_type' | 'is_active' | 'name' | 'payment_type';
@@ -51061,6 +51170,18 @@ export type MarketplaceProviderOfferingsExportOfferingResponses = {
51061
51170
  200: OfferingExportResponse;
51062
51171
  };
51063
51172
  export type MarketplaceProviderOfferingsExportOfferingResponse = MarketplaceProviderOfferingsExportOfferingResponses[keyof MarketplaceProviderOfferingsExportOfferingResponses];
51173
+ export type MarketplaceProviderOfferingsGlauthTreeRetrieveData = {
51174
+ body?: never;
51175
+ path: {
51176
+ uuid: string;
51177
+ };
51178
+ query?: never;
51179
+ url: '/api/marketplace-provider-offerings/{uuid}/glauth_tree/';
51180
+ };
51181
+ export type MarketplaceProviderOfferingsGlauthTreeRetrieveResponses = {
51182
+ 200: GlauthTree;
51183
+ };
51184
+ export type MarketplaceProviderOfferingsGlauthTreeRetrieveResponse = MarketplaceProviderOfferingsGlauthTreeRetrieveResponses[keyof MarketplaceProviderOfferingsGlauthTreeRetrieveResponses];
51064
51185
  export type MarketplaceProviderOfferingsGlauthUsersConfigRetrieveData = {
51065
51186
  body?: never;
51066
51187
  path: {
@@ -53688,6 +53809,18 @@ export type MarketplaceProviderResourcesDetailsRetrieveResponses = {
53688
53809
  204: unknown;
53689
53810
  };
53690
53811
  export type MarketplaceProviderResourcesDetailsRetrieveResponse = MarketplaceProviderResourcesDetailsRetrieveResponses[keyof MarketplaceProviderResourcesDetailsRetrieveResponses];
53812
+ export type MarketplaceProviderResourcesGlauthTreeRetrieveData = {
53813
+ body?: never;
53814
+ path: {
53815
+ uuid: string;
53816
+ };
53817
+ query?: never;
53818
+ url: '/api/marketplace-provider-resources/{uuid}/glauth_tree/';
53819
+ };
53820
+ export type MarketplaceProviderResourcesGlauthTreeRetrieveResponses = {
53821
+ 200: GlauthTree;
53822
+ };
53823
+ export type MarketplaceProviderResourcesGlauthTreeRetrieveResponse = MarketplaceProviderResourcesGlauthTreeRetrieveResponses[keyof MarketplaceProviderResourcesGlauthTreeRetrieveResponses];
53691
53824
  export type MarketplaceProviderResourcesGlauthUsersConfigRetrieveData = {
53692
53825
  body?: never;
53693
53826
  path: {
@@ -55874,6 +56007,18 @@ export type MarketplaceResourcesEstimateRenewalResponses = {
55874
56007
  200: RenewalEstimateResponse;
55875
56008
  };
55876
56009
  export type MarketplaceResourcesEstimateRenewalResponse = MarketplaceResourcesEstimateRenewalResponses[keyof MarketplaceResourcesEstimateRenewalResponses];
56010
+ export type MarketplaceResourcesGlauthTreeRetrieveData = {
56011
+ body?: never;
56012
+ path: {
56013
+ uuid: string;
56014
+ };
56015
+ query?: never;
56016
+ url: '/api/marketplace-resources/{uuid}/glauth_tree/';
56017
+ };
56018
+ export type MarketplaceResourcesGlauthTreeRetrieveResponses = {
56019
+ 200: GlauthTree;
56020
+ };
56021
+ export type MarketplaceResourcesGlauthTreeRetrieveResponse = MarketplaceResourcesGlauthTreeRetrieveResponses[keyof MarketplaceResourcesGlauthTreeRetrieveResponses];
55877
56022
  export type MarketplaceResourcesGlauthUsersConfigRetrieveData = {
55878
56023
  body?: never;
55879
56024
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.49",
3
+ "version": "8.0.9-dev.50",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",