Skip to content

Commit 6435519

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

84 files changed

Lines changed: 2419 additions & 2094 deletions

File tree

Some content is hidden

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

packages/connector-management-sdk/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@
137137
<plugin>
138138
<groupId>org.apache.maven.plugins</groupId>
139139
<artifactId>maven-compiler-plugin</artifactId>
140-
<version>3.10.0</version>
140+
<version>3.9.0</version>
141141
<configuration>
142142
<source>1.8</source>
143143
<target>1.8</target>
@@ -146,7 +146,7 @@
146146
<plugin>
147147
<groupId>org.apache.maven.plugins</groupId>
148148
<artifactId>maven-javadoc-plugin</artifactId>
149-
<version>3.3.2</version>
149+
<version>3.3.1</version>
150150
<configuration>
151151
<doclint>none</doclint>
152152
<source>1.8</source>
@@ -175,7 +175,7 @@
175175
<plugin>
176176
<groupId>org.sonatype.plugins</groupId>
177177
<artifactId>nexus-staging-maven-plugin</artifactId>
178-
<version>1.6.12</version>
178+
<version>1.6.8</version>
179179
<extensions>true</extensions>
180180
<configuration>
181181
<serverId>ossrh</serverId>

packages/kafka-instance-sdk/README.md

Lines changed: 28 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Kafka Admin REST API
44

5-
- API version: 0.3.0
5+
- API version: 0.7.1-SNAPSHOT
66

77
An API to provide REST endpoints for query Kafka for admin operations
88

@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>com.redhat.cloud</groupId>
4242
<artifactId>kafka-instance-sdk</artifactId>
43-
<version>0.3.0</version>
43+
<version>0.7.1-SNAPSHOT</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -56,7 +56,7 @@ Add this dependency to your project's build file:
5656
}
5757
5858
dependencies {
59-
implementation "com.redhat.cloud:kafka-instance-sdk:0.3.0"
59+
implementation "com.redhat.cloud:kafka-instance-sdk:0.7.1-SNAPSHOT"
6060
}
6161
```
6262

@@ -70,7 +70,7 @@ mvn clean package
7070

7171
Then manually install the following JARs:
7272

73-
- `target/kafka-instance-sdk-0.3.0.jar`
73+
- `target/kafka-instance-sdk-0.7.1-SNAPSHOT.jar`
7474
- `target/lib/*.jar`
7575

7676
## Getting Started
@@ -88,7 +88,7 @@ public class AclsApiExample {
8888

8989
public static void main(String[] args) {
9090
ApiClient defaultClient = Configuration.getDefaultApiClient();
91-
defaultClient.setBasePath("/rest");
91+
defaultClient.setBasePath("http://localhost");
9292

9393
// Configure OAuth2 access token for authorization: Bearer
9494
OAuth Bearer = (OAuth) defaultClient.getAuthentication("Bearer");
@@ -112,30 +112,30 @@ public class AclsApiExample {
112112

113113
## Documentation for API Endpoints
114114

115-
All URIs are relative to */rest*
115+
All URIs are relative to *http://localhost*
116116

117117
Class | Method | HTTP request | Description
118118
------------ | ------------- | ------------- | -------------
119-
*AclsApi* | [**createAcl**](docs/AclsApi.md#createAcl) | **POST** /acls | Create ACL binding
120-
*AclsApi* | [**deleteAcls**](docs/AclsApi.md#deleteAcls) | **DELETE** /acls | Delete ACL bindings
121-
*AclsApi* | [**getAclResourceOperations**](docs/AclsApi.md#getAclResourceOperations) | **GET** /acls/resource-operations | Retrieve allowed ACL resources and operations
122-
*AclsApi* | [**getAcls**](docs/AclsApi.md#getAcls) | **GET** /acls | List ACL bindings
123-
*GroupsApi* | [**deleteConsumerGroupById**](docs/GroupsApi.md#deleteConsumerGroupById) | **DELETE** /consumer-groups/{consumerGroupId} | Delete a consumer group.
124-
*GroupsApi* | [**getConsumerGroupById**](docs/GroupsApi.md#getConsumerGroupById) | **GET** /consumer-groups/{consumerGroupId} | Get a single consumer group by its unique ID.
125-
*GroupsApi* | [**getConsumerGroups**](docs/GroupsApi.md#getConsumerGroups) | **GET** /consumer-groups | List of consumer groups in the Kafka instance.
126-
*GroupsApi* | [**resetConsumerGroupOffset**](docs/GroupsApi.md#resetConsumerGroupOffset) | **POST** /consumer-groups/{consumerGroupId}/reset-offset | Reset the offset for a consumer group.
127-
*TopicsApi* | [**createTopic**](docs/TopicsApi.md#createTopic) | **POST** /topics | Creates a new topic
128-
*TopicsApi* | [**deleteTopic**](docs/TopicsApi.md#deleteTopic) | **DELETE** /topics/{topicName} | Deletes a topic
129-
*TopicsApi* | [**getTopic**](docs/TopicsApi.md#getTopic) | **GET** /topics/{topicName} | Retrieves the topic with the specified name.
130-
*TopicsApi* | [**getTopics**](docs/TopicsApi.md#getTopics) | **GET** /topics | List of topics
131-
*TopicsApi* | [**updateTopic**](docs/TopicsApi.md#updateTopic) | **PATCH** /topics/{topicName} | Updates the topic with the specified name.
119+
*AclsApi* | [**createAcl**](docs/AclsApi.md#createAcl) | **POST** /rest/acls | Create ACL binding
120+
*AclsApi* | [**deleteAcls**](docs/AclsApi.md#deleteAcls) | **DELETE** /rest/acls | Delete ACL bindings
121+
*AclsApi* | [**getAclResourceOperations**](docs/AclsApi.md#getAclResourceOperations) | **GET** /rest/acls/resource-operations | Retrieve allowed ACL resources and operations
122+
*AclsApi* | [**getAcls**](docs/AclsApi.md#getAcls) | **GET** /rest/acls | List ACL bindings
123+
*GroupsApi* | [**deleteConsumerGroupById**](docs/GroupsApi.md#deleteConsumerGroupById) | **DELETE** /rest/consumer-groups/{consumerGroupId} | Delete a consumer group.
124+
*GroupsApi* | [**getConsumerGroupById**](docs/GroupsApi.md#getConsumerGroupById) | **GET** /rest/consumer-groups/{consumerGroupId} | Get a single consumer group by its unique ID.
125+
*GroupsApi* | [**getConsumerGroups**](docs/GroupsApi.md#getConsumerGroups) | **GET** /rest/consumer-groups | List of consumer groups in the Kafka instance.
126+
*GroupsApi* | [**resetConsumerGroupOffset**](docs/GroupsApi.md#resetConsumerGroupOffset) | **POST** /rest/consumer-groups/{consumerGroupId}/reset-offset | Reset the offset for a consumer group.
127+
*TopicsApi* | [**createTopic**](docs/TopicsApi.md#createTopic) | **POST** /rest/topics | Creates a new topic
128+
*TopicsApi* | [**deleteTopic**](docs/TopicsApi.md#deleteTopic) | **DELETE** /rest/topics/{topicName} | Deletes a topic
129+
*TopicsApi* | [**getTopic**](docs/TopicsApi.md#getTopic) | **GET** /rest/topics/{topicName} | Retrieves a single topic
130+
*TopicsApi* | [**getTopics**](docs/TopicsApi.md#getTopics) | **GET** /rest/topics | Retrieves a list of topics
131+
*TopicsApi* | [**updateTopic**](docs/TopicsApi.md#updateTopic) | **PATCH** /rest/topics/{topicName} | Updates a single topic
132132

133133

134134
## Documentation for Models
135135

136136
- [AclBinding](docs/AclBinding.md)
137-
- [AclBindingList](docs/AclBindingList.md)
138137
- [AclBindingListPage](docs/AclBindingListPage.md)
138+
- [AclBindingOrderKey](docs/AclBindingOrderKey.md)
139139
- [AclOperation](docs/AclOperation.md)
140140
- [AclOperationFilter](docs/AclOperationFilter.md)
141141
- [AclPatternType](docs/AclPatternType.md)
@@ -147,20 +147,25 @@ Class | Method | HTTP request | Description
147147
- [ConfigEntry](docs/ConfigEntry.md)
148148
- [Consumer](docs/Consumer.md)
149149
- [ConsumerGroup](docs/ConsumerGroup.md)
150+
- [ConsumerGroupDescriptionOrderKey](docs/ConsumerGroupDescriptionOrderKey.md)
150151
- [ConsumerGroupList](docs/ConsumerGroupList.md)
152+
- [ConsumerGroupMetrics](docs/ConsumerGroupMetrics.md)
153+
- [ConsumerGroupOrderKey](docs/ConsumerGroupOrderKey.md)
151154
- [ConsumerGroupResetOffsetParameters](docs/ConsumerGroupResetOffsetParameters.md)
152155
- [ConsumerGroupResetOffsetResult](docs/ConsumerGroupResetOffsetResult.md)
153156
- [ConsumerGroupResetOffsetResultItem](docs/ConsumerGroupResetOffsetResultItem.md)
154-
- [ConsumerGroupResetOffsetResultItemList](docs/ConsumerGroupResetOffsetResultItemList.md)
157+
- [ConsumerGroupState](docs/ConsumerGroupState.md)
155158
- [Error](docs/Error.md)
156159
- [NewTopicInput](docs/NewTopicInput.md)
160+
- [Node](docs/Node.md)
161+
- [OffsetType](docs/OffsetType.md)
157162
- [Partition](docs/Partition.md)
158-
- [ResultListPage](docs/ResultListPage.md)
163+
- [SortDirection](docs/SortDirection.md)
159164
- [Topic](docs/Topic.md)
165+
- [TopicOrderKey](docs/TopicOrderKey.md)
160166
- [TopicSettings](docs/TopicSettings.md)
161167
- [TopicsList](docs/TopicsList.md)
162168
- [TopicsToResetOffset](docs/TopicsToResetOffset.md)
163-
- [UpdateTopicInput](docs/UpdateTopicInput.md)
164169

165170

166171
## Documentation for Authorization

0 commit comments

Comments
 (0)