qovery-typescript-axios 1.1.975 → 1.1.977

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/api.ts CHANGED
@@ -171,6 +171,25 @@ export interface AgenticWorkflowHeader {
171
171
  */
172
172
  'value': string;
173
173
  }
174
+ /**
175
+ *
176
+ * @export
177
+ * @interface AgenticWorkflowMcpServer
178
+ */
179
+ export interface AgenticWorkflowMcpServer {
180
+ /**
181
+ *
182
+ * @type {string}
183
+ * @memberof AgenticWorkflowMcpServer
184
+ */
185
+ 'id': string;
186
+ /**
187
+ * Whether the initial configuration or template requires this MCP server.
188
+ * @type {boolean}
189
+ * @memberof AgenticWorkflowMcpServer
190
+ */
191
+ 'required': boolean;
192
+ }
174
193
  /**
175
194
  *
176
195
  * @export
@@ -335,8 +354,21 @@ export interface AgenticWorkflowRequest {
335
354
  * MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
336
355
  * @type {Array<string>}
337
356
  * @memberof AgenticWorkflowRequest
357
+ * @deprecated
338
358
  */
339
359
  'mcp_server_ids'?: Array<string>;
360
+ /**
361
+ * MCP connectors attached to this workflow. A required connector must be present during creation, but may be removed during a later settings update.
362
+ * @type {Array<AgenticWorkflowMcpServer>}
363
+ * @memberof AgenticWorkflowRequest
364
+ */
365
+ 'mcp_servers'?: Array<AgenticWorkflowMcpServer>;
366
+ /**
367
+ * Qovery services explicitly provided as context to this workflow.
368
+ * @type {Array<string>}
369
+ * @memberof AgenticWorkflowRequest
370
+ */
371
+ 'context_service_ids'?: Array<string>;
340
372
  /**
341
373
  *
342
374
  * @type {Array<AgenticWorkflowOutput>}
@@ -501,8 +533,21 @@ export interface AgenticWorkflowResponse {
501
533
  * MCP connectors attached to this workflow. May include a USER-scoped connector, which only its owner can attach or keep attached when saving.
502
534
  * @type {Array<string>}
503
535
  * @memberof AgenticWorkflowResponse
536
+ * @deprecated
504
537
  */
505
538
  'mcp_server_ids': Array<string>;
539
+ /**
540
+ * MCP connectors attached to this workflow, including their configuration metadata.
541
+ * @type {Array<AgenticWorkflowMcpServer>}
542
+ * @memberof AgenticWorkflowResponse
543
+ */
544
+ 'mcp_servers': Array<AgenticWorkflowMcpServer>;
545
+ /**
546
+ * Qovery services explicitly provided as context to this workflow.
547
+ * @type {Array<string>}
548
+ * @memberof AgenticWorkflowResponse
549
+ */
550
+ 'context_service_ids': Array<string>;
506
551
  /**
507
552
  *
508
553
  * @type {Array<AgenticWorkflowOutput>}
@@ -32219,7 +32264,7 @@ export const ApplicationEnvironmentVariableApiAxiosParamCreator = function (conf
32219
32264
  };
32220
32265
  },
32221
32266
  /**
32222
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
32267
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
32223
32268
  * @summary Edit an environment variable belonging to the application
32224
32269
  * @param {string} applicationId Application ID
32225
32270
  * @param {string} environmentVariableId Environment Variable ID
@@ -32424,7 +32469,7 @@ export const ApplicationEnvironmentVariableApiFp = function(configuration?: Conf
32424
32469
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
32425
32470
  },
32426
32471
  /**
32427
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
32472
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
32428
32473
  * @summary Edit an environment variable belonging to the application
32429
32474
  * @param {string} applicationId Application ID
32430
32475
  * @param {string} environmentVariableId Environment Variable ID
@@ -32522,7 +32567,7 @@ export const ApplicationEnvironmentVariableApiFactory = function (configuration?
32522
32567
  return localVarFp.deleteApplicationEnvironmentVariable(applicationId, environmentVariableId, options).then((request) => request(axios, basePath));
32523
32568
  },
32524
32569
  /**
32525
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
32570
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
32526
32571
  * @summary Edit an environment variable belonging to the application
32527
32572
  * @param {string} applicationId Application ID
32528
32573
  * @param {string} environmentVariableId Environment Variable ID
@@ -32619,7 +32664,7 @@ export class ApplicationEnvironmentVariableApi extends BaseAPI {
32619
32664
  }
32620
32665
 
32621
32666
  /**
32622
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
32667
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
32623
32668
  * @summary Edit an environment variable belonging to the application
32624
32669
  * @param {string} applicationId Application ID
32625
32670
  * @param {string} environmentVariableId Environment Variable ID
@@ -33572,7 +33617,7 @@ export const ApplicationSecretApiAxiosParamCreator = function (configuration?: C
33572
33617
  };
33573
33618
  },
33574
33619
  /**
33575
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
33620
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
33576
33621
  * @summary Edit a secret belonging to the application
33577
33622
  * @param {string} applicationId Application ID
33578
33623
  * @param {string} secretId Secret ID
@@ -33732,7 +33777,7 @@ export const ApplicationSecretApiFp = function(configuration?: Configuration) {
33732
33777
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
33733
33778
  },
33734
33779
  /**
33735
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
33780
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
33736
33781
  * @summary Edit a secret belonging to the application
33737
33782
  * @param {string} applicationId Application ID
33738
33783
  * @param {string} secretId Secret ID
@@ -33816,7 +33861,7 @@ export const ApplicationSecretApiFactory = function (configuration?: Configurati
33816
33861
  return localVarFp.deleteApplicationSecret(applicationId, secretId, options).then((request) => request(axios, basePath));
33817
33862
  },
33818
33863
  /**
33819
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
33864
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
33820
33865
  * @summary Edit a secret belonging to the application
33821
33866
  * @param {string} applicationId Application ID
33822
33867
  * @param {string} secretId Secret ID
@@ -33902,7 +33947,7 @@ export class ApplicationSecretApi extends BaseAPI {
33902
33947
  }
33903
33948
 
33904
33949
  /**
33905
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
33950
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
33906
33951
  * @summary Edit a secret belonging to the application
33907
33952
  * @param {string} applicationId Application ID
33908
33953
  * @param {string} secretId Secret ID
@@ -47022,7 +47067,7 @@ export const ContainerEnvironmentVariableApiAxiosParamCreator = function (config
47022
47067
  };
47023
47068
  },
47024
47069
  /**
47025
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
47070
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
47026
47071
  * @summary Edit an environment variable belonging to the container
47027
47072
  * @param {string} containerId Container ID
47028
47073
  * @param {string} environmentVariableId Environment Variable ID
@@ -47227,7 +47272,7 @@ export const ContainerEnvironmentVariableApiFp = function(configuration?: Config
47227
47272
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
47228
47273
  },
47229
47274
  /**
47230
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
47275
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
47231
47276
  * @summary Edit an environment variable belonging to the container
47232
47277
  * @param {string} containerId Container ID
47233
47278
  * @param {string} environmentVariableId Environment Variable ID
@@ -47325,7 +47370,7 @@ export const ContainerEnvironmentVariableApiFactory = function (configuration?:
47325
47370
  return localVarFp.deleteContainerEnvironmentVariable(containerId, environmentVariableId, options).then((request) => request(axios, basePath));
47326
47371
  },
47327
47372
  /**
47328
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
47373
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
47329
47374
  * @summary Edit an environment variable belonging to the container
47330
47375
  * @param {string} containerId Container ID
47331
47376
  * @param {string} environmentVariableId Environment Variable ID
@@ -47422,7 +47467,7 @@ export class ContainerEnvironmentVariableApi extends BaseAPI {
47422
47467
  }
47423
47468
 
47424
47469
  /**
47425
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
47470
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
47426
47471
  * @summary Edit an environment variable belonging to the container
47427
47472
  * @param {string} containerId Container ID
47428
47473
  * @param {string} environmentVariableId Environment Variable ID
@@ -48829,7 +48874,7 @@ export const ContainerSecretApiAxiosParamCreator = function (configuration?: Con
48829
48874
  };
48830
48875
  },
48831
48876
  /**
48832
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
48877
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
48833
48878
  * @summary Edit a secret belonging to the container
48834
48879
  * @param {string} containerId Container ID
48835
48880
  * @param {string} secretId Secret ID
@@ -48989,7 +49034,7 @@ export const ContainerSecretApiFp = function(configuration?: Configuration) {
48989
49034
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
48990
49035
  },
48991
49036
  /**
48992
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
49037
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
48993
49038
  * @summary Edit a secret belonging to the container
48994
49039
  * @param {string} containerId Container ID
48995
49040
  * @param {string} secretId Secret ID
@@ -49073,7 +49118,7 @@ export const ContainerSecretApiFactory = function (configuration?: Configuration
49073
49118
  return localVarFp.deleteContainerSecret(containerId, secretId, options).then((request) => request(axios, basePath));
49074
49119
  },
49075
49120
  /**
49076
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
49121
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
49077
49122
  * @summary Edit a secret belonging to the container
49078
49123
  * @param {string} containerId Container ID
49079
49124
  * @param {string} secretId Secret ID
@@ -49159,7 +49204,7 @@ export class ContainerSecretApi extends BaseAPI {
49159
49204
  }
49160
49205
 
49161
49206
  /**
49162
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
49207
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
49163
49208
  * @summary Edit a secret belonging to the container
49164
49209
  * @param {string} containerId Container ID
49165
49210
  * @param {string} secretId Secret ID
@@ -55765,7 +55810,7 @@ export class EnvironmentMainCallsApi extends BaseAPI {
55765
55810
  export const EnvironmentSecretApiAxiosParamCreator = function (configuration?: Configuration) {
55766
55811
  return {
55767
55812
  /**
55768
- * - Add a secret to the environment. - If the secret key already exists, then it will be replaced by the new one. - If the secret value points toward an existing secret key, it will be considered as an alias.
55813
+ * - Add a secret to the environment. - If the secret key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing secret is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the secret to target.
55769
55814
  * @summary Add a secret to the environment
55770
55815
  * @param {string} environmentId Environment ID
55771
55816
  * @param {SecretRequest} [secretRequest]
@@ -55953,7 +55998,7 @@ export const EnvironmentSecretApiAxiosParamCreator = function (configuration?: C
55953
55998
  };
55954
55999
  },
55955
56000
  /**
55956
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56001
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
55957
56002
  * @summary Edit a secret belonging to the environment
55958
56003
  * @param {string} environmentId Environment ID
55959
56004
  * @param {string} secretId Secret ID
@@ -56055,7 +56100,7 @@ export const EnvironmentSecretApiFp = function(configuration?: Configuration) {
56055
56100
  const localVarAxiosParamCreator = EnvironmentSecretApiAxiosParamCreator(configuration)
56056
56101
  return {
56057
56102
  /**
56058
- * - Add a secret to the environment. - If the secret key already exists, then it will be replaced by the new one. - If the secret value points toward an existing secret key, it will be considered as an alias.
56103
+ * - Add a secret to the environment. - If the secret key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing secret is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the secret to target.
56059
56104
  * @summary Add a secret to the environment
56060
56105
  * @param {string} environmentId Environment ID
56061
56106
  * @param {SecretRequest} [secretRequest]
@@ -56113,7 +56158,7 @@ export const EnvironmentSecretApiFp = function(configuration?: Configuration) {
56113
56158
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
56114
56159
  },
56115
56160
  /**
56116
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56161
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56117
56162
  * @summary Edit a secret belonging to the environment
56118
56163
  * @param {string} environmentId Environment ID
56119
56164
  * @param {string} secretId Secret ID
@@ -56151,7 +56196,7 @@ export const EnvironmentSecretApiFactory = function (configuration?: Configurati
56151
56196
  const localVarFp = EnvironmentSecretApiFp(configuration)
56152
56197
  return {
56153
56198
  /**
56154
- * - Add a secret to the environment. - If the secret key already exists, then it will be replaced by the new one. - If the secret value points toward an existing secret key, it will be considered as an alias.
56199
+ * - Add a secret to the environment. - If the secret key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing secret is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the secret to target.
56155
56200
  * @summary Add a secret to the environment
56156
56201
  * @param {string} environmentId Environment ID
56157
56202
  * @param {SecretRequest} [secretRequest]
@@ -56197,7 +56242,7 @@ export const EnvironmentSecretApiFactory = function (configuration?: Configurati
56197
56242
  return localVarFp.deleteEnvironmentSecret(environmentId, secretId, options).then((request) => request(axios, basePath));
56198
56243
  },
56199
56244
  /**
56200
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56245
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56201
56246
  * @summary Edit a secret belonging to the environment
56202
56247
  * @param {string} environmentId Environment ID
56203
56248
  * @param {string} secretId Secret ID
@@ -56229,7 +56274,7 @@ export const EnvironmentSecretApiFactory = function (configuration?: Configurati
56229
56274
  */
56230
56275
  export class EnvironmentSecretApi extends BaseAPI {
56231
56276
  /**
56232
- * - Add a secret to the environment. - If the secret key already exists, then it will be replaced by the new one. - If the secret value points toward an existing secret key, it will be considered as an alias.
56277
+ * - Add a secret to the environment. - If the secret key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing secret is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the secret to target.
56233
56278
  * @summary Add a secret to the environment
56234
56279
  * @param {string} environmentId Environment ID
56235
56280
  * @param {SecretRequest} [secretRequest]
@@ -56283,7 +56328,7 @@ export class EnvironmentSecretApi extends BaseAPI {
56283
56328
  }
56284
56329
 
56285
56330
  /**
56286
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56331
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56287
56332
  * @summary Edit a secret belonging to the environment
56288
56333
  * @param {string} environmentId Environment ID
56289
56334
  * @param {string} secretId Secret ID
@@ -56318,7 +56363,7 @@ export class EnvironmentSecretApi extends BaseAPI {
56318
56363
  export const EnvironmentVariableApiAxiosParamCreator = function (configuration?: Configuration) {
56319
56364
  return {
56320
56365
  /**
56321
- * - Add an environment variable to the environment. - If the environment variable key already exists, then it will be replaced by the new one. - If the environment variable value points toward an existing environment variable key, it will be considered as an alias.
56366
+ * - Add an environment variable to the environment. - If the environment variable key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing variable is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the variable to target.
56322
56367
  * @summary Add an environment variable to the environment
56323
56368
  * @param {string} environmentId Environment ID
56324
56369
  * @param {EnvironmentVariableRequest} [environmentVariableRequest]
@@ -56506,7 +56551,7 @@ export const EnvironmentVariableApiAxiosParamCreator = function (configuration?:
56506
56551
  };
56507
56552
  },
56508
56553
  /**
56509
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56554
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56510
56555
  * @summary Edit an environment variable belonging to the environment
56511
56556
  * @param {string} environmentId Environment ID
56512
56557
  * @param {string} environmentVariableId Environment Variable ID
@@ -56608,7 +56653,7 @@ export const EnvironmentVariableApiFp = function(configuration?: Configuration)
56608
56653
  const localVarAxiosParamCreator = EnvironmentVariableApiAxiosParamCreator(configuration)
56609
56654
  return {
56610
56655
  /**
56611
- * - Add an environment variable to the environment. - If the environment variable key already exists, then it will be replaced by the new one. - If the environment variable value points toward an existing environment variable key, it will be considered as an alias.
56656
+ * - Add an environment variable to the environment. - If the environment variable key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing variable is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the variable to target.
56612
56657
  * @summary Add an environment variable to the environment
56613
56658
  * @param {string} environmentId Environment ID
56614
56659
  * @param {EnvironmentVariableRequest} [environmentVariableRequest]
@@ -56666,7 +56711,7 @@ export const EnvironmentVariableApiFp = function(configuration?: Configuration)
56666
56711
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
56667
56712
  },
56668
56713
  /**
56669
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56714
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56670
56715
  * @summary Edit an environment variable belonging to the environment
56671
56716
  * @param {string} environmentId Environment ID
56672
56717
  * @param {string} environmentVariableId Environment Variable ID
@@ -56704,7 +56749,7 @@ export const EnvironmentVariableApiFactory = function (configuration?: Configura
56704
56749
  const localVarFp = EnvironmentVariableApiFp(configuration)
56705
56750
  return {
56706
56751
  /**
56707
- * - Add an environment variable to the environment. - If the environment variable key already exists, then it will be replaced by the new one. - If the environment variable value points toward an existing environment variable key, it will be considered as an alias.
56752
+ * - Add an environment variable to the environment. - If the environment variable key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing variable is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the variable to target.
56708
56753
  * @summary Add an environment variable to the environment
56709
56754
  * @param {string} environmentId Environment ID
56710
56755
  * @param {EnvironmentVariableRequest} [environmentVariableRequest]
@@ -56750,7 +56795,7 @@ export const EnvironmentVariableApiFactory = function (configuration?: Configura
56750
56795
  return localVarFp.deleteEnvironmentEnvironmentVariable(environmentId, environmentVariableId, options).then((request) => request(axios, basePath));
56751
56796
  },
56752
56797
  /**
56753
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56798
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56754
56799
  * @summary Edit an environment variable belonging to the environment
56755
56800
  * @param {string} environmentId Environment ID
56756
56801
  * @param {string} environmentVariableId Environment Variable ID
@@ -56782,7 +56827,7 @@ export const EnvironmentVariableApiFactory = function (configuration?: Configura
56782
56827
  */
56783
56828
  export class EnvironmentVariableApi extends BaseAPI {
56784
56829
  /**
56785
- * - Add an environment variable to the environment. - If the environment variable key already exists, then it will be replaced by the new one. - If the environment variable value points toward an existing environment variable key, it will be considered as an alias.
56830
+ * - Add an environment variable to the environment. - If the environment variable key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing variable is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the variable to target.
56786
56831
  * @summary Add an environment variable to the environment
56787
56832
  * @param {string} environmentId Environment ID
56788
56833
  * @param {EnvironmentVariableRequest} [environmentVariableRequest]
@@ -56836,7 +56881,7 @@ export class EnvironmentVariableApi extends BaseAPI {
56836
56881
  }
56837
56882
 
56838
56883
  /**
56839
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56884
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
56840
56885
  * @summary Edit an environment variable belonging to the environment
56841
56886
  * @param {string} environmentId Environment ID
56842
56887
  * @param {string} environmentVariableId Environment Variable ID
@@ -63054,7 +63099,7 @@ export const JobEnvironmentVariableApiAxiosParamCreator = function (configuratio
63054
63099
  };
63055
63100
  },
63056
63101
  /**
63057
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
63102
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
63058
63103
  * @summary Edit an environment variable belonging to the job
63059
63104
  * @param {string} jobId Job ID
63060
63105
  * @param {string} environmentVariableId Environment Variable ID
@@ -63259,7 +63304,7 @@ export const JobEnvironmentVariableApiFp = function(configuration?: Configuratio
63259
63304
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
63260
63305
  },
63261
63306
  /**
63262
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
63307
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
63263
63308
  * @summary Edit an environment variable belonging to the job
63264
63309
  * @param {string} jobId Job ID
63265
63310
  * @param {string} environmentVariableId Environment Variable ID
@@ -63357,7 +63402,7 @@ export const JobEnvironmentVariableApiFactory = function (configuration?: Config
63357
63402
  return localVarFp.deleteJobEnvironmentVariable(jobId, environmentVariableId, options).then((request) => request(axios, basePath));
63358
63403
  },
63359
63404
  /**
63360
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
63405
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
63361
63406
  * @summary Edit an environment variable belonging to the job
63362
63407
  * @param {string} jobId Job ID
63363
63408
  * @param {string} environmentVariableId Environment Variable ID
@@ -63454,7 +63499,7 @@ export class JobEnvironmentVariableApi extends BaseAPI {
63454
63499
  }
63455
63500
 
63456
63501
  /**
63457
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
63502
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
63458
63503
  * @summary Edit an environment variable belonging to the job
63459
63504
  * @param {string} jobId Job ID
63460
63505
  * @param {string} environmentVariableId Environment Variable ID
@@ -64140,7 +64185,7 @@ export const JobSecretApiAxiosParamCreator = function (configuration?: Configura
64140
64185
  };
64141
64186
  },
64142
64187
  /**
64143
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
64188
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
64144
64189
  * @summary Edit a secret belonging to the job
64145
64190
  * @param {string} jobId Job ID
64146
64191
  * @param {string} secretId Secret ID
@@ -64300,7 +64345,7 @@ export const JobSecretApiFp = function(configuration?: Configuration) {
64300
64345
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
64301
64346
  },
64302
64347
  /**
64303
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
64348
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
64304
64349
  * @summary Edit a secret belonging to the job
64305
64350
  * @param {string} jobId Job ID
64306
64351
  * @param {string} secretId Secret ID
@@ -64384,7 +64429,7 @@ export const JobSecretApiFactory = function (configuration?: Configuration, base
64384
64429
  return localVarFp.deleteJobSecret(jobId, secretId, options).then((request) => request(axios, basePath));
64385
64430
  },
64386
64431
  /**
64387
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
64432
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
64388
64433
  * @summary Edit a secret belonging to the job
64389
64434
  * @param {string} jobId Job ID
64390
64435
  * @param {string} secretId Secret ID
@@ -64470,7 +64515,7 @@ export class JobSecretApi extends BaseAPI {
64470
64515
  }
64471
64516
 
64472
64517
  /**
64473
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
64518
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > CONTAINER)
64474
64519
  * @summary Edit a secret belonging to the job
64475
64520
  * @param {string} jobId Job ID
64476
64521
  * @param {string} secretId Secret ID
@@ -73378,7 +73423,7 @@ export class ProjectDeploymentRuleApi extends BaseAPI {
73378
73423
  export const ProjectEnvironmentVariableApiAxiosParamCreator = function (configuration?: Configuration) {
73379
73424
  return {
73380
73425
  /**
73381
- * - Add an environment variable to the project. - If the environment variable key already exists, then it will be replaced by the new one. - If the environment variable value points toward an existing environment variable key, it will be considered as an alias.
73426
+ * - Add an environment variable to the project. - If the environment variable key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing variable is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the variable to target.
73382
73427
  * @summary Add an environment variable to the project
73383
73428
  * @param {string} projectId Project ID
73384
73429
  * @param {EnvironmentVariableRequest} [environmentVariableRequest]
@@ -73566,7 +73611,7 @@ export const ProjectEnvironmentVariableApiAxiosParamCreator = function (configur
73566
73611
  };
73567
73612
  },
73568
73613
  /**
73569
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
73614
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
73570
73615
  * @summary Edit an environment variable belonging to the project
73571
73616
  * @param {string} projectId Project ID
73572
73617
  * @param {string} environmentVariableId Environment Variable ID
@@ -73668,7 +73713,7 @@ export const ProjectEnvironmentVariableApiFp = function(configuration?: Configur
73668
73713
  const localVarAxiosParamCreator = ProjectEnvironmentVariableApiAxiosParamCreator(configuration)
73669
73714
  return {
73670
73715
  /**
73671
- * - Add an environment variable to the project. - If the environment variable key already exists, then it will be replaced by the new one. - If the environment variable value points toward an existing environment variable key, it will be considered as an alias.
73716
+ * - Add an environment variable to the project. - If the environment variable key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing variable is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the variable to target.
73672
73717
  * @summary Add an environment variable to the project
73673
73718
  * @param {string} projectId Project ID
73674
73719
  * @param {EnvironmentVariableRequest} [environmentVariableRequest]
@@ -73726,7 +73771,7 @@ export const ProjectEnvironmentVariableApiFp = function(configuration?: Configur
73726
73771
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
73727
73772
  },
73728
73773
  /**
73729
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
73774
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
73730
73775
  * @summary Edit an environment variable belonging to the project
73731
73776
  * @param {string} projectId Project ID
73732
73777
  * @param {string} environmentVariableId Environment Variable ID
@@ -73764,7 +73809,7 @@ export const ProjectEnvironmentVariableApiFactory = function (configuration?: Co
73764
73809
  const localVarFp = ProjectEnvironmentVariableApiFp(configuration)
73765
73810
  return {
73766
73811
  /**
73767
- * - Add an environment variable to the project. - If the environment variable key already exists, then it will be replaced by the new one. - If the environment variable value points toward an existing environment variable key, it will be considered as an alias.
73812
+ * - Add an environment variable to the project. - If the environment variable key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing variable is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the variable to target.
73768
73813
  * @summary Add an environment variable to the project
73769
73814
  * @param {string} projectId Project ID
73770
73815
  * @param {EnvironmentVariableRequest} [environmentVariableRequest]
@@ -73810,7 +73855,7 @@ export const ProjectEnvironmentVariableApiFactory = function (configuration?: Co
73810
73855
  return localVarFp.deleteProjectEnvironmentVariable(projectId, environmentVariableId, options).then((request) => request(axios, basePath));
73811
73856
  },
73812
73857
  /**
73813
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
73858
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
73814
73859
  * @summary Edit an environment variable belonging to the project
73815
73860
  * @param {string} projectId Project ID
73816
73861
  * @param {string} environmentVariableId Environment Variable ID
@@ -73842,7 +73887,7 @@ export const ProjectEnvironmentVariableApiFactory = function (configuration?: Co
73842
73887
  */
73843
73888
  export class ProjectEnvironmentVariableApi extends BaseAPI {
73844
73889
  /**
73845
- * - Add an environment variable to the project. - If the environment variable key already exists, then it will be replaced by the new one. - If the environment variable value points toward an existing environment variable key, it will be considered as an alias.
73890
+ * - Add an environment variable to the project. - If the environment variable key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing variable is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the variable to target.
73846
73891
  * @summary Add an environment variable to the project
73847
73892
  * @param {string} projectId Project ID
73848
73893
  * @param {EnvironmentVariableRequest} [environmentVariableRequest]
@@ -73896,7 +73941,7 @@ export class ProjectEnvironmentVariableApi extends BaseAPI {
73896
73941
  }
73897
73942
 
73898
73943
  /**
73899
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
73944
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the variable it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
73900
73945
  * @summary Edit an environment variable belonging to the project
73901
73946
  * @param {string} projectId Project ID
73902
73947
  * @param {string} environmentVariableId Environment Variable ID
@@ -74205,7 +74250,7 @@ export class ProjectMainCallsApi extends BaseAPI {
74205
74250
  export const ProjectSecretApiAxiosParamCreator = function (configuration?: Configuration) {
74206
74251
  return {
74207
74252
  /**
74208
- * - Add a secret to the project. - If the secret key already exists, then it will be replaced by the new one. - If the secret value points toward an existing secret key, it will be considered as an alias.
74253
+ * - Add a secret to the project. - If the secret key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing secret is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the secret to target.
74209
74254
  * @summary Add a secret to the project
74210
74255
  * @param {string} projectId Project ID
74211
74256
  * @param {SecretRequest} [secretRequest]
@@ -74393,7 +74438,7 @@ export const ProjectSecretApiAxiosParamCreator = function (configuration?: Confi
74393
74438
  };
74394
74439
  },
74395
74440
  /**
74396
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
74441
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
74397
74442
  * @summary Edit a secret belonging to the project
74398
74443
  * @param {string} projectId Project ID
74399
74444
  * @param {string} secretId Secret ID
@@ -74495,7 +74540,7 @@ export const ProjectSecretApiFp = function(configuration?: Configuration) {
74495
74540
  const localVarAxiosParamCreator = ProjectSecretApiAxiosParamCreator(configuration)
74496
74541
  return {
74497
74542
  /**
74498
- * - Add a secret to the project. - If the secret key already exists, then it will be replaced by the new one. - If the secret value points toward an existing secret key, it will be considered as an alias.
74543
+ * - Add a secret to the project. - If the secret key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing secret is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the secret to target.
74499
74544
  * @summary Add a secret to the project
74500
74545
  * @param {string} projectId Project ID
74501
74546
  * @param {SecretRequest} [secretRequest]
@@ -74553,7 +74598,7 @@ export const ProjectSecretApiFp = function(configuration?: Configuration) {
74553
74598
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
74554
74599
  },
74555
74600
  /**
74556
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
74601
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
74557
74602
  * @summary Edit a secret belonging to the project
74558
74603
  * @param {string} projectId Project ID
74559
74604
  * @param {string} secretId Secret ID
@@ -74591,7 +74636,7 @@ export const ProjectSecretApiFactory = function (configuration?: Configuration,
74591
74636
  const localVarFp = ProjectSecretApiFp(configuration)
74592
74637
  return {
74593
74638
  /**
74594
- * - Add a secret to the project. - If the secret key already exists, then it will be replaced by the new one. - If the secret value points toward an existing secret key, it will be considered as an alias.
74639
+ * - Add a secret to the project. - If the secret key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing secret is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the secret to target.
74595
74640
  * @summary Add a secret to the project
74596
74641
  * @param {string} projectId Project ID
74597
74642
  * @param {SecretRequest} [secretRequest]
@@ -74637,7 +74682,7 @@ export const ProjectSecretApiFactory = function (configuration?: Configuration,
74637
74682
  return localVarFp.deleteProjectSecret(projectId, secretId, options).then((request) => request(axios, basePath));
74638
74683
  },
74639
74684
  /**
74640
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
74685
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
74641
74686
  * @summary Edit a secret belonging to the project
74642
74687
  * @param {string} projectId Project ID
74643
74688
  * @param {string} secretId Secret ID
@@ -74669,7 +74714,7 @@ export const ProjectSecretApiFactory = function (configuration?: Configuration,
74669
74714
  */
74670
74715
  export class ProjectSecretApi extends BaseAPI {
74671
74716
  /**
74672
- * - Add a secret to the project. - If the secret key already exists, then it will be replaced by the new one. - If the secret value points toward an existing secret key, it will be considered as an alias.
74717
+ * - Add a secret to the project. - If the secret key already exists in this scope, the request is rejected with a 409 conflict. - A value matching the key of an existing secret is stored as a plain string, not as an alias. To create an alias, use POST /variable/{variableId}/alias on the secret to target.
74673
74718
  * @summary Add a secret to the project
74674
74719
  * @param {string} projectId Project ID
74675
74720
  * @param {SecretRequest} [secretRequest]
@@ -74723,7 +74768,7 @@ export class ProjectSecretApi extends BaseAPI {
74723
74768
  }
74724
74769
 
74725
74770
  /**
74726
- * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, you can\'t edit the value - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
74771
+ * - You can\'t edit a BUILT_IN secret - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not) - An override can only have a scope lower to the secret it is overriding (hierarchy is BUILT_IN > PROJECT > ENVIRONMENT > APPLICATION)
74727
74772
  * @summary Edit a secret belonging to the project
74728
74773
  * @param {string} projectId Project ID
74729
74774
  * @param {string} secretId Secret ID
@@ -77982,7 +78027,7 @@ export const VariableMainCallsApiAxiosParamCreator = function (configuration?: C
77982
78027
  };
77983
78028
  },
77984
78029
  /**
77985
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value
78030
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not)
77986
78031
  * @summary Edit a variable
77987
78032
  * @param {string} variableId Variable ID
77988
78033
  * @param {VariableEditRequest} variableEditRequest
@@ -78204,7 +78249,7 @@ export const VariableMainCallsApiFp = function(configuration?: Configuration) {
78204
78249
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
78205
78250
  },
78206
78251
  /**
78207
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value
78252
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not)
78208
78253
  * @summary Edit a variable
78209
78254
  * @param {string} variableId Variable ID
78210
78255
  * @param {VariableEditRequest} variableEditRequest
@@ -78300,7 +78345,7 @@ export const VariableMainCallsApiFactory = function (configuration?: Configurati
78300
78345
  return localVarFp.deleteVariable(variableId, options).then((request) => request(axios, basePath));
78301
78346
  },
78302
78347
  /**
78303
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value
78348
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not)
78304
78349
  * @summary Edit a variable
78305
78350
  * @param {string} variableId Variable ID
78306
78351
  * @param {VariableEditRequest} variableEditRequest
@@ -78395,7 +78440,7 @@ export class VariableMainCallsApi extends BaseAPI {
78395
78440
  }
78396
78441
 
78397
78442
  /**
78398
- * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, you can\'t edit the value
78443
+ * - You can\'t edit a BUILT_IN variable - For an override, you can\'t edit the key - For an alias, the value is the key of the variable it targets. Editing it re-points the alias to that other variable, which must already exist and be of the same kind (secret or not)
78399
78444
  * @summary Edit a variable
78400
78445
  * @param {string} variableId Variable ID
78401
78446
  * @param {VariableEditRequest} variableEditRequest