Skip to content

Commit

Permalink
Merge pull request #57 from redhat-developer/chore/generate-sdks-1674…
Browse files Browse the repository at this point in the history
…174433

chore(all): re-generate SDKs
  • Loading branch information
jackdelahunt authored Jan 20, 2023
2 parents 1ea6c76 + b524c30 commit f74ef25
Show file tree
Hide file tree
Showing 87 changed files with 1,975 additions and 1,052 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ docs/SsoProvider.md
docs/SsoProviderAllOf.md
docs/SupportedKafkaBillingModel.md
docs/SupportedKafkaInstanceType.md
docs/SupportedKafkaInstanceTypeSizesInner.md
docs/SupportedKafkaInstanceTypesList.md
docs/SupportedKafkaInstanceTypesListAllOf.md
docs/SupportedKafkaSize.md
Expand Down Expand Up @@ -108,6 +109,7 @@ rhoas_kafka_mgmt_sdk/model/sso_provider.py
rhoas_kafka_mgmt_sdk/model/sso_provider_all_of.py
rhoas_kafka_mgmt_sdk/model/supported_kafka_billing_model.py
rhoas_kafka_mgmt_sdk/model/supported_kafka_instance_type.py
rhoas_kafka_mgmt_sdk/model/supported_kafka_instance_type_sizes_inner.py
rhoas_kafka_mgmt_sdk/model/supported_kafka_instance_types_list.py
rhoas_kafka_mgmt_sdk/model/supported_kafka_instance_types_list_all_of.py
rhoas_kafka_mgmt_sdk/model/supported_kafka_size.py
Expand Down Expand Up @@ -169,6 +171,7 @@ test/test_sso_provider.py
test/test_sso_provider_all_of.py
test/test_supported_kafka_billing_model.py
test/test_supported_kafka_instance_type.py
test/test_supported_kafka_instance_type_sizes_inner.py
test/test_supported_kafka_instance_types_list.py
test/test_supported_kafka_instance_types_list_all_of.py
test/test_supported_kafka_size.py
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.4.0
6.1.0
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# ServiceAccountListItem



## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Name | Type | Description | Notes
**supported_billing_models** | [**[SupportedKafkaBillingModel]**](SupportedKafkaBillingModel.md) | A list of available kafka billing models for the instance type. Each kafka billing model item has a unique 'id' |
**id** | **str** | Unique identifier of the Kafka instance type. | [optional]
**display_name** | **str** | Human readable name of the supported Kafka instance type | [optional]
**sizes** | **[bool, date, datetime, dict, float, int, list, str, none_type]** | A list of Kafka instance sizes available for this instance type | [optional]
**sizes** | [**[SupportedKafkaInstanceTypeSizesInner]**](SupportedKafkaInstanceTypeSizesInner.md) | A list of Kafka instance sizes available for this instance type | [optional]
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# SupportedKafkaInstanceTypeSizesInner


## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Unique identifier of this Kafka instance size. | [optional]
**display_name** | **str** | Display name of this Kafka instance size. | [optional]
**ingress_throughput_per_sec** | **SupportedKafkaSizeBytesValueItem** | | [optional]
**egress_throughput_per_sec** | **SupportedKafkaSizeBytesValueItem** | | [optional]
**total_max_connections** | **int** | Maximum amount of total connections available to this Kafka instance size. | [optional]
**max_data_retention_size** | **SupportedKafkaSizeBytesValueItem** | | [optional]
**max_partitions** | **int** | Maximum amount of total partitions available to this Kafka instance size. | [optional]
**max_data_retention_period** | **str** | Maximum data retention period available to this Kafka instance size. | [optional]
**max_connection_attempts_per_sec** | **int** | Maximium connection attempts per second available to this Kafka instance size. | [optional]
**max_message_size** | **SupportedKafkaSizeBytesValueItem** | | [optional]
**min_in_sync_replicas** | **int** | Minimum number of in-sync replicas. | [optional]
**replication_factor** | **int** | Replication factor available to this Kafka instance size. | [optional]
**supported_az_modes** | **[str]** | List of Availability Zone modes that this Kafka instance size supports. The possible values are \"single\", \"multi\". | [optional]
**lifespan_seconds** | **int, none_type** | The limit lifespan of the kafka instance in seconds. If not specified then the instance never expires. | [optional]
**quota_consumed** | **int** | Quota consumed by this Kafka instance size. | [optional]
**quota_type** | **str** | Quota type used by this Kafka instance size. This is now deprecated, please refer to supported_billing_models at instance-type level instead. | [optional]
**capacity_consumed** | **int** | Data plane cluster capacity consumed by this Kafka instance size. | [optional]
**maturity_status** | **str** | Maturity level of the size. Can be \"stable\" or \"preview\". | [optional]
**any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


Original file line number Diff line number Diff line change
Expand Up @@ -784,6 +784,10 @@ def create_kafka(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -815,6 +819,7 @@ def create_kafka(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
kwargs['_async'] = \
_async
kwargs['kafka_request_payload'] = \
Expand Down Expand Up @@ -866,6 +871,10 @@ def delete_kafka_by_id(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -897,6 +906,7 @@ def delete_kafka_by_id(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
kwargs['id'] = \
id
kwargs['_async'] = \
Expand Down Expand Up @@ -946,6 +956,10 @@ def federate_metrics(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -977,6 +991,7 @@ def federate_metrics(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
kwargs['id'] = \
id
return self.federate_metrics_endpoint.call_with_http_info(**kwargs)
Expand Down Expand Up @@ -1026,6 +1041,10 @@ def get_cloud_provider_regions(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -1057,6 +1076,7 @@ def get_cloud_provider_regions(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
kwargs['id'] = \
id
return self.get_cloud_provider_regions_endpoint.call_with_http_info(**kwargs)
Expand Down Expand Up @@ -1103,6 +1123,10 @@ def get_cloud_providers(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -1134,6 +1158,7 @@ def get_cloud_providers(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
return self.get_cloud_providers_endpoint.call_with_http_info(**kwargs)

def get_instance_types_by_cloud_provider_and_region(
Expand Down Expand Up @@ -1181,6 +1206,10 @@ def get_instance_types_by_cloud_provider_and_region(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -1212,6 +1241,7 @@ def get_instance_types_by_cloud_provider_and_region(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
kwargs['cloud_provider'] = \
cloud_provider
kwargs['cloud_region'] = \
Expand Down Expand Up @@ -1261,6 +1291,10 @@ def get_kafka_by_id(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -1292,6 +1326,7 @@ def get_kafka_by_id(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
kwargs['id'] = \
id
return self.get_kafka_by_id_endpoint.call_with_http_info(**kwargs)
Expand Down Expand Up @@ -1340,6 +1375,10 @@ def get_kafkas(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -1371,6 +1410,7 @@ def get_kafkas(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
return self.get_kafkas_endpoint.call_with_http_info(**kwargs)

def get_metrics_by_instant_query(
Expand Down Expand Up @@ -1417,6 +1457,10 @@ def get_metrics_by_instant_query(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -1448,6 +1492,7 @@ def get_metrics_by_instant_query(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
kwargs['id'] = \
id
return self.get_metrics_by_instant_query_endpoint.call_with_http_info(**kwargs)
Expand Down Expand Up @@ -1500,6 +1545,10 @@ def get_metrics_by_range_query(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -1531,6 +1580,7 @@ def get_metrics_by_range_query(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
kwargs['id'] = \
id
kwargs['duration'] = \
Expand Down Expand Up @@ -1579,6 +1629,10 @@ def get_version_metadata(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -1610,6 +1664,7 @@ def get_version_metadata(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
return self.get_version_metadata_endpoint.call_with_http_info(**kwargs)

def update_kafka_by_id(
Expand Down Expand Up @@ -1657,6 +1712,10 @@ def update_kafka_by_id(
_host_index (int/None): specifies the index of the server
that we want to use.
Default is read from the configuration.
_request_auths (list): set to override the auth_settings for an a single
request; this effectively ignores the authentication
in the spec for a single request.
Default is None
async_req (bool): execute request asynchronously
Returns:
Expand Down Expand Up @@ -1688,6 +1747,7 @@ def update_kafka_by_id(
kwargs['_content_type'] = kwargs.get(
'_content_type')
kwargs['_host_index'] = kwargs.get('_host_index')
kwargs['_request_auths'] = kwargs.get('_request_auths', None)
kwargs['id'] = \
id
kwargs['kafka_update_request'] = \
Expand Down
Loading

0 comments on commit f74ef25

Please sign in to comment.