Skip to content

Commit 2dab162

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

58 files changed

Lines changed: 303 additions & 67 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.7.1
5+
- API version: 1.8.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.7.1</version>
43+
<version>1.8.0</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-management-sdk:1.7.1"
59+
implementation "com.redhat.cloud:kafka-management-sdk:1.8.0"
6060
}
6161
```
6262

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

7171
Then manually install the following JARs:
7272

73-
- `target/kafka-management-sdk-1.7.1.jar`
73+
- `target/kafka-management-sdk-1.8.0.jar`
7474
- `target/lib/*.jar`
7575

7676
## Getting Started

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

Lines changed: 17 additions & 1 deletion
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.7.1
5+
version: 1.8.0
66
servers:
77
- description: Main (production) server
88
url: https://api.openshift.com
@@ -1227,6 +1227,8 @@ components:
12271227
max_partitions: 100
12281228
max_data_retention_period: P14D
12291229
max_connection_attempts_per_sec: 100
1230+
billing_cloud_account_id: "123456789012"
1231+
marketplace: aws
12301232
KafkaRequestFailedCreationStatusExample:
12311233
value:
12321234
id: 1iSY6RQ3JKI8Q0OTmjQFd3ocFRg
@@ -1704,6 +1706,8 @@ components:
17041706
description: Schema for the request body sent to /kafkas POST
17051707
example:
17061708
reauthentication_enabled: true
1709+
marketplace: marketplace
1710+
billing_cloud_account_id: billing_cloud_account_id
17071711
name: name
17081712
cloud_provider: cloud_provider
17091713
region: region
@@ -1730,6 +1734,14 @@ components:
17301734
plan:
17311735
description: kafka plan in a format of <instance_type>.<size_id>
17321736
type: string
1737+
billing_cloud_account_id:
1738+
description: cloud account id used to purchase the instance
1739+
nullable: true
1740+
type: string
1741+
marketplace:
1742+
description: marketplace where the instance is purchased on
1743+
nullable: true
1744+
type: string
17331745
required:
17341746
- name
17351747
type: object
@@ -2067,6 +2079,10 @@ components:
20672079
type: string
20682080
max_connection_attempts_per_sec:
20692081
type: integer
2082+
billing_cloud_account_id:
2083+
type: string
2084+
marketplace:
2085+
type: string
20702086
required:
20712087
- multi_az
20722088
- reauthentication_enabled

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ Name | Type | Description | Notes
3535
**maxPartitions** | **Integer** | | [optional]
3636
**maxDataRetentionPeriod** | **String** | | [optional]
3737
**maxConnectionAttemptsPerSec** | **Integer** | | [optional]
38+
**billingCloudAccountId** | **String** | | [optional]
39+
**marketplace** | **String** | | [optional]
3840

3941

4042

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,8 @@ Name | Type | Description | Notes
3232
**maxPartitions** | **Integer** | | [optional]
3333
**maxDataRetentionPeriod** | **String** | | [optional]
3434
**maxConnectionAttemptsPerSec** | **Integer** | | [optional]
35+
**billingCloudAccountId** | **String** | | [optional]
36+
**marketplace** | **String** | | [optional]
3537

3638

3739

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Name | Type | Description | Notes
1313
**region** | **String** | The region where the Kafka cluster will be created in | [optional]
1414
**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]
1515
**plan** | **String** | kafka plan in a format of &lt;instance_type&gt;.&lt;size_id&gt; | [optional]
16+
**billingCloudAccountId** | **String** | cloud account id used to purchase the instance | [optional]
17+
**marketplace** | **String** | marketplace where the instance is purchased on | [optional]
1618

1719

1820

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.7.1/java");
79+
setUserAgent("OpenAPI-Generator/1.8.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.7.1
5+
* The version of the OpenAPI document: 1.8.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.7.1
5+
* The version of the OpenAPI document: 1.8.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/JavaTimeFormatter.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.7.1
5+
* The version of the OpenAPI document: 1.8.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/Pair.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.7.1
5+
* The version of the OpenAPI document: 1.8.0
66
*
77
*
88
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).

0 commit comments

Comments
 (0)