SourceCredentialArgs constructor
const
SourceCredentialArgs({})
Creates a new SourceCredentialArgs.
authType The type of authentication used to connect to a GitHub, GitHub Enterprise, or Bitbucket
region Region where this resource will be managed. Defaults to the Region set in the provider configuration.
serverType The source provider used for this project.
token For a GitHub and GitHub Enterprise, this is the personal access token. For Bitbucket, this is the
userName The Bitbucket username when the authType is BASIC_AUTH. This parameter is not valid for
Implementation
const SourceCredentialArgs({
required this.authType,
this.region,
required this.serverType,
required this.token,
this.userName,
});