The profile used to configure the connection method of authentication and the credentials. Currently, token-based and OAuth 2.0-based authentication are supported.
| Name | Type | Description | Notes |
|---|---|---|---|
| auth_scheme | ProvisioningConnectionAuthScheme | [optional] |
from okta.models.provisioning_connection_profile import ProvisioningConnectionProfile
# TODO update the JSON string below
json = "{}"
# create an instance of ProvisioningConnectionProfile from a JSON string
provisioning_connection_profile_instance = ProvisioningConnectionProfile.from_json(json)
# print the JSON string representation of the object
print(ProvisioningConnectionProfile.to_json())
# convert the object into a dict
provisioning_connection_profile_dict = provisioning_connection_profile_instance.to_dict()
# create an instance of ProvisioningConnectionProfile from a dict
provisioning_connection_profile_from_dict = ProvisioningConnectionProfile.from_dict(provisioning_connection_profile_dict)