@platzio/sdk 0.6.0-beta.0 → 0.6.0-beta.1

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/api.d.ts CHANGED
@@ -13,6 +13,62 @@ import type { Configuration } from './configuration';
13
13
  import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
14
  import type { RequestArgs } from './base';
15
15
  import { BaseAPI } from './base';
16
+ /**
17
+ *
18
+ * @export
19
+ * @interface AllDeploymentKinds200Response
20
+ */
21
+ export interface AllDeploymentKinds200Response {
22
+ /**
23
+ *
24
+ * @type {number}
25
+ * @memberof AllDeploymentKinds200Response
26
+ */
27
+ 'page': number;
28
+ /**
29
+ *
30
+ * @type {number}
31
+ * @memberof AllDeploymentKinds200Response
32
+ */
33
+ 'per_page': number;
34
+ /**
35
+ *
36
+ * @type {Array<AllDeploymentKinds200ResponseItemsInner>}
37
+ * @memberof AllDeploymentKinds200Response
38
+ */
39
+ 'items': Array<AllDeploymentKinds200ResponseItemsInner>;
40
+ /**
41
+ *
42
+ * @type {number}
43
+ * @memberof AllDeploymentKinds200Response
44
+ */
45
+ 'num_total': number;
46
+ }
47
+ /**
48
+ *
49
+ * @export
50
+ * @interface AllDeploymentKinds200ResponseItemsInner
51
+ */
52
+ export interface AllDeploymentKinds200ResponseItemsInner {
53
+ /**
54
+ *
55
+ * @type {string}
56
+ * @memberof AllDeploymentKinds200ResponseItemsInner
57
+ */
58
+ 'id': string;
59
+ /**
60
+ *
61
+ * @type {string}
62
+ * @memberof AllDeploymentKinds200ResponseItemsInner
63
+ */
64
+ 'created_at': string;
65
+ /**
66
+ *
67
+ * @type {string}
68
+ * @memberof AllDeploymentKinds200ResponseItemsInner
69
+ */
70
+ 'name': string;
71
+ }
16
72
  /**
17
73
  *
18
74
  * @export
@@ -74,12 +130,6 @@ export interface AllDeploymentPermissions200ResponseItemsInner {
74
130
  * @memberof AllDeploymentPermissions200ResponseItemsInner
75
131
  */
76
132
  'user_id': string;
77
- /**
78
- *
79
- * @type {string}
80
- * @memberof AllDeploymentPermissions200ResponseItemsInner
81
- */
82
- 'kind': string;
83
133
  /**
84
134
  *
85
135
  * @type {string}
@@ -148,12 +198,6 @@ export interface AllDeploymentResourceTypes200ResponseItemsInner {
148
198
  * @memberof AllDeploymentResourceTypes200ResponseItemsInner
149
199
  */
150
200
  'env_id': string | null;
151
- /**
152
- *
153
- * @type {string}
154
- * @memberof AllDeploymentResourceTypes200ResponseItemsInner
155
- */
156
- 'deployment_kind': string;
157
201
  /**
158
202
  *
159
203
  * @type {string}
@@ -448,12 +492,6 @@ export interface AllDeployments200ResponseItemsInner {
448
492
  * @memberof AllDeployments200ResponseItemsInner
449
493
  */
450
494
  'name': string;
451
- /**
452
- *
453
- * @type {string}
454
- * @memberof AllDeployments200ResponseItemsInner
455
- */
456
- 'kind': string;
457
495
  /**
458
496
  *
459
497
  * @type {string}
@@ -858,12 +896,6 @@ export interface AllHelmRegistries200ResponseItemsInner {
858
896
  * @memberof AllHelmRegistries200ResponseItemsInner
859
897
  */
860
898
  'repo_name': string;
861
- /**
862
- *
863
- * @type {string}
864
- * @memberof AllHelmRegistries200ResponseItemsInner
865
- */
866
- 'kind': string;
867
899
  /**
868
900
  *
869
901
  * @type {string}
@@ -2109,7 +2141,7 @@ export interface CreateDeploymentTask {
2109
2141
  * @type {string}
2110
2142
  * @memberof CreateDeploymentTask
2111
2143
  */
2112
- 'execute_at': string | null;
2144
+ 'execute_at'?: string | null;
2113
2145
  }
2114
2146
  /**
2115
2147
  *
@@ -2258,12 +2290,6 @@ export interface Deployment {
2258
2290
  * @memberof Deployment
2259
2291
  */
2260
2292
  'name': string;
2261
- /**
2262
- *
2263
- * @type {string}
2264
- * @memberof Deployment
2265
- */
2266
- 'kind': string;
2267
2293
  /**
2268
2294
  *
2269
2295
  * @type {string}
@@ -2381,6 +2407,31 @@ export interface DeploymentInvokeActionTask {
2381
2407
  */
2382
2408
  'body': any;
2383
2409
  }
2410
+ /**
2411
+ *
2412
+ * @export
2413
+ * @interface DeploymentKind
2414
+ */
2415
+ export interface DeploymentKind {
2416
+ /**
2417
+ *
2418
+ * @type {string}
2419
+ * @memberof DeploymentKind
2420
+ */
2421
+ 'id': string;
2422
+ /**
2423
+ *
2424
+ * @type {string}
2425
+ * @memberof DeploymentKind
2426
+ */
2427
+ 'created_at': string;
2428
+ /**
2429
+ *
2430
+ * @type {string}
2431
+ * @memberof DeploymentKind
2432
+ */
2433
+ 'name': string;
2434
+ }
2384
2435
  /**
2385
2436
  *
2386
2437
  * @export
@@ -2411,12 +2462,6 @@ export interface DeploymentPermission {
2411
2462
  * @memberof DeploymentPermission
2412
2463
  */
2413
2464
  'user_id': string;
2414
- /**
2415
- *
2416
- * @type {string}
2417
- * @memberof DeploymentPermission
2418
- */
2419
- 'kind': string;
2420
2465
  /**
2421
2466
  *
2422
2467
  * @type {string}
@@ -2727,12 +2772,6 @@ export interface DeploymentResourceType {
2727
2772
  * @memberof DeploymentResourceType
2728
2773
  */
2729
2774
  'env_id': string | null;
2730
- /**
2731
- *
2732
- * @type {string}
2733
- * @memberof DeploymentResourceType
2734
- */
2735
- 'deployment_kind': string;
2736
2775
  /**
2737
2776
  *
2738
2777
  * @type {string}
@@ -3269,12 +3308,6 @@ export interface HelmRegistry {
3269
3308
  * @memberof HelmRegistry
3270
3309
  */
3271
3310
  'repo_name': string;
3272
- /**
3273
- *
3274
- * @type {string}
3275
- * @memberof HelmRegistry
3276
- */
3277
- 'kind': string;
3278
3311
  /**
3279
3312
  *
3280
3313
  * @type {string}
@@ -3539,12 +3572,6 @@ export interface NewDeployment {
3539
3572
  * @memberof NewDeployment
3540
3573
  */
3541
3574
  'name'?: string;
3542
- /**
3543
- *
3544
- * @type {string}
3545
- * @memberof NewDeployment
3546
- */
3547
- 'kind': string;
3548
3575
  /**
3549
3576
  *
3550
3577
  * @type {string}
@@ -3618,13 +3645,13 @@ export interface NewDeploymentResource {
3618
3645
  * @type {string}
3619
3646
  * @memberof NewDeploymentResource
3620
3647
  */
3621
- 'id': string | null;
3648
+ 'id'?: string | null;
3622
3649
  /**
3623
3650
  *
3624
3651
  * @type {string}
3625
3652
  * @memberof NewDeploymentResource
3626
3653
  */
3627
- 'created_at': string | null;
3654
+ 'created_at'?: string | null;
3628
3655
  /**
3629
3656
  *
3630
3657
  * @type {string}
@@ -3654,7 +3681,7 @@ export interface NewDeploymentResource {
3654
3681
  * @type {DeploymentResourceSyncStatus}
3655
3682
  * @memberof NewDeploymentResource
3656
3683
  */
3657
- 'sync_status': DeploymentResourceSyncStatus | null;
3684
+ 'sync_status'?: DeploymentResourceSyncStatus | null;
3658
3685
  }
3659
3686
  /**
3660
3687
  *
@@ -3673,7 +3700,7 @@ export interface NewEnv {
3673
3700
  * @type {boolean}
3674
3701
  * @memberof NewEnv
3675
3702
  */
3676
- 'auto_add_new_users': boolean | null;
3703
+ 'auto_add_new_users'?: boolean;
3677
3704
  }
3678
3705
  /**
3679
3706
  *
@@ -4238,43 +4265,56 @@ export interface UpdateDeployment {
4238
4265
  * @type {string}
4239
4266
  * @memberof UpdateDeployment
4240
4267
  */
4241
- 'name': string | null;
4268
+ 'name'?: string | null;
4242
4269
  /**
4243
4270
  *
4244
4271
  * @type {string}
4245
4272
  * @memberof UpdateDeployment
4246
4273
  */
4247
- 'cluster_id': string | null;
4274
+ 'cluster_id'?: string | null;
4248
4275
  /**
4249
4276
  *
4250
4277
  * @type {string}
4251
4278
  * @memberof UpdateDeployment
4252
4279
  */
4253
- 'helm_chart_id': string | null;
4280
+ 'helm_chart_id'?: string | null;
4254
4281
  /**
4255
4282
  *
4256
4283
  * @type {any}
4257
4284
  * @memberof UpdateDeployment
4258
4285
  */
4259
- 'config': any | null;
4286
+ 'config'?: any | null;
4260
4287
  /**
4261
4288
  *
4262
4289
  * @type {any}
4263
4290
  * @memberof UpdateDeployment
4264
4291
  */
4265
- 'values_override': any | null;
4292
+ 'values_override'?: any | null;
4266
4293
  /**
4267
4294
  *
4268
4295
  * @type {boolean}
4269
4296
  * @memberof UpdateDeployment
4270
4297
  */
4271
- 'enabled': boolean | null;
4298
+ 'enabled'?: boolean | null;
4272
4299
  /**
4273
4300
  *
4274
4301
  * @type {string}
4275
4302
  * @memberof UpdateDeployment
4276
4303
  */
4277
- 'description_md': string | null;
4304
+ 'description_md'?: string | null;
4305
+ }
4306
+ /**
4307
+ *
4308
+ * @export
4309
+ * @interface UpdateDeploymentKind
4310
+ */
4311
+ export interface UpdateDeploymentKind {
4312
+ /**
4313
+ *
4314
+ * @type {string}
4315
+ * @memberof UpdateDeploymentKind
4316
+ */
4317
+ 'name': string;
4278
4318
  }
4279
4319
  /**
4280
4320
  *
@@ -4287,13 +4327,13 @@ export interface UpdateDeploymentResource {
4287
4327
  * @type {string}
4288
4328
  * @memberof UpdateDeploymentResource
4289
4329
  */
4290
- 'name': string | null;
4330
+ 'name'?: string | null;
4291
4331
  /**
4292
4332
  *
4293
4333
  * @type {any}
4294
4334
  * @memberof UpdateDeploymentResource
4295
4335
  */
4296
- 'props': any | null;
4336
+ 'props'?: any | null;
4297
4337
  }
4298
4338
  /**
4299
4339
  *
@@ -4306,25 +4346,25 @@ export interface UpdateEnv {
4306
4346
  * @type {string}
4307
4347
  * @memberof UpdateEnv
4308
4348
  */
4309
- 'name': string | null;
4349
+ 'name'?: string | null;
4310
4350
  /**
4311
4351
  *
4312
4352
  * @type {any}
4313
4353
  * @memberof UpdateEnv
4314
4354
  */
4315
- 'node_selector': any | null;
4355
+ 'node_selector'?: any | null;
4316
4356
  /**
4317
4357
  *
4318
4358
  * @type {any}
4319
4359
  * @memberof UpdateEnv
4320
4360
  */
4321
- 'tolerations': any | null;
4361
+ 'tolerations'?: any | null;
4322
4362
  /**
4323
4363
  *
4324
4364
  * @type {boolean}
4325
4365
  * @memberof UpdateEnv
4326
4366
  */
4327
- 'auto_add_new_users': boolean | null;
4367
+ 'auto_add_new_users'?: boolean | null;
4328
4368
  }
4329
4369
  /**
4330
4370
  *
@@ -4337,7 +4377,7 @@ export interface UpdateHelmRegistry {
4337
4377
  * @type {string}
4338
4378
  * @memberof UpdateHelmRegistry
4339
4379
  */
4340
- 'fa_icon': string | null;
4380
+ 'fa_icon'?: string | null;
4341
4381
  }
4342
4382
  /**
4343
4383
  *
@@ -4356,7 +4396,7 @@ export interface UpdateK8sCluster {
4356
4396
  * @type {boolean}
4357
4397
  * @memberof UpdateK8sCluster
4358
4398
  */
4359
- 'ignore': boolean | null;
4399
+ 'ignore'?: boolean | null;
4360
4400
  /**
4361
4401
  *
4362
4402
  * @type {string}
@@ -4391,21 +4431,21 @@ export interface UpdateK8sCluster {
4391
4431
  /**
4392
4432
  *
4393
4433
  * @export
4394
- * @interface UpdateSecretApi
4434
+ * @interface UpdateSecret
4395
4435
  */
4396
- export interface UpdateSecretApi {
4436
+ export interface UpdateSecret {
4397
4437
  /**
4398
4438
  *
4399
4439
  * @type {string}
4400
- * @memberof UpdateSecretApi
4440
+ * @memberof UpdateSecret
4401
4441
  */
4402
- 'name': string | null;
4442
+ 'name'?: string | null;
4403
4443
  /**
4404
4444
  *
4405
4445
  * @type {string}
4406
- * @memberof UpdateSecretApi
4446
+ * @memberof UpdateSecret
4407
4447
  */
4408
- 'contents': string | null;
4448
+ 'contents'?: string | null;
4409
4449
  }
4410
4450
  /**
4411
4451
  *
@@ -4418,13 +4458,13 @@ export interface UpdateUser {
4418
4458
  * @type {boolean}
4419
4459
  * @memberof UpdateUser
4420
4460
  */
4421
- 'is_admin': boolean | null;
4461
+ 'is_admin'?: boolean | null;
4422
4462
  /**
4423
4463
  *
4424
4464
  * @type {boolean}
4425
4465
  * @memberof UpdateUser
4426
4466
  */
4427
- 'is_active': boolean | null;
4467
+ 'is_active'?: boolean | null;
4428
4468
  }
4429
4469
  /**
4430
4470
  *
@@ -4622,6 +4662,182 @@ export declare class AuthenticationApi extends BaseAPI {
4622
4662
  */
4623
4663
  startGoogleLogin(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StartGoogleLoginResponse, any>>;
4624
4664
  }
4665
+ /**
4666
+ * DeploymentKindsApi - axios parameter creator
4667
+ * @export
4668
+ */
4669
+ export declare const DeploymentKindsApiAxiosParamCreator: (configuration?: Configuration) => {
4670
+ /**
4671
+ *
4672
+ * @param {string | null} [name]
4673
+ * @param {number | null} [page]
4674
+ * @param {number | null} [perPage]
4675
+ * @param {*} [options] Override http request option.
4676
+ * @throws {RequiredError}
4677
+ */
4678
+ allDeploymentKinds: (name?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4679
+ /**
4680
+ *
4681
+ * @param {string} id
4682
+ * @param {*} [options] Override http request option.
4683
+ * @throws {RequiredError}
4684
+ */
4685
+ getDeploymentKind: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4686
+ /**
4687
+ *
4688
+ * @param {string} id
4689
+ * @param {UpdateDeploymentKind} updateDeploymentKind
4690
+ * @param {*} [options] Override http request option.
4691
+ * @throws {RequiredError}
4692
+ */
4693
+ updateDeploymentKind: (id: string, updateDeploymentKind: UpdateDeploymentKind, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4694
+ };
4695
+ /**
4696
+ * DeploymentKindsApi - functional programming interface
4697
+ * @export
4698
+ */
4699
+ export declare const DeploymentKindsApiFp: (configuration?: Configuration) => {
4700
+ /**
4701
+ *
4702
+ * @param {string | null} [name]
4703
+ * @param {number | null} [page]
4704
+ * @param {number | null} [perPage]
4705
+ * @param {*} [options] Override http request option.
4706
+ * @throws {RequiredError}
4707
+ */
4708
+ allDeploymentKinds(name?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllDeploymentKinds200Response>>;
4709
+ /**
4710
+ *
4711
+ * @param {string} id
4712
+ * @param {*} [options] Override http request option.
4713
+ * @throws {RequiredError}
4714
+ */
4715
+ getDeploymentKind(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeploymentKind>>;
4716
+ /**
4717
+ *
4718
+ * @param {string} id
4719
+ * @param {UpdateDeploymentKind} updateDeploymentKind
4720
+ * @param {*} [options] Override http request option.
4721
+ * @throws {RequiredError}
4722
+ */
4723
+ updateDeploymentKind(id: string, updateDeploymentKind: UpdateDeploymentKind, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeploymentKind>>;
4724
+ };
4725
+ /**
4726
+ * DeploymentKindsApi - factory interface
4727
+ * @export
4728
+ */
4729
+ export declare const DeploymentKindsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4730
+ /**
4731
+ *
4732
+ * @param {DeploymentKindsApiAllDeploymentKindsRequest} requestParameters Request parameters.
4733
+ * @param {*} [options] Override http request option.
4734
+ * @throws {RequiredError}
4735
+ */
4736
+ allDeploymentKinds(requestParameters?: DeploymentKindsApiAllDeploymentKindsRequest, options?: RawAxiosRequestConfig): AxiosPromise<AllDeploymentKinds200Response>;
4737
+ /**
4738
+ *
4739
+ * @param {DeploymentKindsApiGetDeploymentKindRequest} requestParameters Request parameters.
4740
+ * @param {*} [options] Override http request option.
4741
+ * @throws {RequiredError}
4742
+ */
4743
+ getDeploymentKind(requestParameters: DeploymentKindsApiGetDeploymentKindRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeploymentKind>;
4744
+ /**
4745
+ *
4746
+ * @param {DeploymentKindsApiUpdateDeploymentKindRequest} requestParameters Request parameters.
4747
+ * @param {*} [options] Override http request option.
4748
+ * @throws {RequiredError}
4749
+ */
4750
+ updateDeploymentKind(requestParameters: DeploymentKindsApiUpdateDeploymentKindRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeploymentKind>;
4751
+ };
4752
+ /**
4753
+ * Request parameters for allDeploymentKinds operation in DeploymentKindsApi.
4754
+ * @export
4755
+ * @interface DeploymentKindsApiAllDeploymentKindsRequest
4756
+ */
4757
+ export interface DeploymentKindsApiAllDeploymentKindsRequest {
4758
+ /**
4759
+ *
4760
+ * @type {string}
4761
+ * @memberof DeploymentKindsApiAllDeploymentKinds
4762
+ */
4763
+ readonly name?: string | null;
4764
+ /**
4765
+ *
4766
+ * @type {number}
4767
+ * @memberof DeploymentKindsApiAllDeploymentKinds
4768
+ */
4769
+ readonly page?: number | null;
4770
+ /**
4771
+ *
4772
+ * @type {number}
4773
+ * @memberof DeploymentKindsApiAllDeploymentKinds
4774
+ */
4775
+ readonly perPage?: number | null;
4776
+ }
4777
+ /**
4778
+ * Request parameters for getDeploymentKind operation in DeploymentKindsApi.
4779
+ * @export
4780
+ * @interface DeploymentKindsApiGetDeploymentKindRequest
4781
+ */
4782
+ export interface DeploymentKindsApiGetDeploymentKindRequest {
4783
+ /**
4784
+ *
4785
+ * @type {string}
4786
+ * @memberof DeploymentKindsApiGetDeploymentKind
4787
+ */
4788
+ readonly id: string;
4789
+ }
4790
+ /**
4791
+ * Request parameters for updateDeploymentKind operation in DeploymentKindsApi.
4792
+ * @export
4793
+ * @interface DeploymentKindsApiUpdateDeploymentKindRequest
4794
+ */
4795
+ export interface DeploymentKindsApiUpdateDeploymentKindRequest {
4796
+ /**
4797
+ *
4798
+ * @type {string}
4799
+ * @memberof DeploymentKindsApiUpdateDeploymentKind
4800
+ */
4801
+ readonly id: string;
4802
+ /**
4803
+ *
4804
+ * @type {UpdateDeploymentKind}
4805
+ * @memberof DeploymentKindsApiUpdateDeploymentKind
4806
+ */
4807
+ readonly updateDeploymentKind: UpdateDeploymentKind;
4808
+ }
4809
+ /**
4810
+ * DeploymentKindsApi - object-oriented interface
4811
+ * @export
4812
+ * @class DeploymentKindsApi
4813
+ * @extends {BaseAPI}
4814
+ */
4815
+ export declare class DeploymentKindsApi extends BaseAPI {
4816
+ /**
4817
+ *
4818
+ * @param {DeploymentKindsApiAllDeploymentKindsRequest} requestParameters Request parameters.
4819
+ * @param {*} [options] Override http request option.
4820
+ * @throws {RequiredError}
4821
+ * @memberof DeploymentKindsApi
4822
+ */
4823
+ allDeploymentKinds(requestParameters?: DeploymentKindsApiAllDeploymentKindsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AllDeploymentKinds200Response, any>>;
4824
+ /**
4825
+ *
4826
+ * @param {DeploymentKindsApiGetDeploymentKindRequest} requestParameters Request parameters.
4827
+ * @param {*} [options] Override http request option.
4828
+ * @throws {RequiredError}
4829
+ * @memberof DeploymentKindsApi
4830
+ */
4831
+ getDeploymentKind(requestParameters: DeploymentKindsApiGetDeploymentKindRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentKind, any>>;
4832
+ /**
4833
+ *
4834
+ * @param {DeploymentKindsApiUpdateDeploymentKindRequest} requestParameters Request parameters.
4835
+ * @param {*} [options] Override http request option.
4836
+ * @throws {RequiredError}
4837
+ * @memberof DeploymentKindsApi
4838
+ */
4839
+ updateDeploymentKind(requestParameters: DeploymentKindsApiUpdateDeploymentKindRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeploymentKind, any>>;
4840
+ }
4625
4841
  /**
4626
4842
  * DeploymentPermissionsApi - axios parameter creator
4627
4843
  * @export
@@ -4840,7 +5056,6 @@ export declare const DeploymentResourceTypesApiAxiosParamCreator: (configuration
4840
5056
  /**
4841
5057
  *
4842
5058
  * @param {string | null} [envId]
4843
- * @param {string | null} [deploymentKind]
4844
5059
  * @param {string | null} [deploymentKindId]
4845
5060
  * @param {string | null} [key]
4846
5061
  * @param {number | null} [page]
@@ -4848,7 +5063,7 @@ export declare const DeploymentResourceTypesApiAxiosParamCreator: (configuration
4848
5063
  * @param {*} [options] Override http request option.
4849
5064
  * @throws {RequiredError}
4850
5065
  */
4851
- allDeploymentResourceTypes: (envId?: string | null, deploymentKind?: string | null, deploymentKindId?: string | null, key?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5066
+ allDeploymentResourceTypes: (envId?: string | null, deploymentKindId?: string | null, key?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4852
5067
  /**
4853
5068
  *
4854
5069
  * @param {string} id
@@ -4865,7 +5080,6 @@ export declare const DeploymentResourceTypesApiFp: (configuration?: Configuratio
4865
5080
  /**
4866
5081
  *
4867
5082
  * @param {string | null} [envId]
4868
- * @param {string | null} [deploymentKind]
4869
5083
  * @param {string | null} [deploymentKindId]
4870
5084
  * @param {string | null} [key]
4871
5085
  * @param {number | null} [page]
@@ -4873,7 +5087,7 @@ export declare const DeploymentResourceTypesApiFp: (configuration?: Configuratio
4873
5087
  * @param {*} [options] Override http request option.
4874
5088
  * @throws {RequiredError}
4875
5089
  */
4876
- allDeploymentResourceTypes(envId?: string | null, deploymentKind?: string | null, deploymentKindId?: string | null, key?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllDeploymentResourceTypes200Response>>;
5090
+ allDeploymentResourceTypes(envId?: string | null, deploymentKindId?: string | null, key?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllDeploymentResourceTypes200Response>>;
4877
5091
  /**
4878
5092
  *
4879
5093
  * @param {string} id
@@ -4914,12 +5128,6 @@ export interface DeploymentResourceTypesApiAllDeploymentResourceTypesRequest {
4914
5128
  * @memberof DeploymentResourceTypesApiAllDeploymentResourceTypes
4915
5129
  */
4916
5130
  readonly envId?: string | null;
4917
- /**
4918
- *
4919
- * @type {string}
4920
- * @memberof DeploymentResourceTypesApiAllDeploymentResourceTypes
4921
- */
4922
- readonly deploymentKind?: string | null;
4923
5131
  /**
4924
5132
  *
4925
5133
  * @type {string}
@@ -5426,7 +5634,6 @@ export declare const DeploymentsApiAxiosParamCreator: (configuration?: Configura
5426
5634
  /**
5427
5635
  *
5428
5636
  * @param {string | null} [name]
5429
- * @param {string | null} [kind]
5430
5637
  * @param {string | null} [kindId]
5431
5638
  * @param {string | null} [clusterId]
5432
5639
  * @param {boolean | null} [enabled]
@@ -5435,7 +5642,7 @@ export declare const DeploymentsApiAxiosParamCreator: (configuration?: Configura
5435
5642
  * @param {*} [options] Override http request option.
5436
5643
  * @throws {RequiredError}
5437
5644
  */
5438
- allDeployments: (name?: string | null, kind?: string | null, kindId?: string | null, clusterId?: string | null, enabled?: boolean | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5645
+ allDeployments: (name?: string | null, kindId?: string | null, clusterId?: string | null, enabled?: boolean | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
5439
5646
  /**
5440
5647
  *
5441
5648
  * @param {NewDeployment} newDeployment
@@ -5474,7 +5681,6 @@ export declare const DeploymentsApiFp: (configuration?: Configuration) => {
5474
5681
  /**
5475
5682
  *
5476
5683
  * @param {string | null} [name]
5477
- * @param {string | null} [kind]
5478
5684
  * @param {string | null} [kindId]
5479
5685
  * @param {string | null} [clusterId]
5480
5686
  * @param {boolean | null} [enabled]
@@ -5483,7 +5689,7 @@ export declare const DeploymentsApiFp: (configuration?: Configuration) => {
5483
5689
  * @param {*} [options] Override http request option.
5484
5690
  * @throws {RequiredError}
5485
5691
  */
5486
- allDeployments(name?: string | null, kind?: string | null, kindId?: string | null, clusterId?: string | null, enabled?: boolean | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllDeployments200Response>>;
5692
+ allDeployments(name?: string | null, kindId?: string | null, clusterId?: string | null, enabled?: boolean | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllDeployments200Response>>;
5487
5693
  /**
5488
5694
  *
5489
5695
  * @param {NewDeployment} newDeployment
@@ -5567,12 +5773,6 @@ export interface DeploymentsApiAllDeploymentsRequest {
5567
5773
  * @memberof DeploymentsApiAllDeployments
5568
5774
  */
5569
5775
  readonly name?: string | null;
5570
- /**
5571
- *
5572
- * @type {string}
5573
- * @memberof DeploymentsApiAllDeployments
5574
- */
5575
- readonly kind?: string | null;
5576
5776
  /**
5577
5777
  *
5578
5778
  * @type {string}
@@ -6330,14 +6530,13 @@ export declare const HelmRegistriesApiAxiosParamCreator: (configuration?: Config
6330
6530
  /**
6331
6531
  *
6332
6532
  * @param {string | null} [repoName]
6333
- * @param {string | null} [kind]
6334
6533
  * @param {string | null} [kindId]
6335
6534
  * @param {number | null} [page]
6336
6535
  * @param {number | null} [perPage]
6337
6536
  * @param {*} [options] Override http request option.
6338
6537
  * @throws {RequiredError}
6339
6538
  */
6340
- allHelmRegistries: (repoName?: string | null, kind?: string | null, kindId?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6539
+ allHelmRegistries: (repoName?: string | null, kindId?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
6341
6540
  /**
6342
6541
  *
6343
6542
  * @param {string} id
@@ -6362,14 +6561,13 @@ export declare const HelmRegistriesApiFp: (configuration?: Configuration) => {
6362
6561
  /**
6363
6562
  *
6364
6563
  * @param {string | null} [repoName]
6365
- * @param {string | null} [kind]
6366
6564
  * @param {string | null} [kindId]
6367
6565
  * @param {number | null} [page]
6368
6566
  * @param {number | null} [perPage]
6369
6567
  * @param {*} [options] Override http request option.
6370
6568
  * @throws {RequiredError}
6371
6569
  */
6372
- allHelmRegistries(repoName?: string | null, kind?: string | null, kindId?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllHelmRegistries200Response>>;
6570
+ allHelmRegistries(repoName?: string | null, kindId?: string | null, page?: number | null, perPage?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AllHelmRegistries200Response>>;
6373
6571
  /**
6374
6572
  *
6375
6573
  * @param {string} id
@@ -6425,12 +6623,6 @@ export interface HelmRegistriesApiAllHelmRegistriesRequest {
6425
6623
  * @memberof HelmRegistriesApiAllHelmRegistries
6426
6624
  */
6427
6625
  readonly repoName?: string | null;
6428
- /**
6429
- *
6430
- * @type {string}
6431
- * @memberof HelmRegistriesApiAllHelmRegistries
6432
- */
6433
- readonly kind?: string | null;
6434
6626
  /**
6435
6627
  *
6436
6628
  * @type {string}
@@ -7140,11 +7332,11 @@ export declare const SecretsApiAxiosParamCreator: (configuration?: Configuration
7140
7332
  /**
7141
7333
  *
7142
7334
  * @param {string} id
7143
- * @param {UpdateSecretApi} updateSecretApi
7335
+ * @param {UpdateSecret} updateSecret
7144
7336
  * @param {*} [options] Override http request option.
7145
7337
  * @throws {RequiredError}
7146
7338
  */
7147
- updateSecret: (id: string, updateSecretApi: UpdateSecretApi, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7339
+ updateSecret: (id: string, updateSecret: UpdateSecret, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
7148
7340
  };
7149
7341
  /**
7150
7342
  * SecretsApi - functional programming interface
@@ -7186,11 +7378,11 @@ export declare const SecretsApiFp: (configuration?: Configuration) => {
7186
7378
  /**
7187
7379
  *
7188
7380
  * @param {string} id
7189
- * @param {UpdateSecretApi} updateSecretApi
7381
+ * @param {UpdateSecret} updateSecret
7190
7382
  * @param {*} [options] Override http request option.
7191
7383
  * @throws {RequiredError}
7192
7384
  */
7193
- updateSecret(id: string, updateSecretApi: UpdateSecretApi, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Secret>>;
7385
+ updateSecret(id: string, updateSecret: UpdateSecret, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Secret>>;
7194
7386
  };
7195
7387
  /**
7196
7388
  * SecretsApi - factory interface
@@ -7323,10 +7515,10 @@ export interface SecretsApiUpdateSecretRequest {
7323
7515
  readonly id: string;
7324
7516
  /**
7325
7517
  *
7326
- * @type {UpdateSecretApi}
7518
+ * @type {UpdateSecret}
7327
7519
  * @memberof SecretsApiUpdateSecret
7328
7520
  */
7329
- readonly updateSecretApi: UpdateSecretApi;
7521
+ readonly updateSecret: UpdateSecret;
7330
7522
  }
7331
7523
  /**
7332
7524
  * SecretsApi - object-oriented interface