Skip to content

Latest commit

 

History

History
516 lines (362 loc) · 17.2 KB

File metadata and controls

516 lines (362 loc) · 17.2 KB

halo_client.UserConnectionV1alpha1Api

All URIs are relative to http://localhost:8091

Method HTTP request Description
create_user_connection POST /apis/auth.halo.run/v1alpha1/userconnections
delete_user_connection DELETE /apis/auth.halo.run/v1alpha1/userconnections/{name}
get_user_connection GET /apis/auth.halo.run/v1alpha1/userconnections/{name}
list_user_connection GET /apis/auth.halo.run/v1alpha1/userconnections
patch_user_connection PATCH /apis/auth.halo.run/v1alpha1/userconnections/{name}
update_user_connection PUT /apis/auth.halo.run/v1alpha1/userconnections/{name}

create_user_connection

UserConnection create_user_connection(user_connection=user_connection)

Create UserConnection

Example

  • Basic Authentication (basicAuth):
  • Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.user_connection import UserConnection
from halo_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
    host = "http://localhost:8091"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
    username = os.environ["USERNAME"],
    password = os.environ["PASSWORD"]
)

# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = halo_client.UserConnectionV1alpha1Api(api_client)
    user_connection = halo_client.UserConnection() # UserConnection | Fresh userconnection (optional)

    try:
        api_response = api_instance.create_user_connection(user_connection=user_connection)
        print("The response of UserConnectionV1alpha1Api->create_user_connection:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling UserConnectionV1alpha1Api->create_user_connection: %s\n" % e)

Parameters

Name Type Description Notes
user_connection UserConnection Fresh userconnection [optional]

Return type

UserConnection

Authorization

basicAuth, bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: /

HTTP response details

Status code Description Response headers
200 Response userconnections created just now -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

delete_user_connection

delete_user_connection(name)

Delete UserConnection

Example

  • Basic Authentication (basicAuth):
  • Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
    host = "http://localhost:8091"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
    username = os.environ["USERNAME"],
    password = os.environ["PASSWORD"]
)

# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = halo_client.UserConnectionV1alpha1Api(api_client)
    name = 'name_example' # str | Name of userconnection

    try:
        api_instance.delete_user_connection(name)
    except Exception as e:
        print("Exception when calling UserConnectionV1alpha1Api->delete_user_connection: %s\n" % e)

Parameters

Name Type Description Notes
name str Name of userconnection

Return type

void (empty response body)

Authorization

basicAuth, bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

HTTP response details

Status code Description Response headers
200 Response userconnection deleted just now -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

get_user_connection

UserConnection get_user_connection(name)

Get UserConnection

Example

  • Basic Authentication (basicAuth):
  • Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.user_connection import UserConnection
from halo_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
    host = "http://localhost:8091"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
    username = os.environ["USERNAME"],
    password = os.environ["PASSWORD"]
)

# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = halo_client.UserConnectionV1alpha1Api(api_client)
    name = 'name_example' # str | Name of userconnection

    try:
        api_response = api_instance.get_user_connection(name)
        print("The response of UserConnectionV1alpha1Api->get_user_connection:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling UserConnectionV1alpha1Api->get_user_connection: %s\n" % e)

Parameters

Name Type Description Notes
name str Name of userconnection

Return type

UserConnection

Authorization

basicAuth, bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: /

HTTP response details

Status code Description Response headers
200 Response single userconnection -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

list_user_connection

UserConnectionList list_user_connection(page=page, size=size, label_selector=label_selector, field_selector=field_selector, sort=sort)

List UserConnection

Example

  • Basic Authentication (basicAuth):
  • Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.user_connection_list import UserConnectionList
from halo_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
    host = "http://localhost:8091"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
    username = os.environ["USERNAME"],
    password = os.environ["PASSWORD"]
)

# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = halo_client.UserConnectionV1alpha1Api(api_client)
    page = 56 # int | Page number. Default is 0. (optional)
    size = 56 # int | Size number. Default is 0. (optional)
    label_selector = ['label_selector_example'] # List[str] | Label selector. e.g.: hidden!=true (optional)
    field_selector = ['field_selector_example'] # List[str] | Field selector. e.g.: metadata.name==halo (optional)
    sort = ['sort_example'] # List[str] | Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported. (optional)

    try:
        api_response = api_instance.list_user_connection(page=page, size=size, label_selector=label_selector, field_selector=field_selector, sort=sort)
        print("The response of UserConnectionV1alpha1Api->list_user_connection:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling UserConnectionV1alpha1Api->list_user_connection: %s\n" % e)

Parameters

Name Type Description Notes
page int Page number. Default is 0. [optional]
size int Size number. Default is 0. [optional]
label_selector List[str] Label selector. e.g.: hidden!=true [optional]
field_selector List[str] Field selector. e.g.: metadata.name==halo [optional]
sort List[str] Sorting criteria in the format: property,(asc desc). Default sort order is ascending. Multiple sort criteria are supported.

Return type

UserConnectionList

Authorization

basicAuth, bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: /

HTTP response details

Status code Description Response headers
200 Response userconnections -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

patch_user_connection

UserConnection patch_user_connection(name, json_patch_inner=json_patch_inner)

Patch UserConnection

Example

  • Basic Authentication (basicAuth):
  • Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.json_patch_inner import JsonPatchInner
from halo_client.models.user_connection import UserConnection
from halo_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
    host = "http://localhost:8091"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
    username = os.environ["USERNAME"],
    password = os.environ["PASSWORD"]
)

# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = halo_client.UserConnectionV1alpha1Api(api_client)
    name = 'name_example' # str | Name of userconnection
    json_patch_inner = [halo_client.JsonPatchInner()] # List[JsonPatchInner] |  (optional)

    try:
        api_response = api_instance.patch_user_connection(name, json_patch_inner=json_patch_inner)
        print("The response of UserConnectionV1alpha1Api->patch_user_connection:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling UserConnectionV1alpha1Api->patch_user_connection: %s\n" % e)

Parameters

Name Type Description Notes
name str Name of userconnection
json_patch_inner List[JsonPatchInner] [optional]

Return type

UserConnection

Authorization

basicAuth, bearerAuth

HTTP request headers

  • Content-Type: application/json-patch+json
  • Accept: /

HTTP response details

Status code Description Response headers
200 Response userconnection patched just now -

[Back to top] [Back to API list] [Back to Model list] [Back to README]

update_user_connection

UserConnection update_user_connection(name, user_connection=user_connection)

Update UserConnection

Example

  • Basic Authentication (basicAuth):
  • Bearer (JWT) Authentication (bearerAuth):
import halo_client
from halo_client.models.user_connection import UserConnection
from halo_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:8091
# See configuration.py for a list of all supported configuration parameters.
configuration = halo_client.Configuration(
    host = "http://localhost:8091"
)

# The client must configure the authentication and authorization parameters
# in accordance with the API server security policy.
# Examples for each auth method are provided below, use the example that
# satisfies your auth use case.

# Configure HTTP basic authorization: basicAuth
configuration = halo_client.Configuration(
    username = os.environ["USERNAME"],
    password = os.environ["PASSWORD"]
)

# Configure Bearer authorization (JWT): bearerAuth
configuration = halo_client.Configuration(
    access_token = os.environ["BEARER_TOKEN"]
)

# Enter a context with an instance of the API client
with halo_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = halo_client.UserConnectionV1alpha1Api(api_client)
    name = 'name_example' # str | Name of userconnection
    user_connection = halo_client.UserConnection() # UserConnection | Updated userconnection (optional)

    try:
        api_response = api_instance.update_user_connection(name, user_connection=user_connection)
        print("The response of UserConnectionV1alpha1Api->update_user_connection:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling UserConnectionV1alpha1Api->update_user_connection: %s\n" % e)

Parameters

Name Type Description Notes
name str Name of userconnection
user_connection UserConnection Updated userconnection [optional]

Return type

UserConnection

Authorization

basicAuth, bearerAuth

HTTP request headers

  • Content-Type: Not defined
  • Accept: /

HTTP response details

Status code Description Response headers
200 Response userconnections updated just now -

[Back to top] [Back to API list] [Back to Model list] [Back to README]