You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The ID of the project to create the integration auth for.
integration
str
The slug of integration for the auth object.
access_id
str
The unique authorized access id of the external integration provider.
[optional]
access_token
str
The unique authorized access token of the external integration provider.
[optional]
aws_assume_iam_role_arn
str
The AWS IAM Role to be assumed by Infisical
[optional]
url
str
[optional]
namespace
str
[optional]
refresh_token
str
The refresh token for integration authorization.
[optional]
Example
frominfisicalapi_client.models.api_v1_integration_auth_access_token_post_requestimportApiV1IntegrationAuthAccessTokenPostRequest# TODO update the JSON string belowjson="{}"# create an instance of ApiV1IntegrationAuthAccessTokenPostRequest from a JSON stringapi_v1_integration_auth_access_token_post_request_instance=ApiV1IntegrationAuthAccessTokenPostRequest.from_json(json)
# print the JSON string representation of the objectprintApiV1IntegrationAuthAccessTokenPostRequest.to_json()
# convert the object into a dictapi_v1_integration_auth_access_token_post_request_dict=api_v1_integration_auth_access_token_post_request_instance.to_dict()
# create an instance of ApiV1IntegrationAuthAccessTokenPostRequest from a dictapi_v1_integration_auth_access_token_post_request_from_dict=ApiV1IntegrationAuthAccessTokenPostRequest.from_dict(api_v1_integration_auth_access_token_post_request_dict)