Skip to content

Commit

Permalink
chore(all): re-generate OpenAPI client(s) (#322)
Browse files Browse the repository at this point in the history
Co-authored-by: app-services-ci <[email protected]>
  • Loading branch information
app-services-ci and app-services-ci authored Mar 18, 2022
1 parent e8ecc9e commit 8fc40a1
Show file tree
Hide file tree
Showing 45 changed files with 60 additions and 60 deletions.
2 changes: 1 addition & 1 deletion packages/kafka-instance-sdk/src/generated/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
10 changes: 5 additions & 5 deletions packages/kafka-instance-sdk/src/generated/api/acls-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down Expand Up @@ -52,7 +52,7 @@ export const AclsApiAxiosParamCreator = function (configuration?: Configuration)
createAcl: async (aclBinding: AclBinding, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'aclBinding' is not null or undefined
assertParamExists('createAcl', 'aclBinding', aclBinding)
const localVarPath = `/rest/acls`;
const localVarPath = `/api/v1/acls`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
Expand Down Expand Up @@ -95,7 +95,7 @@ export const AclsApiAxiosParamCreator = function (configuration?: Configuration)
* @throws {RequiredError}
*/
deleteAcls: async (resourceType?: AclResourceTypeFilter, resourceName?: string, patternType?: AclPatternTypeFilter, principal?: string, operation?: AclOperationFilter, permission?: AclPermissionTypeFilter, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/rest/acls`;
const localVarPath = `/api/v1/acls`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
Expand Down Expand Up @@ -153,7 +153,7 @@ export const AclsApiAxiosParamCreator = function (configuration?: Configuration)
* @throws {RequiredError}
*/
getAclResourceOperations: async (options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/rest/acls/resource-operations`;
const localVarPath = `/api/v1/acls/resource-operations`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
Expand Down Expand Up @@ -197,7 +197,7 @@ export const AclsApiAxiosParamCreator = function (configuration?: Configuration)
* @throws {RequiredError}
*/
getAcls: async (resourceType?: AclResourceTypeFilter, resourceName?: string, patternType?: AclPatternTypeFilter, principal?: string, operation?: AclOperationFilter, permission?: AclPermissionTypeFilter, page?: number, size?: number, order?: SortDirection, orderKey?: AclBindingOrderKey, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/rest/acls`;
const localVarPath = `/api/v1/acls`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
Expand Down
10 changes: 5 additions & 5 deletions packages/kafka-instance-sdk/src/generated/api/groups-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down Expand Up @@ -50,7 +50,7 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
deleteConsumerGroupById: async (consumerGroupId: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'consumerGroupId' is not null or undefined
assertParamExists('deleteConsumerGroupById', 'consumerGroupId', consumerGroupId)
const localVarPath = `/rest/consumer-groups/{consumerGroupId}`
const localVarPath = `/api/v1/consumer-groups/{consumerGroupId}`
.replace(`{${"consumerGroupId"}}`, encodeURIComponent(String(consumerGroupId)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
Expand Down Expand Up @@ -92,7 +92,7 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
getConsumerGroupById: async (consumerGroupId: string, order?: SortDirection, orderKey?: ConsumerGroupDescriptionOrderKey, partitionFilter?: number, topic?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'consumerGroupId' is not null or undefined
assertParamExists('getConsumerGroupById', 'consumerGroupId', consumerGroupId)
const localVarPath = `/rest/consumer-groups/{consumerGroupId}`
const localVarPath = `/api/v1/consumer-groups/{consumerGroupId}`
.replace(`{${"consumerGroupId"}}`, encodeURIComponent(String(consumerGroupId)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
Expand Down Expand Up @@ -151,7 +151,7 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
* @throws {RequiredError}
*/
getConsumerGroups: async (offset?: number, limit?: number, size?: number, page?: number, topic?: string, groupIdFilter?: string, order?: SortDirection, orderKey?: ConsumerGroupOrderKey, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/rest/consumer-groups`;
const localVarPath = `/api/v1/consumer-groups`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
Expand Down Expand Up @@ -223,7 +223,7 @@ export const GroupsApiAxiosParamCreator = function (configuration?: Configuratio
assertParamExists('resetConsumerGroupOffset', 'consumerGroupId', consumerGroupId)
// verify required parameter 'consumerGroupResetOffsetParameters' is not null or undefined
assertParamExists('resetConsumerGroupOffset', 'consumerGroupResetOffsetParameters', consumerGroupResetOffsetParameters)
const localVarPath = `/rest/consumer-groups/{consumerGroupId}/reset-offset`
const localVarPath = `/api/v1/consumer-groups/{consumerGroupId}/reset-offset`
.replace(`{${"consumerGroupId"}}`, encodeURIComponent(String(consumerGroupId)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
Expand Down
6 changes: 3 additions & 3 deletions packages/kafka-instance-sdk/src/generated/api/records-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down Expand Up @@ -47,7 +47,7 @@ export const RecordsApiAxiosParamCreator = function (configuration?: Configurati
consumeRecords: async (topicName: string, include?: Array<RecordIncludedProperty>, limit?: number, offset?: number, partition?: number, timestamp?: any, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'topicName' is not null or undefined
assertParamExists('consumeRecords', 'topicName', topicName)
const localVarPath = `/rest/topics/{topicName}/records`
const localVarPath = `/api/v1/topics/{topicName}/records`
.replace(`{${"topicName"}}`, encodeURIComponent(String(topicName)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
Expand Down Expand Up @@ -108,7 +108,7 @@ export const RecordsApiAxiosParamCreator = function (configuration?: Configurati
assertParamExists('produceRecord', 'topicName', topicName)
// verify required parameter 'record' is not null or undefined
assertParamExists('produceRecord', 'record', record)
const localVarPath = `/rest/topics/{topicName}/records`
const localVarPath = `/api/v1/topics/{topicName}/records`
.replace(`{${"topicName"}}`, encodeURIComponent(String(topicName)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
Expand Down
12 changes: 6 additions & 6 deletions packages/kafka-instance-sdk/src/generated/api/topics-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down Expand Up @@ -48,7 +48,7 @@ export const TopicsApiAxiosParamCreator = function (configuration?: Configuratio
createTopic: async (newTopicInput: NewTopicInput, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'newTopicInput' is not null or undefined
assertParamExists('createTopic', 'newTopicInput', newTopicInput)
const localVarPath = `/rest/topics`;
const localVarPath = `/api/v1/topics`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
Expand Down Expand Up @@ -88,7 +88,7 @@ export const TopicsApiAxiosParamCreator = function (configuration?: Configuratio
deleteTopic: async (topicName: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'topicName' is not null or undefined
assertParamExists('deleteTopic', 'topicName', topicName)
const localVarPath = `/rest/topics/{topicName}`
const localVarPath = `/api/v1/topics/{topicName}`
.replace(`{${"topicName"}}`, encodeURIComponent(String(topicName)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
Expand Down Expand Up @@ -126,7 +126,7 @@ export const TopicsApiAxiosParamCreator = function (configuration?: Configuratio
getTopic: async (topicName: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
// verify required parameter 'topicName' is not null or undefined
assertParamExists('getTopic', 'topicName', topicName)
const localVarPath = `/rest/topics/{topicName}`
const localVarPath = `/api/v1/topics/{topicName}`
.replace(`{${"topicName"}}`, encodeURIComponent(String(topicName)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
Expand Down Expand Up @@ -168,7 +168,7 @@ export const TopicsApiAxiosParamCreator = function (configuration?: Configuratio
* @throws {RequiredError}
*/
getTopics: async (offset?: number, limit?: number, size?: number, filter?: string, page?: number, order?: SortDirection, orderKey?: TopicOrderKey, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
const localVarPath = `/rest/topics`;
const localVarPath = `/api/v1/topics`;
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
let baseOptions;
Expand Down Expand Up @@ -236,7 +236,7 @@ export const TopicsApiAxiosParamCreator = function (configuration?: Configuratio
assertParamExists('updateTopic', 'topicName', topicName)
// verify required parameter 'topicSettings' is not null or undefined
assertParamExists('updateTopic', 'topicSettings', topicSettings)
const localVarPath = `/rest/topics/{topicName}`
const localVarPath = `/api/v1/topics/{topicName}`
.replace(`{${"topicName"}}`, encodeURIComponent(String(topicName)));
// use dummy base URL string because the URL constructor only accepts absolute URLs.
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
Expand Down
2 changes: 1 addition & 1 deletion packages/kafka-instance-sdk/src/generated/base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion packages/kafka-instance-sdk/src/generated/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion packages/kafka-instance-sdk/src/generated/configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
2 changes: 1 addition & 1 deletion packages/kafka-instance-sdk/src/generated/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* Kafka Admin REST API
* An API to provide REST endpoints for query Kafka for admin operations
*
* The version of the OpenAPI document: 0.7.1-SNAPSHOT
* The version of the OpenAPI document: 0.8.1-SNAPSHOT
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
Expand Down
Loading

0 comments on commit 8fc40a1

Please sign in to comment.