2022-11-13 13:21:12 +00:00
"""
2023-11-22 17:26:20 +00:00
Garage Administration API v0 + garage - v0 .9 .0
2022-11-13 13:21:12 +00:00
Administrate your Garage cluster programatically , including status , layout , keys , buckets , and maintainance tasks . * Disclaimer : The API is not stable yet , hence its v0 tag . The API can change at any time , and changes can include breaking backward compatibility . Read the changelog and upgrade your scripts before upgrading . Additionnaly , this specification is very early stage and can contain bugs , especially on error return codes / types that are not tested yet . Do not expect a well finished and polished product ! * # noqa: E501
2023-11-22 17:26:20 +00:00
The version of the OpenAPI document : v0 .9 .0
2022-11-13 13:21:12 +00:00
Generated by : https : / / openapi - generator . tech
"""
import re # noqa: F401
import sys # noqa: F401
from garage_admin_sdk . api_client import ApiClient , Endpoint as _Endpoint
from garage_admin_sdk . model_utils import ( # noqa: F401
check_allowed_values ,
check_validations ,
date ,
datetime ,
file_type ,
none_type ,
validate_and_convert_types
)
from garage_admin_sdk . model . add_key_request import AddKeyRequest
from garage_admin_sdk . model . import_key_request import ImportKeyRequest
from garage_admin_sdk . model . key_info import KeyInfo
from garage_admin_sdk . model . list_keys200_response_inner import ListKeys200ResponseInner
from garage_admin_sdk . model . update_key_request import UpdateKeyRequest
class KeyApi ( object ) :
""" NOTE: This class is auto generated by OpenAPI Generator
Ref : https : / / openapi - generator . tech
Do not edit the class manually .
"""
def __init__ ( self , api_client = None ) :
if api_client is None :
api_client = ApiClient ( )
self . api_client = api_client
self . add_key_endpoint = _Endpoint (
settings = {
' response_type ' : ( KeyInfo , ) ,
' auth ' : [
' bearerAuth '
] ,
2023-11-22 19:48:12 +00:00
' endpoint_path ' : ' /key?list ' ,
2022-11-13 13:21:12 +00:00
' operation_id ' : ' add_key ' ,
' http_method ' : ' POST ' ,
' servers ' : None ,
} ,
params_map = {
' all ' : [
' add_key_request ' ,
] ,
' required ' : [
' add_key_request ' ,
] ,
' nullable ' : [
] ,
' enum ' : [
] ,
' validation ' : [
]
} ,
root_map = {
' validations ' : {
} ,
' allowed_values ' : {
} ,
' openapi_types ' : {
' add_key_request ' :
( AddKeyRequest , ) ,
} ,
' attribute_map ' : {
} ,
' location_map ' : {
' add_key_request ' : ' body ' ,
} ,
' collection_format_map ' : {
}
} ,
headers_map = {
' accept ' : [
' application/json '
] ,
' content_type ' : [
' application/json '
]
} ,
api_client = api_client
)
self . delete_key_endpoint = _Endpoint (
settings = {
' response_type ' : None ,
' auth ' : [
' bearerAuth '
] ,
2023-11-22 19:48:12 +00:00
' endpoint_path ' : ' /key ' ,
2022-11-13 13:21:12 +00:00
' operation_id ' : ' delete_key ' ,
' http_method ' : ' DELETE ' ,
' servers ' : None ,
} ,
params_map = {
' all ' : [
2023-11-23 07:53:53 +00:00
' id ' ,
2022-11-13 13:21:12 +00:00
] ,
' required ' : [
2023-11-23 07:53:53 +00:00
' id ' ,
2022-11-13 13:21:12 +00:00
] ,
' nullable ' : [
] ,
' enum ' : [
] ,
' validation ' : [
]
} ,
root_map = {
' validations ' : {
} ,
' allowed_values ' : {
} ,
' openapi_types ' : {
2023-11-23 07:53:53 +00:00
' id ' :
2022-11-13 13:21:12 +00:00
( str , ) ,
} ,
' attribute_map ' : {
2023-11-23 07:53:53 +00:00
' id ' : ' id ' ,
2022-11-13 13:21:12 +00:00
} ,
' location_map ' : {
2023-11-23 07:53:53 +00:00
' id ' : ' query ' ,
2022-11-13 13:21:12 +00:00
} ,
' collection_format_map ' : {
}
} ,
headers_map = {
' accept ' : [ ] ,
' content_type ' : [ ] ,
} ,
api_client = api_client
)
self . get_key_endpoint = _Endpoint (
settings = {
' response_type ' : ( KeyInfo , ) ,
' auth ' : [
' bearerAuth '
] ,
2023-11-22 19:48:12 +00:00
' endpoint_path ' : ' /key ' ,
2022-11-13 13:21:12 +00:00
' operation_id ' : ' get_key ' ,
' http_method ' : ' GET ' ,
' servers ' : None ,
} ,
params_map = {
' all ' : [
2023-11-22 19:48:12 +00:00
' id ' ,
' search ' ,
2023-11-22 17:26:20 +00:00
' show_secret_key ' ,
2022-11-13 13:21:12 +00:00
] ,
2023-11-22 19:48:12 +00:00
' required ' : [ ] ,
2022-11-13 13:21:12 +00:00
' nullable ' : [
] ,
' enum ' : [
2023-11-22 20:08:14 +00:00
' show_secret_key ' ,
2022-11-13 13:21:12 +00:00
] ,
' validation ' : [
]
} ,
root_map = {
' validations ' : {
} ,
' allowed_values ' : {
2023-11-22 20:08:14 +00:00
( ' show_secret_key ' , ) : {
" TRUE " : " true " ,
" FALSE " : " false "
} ,
2022-11-13 13:21:12 +00:00
} ,
' openapi_types ' : {
2023-11-22 19:48:12 +00:00
' id ' :
( str , ) ,
' search ' :
2022-11-13 13:21:12 +00:00
( str , ) ,
2023-11-22 17:26:20 +00:00
' show_secret_key ' :
2023-11-22 20:08:14 +00:00
( str , ) ,
2022-11-13 13:21:12 +00:00
} ,
' attribute_map ' : {
2023-11-22 19:48:12 +00:00
' id ' : ' id ' ,
' search ' : ' search ' ,
2023-11-22 17:26:20 +00:00
' show_secret_key ' : ' showSecretKey ' ,
2022-11-13 13:21:12 +00:00
} ,
' location_map ' : {
2023-11-22 19:48:12 +00:00
' id ' : ' query ' ,
' search ' : ' query ' ,
2023-11-22 17:26:20 +00:00
' show_secret_key ' : ' query ' ,
2022-11-13 13:21:12 +00:00
} ,
' collection_format_map ' : {
}
} ,
headers_map = {
' accept ' : [
' application/json '
] ,
' content_type ' : [ ] ,
} ,
api_client = api_client
)
self . import_key_endpoint = _Endpoint (
settings = {
' response_type ' : ( KeyInfo , ) ,
' auth ' : [
' bearerAuth '
] ,
' endpoint_path ' : ' /key/import ' ,
' operation_id ' : ' import_key ' ,
' http_method ' : ' POST ' ,
' servers ' : None ,
} ,
params_map = {
' all ' : [
' import_key_request ' ,
] ,
' required ' : [
' import_key_request ' ,
] ,
' nullable ' : [
] ,
' enum ' : [
] ,
' validation ' : [
]
} ,
root_map = {
' validations ' : {
} ,
' allowed_values ' : {
} ,
' openapi_types ' : {
' import_key_request ' :
( ImportKeyRequest , ) ,
} ,
' attribute_map ' : {
} ,
' location_map ' : {
' import_key_request ' : ' body ' ,
} ,
' collection_format_map ' : {
}
} ,
headers_map = {
' accept ' : [
' application/json '
] ,
' content_type ' : [
' application/json '
]
} ,
api_client = api_client
)
self . list_keys_endpoint = _Endpoint (
settings = {
' response_type ' : ( [ ListKeys200ResponseInner ] , ) ,
' auth ' : [
' bearerAuth '
] ,
2023-11-22 19:48:12 +00:00
' endpoint_path ' : ' /key?list ' ,
2022-11-13 13:21:12 +00:00
' operation_id ' : ' list_keys ' ,
' http_method ' : ' GET ' ,
' servers ' : None ,
} ,
params_map = {
' all ' : [
] ,
' required ' : [ ] ,
' nullable ' : [
] ,
' enum ' : [
] ,
' validation ' : [
]
} ,
root_map = {
' validations ' : {
} ,
' allowed_values ' : {
} ,
' openapi_types ' : {
} ,
' attribute_map ' : {
} ,
' location_map ' : {
} ,
' collection_format_map ' : {
}
} ,
headers_map = {
' accept ' : [
' application/json '
] ,
' content_type ' : [ ] ,
} ,
api_client = api_client
)
self . update_key_endpoint = _Endpoint (
settings = {
' response_type ' : ( KeyInfo , ) ,
' auth ' : [
' bearerAuth '
] ,
2023-11-22 19:48:12 +00:00
' endpoint_path ' : ' /key ' ,
2022-11-13 13:21:12 +00:00
' operation_id ' : ' update_key ' ,
' http_method ' : ' POST ' ,
' servers ' : None ,
} ,
params_map = {
' all ' : [
2023-11-23 07:53:53 +00:00
' id ' ,
2022-11-13 13:21:12 +00:00
' update_key_request ' ,
] ,
' required ' : [
2023-11-23 07:53:53 +00:00
' id ' ,
2022-11-13 13:21:12 +00:00
' update_key_request ' ,
] ,
' nullable ' : [
] ,
' enum ' : [
] ,
' validation ' : [
]
} ,
root_map = {
' validations ' : {
} ,
' allowed_values ' : {
} ,
' openapi_types ' : {
2023-11-23 07:53:53 +00:00
' id ' :
2022-11-13 13:21:12 +00:00
( str , ) ,
' update_key_request ' :
( UpdateKeyRequest , ) ,
} ,
' attribute_map ' : {
2023-11-23 07:53:53 +00:00
' id ' : ' id ' ,
2022-11-13 13:21:12 +00:00
} ,
' location_map ' : {
2023-11-23 07:53:53 +00:00
' id ' : ' query ' ,
2022-11-13 13:21:12 +00:00
' update_key_request ' : ' body ' ,
} ,
' collection_format_map ' : {
}
} ,
headers_map = {
' accept ' : [
' application/json '
] ,
' content_type ' : [
' application/json '
]
} ,
api_client = api_client
)
def add_key (
self ,
add_key_request ,
* * kwargs
) :
""" Create a new API key # noqa: E501
Creates a new API access key . # noqa: E501
This method makes a synchronous HTTP request by default . To make an
asynchronous HTTP request , please pass async_req = True
>> > thread = api . add_key ( add_key_request , async_req = True )
>> > result = thread . get ( )
Args :
2023-11-22 17:26:20 +00:00
add_key_request ( AddKeyRequest ) : You can set a friendly name for this key . If you don ' t want to, you can set the name to `null`. *Note: the secret key is returned in the response.*
2022-11-13 13:21:12 +00:00
Keyword Args :
_return_http_data_only ( bool ) : response data without head status
code and headers . Default is True .
_preload_content ( bool ) : if False , the urllib3 . HTTPResponse object
will be returned without reading / decoding response data .
Default is True .
_request_timeout ( int / float / tuple ) : timeout setting for this request . If
one number provided , it will be total request timeout . It can also
be a pair ( tuple ) of ( connection , read ) timeouts .
Default is None .
_check_input_type ( bool ) : specifies if type checking
should be done one the data sent to the server .
Default is True .
_check_return_type ( bool ) : specifies if type checking
should be done one the data received from the server .
Default is True .
_spec_property_naming ( bool ) : True if the variable names in the input data
are serialized names , as specified in the OpenAPI document .
False if the variable names in the input data
are pythonic names , e . g . snake case ( default )
_content_type ( str / None ) : force body content - type .
Default is None and content - type will be predicted by allowed
content - types and body .
_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 :
KeyInfo
If the method is called asynchronously , returns the request
thread .
"""
kwargs [ ' async_req ' ] = kwargs . get (
' async_req ' , False
)
kwargs [ ' _return_http_data_only ' ] = kwargs . get (
' _return_http_data_only ' , True
)
kwargs [ ' _preload_content ' ] = kwargs . get (
' _preload_content ' , True
)
kwargs [ ' _request_timeout ' ] = kwargs . get (
' _request_timeout ' , None
)
kwargs [ ' _check_input_type ' ] = kwargs . get (
' _check_input_type ' , True
)
kwargs [ ' _check_return_type ' ] = kwargs . get (
' _check_return_type ' , True
)
kwargs [ ' _spec_property_naming ' ] = kwargs . get (
' _spec_property_naming ' , False
)
kwargs [ ' _content_type ' ] = kwargs . get (
' _content_type ' )
kwargs [ ' _host_index ' ] = kwargs . get ( ' _host_index ' )
kwargs [ ' _request_auths ' ] = kwargs . get ( ' _request_auths ' , None )
kwargs [ ' add_key_request ' ] = \
add_key_request
return self . add_key_endpoint . call_with_http_info ( * * kwargs )
def delete_key (
self ,
2023-11-23 07:53:53 +00:00
id ,
2022-11-13 13:21:12 +00:00
* * kwargs
) :
""" Delete a key # noqa: E501
Delete a key from the cluster . Its access will be removed from all the buckets . Buckets are not automatically deleted and can be dangling . You should manually delete them before . # noqa: E501
This method makes a synchronous HTTP request by default . To make an
asynchronous HTTP request , please pass async_req = True
2023-11-23 07:53:53 +00:00
>> > thread = api . delete_key ( id , async_req = True )
2022-11-13 13:21:12 +00:00
>> > result = thread . get ( )
Args :
2023-11-23 07:53:53 +00:00
id ( str ) : The exact API access key generated by Garage
2022-11-13 13:21:12 +00:00
Keyword Args :
_return_http_data_only ( bool ) : response data without head status
code and headers . Default is True .
_preload_content ( bool ) : if False , the urllib3 . HTTPResponse object
will be returned without reading / decoding response data .
Default is True .
_request_timeout ( int / float / tuple ) : timeout setting for this request . If
one number provided , it will be total request timeout . It can also
be a pair ( tuple ) of ( connection , read ) timeouts .
Default is None .
_check_input_type ( bool ) : specifies if type checking
should be done one the data sent to the server .
Default is True .
_check_return_type ( bool ) : specifies if type checking
should be done one the data received from the server .
Default is True .
_spec_property_naming ( bool ) : True if the variable names in the input data
are serialized names , as specified in the OpenAPI document .
False if the variable names in the input data
are pythonic names , e . g . snake case ( default )
_content_type ( str / None ) : force body content - type .
Default is None and content - type will be predicted by allowed
content - types and body .
_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 :
None
If the method is called asynchronously , returns the request
thread .
"""
kwargs [ ' async_req ' ] = kwargs . get (
' async_req ' , False
)
kwargs [ ' _return_http_data_only ' ] = kwargs . get (
' _return_http_data_only ' , True
)
kwargs [ ' _preload_content ' ] = kwargs . get (
' _preload_content ' , True
)
kwargs [ ' _request_timeout ' ] = kwargs . get (
' _request_timeout ' , None
)
kwargs [ ' _check_input_type ' ] = kwargs . get (
' _check_input_type ' , True
)
kwargs [ ' _check_return_type ' ] = kwargs . get (
' _check_return_type ' , True
)
kwargs [ ' _spec_property_naming ' ] = kwargs . get (
' _spec_property_naming ' , False
)
kwargs [ ' _content_type ' ] = kwargs . get (
' _content_type ' )
kwargs [ ' _host_index ' ] = kwargs . get ( ' _host_index ' )
kwargs [ ' _request_auths ' ] = kwargs . get ( ' _request_auths ' , None )
2023-11-23 07:53:53 +00:00
kwargs [ ' id ' ] = \
id
2022-11-13 13:21:12 +00:00
return self . delete_key_endpoint . call_with_http_info ( * * kwargs )
def get_key (
self ,
* * kwargs
) :
""" Get key information # noqa: E501
2023-11-22 19:48:12 +00:00
Return information about a specific key like its identifiers , its permissions and buckets on which it has permissions . You can search by specifying the exact key identifier ( ` id ` ) or by specifying a pattern ( ` search ` ) . For confidentiality reasons , the secret key is not returned by default : you must pass the ` showSecretKey ` query parameter to get it . # noqa: E501
2022-11-13 13:21:12 +00:00
This method makes a synchronous HTTP request by default . To make an
asynchronous HTTP request , please pass async_req = True
2023-11-22 19:48:12 +00:00
>> > thread = api . get_key ( async_req = True )
2022-11-13 13:21:12 +00:00
>> > result = thread . get ( )
Keyword Args :
2023-11-22 19:48:12 +00:00
id ( str ) : The exact API access key generated by Garage . Incompatible with ` search ` . . [ optional ]
search ( str ) : A pattern ( beginning or full string ) corresponding to a key identifier or friendly name . Incompatible with ` id ` . . [ optional ]
2023-11-22 20:08:14 +00:00
show_secret_key ( str ) : Wether or not the secret key should be returned in the response . [ optional ] if omitted the server will use the default value of " false "
2022-11-13 13:21:12 +00:00
_return_http_data_only ( bool ) : response data without head status
code and headers . Default is True .
_preload_content ( bool ) : if False , the urllib3 . HTTPResponse object
will be returned without reading / decoding response data .
Default is True .
_request_timeout ( int / float / tuple ) : timeout setting for this request . If
one number provided , it will be total request timeout . It can also
be a pair ( tuple ) of ( connection , read ) timeouts .
Default is None .
_check_input_type ( bool ) : specifies if type checking
should be done one the data sent to the server .
Default is True .
_check_return_type ( bool ) : specifies if type checking
should be done one the data received from the server .
Default is True .
_spec_property_naming ( bool ) : True if the variable names in the input data
are serialized names , as specified in the OpenAPI document .
False if the variable names in the input data
are pythonic names , e . g . snake case ( default )
_content_type ( str / None ) : force body content - type .
Default is None and content - type will be predicted by allowed
content - types and body .
_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 :
KeyInfo
If the method is called asynchronously , returns the request
thread .
"""
kwargs [ ' async_req ' ] = kwargs . get (
' async_req ' , False
)
kwargs [ ' _return_http_data_only ' ] = kwargs . get (
' _return_http_data_only ' , True
)
kwargs [ ' _preload_content ' ] = kwargs . get (
' _preload_content ' , True
)
kwargs [ ' _request_timeout ' ] = kwargs . get (
' _request_timeout ' , None
)
kwargs [ ' _check_input_type ' ] = kwargs . get (
' _check_input_type ' , True
)
kwargs [ ' _check_return_type ' ] = kwargs . get (
' _check_return_type ' , True
)
kwargs [ ' _spec_property_naming ' ] = kwargs . get (
' _spec_property_naming ' , False
)
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_key_endpoint . call_with_http_info ( * * kwargs )
def import_key (
self ,
import_key_request ,
* * kwargs
) :
""" Import an existing key # noqa: E501
Imports an existing API key . This feature must only be used for migrations and backup restore . * * Do not use it to generate custom key identifiers or you will break your Garage cluster . * * # noqa: E501
This method makes a synchronous HTTP request by default . To make an
asynchronous HTTP request , please pass async_req = True
>> > thread = api . import_key ( import_key_request , async_req = True )
>> > result = thread . get ( )
Args :
import_key_request ( ImportKeyRequest ) : Information on the key to import
Keyword Args :
_return_http_data_only ( bool ) : response data without head status
code and headers . Default is True .
_preload_content ( bool ) : if False , the urllib3 . HTTPResponse object
will be returned without reading / decoding response data .
Default is True .
_request_timeout ( int / float / tuple ) : timeout setting for this request . If
one number provided , it will be total request timeout . It can also
be a pair ( tuple ) of ( connection , read ) timeouts .
Default is None .
_check_input_type ( bool ) : specifies if type checking
should be done one the data sent to the server .
Default is True .
_check_return_type ( bool ) : specifies if type checking
should be done one the data received from the server .
Default is True .
_spec_property_naming ( bool ) : True if the variable names in the input data
are serialized names , as specified in the OpenAPI document .
False if the variable names in the input data
are pythonic names , e . g . snake case ( default )
_content_type ( str / None ) : force body content - type .
Default is None and content - type will be predicted by allowed
content - types and body .
_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 :
KeyInfo
If the method is called asynchronously , returns the request
thread .
"""
kwargs [ ' async_req ' ] = kwargs . get (
' async_req ' , False
)
kwargs [ ' _return_http_data_only ' ] = kwargs . get (
' _return_http_data_only ' , True
)
kwargs [ ' _preload_content ' ] = kwargs . get (
' _preload_content ' , True
)
kwargs [ ' _request_timeout ' ] = kwargs . get (
' _request_timeout ' , None
)
kwargs [ ' _check_input_type ' ] = kwargs . get (
' _check_input_type ' , True
)
kwargs [ ' _check_return_type ' ] = kwargs . get (
' _check_return_type ' , True
)
kwargs [ ' _spec_property_naming ' ] = kwargs . get (
' _spec_property_naming ' , False
)
kwargs [ ' _content_type ' ] = kwargs . get (
' _content_type ' )
kwargs [ ' _host_index ' ] = kwargs . get ( ' _host_index ' )
kwargs [ ' _request_auths ' ] = kwargs . get ( ' _request_auths ' , None )
kwargs [ ' import_key_request ' ] = \
import_key_request
return self . import_key_endpoint . call_with_http_info ( * * kwargs )
def list_keys (
self ,
* * kwargs
) :
""" List all keys # noqa: E501
Returns all API access keys in the cluster . # noqa: E501
This method makes a synchronous HTTP request by default . To make an
asynchronous HTTP request , please pass async_req = True
>> > thread = api . list_keys ( async_req = True )
>> > result = thread . get ( )
Keyword Args :
_return_http_data_only ( bool ) : response data without head status
code and headers . Default is True .
_preload_content ( bool ) : if False , the urllib3 . HTTPResponse object
will be returned without reading / decoding response data .
Default is True .
_request_timeout ( int / float / tuple ) : timeout setting for this request . If
one number provided , it will be total request timeout . It can also
be a pair ( tuple ) of ( connection , read ) timeouts .
Default is None .
_check_input_type ( bool ) : specifies if type checking
should be done one the data sent to the server .
Default is True .
_check_return_type ( bool ) : specifies if type checking
should be done one the data received from the server .
Default is True .
_spec_property_naming ( bool ) : True if the variable names in the input data
are serialized names , as specified in the OpenAPI document .
False if the variable names in the input data
are pythonic names , e . g . snake case ( default )
_content_type ( str / None ) : force body content - type .
Default is None and content - type will be predicted by allowed
content - types and body .
_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 :
[ ListKeys200ResponseInner ]
If the method is called asynchronously , returns the request
thread .
"""
kwargs [ ' async_req ' ] = kwargs . get (
' async_req ' , False
)
kwargs [ ' _return_http_data_only ' ] = kwargs . get (
' _return_http_data_only ' , True
)
kwargs [ ' _preload_content ' ] = kwargs . get (
' _preload_content ' , True
)
kwargs [ ' _request_timeout ' ] = kwargs . get (
' _request_timeout ' , None
)
kwargs [ ' _check_input_type ' ] = kwargs . get (
' _check_input_type ' , True
)
kwargs [ ' _check_return_type ' ] = kwargs . get (
' _check_return_type ' , True
)
kwargs [ ' _spec_property_naming ' ] = kwargs . get (
' _spec_property_naming ' , False
)
kwargs [ ' _content_type ' ] = kwargs . get (
' _content_type ' )
kwargs [ ' _host_index ' ] = kwargs . get ( ' _host_index ' )
kwargs [ ' _request_auths ' ] = kwargs . get ( ' _request_auths ' , None )
return self . list_keys_endpoint . call_with_http_info ( * * kwargs )
def update_key (
self ,
2023-11-23 07:53:53 +00:00
id ,
2022-11-13 13:21:12 +00:00
update_key_request ,
* * kwargs
) :
""" Update a key # noqa: E501
2023-11-22 17:26:20 +00:00
Updates information about the specified API access key . * Note : the secret key is not returned in the response , ` null ` is sent instead . * # noqa: E501
2022-11-13 13:21:12 +00:00
This method makes a synchronous HTTP request by default . To make an
asynchronous HTTP request , please pass async_req = True
2023-11-23 07:53:53 +00:00
>> > thread = api . update_key ( id , update_key_request , async_req = True )
2022-11-13 13:21:12 +00:00
>> > result = thread . get ( )
Args :
2023-11-23 07:53:53 +00:00
id ( str ) : The exact API access key generated by Garage
2022-11-13 13:21:12 +00:00
update_key_request ( UpdateKeyRequest ) : For a given key , provide a first set with the permissions to grant , and a second set with the permissions to remove
Keyword Args :
_return_http_data_only ( bool ) : response data without head status
code and headers . Default is True .
_preload_content ( bool ) : if False , the urllib3 . HTTPResponse object
will be returned without reading / decoding response data .
Default is True .
_request_timeout ( int / float / tuple ) : timeout setting for this request . If
one number provided , it will be total request timeout . It can also
be a pair ( tuple ) of ( connection , read ) timeouts .
Default is None .
_check_input_type ( bool ) : specifies if type checking
should be done one the data sent to the server .
Default is True .
_check_return_type ( bool ) : specifies if type checking
should be done one the data received from the server .
Default is True .
_spec_property_naming ( bool ) : True if the variable names in the input data
are serialized names , as specified in the OpenAPI document .
False if the variable names in the input data
are pythonic names , e . g . snake case ( default )
_content_type ( str / None ) : force body content - type .
Default is None and content - type will be predicted by allowed
content - types and body .
_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 :
KeyInfo
If the method is called asynchronously , returns the request
thread .
"""
kwargs [ ' async_req ' ] = kwargs . get (
' async_req ' , False
)
kwargs [ ' _return_http_data_only ' ] = kwargs . get (
' _return_http_data_only ' , True
)
kwargs [ ' _preload_content ' ] = kwargs . get (
' _preload_content ' , True
)
kwargs [ ' _request_timeout ' ] = kwargs . get (
' _request_timeout ' , None
)
kwargs [ ' _check_input_type ' ] = kwargs . get (
' _check_input_type ' , True
)
kwargs [ ' _check_return_type ' ] = kwargs . get (
' _check_return_type ' , True
)
kwargs [ ' _spec_property_naming ' ] = kwargs . get (
' _spec_property_naming ' , False
)
kwargs [ ' _content_type ' ] = kwargs . get (
' _content_type ' )
kwargs [ ' _host_index ' ] = kwargs . get ( ' _host_index ' )
kwargs [ ' _request_auths ' ] = kwargs . get ( ' _request_auths ' , None )
2023-11-23 07:53:53 +00:00
kwargs [ ' id ' ] = \
id
2022-11-13 13:21:12 +00:00
kwargs [ ' update_key_request ' ] = \
update_key_request
return self . update_key_endpoint . call_with_http_info ( * * kwargs )