Skip to content

Commit 9b0a887

Browse files
app-services-ciwtrocki
authored andcommitted
chore(all): re-generate OpenAPI client(s)
1 parent d0b0405 commit 9b0a887

53 files changed

Lines changed: 268 additions & 85 deletions

Some content is hidden

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

packages/kafka-management-sdk/README.md

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

33
Kafka Service Fleet Manager
44

5-
- API version: 1.1.3
5+
- API version: 1.2.0
66

77
Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
88

@@ -40,7 +40,7 @@ Add this dependency to your project's POM:
4040
<dependency>
4141
<groupId>com.redhat.cloud</groupId>
4242
<artifactId>kafka-management-sdk</artifactId>
43-
<version>1.1.3</version>
43+
<version>1.2.0</version>
4444
<scope>compile</scope>
4545
</dependency>
4646
```
@@ -50,7 +50,7 @@ Add this dependency to your project's POM:
5050
Add this dependency to your project's build file:
5151

5252
```groovy
53-
compile "com.redhat.cloud:kafka-management-sdk:1.1.3"
53+
compile "com.redhat.cloud:kafka-management-sdk:1.2.0"
5454
```
5555

5656
### Others
@@ -63,7 +63,7 @@ mvn clean package
6363

6464
Then manually install the following JARs:
6565

66-
- `target/kafka-management-sdk-1.1.3.jar`
66+
- `target/kafka-management-sdk-1.2.0.jar`
6767
- `target/lib/*.jar`
6868

6969
## Getting Started

packages/kafka-management-sdk/api/openapi.yaml

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ openapi: 3.0.0
22
info:
33
description: Kafka Service Fleet Manager is a Rest API to manage Kafka instances.
44
title: Kafka Service Fleet Manager
5-
version: 1.1.3
5+
version: 1.2.0
66
servers:
77
- description: Main (production) server
88
url: https://api.openshift.com
@@ -1096,6 +1096,7 @@ components:
10961096
updated_at: 2020-10-05T12:56:36.362208Z
10971097
version: 2.6.0
10981098
instance_type: standard
1099+
reauthentication_enabled: true
10991100
KafkaRequestFailedCreationStatusExample:
11001101
value:
11011102
id: 1iSY6RQ3JKI8Q0OTmjQFd3ocFRg
@@ -1112,6 +1113,7 @@ components:
11121113
updated_at: 2020-10-05T12:56:36.362208Z
11131114
failed_reason: a reason the Kafka request creation failed
11141115
instance_type: standard
1116+
reauthentication_enabled: true
11151117
CloudProviderExample:
11161118
value:
11171119
kind: CloudProvider
@@ -1493,6 +1495,7 @@ components:
14931495
KafkaRequestPayload:
14941496
description: Schema for the request body sent to /kafkas POST
14951497
example:
1498+
reauthentication_enabled: true
14961499
multi_az: true
14971500
name: name
14981501
cloud_provider: cloud_provider
@@ -1513,6 +1516,12 @@ components:
15131516
region:
15141517
description: The region where the Kafka cluster will be created in
15151518
type: string
1519+
reauthentication_enabled:
1520+
description: Whether connection reauthentication is enabled or not. If set
1521+
to true, connection reauthentication on the Kafka instance will be required
1522+
every 5 minutes. The default value is true
1523+
nullable: true
1524+
type: boolean
15161525
required:
15171526
- name
15181527
type: object
@@ -1639,11 +1648,17 @@ components:
16391648
KafkaUpdateRequest:
16401649
example:
16411650
owner: owner
1651+
reauthentication_enabled: true
16421652
properties:
16431653
owner:
1654+
nullable: true
16441655
type: string
1645-
required:
1646-
- owner
1656+
reauthentication_enabled:
1657+
description: Whether connection reauthentication is enabled or not. If set
1658+
to true, connection reauthentication on the Kafka instance will be required
1659+
every 5 minutes.
1660+
nullable: true
1661+
type: boolean
16471662
type: object
16481663
Error_allOf:
16491664
properties:
@@ -1696,6 +1711,11 @@ components:
16961711
type: string
16971712
instance_type:
16981713
type: string
1714+
reauthentication_enabled:
1715+
type: boolean
1716+
required:
1717+
- multi_az
1718+
- reauthentication_enabled
16991719
type: object
17001720
KafkaRequestList_allOf:
17011721
example:

packages/kafka-management-sdk/docs/KafkaRequest.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Name | Type | Description | Notes
1212
**href** | **String** | | [optional]
1313
**status** | **String** | Values: [accepted, preparing, provisioning, ready, failed, deprovision, deleting] | [optional]
1414
**cloudProvider** | **String** | Name of Cloud used to deploy. For example AWS | [optional]
15-
**multiAz** | **Boolean** | | [optional]
15+
**multiAz** | **Boolean** | |
1616
**region** | **String** | Values will be regions of specific cloud provider. For example: us-east-1 for AWS | [optional]
1717
**owner** | **String** | | [optional]
1818
**name** | **String** | | [optional]
@@ -22,6 +22,7 @@ Name | Type | Description | Notes
2222
**failedReason** | **String** | | [optional]
2323
**version** | **String** | | [optional]
2424
**instanceType** | **String** | | [optional]
25+
**reauthenticationEnabled** | **Boolean** | |
2526

2627

2728

packages/kafka-management-sdk/docs/KafkaRequestAllOf.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
------------ | ------------- | ------------- | -------------
1010
**status** | **String** | Values: [accepted, preparing, provisioning, ready, failed, deprovision, deleting] | [optional]
1111
**cloudProvider** | **String** | Name of Cloud used to deploy. For example AWS | [optional]
12-
**multiAz** | **Boolean** | | [optional]
12+
**multiAz** | **Boolean** | |
1313
**region** | **String** | Values will be regions of specific cloud provider. For example: us-east-1 for AWS | [optional]
1414
**owner** | **String** | | [optional]
1515
**name** | **String** | | [optional]
@@ -19,6 +19,7 @@ Name | Type | Description | Notes
1919
**failedReason** | **String** | | [optional]
2020
**version** | **String** | | [optional]
2121
**instanceType** | **String** | | [optional]
22+
**reauthenticationEnabled** | **Boolean** | |
2223

2324

2425

packages/kafka-management-sdk/docs/KafkaRequestPayload.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**multiAz** | **Boolean** | Set this to true to configure the Kafka cluster to be multiAZ | [optional]
1313
**name** | **String** | The name of the Kafka cluster. It must consist of lower-case alphanumeric characters or &#39;-&#39;, start with an alphabetic character, and end with an alphanumeric character, and can not be longer than 32 characters. |
1414
**region** | **String** | The region where the Kafka cluster will be created in | [optional]
15+
**reauthenticationEnabled** | **Boolean** | Whether connection reauthentication is enabled or not. If set to true, connection reauthentication on the Kafka instance will be required every 5 minutes. The default value is true | [optional]
1516

1617

1718

packages/kafka-management-sdk/docs/KafkaUpdateRequest.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77

88
Name | Type | Description | Notes
99
------------ | ------------- | ------------- | -------------
10-
**owner** | **String** | |
10+
**owner** | **String** | | [optional]
11+
**reauthenticationEnabled** | **Boolean** | Whether connection reauthentication is enabled or not. If set to true, connection reauthentication on the Kafka instance will be required every 5 minutes. | [optional]
1112

1213

1314

packages/kafka-management-sdk/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<description>Red Hat Aplicaiton Services Java SDK</description>
99
<url>https://github.com/redhat-developer/app-services-sdk-java</url>
1010

11-
<version>1.1.3</version>
11+
<version>1.2.0</version>
1212
<scm>
1313
<connection>scm:git:git@github.com:openapitools/openapi-generator.git</connection>
1414
<developerConnection>scm:git:git@github.com:openapitools/openapi-generator.git</developerConnection>

packages/kafka-management-sdk/src/main/java/com/openshift/cloud/api/kas/invoker/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public ApiClient() {
7676
this.json.setDateFormat((DateFormat) dateFormat.clone());
7777

7878
// Set default User-Agent.
79-
setUserAgent("OpenAPI-Generator/1.1.3/java");
79+
setUserAgent("OpenAPI-Generator/1.2.0/java");
8080

8181
// Setup authentications (key: authentication name, value: authentication).
8282
authentications = new HashMap<String, Authentication>();

packages/kafka-management-sdk/src/main/java/com/openshift/cloud/api/kas/invoker/ApiException.java

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

packages/kafka-management-sdk/src/main/java/com/openshift/cloud/api/kas/invoker/Configuration.java

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

0 commit comments

Comments
 (0)