qovery-typescript-axios 1.1.954 → 1.1.956

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
@@ -6752,9 +6752,10 @@ export interface ClusterFeatureGcpExistingVpcResponse {
6752
6752
  */
6753
6753
  export interface ClusterFeatureKarpenterParameters {
6754
6754
  /**
6755
- *
6755
+ * Deprecated: use the per-pool `spot_enabled` fields on `qovery_node_pools.default_override`, `qovery_node_pools.stable_override` and `qovery_node_pools.cronjob_override` instead. On read, this is a derived value: it is recomputed on every write as the logical OR of the per-pool `spot_enabled` fields of the node pools present (the default and stable node pools, plus the cronjob node pool only while its `cronjob_override` block exists). On write, it is only honoured for legacy clients: when none of the per-pool `spot_enabled` fields are present in the request, this value is applied to all node pools, including the stable one. As soon as the per-pool fields are present they take precedence and this value is ignored.
6756
6756
  * @type {boolean}
6757
6757
  * @memberof ClusterFeatureKarpenterParameters
6758
+ * @deprecated
6758
6759
  */
6759
6760
  'spot_enabled': boolean;
6760
6761
  /**
@@ -18068,6 +18069,12 @@ export interface KarpenterCronjobNodePoolOverride {
18068
18069
  * @memberof KarpenterCronjobNodePoolOverride
18069
18070
  */
18070
18071
  'limits'?: KarpenterNodePoolLimits;
18072
+ /**
18073
+ * Whether this node pool runs on spot instances. `null` or absent means the pool inherits the deprecated top-level `spot_enabled`: on write that value applies to this pool, on read only a deviating value is surfaced. Only meaningful while the cronjob node pool is enabled — the presence of `cronjob_override` is what enables it.
18074
+ * @type {boolean}
18075
+ * @memberof KarpenterCronjobNodePoolOverride
18076
+ */
18077
+ 'spot_enabled'?: boolean | null;
18071
18078
  /**
18072
18079
  * Time to wait before consolidating empty or underutilized nodes (e.g., 1m, 10m, 1h). Maximum: 24h
18073
18080
  * @type {string}
@@ -18087,6 +18094,12 @@ export interface KarpenterDefaultNodePoolOverride {
18087
18094
  * @memberof KarpenterDefaultNodePoolOverride
18088
18095
  */
18089
18096
  'limits'?: KarpenterNodePoolLimits;
18097
+ /**
18098
+ * Whether this node pool runs on spot instances. `null` or absent means the pool inherits the deprecated top-level `spot_enabled`: on write that value applies to this pool, on read only a deviating value is surfaced. `default_override` is omitted from a response when it would carry nothing else.
18099
+ * @type {boolean}
18100
+ * @memberof KarpenterDefaultNodePoolOverride
18101
+ */
18102
+ 'spot_enabled'?: boolean | null;
18090
18103
  /**
18091
18104
  * Time to wait before consolidating empty or underutilized nodes (e.g., 1m, 10m, 1h). Maximum: 24h
18092
18105
  * @type {string}
@@ -18323,6 +18336,12 @@ export interface KarpenterStableNodePoolOverride {
18323
18336
  * @memberof KarpenterStableNodePoolOverride
18324
18337
  */
18325
18338
  'limits'?: KarpenterNodePoolLimits;
18339
+ /**
18340
+ * Whether this node pool runs on spot instances. `null` or absent means the pool inherits the deprecated top-level `spot_enabled`: on write that value applies to this pool, on read only a deviating value is surfaced.
18341
+ * @type {boolean}
18342
+ * @memberof KarpenterStableNodePoolOverride
18343
+ */
18344
+ 'spot_enabled'?: boolean | null;
18326
18345
  /**
18327
18346
  * Time to wait before consolidating empty or underutilized nodes (e.g., 1m, 10m, 1h). Maximum: 24h
18328
18347
  * @type {string}
@@ -21627,6 +21646,18 @@ export interface OrganizationPolicyApiToken {
21627
21646
  * @memberof OrganizationPolicyApiToken
21628
21647
  */
21629
21648
  'description'?: string;
21649
+ /**
21650
+ *
21651
+ * @type {string}
21652
+ * @memberof OrganizationPolicyApiToken
21653
+ */
21654
+ 'role_name'?: string;
21655
+ /**
21656
+ * the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and `opa_policy`.
21657
+ * @type {string}
21658
+ * @memberof OrganizationPolicyApiToken
21659
+ */
21660
+ 'role_id'?: string;
21630
21661
  /**
21631
21662
  * the Open Policy Agent (rego) policy evaluated on every request made with this token
21632
21663
  * @type {string}
@@ -21682,6 +21713,18 @@ export interface OrganizationPolicyApiTokenCreate {
21682
21713
  * @memberof OrganizationPolicyApiTokenCreate
21683
21714
  */
21684
21715
  'description'?: string;
21716
+ /**
21717
+ *
21718
+ * @type {string}
21719
+ * @memberof OrganizationPolicyApiTokenCreate
21720
+ */
21721
+ 'role_name'?: string;
21722
+ /**
21723
+ * the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and its policy.
21724
+ * @type {string}
21725
+ * @memberof OrganizationPolicyApiTokenCreate
21726
+ */
21727
+ 'role_id'?: string;
21685
21728
  /**
21686
21729
  * the generated token to send in \'Authorization\' header prefixed by \'Token \'. It is returned only here and cannot be retrieved afterwards.
21687
21730
  * @type {string}
@@ -21731,6 +21774,12 @@ export interface OrganizationPolicyApiTokenCreateRequest {
21731
21774
  * @memberof OrganizationPolicyApiTokenCreateRequest
21732
21775
  */
21733
21776
  'opa_policy': string;
21777
+ /**
21778
+ * the roleId provided by the \"List organization custom roles\" endpoint. The role bounds what the token may do once its policy has allowed a request, so effective access is the intersection of the two. Omit it, or send null, for organization-admin.
21779
+ * @type {string}
21780
+ * @memberof OrganizationPolicyApiTokenCreateRequest
21781
+ */
21782
+ 'role_id'?: string | null;
21734
21783
  /**
21735
21784
  *
21736
21785
  * @type {string}
package/dist/api.d.ts CHANGED
@@ -6560,9 +6560,10 @@ export interface ClusterFeatureGcpExistingVpcResponse {
6560
6560
  */
6561
6561
  export interface ClusterFeatureKarpenterParameters {
6562
6562
  /**
6563
- *
6563
+ * Deprecated: use the per-pool `spot_enabled` fields on `qovery_node_pools.default_override`, `qovery_node_pools.stable_override` and `qovery_node_pools.cronjob_override` instead. On read, this is a derived value: it is recomputed on every write as the logical OR of the per-pool `spot_enabled` fields of the node pools present (the default and stable node pools, plus the cronjob node pool only while its `cronjob_override` block exists). On write, it is only honoured for legacy clients: when none of the per-pool `spot_enabled` fields are present in the request, this value is applied to all node pools, including the stable one. As soon as the per-pool fields are present they take precedence and this value is ignored.
6564
6564
  * @type {boolean}
6565
6565
  * @memberof ClusterFeatureKarpenterParameters
6566
+ * @deprecated
6566
6567
  */
6567
6568
  'spot_enabled': boolean;
6568
6569
  /**
@@ -17546,6 +17547,12 @@ export interface KarpenterCronjobNodePoolOverride {
17546
17547
  * @memberof KarpenterCronjobNodePoolOverride
17547
17548
  */
17548
17549
  'limits'?: KarpenterNodePoolLimits;
17550
+ /**
17551
+ * Whether this node pool runs on spot instances. `null` or absent means the pool inherits the deprecated top-level `spot_enabled`: on write that value applies to this pool, on read only a deviating value is surfaced. Only meaningful while the cronjob node pool is enabled — the presence of `cronjob_override` is what enables it.
17552
+ * @type {boolean}
17553
+ * @memberof KarpenterCronjobNodePoolOverride
17554
+ */
17555
+ 'spot_enabled'?: boolean | null;
17549
17556
  /**
17550
17557
  * Time to wait before consolidating empty or underutilized nodes (e.g., 1m, 10m, 1h). Maximum: 24h
17551
17558
  * @type {string}
@@ -17565,6 +17572,12 @@ export interface KarpenterDefaultNodePoolOverride {
17565
17572
  * @memberof KarpenterDefaultNodePoolOverride
17566
17573
  */
17567
17574
  'limits'?: KarpenterNodePoolLimits;
17575
+ /**
17576
+ * Whether this node pool runs on spot instances. `null` or absent means the pool inherits the deprecated top-level `spot_enabled`: on write that value applies to this pool, on read only a deviating value is surfaced. `default_override` is omitted from a response when it would carry nothing else.
17577
+ * @type {boolean}
17578
+ * @memberof KarpenterDefaultNodePoolOverride
17579
+ */
17580
+ 'spot_enabled'?: boolean | null;
17568
17581
  /**
17569
17582
  * Time to wait before consolidating empty or underutilized nodes (e.g., 1m, 10m, 1h). Maximum: 24h
17570
17583
  * @type {string}
@@ -17791,6 +17804,12 @@ export interface KarpenterStableNodePoolOverride {
17791
17804
  * @memberof KarpenterStableNodePoolOverride
17792
17805
  */
17793
17806
  'limits'?: KarpenterNodePoolLimits;
17807
+ /**
17808
+ * Whether this node pool runs on spot instances. `null` or absent means the pool inherits the deprecated top-level `spot_enabled`: on write that value applies to this pool, on read only a deviating value is surfaced.
17809
+ * @type {boolean}
17810
+ * @memberof KarpenterStableNodePoolOverride
17811
+ */
17812
+ 'spot_enabled'?: boolean | null;
17794
17813
  /**
17795
17814
  * Time to wait before consolidating empty or underutilized nodes (e.g., 1m, 10m, 1h). Maximum: 24h
17796
17815
  * @type {string}
@@ -21006,6 +21025,18 @@ export interface OrganizationPolicyApiToken {
21006
21025
  * @memberof OrganizationPolicyApiToken
21007
21026
  */
21008
21027
  'description'?: string;
21028
+ /**
21029
+ *
21030
+ * @type {string}
21031
+ * @memberof OrganizationPolicyApiToken
21032
+ */
21033
+ 'role_name'?: string;
21034
+ /**
21035
+ * the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and `opa_policy`.
21036
+ * @type {string}
21037
+ * @memberof OrganizationPolicyApiToken
21038
+ */
21039
+ 'role_id'?: string;
21009
21040
  /**
21010
21041
  * the Open Policy Agent (rego) policy evaluated on every request made with this token
21011
21042
  * @type {string}
@@ -21061,6 +21092,18 @@ export interface OrganizationPolicyApiTokenCreate {
21061
21092
  * @memberof OrganizationPolicyApiTokenCreate
21062
21093
  */
21063
21094
  'description'?: string;
21095
+ /**
21096
+ *
21097
+ * @type {string}
21098
+ * @memberof OrganizationPolicyApiTokenCreate
21099
+ */
21100
+ 'role_name'?: string;
21101
+ /**
21102
+ * the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and its policy.
21103
+ * @type {string}
21104
+ * @memberof OrganizationPolicyApiTokenCreate
21105
+ */
21106
+ 'role_id'?: string;
21064
21107
  /**
21065
21108
  * the generated token to send in \'Authorization\' header prefixed by \'Token \'. It is returned only here and cannot be retrieved afterwards.
21066
21109
  * @type {string}
@@ -21110,6 +21153,12 @@ export interface OrganizationPolicyApiTokenCreateRequest {
21110
21153
  * @memberof OrganizationPolicyApiTokenCreateRequest
21111
21154
  */
21112
21155
  'opa_policy': string;
21156
+ /**
21157
+ * the roleId provided by the \"List organization custom roles\" endpoint. The role bounds what the token may do once its policy has allowed a request, so effective access is the intersection of the two. Omit it, or send null, for organization-admin.
21158
+ * @type {string}
21159
+ * @memberof OrganizationPolicyApiTokenCreateRequest
21160
+ */
21161
+ 'role_id'?: string | null;
21113
21162
  /**
21114
21163
  *
21115
21164
  * @type {string}
package/dist/esm/api.d.ts CHANGED
@@ -6560,9 +6560,10 @@ export interface ClusterFeatureGcpExistingVpcResponse {
6560
6560
  */
6561
6561
  export interface ClusterFeatureKarpenterParameters {
6562
6562
  /**
6563
- *
6563
+ * Deprecated: use the per-pool `spot_enabled` fields on `qovery_node_pools.default_override`, `qovery_node_pools.stable_override` and `qovery_node_pools.cronjob_override` instead. On read, this is a derived value: it is recomputed on every write as the logical OR of the per-pool `spot_enabled` fields of the node pools present (the default and stable node pools, plus the cronjob node pool only while its `cronjob_override` block exists). On write, it is only honoured for legacy clients: when none of the per-pool `spot_enabled` fields are present in the request, this value is applied to all node pools, including the stable one. As soon as the per-pool fields are present they take precedence and this value is ignored.
6564
6564
  * @type {boolean}
6565
6565
  * @memberof ClusterFeatureKarpenterParameters
6566
+ * @deprecated
6566
6567
  */
6567
6568
  'spot_enabled': boolean;
6568
6569
  /**
@@ -17546,6 +17547,12 @@ export interface KarpenterCronjobNodePoolOverride {
17546
17547
  * @memberof KarpenterCronjobNodePoolOverride
17547
17548
  */
17548
17549
  'limits'?: KarpenterNodePoolLimits;
17550
+ /**
17551
+ * Whether this node pool runs on spot instances. `null` or absent means the pool inherits the deprecated top-level `spot_enabled`: on write that value applies to this pool, on read only a deviating value is surfaced. Only meaningful while the cronjob node pool is enabled — the presence of `cronjob_override` is what enables it.
17552
+ * @type {boolean}
17553
+ * @memberof KarpenterCronjobNodePoolOverride
17554
+ */
17555
+ 'spot_enabled'?: boolean | null;
17549
17556
  /**
17550
17557
  * Time to wait before consolidating empty or underutilized nodes (e.g., 1m, 10m, 1h). Maximum: 24h
17551
17558
  * @type {string}
@@ -17565,6 +17572,12 @@ export interface KarpenterDefaultNodePoolOverride {
17565
17572
  * @memberof KarpenterDefaultNodePoolOverride
17566
17573
  */
17567
17574
  'limits'?: KarpenterNodePoolLimits;
17575
+ /**
17576
+ * Whether this node pool runs on spot instances. `null` or absent means the pool inherits the deprecated top-level `spot_enabled`: on write that value applies to this pool, on read only a deviating value is surfaced. `default_override` is omitted from a response when it would carry nothing else.
17577
+ * @type {boolean}
17578
+ * @memberof KarpenterDefaultNodePoolOverride
17579
+ */
17580
+ 'spot_enabled'?: boolean | null;
17568
17581
  /**
17569
17582
  * Time to wait before consolidating empty or underutilized nodes (e.g., 1m, 10m, 1h). Maximum: 24h
17570
17583
  * @type {string}
@@ -17791,6 +17804,12 @@ export interface KarpenterStableNodePoolOverride {
17791
17804
  * @memberof KarpenterStableNodePoolOverride
17792
17805
  */
17793
17806
  'limits'?: KarpenterNodePoolLimits;
17807
+ /**
17808
+ * Whether this node pool runs on spot instances. `null` or absent means the pool inherits the deprecated top-level `spot_enabled`: on write that value applies to this pool, on read only a deviating value is surfaced.
17809
+ * @type {boolean}
17810
+ * @memberof KarpenterStableNodePoolOverride
17811
+ */
17812
+ 'spot_enabled'?: boolean | null;
17794
17813
  /**
17795
17814
  * Time to wait before consolidating empty or underutilized nodes (e.g., 1m, 10m, 1h). Maximum: 24h
17796
17815
  * @type {string}
@@ -21006,6 +21025,18 @@ export interface OrganizationPolicyApiToken {
21006
21025
  * @memberof OrganizationPolicyApiToken
21007
21026
  */
21008
21027
  'description'?: string;
21028
+ /**
21029
+ *
21030
+ * @type {string}
21031
+ * @memberof OrganizationPolicyApiToken
21032
+ */
21033
+ 'role_name'?: string;
21034
+ /**
21035
+ * the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and `opa_policy`.
21036
+ * @type {string}
21037
+ * @memberof OrganizationPolicyApiToken
21038
+ */
21039
+ 'role_id'?: string;
21009
21040
  /**
21010
21041
  * the Open Policy Agent (rego) policy evaluated on every request made with this token
21011
21042
  * @type {string}
@@ -21061,6 +21092,18 @@ export interface OrganizationPolicyApiTokenCreate {
21061
21092
  * @memberof OrganizationPolicyApiTokenCreate
21062
21093
  */
21063
21094
  'description'?: string;
21095
+ /**
21096
+ *
21097
+ * @type {string}
21098
+ * @memberof OrganizationPolicyApiTokenCreate
21099
+ */
21100
+ 'role_name'?: string;
21101
+ /**
21102
+ * the organization role this token acts as once its policy has allowed a request. Effective access is the intersection of this role and its policy.
21103
+ * @type {string}
21104
+ * @memberof OrganizationPolicyApiTokenCreate
21105
+ */
21106
+ 'role_id'?: string;
21064
21107
  /**
21065
21108
  * the generated token to send in \'Authorization\' header prefixed by \'Token \'. It is returned only here and cannot be retrieved afterwards.
21066
21109
  * @type {string}
@@ -21110,6 +21153,12 @@ export interface OrganizationPolicyApiTokenCreateRequest {
21110
21153
  * @memberof OrganizationPolicyApiTokenCreateRequest
21111
21154
  */
21112
21155
  'opa_policy': string;
21156
+ /**
21157
+ * the roleId provided by the \"List organization custom roles\" endpoint. The role bounds what the token may do once its policy has allowed a request, so effective access is the intersection of the two. Omit it, or send null, for organization-admin.
21158
+ * @type {string}
21159
+ * @memberof OrganizationPolicyApiTokenCreateRequest
21160
+ */
21161
+ 'role_id'?: string | null;
21113
21162
  /**
21114
21163
  *
21115
21164
  * @type {string}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qovery-typescript-axios",
3
- "version": "v1.1.954",
3
+ "version": "v1.1.956",
4
4
  "description": "OpenAPI client for qovery-typescript-axios",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {