@@ -17304,7 +17304,7 @@ def dynamic_secret_create_oracle_db_with_http_info(self, dynamic_secret_create_o
1730417304 auth_settings = [] # noqa: E501
1730517305
1730617306 return self.api_client.call_api(
17307- '/dynamic-secret-create-oracle ', 'POST',
17307+ '/dynamic-secret-create-oracledb ', 'POST',
1730817308 path_params,
1730917309 query_params,
1731017310 header_params,
@@ -18928,7 +18928,7 @@ def dynamic_secret_tmp_creds_get_with_http_info(self, dynamic_secret_tmp_creds_g
1892818928 auth_settings = [] # noqa: E501
1892918929
1893018930 return self.api_client.call_api(
18931- '/dynamic-secret-tmp-creds-Get ', 'POST',
18931+ '/dynamic-secret-tmp-creds-get ', 'POST',
1893218932 path_params,
1893318933 query_params,
1893418934 header_params,
@@ -20548,7 +20548,7 @@ def dynamic_secret_update_hana_db_with_http_info(self, dynamic_secret_update_han
2054820548 auth_settings = [] # noqa: E501
2054920549
2055020550 return self.api_client.call_api(
20551- '/dynamic-secret-update-hana ', 'POST',
20551+ '/dynamic-secret-update-hanadb ', 'POST',
2055220552 path_params,
2055320553 query_params,
2055420554 header_params,
@@ -20896,7 +20896,7 @@ def dynamic_secret_update_mongo_db_with_http_info(self, dynamic_secret_update_mo
2089620896 auth_settings = [] # noqa: E501
2089720897
2089820898 return self.api_client.call_api(
20899- '/dynamic-secret-update-mongo ', 'POST',
20899+ '/dynamic-secret-update-mongodb ', 'POST',
2090020900 path_params,
2090120901 query_params,
2090220902 header_params,
@@ -52008,6 +52008,122 @@ def rotated_secret_update_windows_with_http_info(self, rotated_secret_update_win
5200852008 _request_timeout=local_var_params.get('_request_timeout'),
5200952009 collection_formats=collection_formats)
5201052010
52011+ def runtime_authority(self, runtime_authority_command, **kwargs): # noqa: E501
52012+ """runtime_authority # noqa: E501
52013+
52014+ This method makes a synchronous HTTP request by default. To make an
52015+ asynchronous HTTP request, please pass async_req=True
52016+ >>> thread = api.runtime_authority(runtime_authority_command, async_req=True)
52017+ >>> result = thread.get()
52018+
52019+ :param async_req bool: execute request asynchronously
52020+ :param RuntimeAuthorityCommand runtime_authority_command: (required)
52021+ :param _preload_content: if False, the urllib3.HTTPResponse object will
52022+ be returned without reading/decoding response
52023+ data. Default is True.
52024+ :param _request_timeout: timeout setting for this request. If one
52025+ number provided, it will be total request
52026+ timeout. It can also be a pair (tuple) of
52027+ (connection, read) timeouts.
52028+ :return: None
52029+ If the method is called asynchronously,
52030+ returns the request thread.
52031+ """
52032+ kwargs['_return_http_data_only'] = True
52033+ return self.runtime_authority_with_http_info(runtime_authority_command, **kwargs) # noqa: E501
52034+
52035+ def runtime_authority_with_http_info(self, runtime_authority_command, **kwargs): # noqa: E501
52036+ """runtime_authority # noqa: E501
52037+
52038+ This method makes a synchronous HTTP request by default. To make an
52039+ asynchronous HTTP request, please pass async_req=True
52040+ >>> thread = api.runtime_authority_with_http_info(runtime_authority_command, async_req=True)
52041+ >>> result = thread.get()
52042+
52043+ :param async_req bool: execute request asynchronously
52044+ :param RuntimeAuthorityCommand runtime_authority_command: (required)
52045+ :param _return_http_data_only: response data without head status code
52046+ and headers
52047+ :param _preload_content: if False, the urllib3.HTTPResponse object will
52048+ be returned without reading/decoding response
52049+ data. Default is True.
52050+ :param _request_timeout: timeout setting for this request. If one
52051+ number provided, it will be total request
52052+ timeout. It can also be a pair (tuple) of
52053+ (connection, read) timeouts.
52054+ :return: None
52055+ If the method is called asynchronously,
52056+ returns the request thread.
52057+ """
52058+
52059+ local_var_params = locals()
52060+
52061+ all_params = [
52062+ 'runtime_authority_command'
52063+ ]
52064+ all_params.extend(
52065+ [
52066+ 'async_req',
52067+ '_return_http_data_only',
52068+ '_preload_content',
52069+ '_request_timeout'
52070+ ]
52071+ )
52072+
52073+ for key, val in six.iteritems(local_var_params['kwargs']):
52074+ if key not in all_params:
52075+ raise ApiTypeError(
52076+ "Got an unexpected keyword argument '%s'"
52077+ " to method runtime_authority" % key
52078+ )
52079+ local_var_params[key] = val
52080+ del local_var_params['kwargs']
52081+ # verify the required parameter 'runtime_authority_command' is set
52082+ if self.api_client.client_side_validation and ('runtime_authority_command' not in local_var_params or # noqa: E501
52083+ local_var_params['runtime_authority_command'] is None): # noqa: E501
52084+ raise ApiValueError("Missing the required parameter `runtime_authority_command` when calling `runtime_authority`") # noqa: E501
52085+
52086+ collection_formats = {}
52087+
52088+ path_params = {}
52089+
52090+ query_params = []
52091+
52092+ header_params = {}
52093+
52094+ form_params = []
52095+ local_var_files = {}
52096+
52097+ body_params = None
52098+ if 'runtime_authority_command' in local_var_params:
52099+ body_params = local_var_params['runtime_authority_command']
52100+ # HTTP header `Accept`
52101+ header_params['Accept'] = self.api_client.select_header_accept(
52102+ ['application/json']) # noqa: E501
52103+
52104+ # HTTP header `Content-Type`
52105+ header_params['Content-Type'] = self.api_client.select_header_content_type( # noqa: E501
52106+ ['application/json']) # noqa: E501
52107+
52108+ # Authentication setting
52109+ auth_settings = [] # noqa: E501
52110+
52111+ return self.api_client.call_api(
52112+ '/runtime-authority', 'POST',
52113+ path_params,
52114+ query_params,
52115+ header_params,
52116+ body=body_params,
52117+ post_params=form_params,
52118+ files=local_var_files,
52119+ response_type=None, # noqa: E501
52120+ auth_settings=auth_settings,
52121+ async_req=local_var_params.get('async_req'),
52122+ _return_http_data_only=local_var_params.get('_return_http_data_only'), # noqa: E501
52123+ _preload_content=local_var_params.get('_preload_content', True),
52124+ _request_timeout=local_var_params.get('_request_timeout'),
52125+ collection_formats=collection_formats)
52126+
5201152127 def set_item_state(self, set_item_state, **kwargs): # noqa: E501
5201252128 """set_item_state # noqa: E501
5201352129
0 commit comments