rezamt / pingfederate-swagger-client-11.3.2.0

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PingFederate Swagger Client

The PingFederate Administrative API is a REST-based interface that provides a programmatic way to make configuration changes to PingFederate as an alternative to using the administrative console.

Expand the resources below to display implementation details on that resource such as the available endpoints, the parameter and response models for the operation, and the model structure of the resources themselves. Each resource operation comes with the ability to interact with the API. You are prompted for proper administration credentials when you try to perform an API operation.

This Python package is automatically generated by the Swagger Codegen project:

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build package: io.swagger.codegen.languages.PythonClientCodegen
  • Tool: editor-next.swagger.io

PingFederate API:

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

If the python package is hosted on Github, you can install directly from Github

pip install git+https://github.com/rezamt/pingfederate-swagger-client-11.3.2.0

(you may need to run pip with root permission: sudo pip install git+https://github.com/rezamt/pingfederate-swagger-client-11.3.2.0)

Then import the package:

import swagger_client 

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import swagger_client

Getting Started

Please follow the installation procedure and then run the following:

import swagger_client
from swagger_client.rest import ApiException
from swagger_client.configuration import Configuration
from pprint import pprint
import string
import random

# Generate a Random ID for Admin User Id
def get_random_id(size=3, chars=string.ascii_uppercase + string.digits):
    return ''.join(random.choice(chars) for _ in range(size))

# Get Swagger Client
def get_client(configuration):
    client = swagger_client.ApiClient(configuration)
    client.set_default_header("X-XSRF-Header", "41A65048-D2CE-4A8B-ACF0-D8D1C7547215")
    client.set_default_header("Authorization", configuration.get_basic_auth_token())
    return client

# Get PF Version
def get_version(client):
    # create an instance of the API class
    api_instance = swagger_client.VersionApi(client)

    try:
        # Check Version
        response = api_instance.get_version()
        return response
    except ApiException as e:
        print("Exception when calling Version: %s\n" % e)
        exit(-1)


# Create a PingFederate Administrative Account
def create_admin_account(client,
                         username=None,
                         password=None,
                         active=None,
                         description=None,
                         email_address=None,
                         department=None,
                         roles=[]):
    # create an instance of the API class
    admin_account_api = swagger_client.AdministrativeAccountsApi(api_client=client)

    request = swagger_client.AdministrativeAccount(
        username=username,
        password=password,
        active=active,
        description=description,
        email_address=email_address,
        department=department,
        roles=roles
    )

    try:
        # Add a new PingFederate native Administrative Account
        response = admin_account_api.add_account(request)
        return response
    except ApiException as e:
        print("Exception when calling AdministrativeAccountsApi->add_account: %s\n" % e)
        exit(-1)


# Get all the PingFederate native Administrative Accounts
def get_admin_account_list(client):
    # create an instance of the API class
    admin_account_api = swagger_client.AdministrativeAccountsApi(api_client=client)
    try:
        response = admin_account_api.get_accounts()
        return response
    except ApiException as e:
        print("Exception when calling AdministrativeAccountsApi->add_account: %s\n" % e)
        exit(-1)


if __name__ == '__main__':
    print("Initializing Configuration")

    configuration = Configuration()
    configuration.username = "Administrator"
    configuration.password = "2FederateM0re"
    configuration.verify_ssl = False

    client = get_client(configuration)

    resp = get_version(client)

    print(f"PingFederate version {resp.version}")
    username = f"alice_{get_random_id()}"
    resp = create_admin_account(client,
                                username=username,
                                password="2FederateM0re",
                                active=True,
                                description="Admin Account for Me",
                                email_address=f"{username}@example.com",
                                department="Identity and Access Management",
                                roles=["ADMINISTRATOR"]
                                )

    print(f"Admin Account {username} created.")
    pprint(resp)

    resp = get_admin_account_list(client)
    print("List of current Admin Accounts")
    for ac in resp.items:
        pprint(ac)

Documentation for API Endpoints

All URIs are relative to https://localhost:9999/pf-admin-api/v1

Class Method HTTP request Description
AdministrativeAccountsApi add_account POST /administrativeAccounts Add a new PingFederate native Administrative Account.
AdministrativeAccountsApi change_password POST /administrativeAccounts/changePassword Change the Password of current PingFederate native Account.
AdministrativeAccountsApi delete_account DELETE /administrativeAccounts/{username} Delete a PingFederate native Administrative Account information.
AdministrativeAccountsApi get_account GET /administrativeAccounts/{username} Get a PingFederate native Administrative Account.
AdministrativeAccountsApi get_accounts GET /administrativeAccounts Get all the PingFederate native Administrative Accounts.
AdministrativeAccountsApi reset_password POST /administrativeAccounts/{username}/resetPassword Reset the Password of an existing PingFederate native Administrative Account.
AdministrativeAccountsApi update_account PUT /administrativeAccounts/{username} Update the information for a native Administrative Account.
AuthenticationApiApi create_application POST /authenticationApi/applications Create a new Authentication API Application.
AuthenticationApiApi delete_application DELETE /authenticationApi/applications/{id} Delete an Authentication API Application.
AuthenticationApiApi get_application GET /authenticationApi/applications/{id} Find Authentication API Application by ID.
AuthenticationApiApi get_authentication_api_applications GET /authenticationApi/applications Get the collection of Authentication API Applications.
AuthenticationApiApi get_authentication_api_settings GET /authenticationApi/settings Get the Authentication API settings.
AuthenticationApiApi update_application PUT /authenticationApi/applications/{id} Update an Authentication API Application.
AuthenticationApiApi update_authentication_api_settings PUT /authenticationApi/settings Set the Authentication API settings.
AuthenticationPoliciesApi create_fragment POST /authenticationPolicies/fragments Create an authentication policy fragment.
AuthenticationPoliciesApi create_policy POST /authenticationPolicies/policy Create a new authentication policy.
AuthenticationPoliciesApi delete_fragment DELETE /authenticationPolicies/fragments/{id} Delete an authentication policy fragment.
AuthenticationPoliciesApi delete_policy DELETE /authenticationPolicies/policy/{id} Delete an authentication policy.
AuthenticationPoliciesApi get_default_authentication_policy GET /authenticationPolicies/default Get the default configured authentication policy.
AuthenticationPoliciesApi get_fragment GET /authenticationPolicies/fragments/{id} Get an authentication policy fragment by ID.
AuthenticationPoliciesApi get_fragments GET /authenticationPolicies/fragments Get all of the authentication policies fragments.
AuthenticationPoliciesApi get_policy GET /authenticationPolicies/policy/{id} Get an authentication policy by ID.
AuthenticationPoliciesApi get_settings GET /authenticationPolicies/settings Get the authentication policies settings.
AuthenticationPoliciesApi move_policy POST /authenticationPolicies/policy/{id}/move Move an authentication policy to a location within the policy tree.
AuthenticationPoliciesApi update_default_authentication_policy PUT /authenticationPolicies/default Set the default authentication policy.
AuthenticationPoliciesApi update_fragment PUT /authenticationPolicies/fragments/{id} Update an authentication policy fragment.
AuthenticationPoliciesApi update_policy PUT /authenticationPolicies/policy/{id} Update an authentication policy.
AuthenticationPoliciesApi update_settings PUT /authenticationPolicies/settings Set the authentication policies settings.
AuthenticationPolicyContractsApi create_authentication_policy_contract POST /authenticationPolicyContracts Create a new Authentication Policy Contract.
AuthenticationPolicyContractsApi delete_authentication_policy_contract DELETE /authenticationPolicyContracts/{id} Delete an Authentication Policy Contract.
AuthenticationPolicyContractsApi get_authentication_policy_contract GET /authenticationPolicyContracts/{id} Gets the Authentication Policy Contract by ID.
AuthenticationPolicyContractsApi get_authentication_policy_contracts GET /authenticationPolicyContracts Gets the Authentication Policy Contracts.
AuthenticationPolicyContractsApi update_authentication_policy_contract PUT /authenticationPolicyContracts/{id} Update an Authentication Policy Contract by ID.
AuthenticationSelectorsApi create_authentication_selector POST /authenticationSelectors Create a new authentication selector instance.
AuthenticationSelectorsApi delete_authentication_selector DELETE /authenticationSelectors/{id} Delete an Authentication Selector instance.
AuthenticationSelectorsApi get_authentication_selector GET /authenticationSelectors/{id} Get an Authentication Selector instance by ID.
AuthenticationSelectorsApi get_authentication_selector_descriptors GET /authenticationSelectors/descriptors Get the list of available Authentication Selector descriptors.
AuthenticationSelectorsApi get_authentication_selector_descriptors_by_id GET /authenticationSelectors/descriptors/{id} Get the description of an Authentication Selector plugin by ID.
AuthenticationSelectorsApi get_authentication_selectors GET /authenticationSelectors Get the list of configured Authentication Selector instances.
AuthenticationSelectorsApi update_authentication_selector PUT /authenticationSelectors/{id} Update an authentication selector instance.
BulkApi export_configuration GET /bulk/export Export all API resources to a JSON file.
BulkApi import_configuration POST /bulk/import Import configuration for a PingFederate deployment from a JSON file.
CaptchaProvidersApi create_captcha_provider POST /captchaProviders Create a CAPTCHA provider plugin instance.
CaptchaProvidersApi delete_captcha_provider DELETE /captchaProviders/{id} Delete a CAPTCHA provider plugin instance.
CaptchaProvidersApi get_captcha_provider GET /captchaProviders/{id} Get a specific CAPTCHA provider plugin instance.
CaptchaProvidersApi get_captcha_provider_plugin_descriptor GET /captchaProviders/descriptors/{id} Get a CAPTCHA provider plugin descriptor.
CaptchaProvidersApi get_captcha_provider_plugin_descriptors GET /captchaProviders/descriptors Get a list of available CAPTCHA provider plugin descriptors.
CaptchaProvidersApi get_captcha_providers GET /captchaProviders Get a list of CAPTCHA provider plugin instances.
CaptchaProvidersApi get_settings GET /captchaProviders/settings Get general CAPTCHA providers settings.
CaptchaProvidersApi update_captcha_provider PUT /captchaProviders/{id} Update a CAPTCHA provider plugin instance.
CaptchaProvidersApi update_settings PUT /captchaProviders/settings Update general CAPTCHA providers settings.
CertificatescaApi delete_trusted_ca DELETE /certificates/ca/{id} Delete a trusted certificate authority.
CertificatescaApi export_certificate_file GET /certificates/ca/{id}/file Download the certificate from a given trusted certificate authority.
CertificatescaApi get_trusted_cas GET /certificates/ca Get list of trusted certificate authorities.
CertificatescaApi get_trusted_cert GET /certificates/ca/{id} Retrieve details of a trusted certificate authority.
CertificatescaApi import_trusted_ca POST /certificates/ca/import Import a new trusted certificate authority.
CertificatesgroupsApi delete_certificate_from_group DELETE /certificates/groups/{groupName}/{id} Delete a certificate from a group.
CertificatesgroupsApi get_certificate_from_group GET /certificates/groups/{groupName}/{id} Retrieve details of a certificate.
CertificatesgroupsApi get_certificates_for_group GET /certificates/groups/{groupName} Get list of all certificates for a group.
CertificatesgroupsApi import_feature_cert POST /certificates/groups/{groupName}/import Import a new certificate to a group.
CertificatesrevocationApi delete_ocsp_certificate_by_id DELETE /certificates/revocation/ocspCertificates/{id} Delete an OCSP responder signature verification certificate by ID.
CertificatesrevocationApi get_ocsp_certificate_by_id GET /certificates/revocation/ocspCertificates/{id} Get an OCSP responder signature verification certificate by ID.
CertificatesrevocationApi get_ocsp_certificates GET /certificates/revocation/ocspCertificates Get the list of available OCSP responder signature verification certificates.
CertificatesrevocationApi get_revocation_settings GET /certificates/revocation/settings Get certificate revocation settings.
CertificatesrevocationApi import_ocsp_certificate POST /certificates/revocation/ocspCertificates Import an OCSP responder signature verification certificate.
CertificatesrevocationApi update_revocation_settings PUT /certificates/revocation/settings Update certificate revocation settings.
ClusterApi get_cluster_status GET /cluster/status Get information on the current status of the cluster.
ClusterApi start_replication POST /cluster/replicate Replicate configuration updates to all nodes in the cluster.
ConfigArchiveApi export_config_archive GET /configArchive/export Export a configuration archive.
ConfigArchiveApi import_config_archive POST /configArchive/import Import a configuration archive.
ConfigStoreApi delete_setting DELETE /configStore/{bundle}/{id} Delete a setting.
ConfigStoreApi get_setting GET /configStore/{bundle}/{id} Get a single setting from a bundle.
ConfigStoreApi get_settings GET /configStore/{bundle} Get all settings from a bundle.
ConfigStoreApi update_setting PUT /configStore/{bundle}/{id} Create or update a setting/bundle.
ConfigurationEncryptionKeysApi get_configuration_encryption_keys GET /configurationEncryptionKeys Get the list of Configuration Encryption Keys.
ConfigurationEncryptionKeysApi rotate_configuration_encryption_key POST /configurationEncryptionKeys/rotate Rotate the current Configuration Encryption Key.
ConnectionMetadataApi convert POST /connectionMetadata/convert Convert a partner's SAML metadata into a JSON representation.
ConnectionMetadataApi export POST /connectionMetadata/export Export a connection's SAML metadata that can be given to a partner.
DataStoresApi create_data_store POST /dataStores Create a new data store.
DataStoresApi delete_data_store DELETE /dataStores/{id} Delete a data store.
DataStoresApi get_action GET /dataStores/{id}/actions/{actionId} Find a data store instance's action by ID.
DataStoresApi get_actions GET /dataStores/{id}/actions List the actions for a data store instance.
DataStoresApi get_custom_data_store_descriptor GET /dataStores/descriptors/{id} Get the description of a custom data store plugin by ID.
DataStoresApi get_custom_data_store_descriptors GET /dataStores/descriptors Get the list of available custom data store descriptors.
DataStoresApi get_data_store GET /dataStores/{id} Find data store by ID.
DataStoresApi get_data_stores GET /dataStores Get list of all data stores.
DataStoresApi invoke_action_with_options POST /dataStores/{id}/actions/{actionId}/invokeAction Invokes an action for a data source instance.
DataStoresApi update_data_store PUT /dataStores/{id} Update a data store.
ExtendedPropertiesApi get_extended_properties GET /extendedProperties Get the defined Extended Properties.
ExtendedPropertiesApi update_extended_properties PUT /extendedProperties Update the Extended Properties.
IdentityStoreProvisionersApi create_identity_store_provisioner POST /identityStoreProvisioners Create a new identity store provisioner instance.
IdentityStoreProvisionersApi delete_identity_store_provisioner DELETE /identityStoreProvisioners/{id} Delete an identity store provisioner instance
IdentityStoreProvisionersApi get_identity_store_provisioner GET /identityStoreProvisioners/{id} Get an identity store provisioner by ID.
IdentityStoreProvisionersApi get_identity_store_provisioner_descriptor_by_id GET /identityStoreProvisioners/descriptors/{id} Get the descriptor of an identity store provisioner by ID.
IdentityStoreProvisionersApi get_identity_store_provisioner_descriptors GET /identityStoreProvisioners/descriptors Get the list of available identity store provisioner descriptors.
IdentityStoreProvisionersApi get_identity_store_provisioners GET /identityStoreProvisioners Get the list of configured identity store provisioner instances.
IdentityStoreProvisionersApi update_identity_store_provisioner PUT /identityStoreProvisioners/{id} Update an identity store provisioner instance
IdpToSpAdapterMappingApi create_idp_to_sp_adapter_mapping POST /idpToSpAdapterMapping Create a new IdP-to-SP Adapter mapping.
IdpToSpAdapterMappingApi delete_idp_to_sp_adapter_mappings_by_id DELETE /idpToSpAdapterMapping/{id} Delete an Adapter to Adapter Mapping.
IdpToSpAdapterMappingApi get_idp_to_sp_adapter_mappings GET /idpToSpAdapterMapping Get list of IdP-to-SP Adapter Mappings.
IdpToSpAdapterMappingApi get_idp_to_sp_adapter_mappings_by_id GET /idpToSpAdapterMapping/{id} Get an IdP-to-SP Adapter Mapping.
IdpToSpAdapterMappingApi update_idp_to_sp_adapter_mapping PUT /idpToSpAdapterMapping/{id} Update the specified IdP-to-SP Adapter mapping.
IdpadaptersApi create_idp_adapter POST /idp/adapters Create a new IdP adapter instance.
IdpadaptersApi delete_idp_adapter DELETE /idp/adapters/{id} Delete an IdP adapter instance.
IdpadaptersApi get_action GET /idp/adapters/{id}/actions/{actionId} Find an IdP adapter instance's action by ID.
IdpadaptersApi get_actions GET /idp/adapters/{id}/actions List the actions for an IdP adapter instance.
IdpadaptersApi get_idp_adapter GET /idp/adapters/{id} Find an IdP adapter instance by ID.
IdpadaptersApi get_idp_adapter_descriptors GET /idp/adapters/descriptors Get the list of available IdP adapter descriptors.
IdpadaptersApi get_idp_adapter_descriptors_by_id GET /idp/adapters/descriptors/{id} Get the description of an IdP adapter plugin by ID.
IdpadaptersApi get_idp_adapters GET /idp/adapters Get the list of configured IdP adapter instances.
IdpadaptersApi invoke_action_with_options POST /idp/adapters/{id}/actions/{actionId}/invokeAction Invokes an action for an IdP adapter instance.
IdpadaptersApi update_idp_adapter PUT /idp/adapters/{id} Update an IdP adapter instance.
IdpconnectorsApi get_idp_connector_descriptor_by_id GET /idp/connectors/descriptors/{id} Get the list of available connector descriptors.
IdpconnectorsApi get_idp_connector_descriptors GET /idp/connectors/descriptors Get the list of available IdP connector descriptors.
IdpdefaultUrlsApi get_default_url GET /idp/defaultUrls Gets the IDP Default URL settings.
IdpdefaultUrlsApi update_default_url_settings PUT /idp/defaultUrls Update the IDP Default URL settings.
IdpspConnectionsApi add_connection_cert POST /idp/spConnections/{id}/credentials/certs Add a new SP connection certificate.
IdpspConnectionsApi create_connection POST /idp/spConnections Create a new SP connection.
IdpspConnectionsApi delete_connection DELETE /idp/spConnections/{id} Delete an SP connection.
IdpspConnectionsApi get_connection GET /idp/spConnections/{id} Find SP connection by ID.
IdpspConnectionsApi get_connection_certs GET /idp/spConnections/{id}/credentials/certs Get the SP connection's certificates.
IdpspConnectionsApi get_connections GET /idp/spConnections Get list of SP connections.
IdpspConnectionsApi get_decryption_keys GET /idp/spConnections/{id}/credentials/decryptionKeys Get the decryption keys of an SP connection.
IdpspConnectionsApi get_signing_settings GET /idp/spConnections/{id}/credentials/signingSettings Get the SP connection's signature settings.
IdpspConnectionsApi update_connection PUT /idp/spConnections/{id} Update an SP connection.
IdpspConnectionsApi update_connection_certs PUT /idp/spConnections/{id}/credentials/certs Update the SP connection's certificates.
IdpspConnectionsApi update_decryption_keys PUT /idp/spConnections/{id}/credentials/decryptionKeys Updating the SP connection's decryption keys.
IdpspConnectionsApi update_signing_settings PUT /idp/spConnections/{id}/credentials/signingSettings Update the SP connection's signature settings.
IdpstsRequestParametersContractsApi create_sts_request_param_contract POST /idp/stsRequestParametersContracts Create a new STS Request Parameters Contract.
IdpstsRequestParametersContractsApi delete_sts_request_param_contract_by_id DELETE /idp/stsRequestParametersContracts/{id} Delete a STS Request Parameters Contract.
IdpstsRequestParametersContractsApi get_sts_request_param_contract_by_id GET /idp/stsRequestParametersContracts/{id} Get a STS Request Parameters Contract.
IdpstsRequestParametersContractsApi get_sts_request_param_contracts GET /idp/stsRequestParametersContracts Get the list of STS Request Parameters Contracts.
IdpstsRequestParametersContractsApi update_sts_request_param_contract_by_id PUT /idp/stsRequestParametersContracts/{id} Update a STS Request Parameters Contract.
IdptokenProcessorsApi create_token_processor POST /idp/tokenProcessors Create a new token processor instance.
IdptokenProcessorsApi delete_token_processor DELETE /idp/tokenProcessors/{id} Delete a token processor instance.
IdptokenProcessorsApi get_token_processor GET /idp/tokenProcessors/{id} Find a token processor instance by ID.
IdptokenProcessorsApi get_token_processor_descriptors GET /idp/tokenProcessors/descriptors Get the list of available token processors.
IdptokenProcessorsApi get_token_processor_descriptors_by_id GET /idp/tokenProcessors/descriptors/{id} Get the description of a token processor plugin by ID.
IdptokenProcessorsApi get_token_processors GET /idp/tokenProcessors Get the list of token processor instances.
IdptokenProcessorsApi update_token_processor PUT /idp/tokenProcessors/{id} Update a token processor instance.
IncomingProxySettingsApi get_incoming_proxy_settings GET /incomingProxySettings Get incoming proxy settings.
IncomingProxySettingsApi update_incoming_proxy_settings PUT /incomingProxySettings Update incoming proxy settings.
KerberosrealmsApi create_kerberos_realm POST /kerberos/realms Create a new Kerberos Realm.
KerberosrealmsApi delete_kerberos_realm DELETE /kerberos/realms/{id} Delete a Kerberos Realm.
KerberosrealmsApi get_kerberos_realm GET /kerberos/realms/{id} Find a Kerberos Realm by ID.
KerberosrealmsApi get_kerberos_realm_settings GET /kerberos/realms/settings Gets the Kerberos Realms Settings.
KerberosrealmsApi get_kerberos_realms GET /kerberos/realms Gets the Kerberos Realms.
KerberosrealmsApi update_kerberos_realm PUT /kerberos/realms/{id} Update a Kerberos Realm by ID.
KerberosrealmsApi update_settings PUT /kerberos/realms/settings Set/Update the Kerberos Realms Settings.
KeyPairsApi get_key_algorithms GET /keyPairs/keyAlgorithms Get list of the key algorithms supported for key pair generation.
KeyPairsoauthOpenIdConnectApi create_key_set POST /keyPairs/oauthOpenIdConnect/additionalKeySets Create a new OAuth/OpenID Connect additional signing key set.
KeyPairsoauthOpenIdConnectApi delete_key_set DELETE /keyPairs/oauthOpenIdConnect/additionalKeySets/{id} Delete an existing OAuth/OpenID Connect additional signing key set.
KeyPairsoauthOpenIdConnectApi get_key_set GET /keyPairs/oauthOpenIdConnect/additionalKeySets/{id} Retrieve an OAuth/OpenID Connect additional signing key set.
KeyPairsoauthOpenIdConnectApi get_key_sets GET /keyPairs/oauthOpenIdConnect/additionalKeySets Retrieve OAuth/OpenID Connect additional signing key sets.
KeyPairsoauthOpenIdConnectApi get_oauth_oidc_keys_settings GET /keyPairs/oauthOpenIdConnect Retrieve OAuth/OpenID Connect key settings.
KeyPairsoauthOpenIdConnectApi update_key_set PUT /keyPairs/oauthOpenIdConnect/additionalKeySets/{id} Update an existing OAuth/OpenID Connect additional signing key set.
KeyPairsoauthOpenIdConnectApi update_o_auth_oidc_keys_settings PUT /keyPairs/oauthOpenIdConnect Update OAuth/OpenID Connect key settings.
KeyPairssigningApi create_key_pair POST /keyPairs/signing/generate Generate a new key pair.
KeyPairssigningApi delete_key_pair DELETE /keyPairs/signing/{id} Delete a key pair.
KeyPairssigningApi delete_key_pair_rotation_settings DELETE /keyPairs/signing/{id}/rotationSettings Delete rotation settings for a signing key pair.
KeyPairssigningApi export_certificate_file GET /keyPairs/signing/{id}/certificate Download the certificate from a given key pair.
KeyPairssigningApi export_csr GET /keyPairs/signing/{id}/csr Generate a new certificate signing request (CSR) for this key pair.
KeyPairssigningApi export_pem_file POST /keyPairs/signing/{id}/pem Download the key pair in PEM format.
KeyPairssigningApi export_pkcs12_file POST /keyPairs/signing/{id}/pkcs12 Download the key pair in PKCS12 format.
KeyPairssigningApi get_key_pair GET /keyPairs/signing/{id} Retrieve details of a key pair.
KeyPairssigningApi get_key_pairs GET /keyPairs/signing Get list of key pairs.
KeyPairssigningApi get_rotation_settings GET /keyPairs/signing/{id}/rotationSettings Retrieve details of rotation settings for a key pair.
KeyPairssigningApi import_csr_response POST /keyPairs/signing/{id}/csr Import a CSR response for this key pair.
KeyPairssigningApi import_key_pair POST /keyPairs/signing/import Import a new key pair.
KeyPairssigningApi update_rotation_settings PUT /keyPairs/signing/{id}/rotationSettings Add rotation settings to a key pair
KeyPairssslClientApi create_key_pair POST /keyPairs/sslClient/generate Generate a new key pair.
KeyPairssslClientApi delete_key_pair DELETE /keyPairs/sslClient/{id} Delete a key pair.
KeyPairssslClientApi export_certificate_file GET /keyPairs/sslClient/{id}/certificate Download the certificate from a given key pair.
KeyPairssslClientApi export_csr GET /keyPairs/sslClient/{id}/csr Generate a new certificate signing request (CSR) for this key pair.
KeyPairssslClientApi export_pem_file POST /keyPairs/sslClient/{id}/pem Download the key pair in PEM format.
KeyPairssslClientApi export_pkcs12_file POST /keyPairs/sslClient/{id}/pkcs12 Download the key pair in PKCS12 format.
KeyPairssslClientApi get_key_pair GET /keyPairs/sslClient/{id} Retrieve details of a key pair.
KeyPairssslClientApi get_key_pairs GET /keyPairs/sslClient Get list of key pairs.
KeyPairssslClientApi import_csr_response POST /keyPairs/sslClient/{id}/csr Import a CSR response for this key pair.
KeyPairssslClientApi import_key_pair POST /keyPairs/sslClient/import Import a new key pair.
KeyPairssslServerApi create_key_pair POST /keyPairs/sslServer/generate Generate a new key pair.
KeyPairssslServerApi delete_key_pair DELETE /keyPairs/sslServer/{id} Delete a key pair.
KeyPairssslServerApi export_certificate_file GET /keyPairs/sslServer/{id}/certificate Download the certificate from a given key pair.
KeyPairssslServerApi export_csr GET /keyPairs/sslServer/{id}/csr Generate a new certificate signing request (CSR) for this key pair.
KeyPairssslServerApi export_pem_file POST /keyPairs/sslServer/{id}/pem Download the key pair in PEM format.
KeyPairssslServerApi export_pkcs12_file POST /keyPairs/sslServer/{id}/pkcs12 Download the key pair in PKCS12 format.
KeyPairssslServerApi get_key_pair GET /keyPairs/sslServer/{id} Retrieve details of a key pair.
KeyPairssslServerApi get_key_pairs GET /keyPairs/sslServer Get list of key pairs.
KeyPairssslServerApi get_settings GET /keyPairs/sslServer/settings Get the SSL Server Certificate Settings.
KeyPairssslServerApi import_csr_response POST /keyPairs/sslServer/{id}/csr Import a CSR response for this key pair.
KeyPairssslServerApi import_key_pair POST /keyPairs/sslServer/import Import a new key pair.
KeyPairssslServerApi update_settings PUT /keyPairs/sslServer/settings Update the SSL Server Certificate Settings.
LicenseApi get_license GET /license Get a license summary.
LicenseApi get_license_agreement GET /license/agreement Get license agreement link.
LicenseApi update_license PUT /license Import a license.
LicenseApi update_license_agreement PUT /license/agreement Accept license agreement.
LocalIdentityidentityProfilesApi create_identity_profile POST /localIdentity/identityProfiles Create a new local identity profile.
LocalIdentityidentityProfilesApi delete_identity_profile DELETE /localIdentity/identityProfiles/{id} Delete the local identity profile by ID.
LocalIdentityidentityProfilesApi get_identity_profile GET /localIdentity/identityProfiles/{id} Get the local identity profile by ID.
LocalIdentityidentityProfilesApi get_identity_profiles GET /localIdentity/identityProfiles Get the list of configured local identity profiles.
LocalIdentityidentityProfilesApi update_identity_profile PUT /localIdentity/identityProfiles/{id} Update the local identity profile by ID.
MetadataUrlsApi add_metadata_url POST /metadataUrls Add a new Metadata URL.
MetadataUrlsApi delete_metadata_url DELETE /metadataUrls/{id} Delete a Metadata URL by ID.
MetadataUrlsApi get_metadata_url GET /metadataUrls/{id} Get a Metadata URL by ID.
MetadataUrlsApi get_metadata_urls GET /metadataUrls Get a list of Metadata URLs
MetadataUrlsApi update_metadata_url PUT /metadataUrls/{id} Update a Metadata URL by ID.
NotificationPublishersApi create_notification_publisher POST /notificationPublishers Create a notification publisher plugin instance.
NotificationPublishersApi delete_notification_publisher DELETE /notificationPublishers/{id} Delete a notification publisher plugin instance.
NotificationPublishersApi get_action GET /notificationPublishers/{id}/actions/{actionId} Find an notification publisher plugin instance's action by ID.
NotificationPublishersApi get_actions GET /notificationPublishers/{id}/actions List the actions for a notification publisher plugin instance.
NotificationPublishersApi get_notification_publisher GET /notificationPublishers/{id} Get a specific notification publisher plugin instance.
NotificationPublishersApi get_notification_publisher_plugin_descriptor GET /notificationPublishers/descriptors/{id} Get the description of a notification publisher plugin descriptor.
NotificationPublishersApi get_notification_publisher_plugin_descriptors GET /notificationPublishers/descriptors Get the list of available Notification Publisher Plugin descriptors.
NotificationPublishersApi get_notification_publishers GET /notificationPublishers Get a list of notification publisher plugin instances.
NotificationPublishersApi get_settings GET /notificationPublishers/settings Get general notification publisher settings.
NotificationPublishersApi invoke_action_with_options POST /notificationPublishers/{id}/actions/{actionId}/invokeAction Invokes an action for notification publisher plugin instance.
NotificationPublishersApi update_notification_publisher PUT /notificationPublishers/{id} Update a notification publisher plugin instance.
NotificationPublishersApi update_settings PUT /notificationPublishers/settings Update general notification publisher settings.
OauthaccessTokenManagersApi create_token_manager POST /oauth/accessTokenManagers Create a token management plugin instance.
OauthaccessTokenManagersApi delete_token_manager DELETE /oauth/accessTokenManagers/{id} Delete a token management plugin instance.
OauthaccessTokenManagersApi get_settings GET /oauth/accessTokenManagers/settings Get general access token management settings.
OauthaccessTokenManagersApi get_token_manager GET /oauth/accessTokenManagers/{id} Get a specific token management plugin instance.
OauthaccessTokenManagersApi get_token_manager_descriptor GET /oauth/accessTokenManagers/descriptors/{id} Get the description of a token management plugin descriptor.
OauthaccessTokenManagersApi get_token_manager_descriptors GET /oauth/accessTokenManagers/descriptors Get the list of available token management plugin descriptors.
OauthaccessTokenManagersApi get_token_managers GET /oauth/accessTokenManagers Get a list of all token management plugin instances.
OauthaccessTokenManagersApi update_settings PUT /oauth/accessTokenManagers/settings Update general access token management settings.
OauthaccessTokenManagersApi update_token_manager PUT /oauth/accessTokenManagers/{id} Update a token management plugin instance.
OauthaccessTokenMappingsApi create_mapping POST /oauth/accessTokenMappings Create a new Access Token Mapping.
OauthaccessTokenMappingsApi delete_mapping DELETE /oauth/accessTokenMappings/{id} Delete an Access Token Mapping.
OauthaccessTokenMappingsApi get_mapping GET /oauth/accessTokenMappings/{id} Find the Access Token Mapping by its ID.
OauthaccessTokenMappingsApi get_mappings GET /oauth/accessTokenMappings Get the list of Access Token Mappings.
OauthaccessTokenMappingsApi update_mapping PUT /oauth/accessTokenMappings/{id} Update an Access Token Mapping.
OauthauthServerSettingsApi add_common_scope POST /oauth/authServerSettings/scopes/commonScopes Add a new common scope.
OauthauthServerSettingsApi add_common_scope_group POST /oauth/authServerSettings/scopes/commonScopeGroups Create a new common scope group.
OauthauthServerSettingsApi add_exclusive_scope POST /oauth/authServerSettings/scopes/exclusiveScopes Add a new exclusive scope.
OauthauthServerSettingsApi add_exclusive_scope_group POST /oauth/authServerSettings/scopes/exclusiveScopeGroups Create a new exclusive scope group.
OauthauthServerSettingsApi get_authorization_server_settings GET /oauth/authServerSettings Get the Authorization Server Settings.
OauthauthServerSettingsApi get_common_scope GET /oauth/authServerSettings/scopes/commonScopes/{name} Get an existing common scope.
OauthauthServerSettingsApi get_common_scope_group GET /oauth/authServerSettings/scopes/commonScopeGroups/{name} Get an existing common scope group.
OauthauthServerSettingsApi get_exclusive_scope GET /oauth/authServerSettings/scopes/exclusiveScopes/{name} Get an existing exclusive scope.
OauthauthServerSettingsApi get_exclusive_scope_group GET /oauth/authServerSettings/scopes/exclusiveScopeGroups/{name} Get an existing exclusive scope group.
OauthauthServerSettingsApi remove_common_scope DELETE /oauth/authServerSettings/scopes/commonScopes/{name} Remove an existing common scope.
OauthauthServerSettingsApi remove_common_scope_group DELETE /oauth/authServerSettings/scopes/commonScopeGroups/{name} Remove an existing common scope group.
OauthauthServerSettingsApi remove_exclusive_scope DELETE /oauth/authServerSettings/scopes/exclusiveScopes/{name} Remove an existing exclusive scope.
OauthauthServerSettingsApi remove_exclusive_scope_group DELETE /oauth/authServerSettings/scopes/exclusiveScopeGroups/{name} Remove an existing exclusive scope group.
OauthauthServerSettingsApi update_authorization_server_settings PUT /oauth/authServerSettings Update the Authorization Server Settings.
OauthauthServerSettingsApi update_common_scope PUT /oauth/authServerSettings/scopes/commonScopes/{name} Update an existing common scope.
OauthauthServerSettingsApi update_common_scope_group PUT /oauth/authServerSettings/scopes/commonScopeGroups/{name} Update an existing common scope group.
OauthauthServerSettingsApi update_exclusive_scope PUT /oauth/authServerSettings/scopes/exclusiveScopes/{name} Update an existing exclusive scope.
OauthauthServerSettingsApi update_exclusive_scope_groups PUT /oauth/authServerSettings/scopes/exclusiveScopeGroups/{name} Update an existing exclusive scope group.
OauthauthenticationPolicyContractMappingsApi create_apc_mapping POST /oauth/authenticationPolicyContractMappings Create a new authentication policy contract to persistent grant mapping.
OauthauthenticationPolicyContractMappingsApi delete_apc_mapping DELETE /oauth/authenticationPolicyContractMappings/{id} Delete an authentication policy contract to persistent grant mapping.
OauthauthenticationPolicyContractMappingsApi get_apc_mapping GET /oauth/authenticationPolicyContractMappings/{id} Find the authentication policy contract to persistent grant mapping by ID.
OauthauthenticationPolicyContractMappingsApi get_apc_mappings GET /oauth/authenticationPolicyContractMappings Get the list of authentication policy contract to persistent grant mappings.
OauthauthenticationPolicyContractMappingsApi update_apc_mapping PUT /oauth/authenticationPolicyContractMappings/{id} Update an authentication policy contract to persistent grant mapping.
OauthauthorizationDetailProcessorsApi create_authorization_detail_processor POST /oauth/authorizationDetailProcessors Create an authorization detail processor plugin instance.
OauthauthorizationDetailProcessorsApi delete_authorization_detail_processor DELETE /oauth/authorizationDetailProcessors/{id} Delete an authorization detail processor plugin instance.
OauthauthorizationDetailProcessorsApi get_authorization_detail_processor GET /oauth/authorizationDetailProcessors/{id} Get a specific authorization detail processor plugin instance.
OauthauthorizationDetailProcessorsApi get_authorization_detail_processor_plugin_descriptor GET /oauth/authorizationDetailProcessors/descriptors/{id} Get an authorization detail processor plugin descriptor.
OauthauthorizationDetailProcessorsApi get_authorization_detail_processor_plugin_descriptors GET /oauth/authorizationDetailProcessors/descriptors Get a list of available authorization detail processor plugin descriptors.
OauthauthorizationDetailProcessorsApi get_authorization_detail_processors GET /oauth/authorizationDetailProcessors Get a list of authorization detail processor plugin instances.
OauthauthorizationDetailProcessorsApi update_authorization_detail_processor PUT /oauth/authorizationDetailProcessors/{id} Update an authorization detail processor plugin instance.
OauthauthorizationDetailTypesApi add_authorization_detail_type POST /oauth/authorizationDetailTypes Create a new authorization detail type.
OauthauthorizationDetailTypesApi delete_authorization_detail_type DELETE /oauth/authorizationDetailTypes/{id} Delete an authorization detail type.
OauthauthorizationDetailTypesApi get_authorization_detail_type_by_id GET /oauth/authorizationDetailTypes/{id} Get an authorization detail type.
OauthauthorizationDetailTypesApi get_authorization_detail_types GET /oauth/authorizationDetailTypes Get the list of authorization detail types.
OauthauthorizationDetailTypesApi update_authorization_detail_type PUT /oauth/authorizationDetailTypes/{id} Update an authorization detail type.
OauthcibaServerPolicyApi create_policy POST /oauth/cibaServerPolicy/requestPolicies Create a new request policy.
OauthcibaServerPolicyApi delete_policy DELETE /oauth/cibaServerPolicy/requestPolicies/{id} Delete a request policy.
OauthcibaServerPolicyApi get_policies GET /oauth/cibaServerPolicy/requestPolicies Get list of request policies.
OauthcibaServerPolicyApi get_policy GET /oauth/cibaServerPolicy/requestPolicies/{id} Find request policy by ID.
OauthcibaServerPolicyApi get_settings GET /oauth/cibaServerPolicy/settings Get general ciba server request policy settings.
OauthcibaServerPolicyApi update_policy PUT /oauth/cibaServerPolicy/requestPolicies/{id} Update a request policy.
OauthcibaServerPolicyApi update_settings PUT /oauth/cibaServerPolicy/settings Update general ciba server request policy settings.
OauthclientRegistrationPoliciesApi create_dynamic_client_registration_policy POST /oauth/clientRegistrationPolicies Create a client registration policy plugin instance.
OauthclientRegistrationPoliciesApi delete_dynamic_client_registration_policy DELETE /oauth/clientRegistrationPolicies/{id} Delete a client registration policy plugin instance.
OauthclientRegistrationPoliciesApi get_dynamic_client_registration_descriptor GET /oauth/clientRegistrationPolicies/descriptors/{id} Get the description of a client registration policy plugin descriptor.
OauthclientRegistrationPoliciesApi get_dynamic_client_registration_descriptors GET /oauth/clientRegistrationPolicies/descriptors Get the list of available client registration policy plugin descriptors.
OauthclientRegistrationPoliciesApi get_dynamic_client_registration_policies GET /oauth/clientRegistrationPolicies Get a list of client registration policy plugin instances.
OauthclientRegistrationPoliciesApi get_dynamic_client_registration_policy GET /oauth/clientRegistrationPolicies/{id} Get a specific client registration policy plugin instance.
OauthclientRegistrationPoliciesApi update_dynamic_client_registration_policy PUT /oauth/clientRegistrationPolicies/{id} Update a client registration policy plugin instance.
OauthclientSettingsApi get_client_settings GET /oauth/clientSettings Configure the client settings.
OauthclientSettingsApi update_client_settings PUT /oauth/clientSettings Update the client settings.
OauthclientsApi create_client POST /oauth/clients Create a new OAuth client.
OauthclientsApi delete_client DELETE /oauth/clients/{id} Delete an OAuth client.
OauthclientsApi get_client GET /oauth/clients/{id} Find the OAuth client by ID.
OauthclientsApi get_client_secret GET /oauth/clients/{id}/clientAuth/clientSecret Get the client secret of an existing OAuth client.
OauthclientsApi get_clients GET /oauth/clients Get the list of OAuth clients.
OauthclientsApi update_client PUT /oauth/clients/{id} Updates the OAuth client.
OauthclientsApi update_client_secret PUT /oauth/clients/{id}/clientAuth/clientSecret Update the client secret of an existing OAuth client.
OauthidpAdapterMappingsApi create_idp_adapter_mapping POST /oauth/idpAdapterMappings Create a new IdP adapter mapping.
OauthidpAdapterMappingsApi delete_idp_adapter_mapping DELETE /oauth/idpAdapterMappings/{id} Delete an IdP adapter mapping.
OauthidpAdapterMappingsApi get_idp_adapter_mapping GET /oauth/idpAdapterMappings/{id} Find the IdP adapter mapping by the ID.
OauthidpAdapterMappingsApi get_idp_adapter_mappings GET /oauth/idpAdapterMappings Get the list of IdP adapter mappings.
OauthidpAdapterMappingsApi update_idp_adapter_mapping PUT /oauth/idpAdapterMappings/{id} Update an IdP adapter mapping.
OauthissuersApi add_issuer POST /oauth/issuers Create a new virtual issuer.
OauthissuersApi delete_issuer DELETE /oauth/issuers/{id} Delete a virtual issuer.
OauthissuersApi get_issuer_by_id GET /oauth/issuers/{id} Find a virtual issuer by ID.
OauthissuersApi get_issuers GET /oauth/issuers Get the list of virtual issuers.
OauthissuersApi update_issuer PUT /oauth/issuers/{id} Update a virtual issuer.
OauthopenIdConnectApi create_policy POST /oauth/openIdConnect/policies Create a new OpenID Connect Policy.
OauthopenIdConnectApi delete_policy DELETE /oauth/openIdConnect/policies/{id} Delete an OpenID Connect Policy.
OauthopenIdConnectApi get_policies GET /oauth/openIdConnect/policies Get list of OpenID Connect Policies.
OauthopenIdConnectApi get_policy GET /oauth/openIdConnect/policies/{id} Find OpenID Connect Policy by ID.
OauthopenIdConnectApi get_settings GET /oauth/openIdConnect/settings Get the OpenID Connect Settings.
OauthopenIdConnectApi update_policy PUT /oauth/openIdConnect/policies/{id} Update an OpenID Connect Policy.
OauthopenIdConnectApi update_settings PUT /oauth/openIdConnect/settings Set the OpenID Connect Settings.
OauthoutOfBandAuthPluginsApi create_oob_authenticator POST /oauth/outOfBandAuthPlugins Create an Out of Band authenticator plugin instance.
OauthoutOfBandAuthPluginsApi delete_oob_authenticator DELETE /oauth/outOfBandAuthPlugins/{id} Delete an Out of Band authenticator plugin instance.
OauthoutOfBandAuthPluginsApi get_action GET /oauth/outOfBandAuthPlugins/{id}/actions/{actionId} Find an Out of Band authenticator plugin instance's action by ID.
OauthoutOfBandAuthPluginsApi get_actions GET /oauth/outOfBandAuthPlugins/{id}/actions List of actions for an Out of Band authenticator plugin instance.
OauthoutOfBandAuthPluginsApi get_oob_auth_plugin_descriptor GET /oauth/outOfBandAuthPlugins/descriptors/{id} Get the descriptor of an Out of Band authenticator plugin.
OauthoutOfBandAuthPluginsApi get_oob_auth_plugin_descriptors GET /oauth/outOfBandAuthPlugins/descriptors Get the list of available Out of Band authenticator plugin descriptors.
OauthoutOfBandAuthPluginsApi get_oob_authenticator GET /oauth/outOfBandAuthPlugins/{id} Get a specific Out of Band authenticator plugin instance.
OauthoutOfBandAuthPluginsApi get_oob_authenticators GET /oauth/outOfBandAuthPlugins Get a list of Out of Band authenticator plugin instances.
OauthoutOfBandAuthPluginsApi invoke_action_with_options POST /oauth/outOfBandAuthPlugins/{id}/actions/{actionId}/invokeAction Invokes an action for Out of Band authenticator plugin instance.
OauthoutOfBandAuthPluginsApi update_oob_authenticator PUT /oauth/outOfBandAuthPlugins/{id} Update an Out of Band authenticator plugin instance.
OauthresourceOwnerCredentialsMappingsApi create_resource_owner_credentials_mapping POST /oauth/resourceOwnerCredentialsMappings Create a new Resource Owner Credentials mapping.
OauthresourceOwnerCredentialsMappingsApi delete_resource_owner_credentials_mapping DELETE /oauth/resourceOwnerCredentialsMappings/{id} Delete a Resource Owner Credentials mapping.
OauthresourceOwnerCredentialsMappingsApi get_resource_owner_credentials_mapping GET /oauth/resourceOwnerCredentialsMappings/{id} Find the Resource Owner Credentials mapping by the ID.
OauthresourceOwnerCredentialsMappingsApi get_resource_owner_credentials_mappings GET /oauth/resourceOwnerCredentialsMappings Get the list of Resource Owner Credentials Grant Mapping.
OauthresourceOwnerCredentialsMappingsApi update_resource_owner_credentials_mapping PUT /oauth/resourceOwnerCredentialsMappings/{id} Update a Resource Owner Credentials mapping.
OauthtokenExchangegeneratorApi create_group POST /oauth/tokenExchange/generator/groups Create a new OAuth 2.0 Token Exchange Generator group.
OauthtokenExchangegeneratorApi delete_group DELETE /oauth/tokenExchange/generator/groups/{id} Delete an OAuth 2.0 Token Exchange Generator group.
OauthtokenExchangegeneratorApi get_group GET /oauth/tokenExchange/generator/groups/{id} Find an OAuth 2.0 Token Exchange Generator group by ID.
OauthtokenExchangegeneratorApi get_groups GET /oauth/tokenExchange/generator/groups Get list of OAuth 2.0 Token Exchange Generator groups.
OauthtokenExchangegeneratorApi get_settings GET /oauth/tokenExchange/generator/settings Get general OAuth 2.0 Token Exchange Generator settings.
OauthtokenExchangegeneratorApi update_group PUT /oauth/tokenExchange/generator/groups/{id} Update an OAuth 2.0 Token Exchange Generator group.
OauthtokenExchangegeneratorApi update_settings PUT /oauth/tokenExchange/generator/settings Update general OAuth 2.0 Token Exchange Generator settings.
OauthtokenExchangeprocessorApi create_policy POST /oauth/tokenExchange/processor/policies Create a new OAuth 2.0 Token Exchange Processor policy.
OauthtokenExchangeprocessorApi delete_policy DELETE /oauth/tokenExchange/processor/policies/{id} Delete an OAuth 2.0 Token Exchange Processor policy.
OauthtokenExchangeprocessorApi get_policies GET /oauth/tokenExchange/processor/policies Get list of OAuth 2.0 Token Exchange Processor policies.
OauthtokenExchangeprocessorApi get_policy GET /oauth/tokenExchange/processor/policies/{id} Find an OAuth 2.0 Token Exchange Processor policy by ID.
OauthtokenExchangeprocessorApi get_settings GET /oauth/tokenExchange/processor/settings Get general OAuth 2.0 Token Exchange Processor settings.
OauthtokenExchangeprocessorApi update_policy PUT /oauth/tokenExchange/processor/policies/{id} Update an OAuth 2.0 Token Exchange Processor policy.
OauthtokenExchangeprocessorApi update_settings PUT /oauth/tokenExchange/processor/settings Update general OAuth 2.0 Token Exchange Processor settings.
OauthtokenExchangetokenGeneratorMappingsApi create_token_generator_mapping POST /oauth/tokenExchange/tokenGeneratorMappings Create a new Token Exchange Processor policy to Token Generator Mapping.
OauthtokenExchangetokenGeneratorMappingsApi delete_token_generator_mapping_by_id DELETE /oauth/tokenExchange/tokenGeneratorMappings/{id} Delete a Token Exchange Processor policy to Token Generator Mapping.
OauthtokenExchangetokenGeneratorMappingsApi get_token_generator_mapping_by_id GET /oauth/tokenExchange/tokenGeneratorMappings/{id} Get a Token Exchange Processor policy to Token Generator Mapping.
OauthtokenExchangetokenGeneratorMappingsApi get_token_generator_mappings GET /oauth/tokenExchange/tokenGeneratorMappings Get the list of Token Exchange Processor policy to Token Generator Mappings.
OauthtokenExchangetokenGeneratorMappingsApi update_token_generator_mapping_by_id PUT /oauth/tokenExchange/tokenGeneratorMappings/{id} Update a Token Exchange Processor policy to Token Generator Mapping.
PasswordCredentialValidatorsApi create_password_credential_validator POST /passwordCredentialValidators Create a new password credential validator instance
PasswordCredentialValidatorsApi delete_password_credential_validator DELETE /passwordCredentialValidators/{id} Delete a password credential validator instance.
PasswordCredentialValidatorsApi get_password_credential_validator GET /passwordCredentialValidators/{id} Find a password credential validator by ID.
PasswordCredentialValidatorsApi get_password_credential_validator_descriptor GET /passwordCredentialValidators/descriptors/{id} Get the description of a password credential validator by ID.
PasswordCredentialValidatorsApi get_password_credential_validator_descriptors GET /passwordCredentialValidators/descriptors Get a list of available password credential validator descriptors.
PasswordCredentialValidatorsApi get_password_credential_validators GET /passwordCredentialValidators Get the list of available password credential validators
PasswordCredentialValidatorsApi update_password_credential_validator PUT /passwordCredentialValidators/{id} Update a password credential validator instance.
PingOneConnectionsApi create_ping_one_connection POST /pingOneConnections Create a new PingOne connection.
PingOneConnectionsApi delete_ping_one_connection DELETE /pingOneConnections/{id} Delete a PingOne connection.
PingOneConnectionsApi get_credential_status GET /pingOneConnections/{id}/credentialStatus Get the status of the credential associated with the PingOne connection
PingOneConnectionsApi get_ping_one_connection GET /pingOneConnections/{id} Get a PingOne connection with the specified ID.
PingOneConnectionsApi get_ping_one_connection_associations GET /pingOneConnections/{id}/serviceAssociations Get information about components using this connection to access PingOne services.
PingOneConnectionsApi get_ping_one_connection_environments GET /pingOneConnections/{id}/environments Get the list of environments that the PingOne connection has access to.
PingOneConnectionsApi get_ping_one_connection_usages GET /pingOneConnections/{id}/usage Get the list of resources that reference this PingOne connection.
PingOneConnectionsApi get_ping_one_connections GET /pingOneConnections Get the list of all PingOne connections.
PingOneConnectionsApi update_ping_one_connection PUT /pingOneConnections/{id} Update a PingOne connection.
PingOneForEnterpriseApi disconnect POST /pingOneForEnterprise/disconnect Disconnect from PingOne for Enterprise
PingOneForEnterpriseApi get_key_pairs GET /pingOneForEnterprise/keyPairs Get the PingOne for Enterprise key pair settings
PingOneForEnterpriseApi get_ping_one_for_enterprise_settings GET /pingOneForEnterprise Get the PingOne for Enterprise settings
PingOneForEnterpriseApi rotate_keys POST /pingOneForEnterprise/keyPairs/rotate Rotate the authentication key
PingOneForEnterpriseApi update_ping_one_for_enterprise_identity_repository POST /pingOneForEnterprise/updateIdentityRepository Update the PingOne Identity Repository
PingOneForEnterpriseApi update_ping_one_settings PUT /pingOneForEnterprise Update the PingOne for Enterprise settings.
ProtocolMetadataApi get_lifetime_settings GET /protocolMetadata/lifetimeSettings Get metadata cache duration and reload delay for automated reloading.
ProtocolMetadataApi get_signing_settings GET /protocolMetadata/signingSettings Get the certificate ID and algorithm used for metadata signing.
ProtocolMetadataApi update_lifetime_settings PUT /protocolMetadata/lifetimeSettings Update metadata cache duration and reload delay for automated reloading.
ProtocolMetadataApi update_signing_settings PUT /protocolMetadata/signingSettings Update the certificate and algorithm for metadata signing.
RedirectValidationApi get_redirect_validation_settings GET /redirectValidation Retrieve redirect validation settings.
RedirectValidationApi update_redirect_validation_settings PUT /redirectValidation Update redirect validation settings.
SecretManagersApi create_secret_manager POST /secretManagers Create a secret manager plugin instance.
SecretManagersApi delete_secret_manager DELETE /secretManagers/{id} Delete a secret manager plugin instance.
SecretManagersApi get_action GET /secretManagers/{id}/actions/{actionId} Get a secret manager plugin instance's action by ID.
SecretManagersApi get_actions GET /secretManagers/{id}/actions Get a list of actions for a secret manager plugin instance.
SecretManagersApi get_secret_manager GET /secretManagers/{id} Get a specific secret manager plugin instance.
SecretManagersApi get_secret_manager_plugin_descriptor GET /secretManagers/descriptors/{id} Get a secret manager plugin descriptor.
SecretManagersApi get_secret_manager_plugin_descriptors GET /secretManagers/descriptors Get a list of available secret manager plugin descriptors.
SecretManagersApi get_secret_managers GET /secretManagers Get a list of secret manager plugin instances.
SecretManagersApi invoke_action_with_options POST /secretManagers/{id}/actions/{actionId}/invokeAction Invokes an action for secret manager plugin instance.
SecretManagersApi update_secret_manager PUT /secretManagers/{id} Update a secret manager plugin instance.
ServerSettingsApi delete_certificate DELETE /serverSettings/wsTrustStsSettings/issuerCertificates/{id} Delete a certificate from WS-Trust STS Settings.
ServerSettingsApi get_captcha_settings GET /serverSettings/captchaSettings (Deprecated) Gets the CAPTCHA settings.
ServerSettingsApi get_cert GET /serverSettings/wsTrustStsSettings/issuerCertificates/{id} Retrieve details of a certificate.
ServerSettingsApi get_certs GET /serverSettings/wsTrustStsSettings/issuerCertificates Get the list of certificates for WS-Trust STS Settings.
ServerSettingsApi get_email_server_settings GET /serverSettings/emailServer (Deprecated) Gets the email server settings
ServerSettingsApi get_general_settings GET /serverSettings/generalSettings Gets the general settings.
ServerSettingsApi get_log_settings GET /serverSettings/logSettings Gets the log settings.
ServerSettingsApi get_notification_settings GET /serverSettings/notifications Gets the notification settings
ServerSettingsApi get_out_bound_provisioning_settings GET /serverSettings/outboundProvisioning Get database used for outbound provisioning
ServerSettingsApi get_server_settings GET /serverSettings Gets the server settings
ServerSettingsApi get_system_keys GET /serverSettings/systemKeys Get the system keys.
ServerSettingsApi get_ws_trust_sts_settings GET /serverSettings/wsTrustStsSettings Get the current WS-Trust STS Settings.
ServerSettingsApi import_certificate POST /serverSettings/wsTrustStsSettings/issuerCertificates Import a new certificate.
ServerSettingsApi rotate_system_keys POST /serverSettings/systemKeys/rotate Rotate the system keys.
ServerSettingsApi update_captcha_settings PUT /serverSettings/captchaSettings (Deprecated) Update the CAPTCHA settings.
ServerSettingsApi update_email_server_settings PUT /serverSettings/emailServer (Deprecated) Update the email server settings
ServerSettingsApi update_general_settings PUT /serverSettings/generalSettings Update general settings.
ServerSettingsApi update_log_settings PUT /serverSettings/logSettings Update log settings.
ServerSettingsApi update_notification_settings PUT /serverSettings/notifications Update the notification settings.
ServerSettingsApi update_out_bound_provisioning_settings PUT /serverSettings/outboundProvisioning Update database used for outbound provisioning
ServerSettingsApi update_server_settings PUT /serverSettings Update the server settings.
ServerSettingsApi update_system_keys PUT /serverSettings/systemKeys Update the system keys.
ServerSettingsApi update_ws_trust_sts_settings PUT /serverSettings/wsTrustStsSettings Update WS-Trust STS Settings.
ServiceAuthenticationApi get_service_authentication GET /serviceAuthentication Get the service authentication settings.
ServiceAuthenticationApi update_service_authentication PUT /serviceAuthentication Update the service authentication settings.
SessionApi create_source_policy POST /session/authenticationSessionPolicies Create a new session policy.
SessionApi delete_source_policy DELETE /session/authenticationSessionPolicies/{id} Delete a session policy.
SessionApi get_application_policy GET /session/applicationSessionPolicy Get the application session policy.
SessionApi get_global_policy GET /session/authenticationSessionPolicies/global Get the global authentication session policy.
SessionApi get_session_settings GET /session/settings Get general session management settings.
SessionApi get_source_policies GET /session/authenticationSessionPolicies Get list of session policies.
SessionApi get_source_policy GET /session/authenticationSessionPolicies/{id} Find session policy by ID.
SessionApi update_application_policy PUT /session/applicationSessionPolicy Update the application session policy.
SessionApi update_global_policy PUT /session/authenticationSessionPolicies/global Update the global authentication session policy.
SessionApi update_session_settings PUT /session/settings Update general session management settings.
SessionApi update_source_policy PUT /session/authenticationSessionPolicies/{id} Update a session policy.
SpadaptersApi create_sp_adapter POST /sp/adapters Create a new SP adapter instance.
SpadaptersApi delete_sp_adapter DELETE /sp/adapters/{id} Delete an SP adapter instance.
SpadaptersApi get_action GET /sp/adapters/{id}/actions/{actionId} Find an SP adapter instance's action by ID.
SpadaptersApi get_actions GET /sp/adapters/{id}/actions List the actions for an SP adapter instance.
SpadaptersApi get_sp_adapter GET /sp/adapters/{id} Find an SP adapter instance by ID.
SpadaptersApi get_sp_adapter_descriptors GET /sp/adapters/descriptors Get the list of available SP adapter descriptors.
SpadaptersApi get_sp_adapter_descriptors_by_id GET /sp/adapters/descriptors/{id} Get the description of an SP adapter plugin by ID.
SpadaptersApi get_sp_adapters GET /sp/adapters Get the list of configured SP adapter instances.
SpadaptersApi get_url_mappings GET /sp/adapters/urlMappings (Deprecated) List the mappings between URLs and adapter instances.
SpadaptersApi invoke_action_with_options POST /sp/adapters/{id}/actions/{actionId}/invokeAction Invokes an action for an SP adapter instance.
SpadaptersApi update_sp_adapter PUT /sp/adapters/{id} Update an SP adapter instance.
SpadaptersApi update_url_mappings PUT /sp/adapters/urlMappings (Deprecated) Update the mappings between URLs and adapters instances.
SpauthenticationPolicyContractMappingsApi create_apc_to_sp_adapter_mapping POST /sp/authenticationPolicyContractMappings Create a new APC-to-SP Adapter Mapping.
SpauthenticationPolicyContractMappingsApi delete_apc_to_sp_adapter_mapping_by_id DELETE /sp/authenticationPolicyContractMappings/{id} Delete an APC-to-SP Adapter Mapping.
SpauthenticationPolicyContractMappingsApi get_apc_to_sp_adapter_mapping_by_id GET /sp/authenticationPolicyContractMappings/{id} Get an APC-to-SP Adapter Mapping.
SpauthenticationPolicyContractMappingsApi get_apc_to_sp_adapter_mappings GET /sp/authenticationPolicyContractMappings Get the list of APC-to-SP Adapter Mappings.
SpauthenticationPolicyContractMappingsApi update_apc_to_sp_adapter_mapping_by_id PUT /sp/authenticationPolicyContractMappings/{id} Update an APC-to-SP Adapter Mapping.
SpdefaultUrlsApi get_default_urls GET /sp/defaultUrls Gets the SP Default URLs. These are Values that affect the user's experience when executing SP-initiated SSO operations.
SpdefaultUrlsApi update_default_urls PUT /sp/defaultUrls Update the SP Default URLs. Enter values that affect the user's experience when executing SP-initiated SSO operations.
SpidpConnectionsApi add_connection_cert POST /sp/idpConnections/{id}/credentials/certs Add a new IdP connection certificate.
SpidpConnectionsApi create_connection POST /sp/idpConnections Create a new IdP connection.
SpidpConnectionsApi delete_connection DELETE /sp/idpConnections/{id} Delete an IdP connection.
SpidpConnectionsApi get_connection GET /sp/idpConnections/{id} Find IdP connection by ID.
SpidpConnectionsApi get_connection_certs GET /sp/idpConnections/{id}/credentials/certs Get the IdP connection's certificates.
SpidpConnectionsApi get_connections GET /sp/idpConnections Get list of IdP connections.
SpidpConnectionsApi get_decryption_keys GET /sp/idpConnections/{id}/credentials/decryptionKeys Get the decryption keys of an IdP connection.
SpidpConnectionsApi get_signing_settings GET /sp/idpConnections/{id}/credentials/signingSettings Get the IdP connection's signature settings.
SpidpConnectionsApi update_connection PUT /sp/idpConnections/{id} Update an IdP connection.
SpidpConnectionsApi update_connection_certs PUT /sp/idpConnections/{id}/credentials/certs Update the IdP connection's certificates.
SpidpConnectionsApi update_decryption_keys PUT /sp/idpConnections/{id}/credentials/decryptionKeys Updating the IdP connection's decryption keys.
SpidpConnectionsApi update_signing_settings PUT /sp/idpConnections/{id}/credentials/signingSettings Update the IdP connection's signature settings.
SptargetUrlMappingsApi get_url_mappings GET /sp/targetUrlMappings List the mappings between URLs and adapter or connection instances.
SptargetUrlMappingsApi update_url_mappings PUT /sp/targetUrlMappings Update the mappings between URLs and adapters or connections instances.
SptokenGeneratorsApi create_token_generator POST /sp/tokenGenerators Create a new token generator instance.
SptokenGeneratorsApi delete_token_generator DELETE /sp/tokenGenerators/{id} Delete a token generator instance.
SptokenGeneratorsApi get_token_generator GET /sp/tokenGenerators/{id} Find a token generator instance by ID.
SptokenGeneratorsApi get_token_generator_descriptors GET /sp/tokenGenerators/descriptors Get the list of available token generators.
SptokenGeneratorsApi get_token_generator_descriptors_by_id GET /sp/tokenGenerators/descriptors/{id} Get the description of a token generator plugin by ID.
SptokenGeneratorsApi get_token_generators GET /sp/tokenGenerators Get the list of token generator instances.
SptokenGeneratorsApi update_token_generator PUT /sp/tokenGenerators/{id} Update a token generator instance.
TokenProcessorToTokenGeneratorMappingsApi create_token_to_token_mapping POST /tokenProcessorToTokenGeneratorMappings Create a new Token Processor to Token Generator Mapping.
TokenProcessorToTokenGeneratorMappingsApi delete_token_to_token_mapping_by_id DELETE /tokenProcessorToTokenGeneratorMappings/{id} Delete a Token Processor to Token Generator Mapping.
TokenProcessorToTokenGeneratorMappingsApi get_token_to_token_mapping_by_id GET /tokenProcessorToTokenGeneratorMappings/{id} Get a Token Processor to Token Generator Mapping.
TokenProcessorToTokenGeneratorMappingsApi get_token_to_token_mappings GET /tokenProcessorToTokenGeneratorMappings Get the list of Token Processor to Token Generator Mappings.
TokenProcessorToTokenGeneratorMappingsApi update_token_to_token_mapping_by_id PUT /tokenProcessorToTokenGeneratorMappings/{id} Update a Token Processor to Token Generator Mapping.
VersionApi get_version GET /version Gets the server version.
VirtualHostNamesApi get_virtual_host_names_settings GET /virtualHostNames Retrieve virtual host names settings.
VirtualHostNamesApi update_virtual_host_names_settings PUT /virtualHostNames Update virtual host names settings.

Documentation For Models

Documentation For Authorization

All endpoints do not require authorization.

Author

About


Languages

Language:Python 100.0%Language:Shell 0.0%