The app provisioning connection profile used to configure the method of authentication and the credentials. Currently, token-based and OAuth 2.0-based authentication are supported.
| Name | Type | Description | Notes |
|---|---|---|---|
| client_id | str | Unique client identifier for the OAuth 2.0 service app from the target org |
from okta.models.provisioning_connection_profile_oauth import ProvisioningConnectionProfileOauth
# TODO update the JSON string below
json = "{}"
# create an instance of ProvisioningConnectionProfileOauth from a JSON string
provisioning_connection_profile_oauth_instance = ProvisioningConnectionProfileOauth.from_json(json)
# print the JSON string representation of the object
print(ProvisioningConnectionProfileOauth.to_json())
# convert the object into a dict
provisioning_connection_profile_oauth_dict = provisioning_connection_profile_oauth_instance.to_dict()
# create an instance of ProvisioningConnectionProfileOauth from a dict
provisioning_connection_profile_oauth_from_dict = ProvisioningConnectionProfileOauth.from_dict(provisioning_connection_profile_oauth_dict)