waldur-js-client 8.0.9-dev.60 → 8.0.9-dev.61

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.
@@ -10518,6 +10518,14 @@ export type MergedPluginOptions = {
10518
10518
  * 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]}.
10519
10519
  */
10520
10520
  resource_name_pattern?: string | null;
10521
+ /**
10522
+ * Template for resource slugs, overriding the default 10-character slugified name. Available variables: {customer_slug}, {project_slug}, {project_name}, {offering_slug}, {year}, {month}, {counter}, {counter_padded}. Default: slugified resource name (max 10 characters).
10523
+ */
10524
+ resource_slug_template?: string | null;
10525
+ /**
10526
+ * Maximum length of auto-generated resource slugs derived from the resource name, overriding the default of 10 characters (up to 40). Ignored when a resource slug template is set.
10527
+ */
10528
+ resource_slug_max_length?: number | null;
10521
10529
  /**
10522
10530
  * If set, it will be used as a default MTU for the first network in a tenant
10523
10531
  */
@@ -10852,6 +10860,14 @@ export type MergedPluginOptionsRequest = {
10852
10860
  * 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]}.
10853
10861
  */
10854
10862
  resource_name_pattern?: string | null;
10863
+ /**
10864
+ * Template for resource slugs, overriding the default 10-character slugified name. Available variables: {customer_slug}, {project_slug}, {project_name}, {offering_slug}, {year}, {month}, {counter}, {counter_padded}. Default: slugified resource name (max 10 characters).
10865
+ */
10866
+ resource_slug_template?: string | null;
10867
+ /**
10868
+ * Maximum length of auto-generated resource slugs derived from the resource name, overriding the default of 10 characters (up to 40). Ignored when a resource slug template is set.
10869
+ */
10870
+ resource_slug_max_length?: number | null;
10855
10871
  /**
10856
10872
  * If set, it will be used as a default MTU for the first network in a tenant
10857
10873
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.9-dev.60",
3
+ "version": "8.0.9-dev.61",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",