Skip to content

Commit a5dfc04

Browse files
chore(all): re-generate OpenAPI client(s) (#445)
Co-authored-by: app-services-ci <app-services-ci@users.noreply.github.com>
1 parent 5c5f155 commit a5dfc04

File tree

62 files changed

+615
-693
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+615
-693
lines changed

packages/kafka-management-sdk/src/generated/api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Kafka Service Fleet Manager
55
* Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
66
*
7-
* The version of the OpenAPI document: 1.8.0
7+
* The version of the OpenAPI document: 1.10.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

packages/kafka-management-sdk/src/generated/api/default-api.ts

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Kafka Service Fleet Manager
55
* Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
66
*
7-
* The version of the OpenAPI document: 1.8.0
7+
* The version of the OpenAPI document: 1.10.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -182,11 +182,10 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
182182
* @param {string} id The ID of record
183183
* @param {string} [page] Page index
184184
* @param {string} [size] Number of items in each page
185-
* @param {string} [instanceType] The Kafka instance type to filter the results by DEPRECATION NOTICE - instance_type will be deprecated
186185
* @param {*} [options] Override http request option.
187186
* @throws {RequiredError}
188187
*/
189-
getCloudProviderRegions: async (id: string, page?: string, size?: string, instanceType?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
188+
getCloudProviderRegions: async (id: string, page?: string, size?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
190189
// verify required parameter 'id' is not null or undefined
191190
assertParamExists('getCloudProviderRegions', 'id', id)
192191
const localVarPath = `/api/kafkas_mgmt/v1/cloud_providers/{id}/regions`
@@ -214,10 +213,6 @@ export const DefaultApiAxiosParamCreator = function (configuration?: Configurati
214213
localVarQueryParameter['size'] = size;
215214
}
216215

217-
if (instanceType !== undefined) {
218-
localVarQueryParameter['instance_type'] = instanceType;
219-
}
220-
221216

222217

223218
setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -632,12 +627,11 @@ export const DefaultApiFp = function(configuration?: Configuration) {
632627
* @param {string} id The ID of record
633628
* @param {string} [page] Page index
634629
* @param {string} [size] Number of items in each page
635-
* @param {string} [instanceType] The Kafka instance type to filter the results by DEPRECATION NOTICE - instance_type will be deprecated
636630
* @param {*} [options] Override http request option.
637631
* @throws {RequiredError}
638632
*/
639-
async getCloudProviderRegions(id: string, page?: string, size?: string, instanceType?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudRegionList>> {
640-
const localVarAxiosArgs = await localVarAxiosParamCreator.getCloudProviderRegions(id, page, size, instanceType, options);
633+
async getCloudProviderRegions(id: string, page?: string, size?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CloudRegionList>> {
634+
const localVarAxiosArgs = await localVarAxiosParamCreator.getCloudProviderRegions(id, page, size, options);
641635
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
642636
},
643637
/**
@@ -785,12 +779,11 @@ export const DefaultApiFactory = function (configuration?: Configuration, basePa
785779
* @param {string} id The ID of record
786780
* @param {string} [page] Page index
787781
* @param {string} [size] Number of items in each page
788-
* @param {string} [instanceType] The Kafka instance type to filter the results by DEPRECATION NOTICE - instance_type will be deprecated
789782
* @param {*} [options] Override http request option.
790783
* @throws {RequiredError}
791784
*/
792-
getCloudProviderRegions(id: string, page?: string, size?: string, instanceType?: string, options?: any): AxiosPromise<CloudRegionList> {
793-
return localVarFp.getCloudProviderRegions(id, page, size, instanceType, options).then((request) => request(axios, basePath));
785+
getCloudProviderRegions(id: string, page?: string, size?: string, options?: any): AxiosPromise<CloudRegionList> {
786+
return localVarFp.getCloudProviderRegions(id, page, size, options).then((request) => request(axios, basePath));
794787
},
795788
/**
796789
*
@@ -928,12 +921,11 @@ export interface DefaultApiInterface {
928921
* @param {string} id The ID of record
929922
* @param {string} [page] Page index
930923
* @param {string} [size] Number of items in each page
931-
* @param {string} [instanceType] The Kafka instance type to filter the results by DEPRECATION NOTICE - instance_type will be deprecated
932924
* @param {*} [options] Override http request option.
933925
* @throws {RequiredError}
934926
* @memberof DefaultApiInterface
935927
*/
936-
getCloudProviderRegions(id: string, page?: string, size?: string, instanceType?: string, options?: AxiosRequestConfig): AxiosPromise<CloudRegionList>;
928+
getCloudProviderRegions(id: string, page?: string, size?: string, options?: AxiosRequestConfig): AxiosPromise<CloudRegionList>;
937929

938930
/**
939931
*
@@ -1077,13 +1069,12 @@ export class DefaultApi extends BaseAPI implements DefaultApiInterface {
10771069
* @param {string} id The ID of record
10781070
* @param {string} [page] Page index
10791071
* @param {string} [size] Number of items in each page
1080-
* @param {string} [instanceType] The Kafka instance type to filter the results by DEPRECATION NOTICE - instance_type will be deprecated
10811072
* @param {*} [options] Override http request option.
10821073
* @throws {RequiredError}
10831074
* @memberof DefaultApi
10841075
*/
1085-
public getCloudProviderRegions(id: string, page?: string, size?: string, instanceType?: string, options?: AxiosRequestConfig) {
1086-
return DefaultApiFp(this.configuration).getCloudProviderRegions(id, page, size, instanceType, options).then((request) => request(this.axios, this.basePath));
1076+
public getCloudProviderRegions(id: string, page?: string, size?: string, options?: AxiosRequestConfig) {
1077+
return DefaultApiFp(this.configuration).getCloudProviderRegions(id, page, size, options).then((request) => request(this.axios, this.basePath));
10871078
}
10881079

10891080
/**

packages/kafka-management-sdk/src/generated/api/errors-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Kafka Service Fleet Manager
55
* Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
66
*
7-
* The version of the OpenAPI document: 1.8.0
7+
* The version of the OpenAPI document: 1.10.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

packages/kafka-management-sdk/src/generated/api/security-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Kafka Service Fleet Manager
55
* Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
66
*
7-
* The version of the OpenAPI document: 1.8.0
7+
* The version of the OpenAPI document: 1.10.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

packages/kafka-management-sdk/src/generated/base.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Kafka Service Fleet Manager
55
* Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
66
*
7-
* The version of the OpenAPI document: 1.8.0
7+
* The version of the OpenAPI document: 1.10.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

packages/kafka-management-sdk/src/generated/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Kafka Service Fleet Manager
55
* Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
66
*
7-
* The version of the OpenAPI document: 1.8.0
7+
* The version of the OpenAPI document: 1.10.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

packages/kafka-management-sdk/src/generated/configuration.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Kafka Service Fleet Manager
55
* Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
66
*
7-
* The version of the OpenAPI document: 1.8.0
7+
* The version of the OpenAPI document: 1.10.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

packages/kafka-management-sdk/src/generated/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Kafka Service Fleet Manager
55
* Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
66
*
7-
* The version of the OpenAPI document: 1.8.0
7+
* The version of the OpenAPI document: 1.10.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

packages/kafka-management-sdk/src/generated/model/cloud-provider-list-all-of.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Kafka Service Fleet Manager
55
* Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
66
*
7-
* The version of the OpenAPI document: 1.8.0
7+
* The version of the OpenAPI document: 1.10.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

packages/kafka-management-sdk/src/generated/model/cloud-provider-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Kafka Service Fleet Manager
55
* Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
66
*
7-
* The version of the OpenAPI document: 1.8.0
7+
* The version of the OpenAPI document: 1.10.0
88
*
99
*
1010
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)