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

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.
@@ -325,7 +325,7 @@ export type AgentIdentity = {
325
325
  readonly created_by: string | null;
326
326
  name: string;
327
327
  version?: string | null;
328
- readonly dependencies: Array<AgentDependency>;
328
+ dependencies?: Array<AgentDependency>;
329
329
  /**
330
330
  * Example: '/etc/waldur/agent.yaml'
331
331
  */
@@ -346,6 +346,7 @@ export type AgentIdentityRequest = {
346
346
  offering: string;
347
347
  name: string;
348
348
  version?: string | null;
349
+ dependencies?: Array<AgentDependencyRequest>;
349
350
  /**
350
351
  * Example: '/etc/waldur/agent.yaml'
351
352
  */
@@ -10518,6 +10519,14 @@ export type MergedPluginOptions = {
10518
10519
  * 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
10520
  */
10520
10521
  resource_name_pattern?: string | null;
10522
+ /**
10523
+ * 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).
10524
+ */
10525
+ resource_slug_template?: string | null;
10526
+ /**
10527
+ * 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.
10528
+ */
10529
+ resource_slug_max_length?: number | null;
10521
10530
  /**
10522
10531
  * If set, it will be used as a default MTU for the first network in a tenant
10523
10532
  */
@@ -10852,6 +10861,14 @@ export type MergedPluginOptionsRequest = {
10852
10861
  * 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
10862
  */
10854
10863
  resource_name_pattern?: string | null;
10864
+ /**
10865
+ * 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).
10866
+ */
10867
+ resource_slug_template?: string | null;
10868
+ /**
10869
+ * 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.
10870
+ */
10871
+ resource_slug_max_length?: number | null;
10855
10872
  /**
10856
10873
  * If set, it will be used as a default MTU for the first network in a tenant
10857
10874
  */
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.62",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",