SourceCredentialArgs constructor

const SourceCredentialArgs({
  1. required Input<String> authType,
  2. Input<String?>? region,
  3. required Input<String> serverType,
  4. required Input<String> token,
  5. Input<String?>? userName,
})

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,
});