Help on method create in module telnyx.resources.integration_secrets: create(*, identifier: 'str', type: "Literal['bearer', 'basic']", token: 'str | Omit' = , password: 'str | Omit' = , username: 'str | Omit' = , extra_headers: 'Headers | None' = None, extra_query: 'Query | None' = None, extra_body: 'Body | None' = None, timeout: 'float | httpx.Timeout | None | NotGiven' = NOT_GIVEN) -> 'IntegrationSecretCreateResponse' method of telnyx.resources.integration_secrets.IntegrationSecretsResource instance Create a new secret with an associated identifier that can be used to securely integrate with other services. Args: identifier: The unique identifier of the secret. type: The type of secret. token: The token for the secret. Required for bearer type secrets, ignored otherwise. password: The password for the secret. Required for basic type secrets, ignored otherwise. username: The username for the secret. Required for basic type secrets, ignored otherwise. extra_headers: Send extra headers extra_query: Add additional query parameters to the request extra_body: Add additional JSON properties to the request timeout: Override the client-level default timeout for this request, in seconds