published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Create GitCredential Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new GitCredential(name: string, args: GitCredentialArgs, opts?: CustomResourceOptions);@overload
def GitCredential(resource_name: str,
args: GitCredentialArgs,
opts: Optional[ResourceOptions] = None)
@overload
def GitCredential(resource_name: str,
opts: Optional[ResourceOptions] = None,
git_provider: Optional[str] = None,
git_username: Optional[str] = None,
personal_access_token: Optional[str] = None,
force: Optional[bool] = None)func NewGitCredential(ctx *Context, name string, args GitCredentialArgs, opts ...ResourceOption) (*GitCredential, error)public GitCredential(string name, GitCredentialArgs args, CustomResourceOptions? opts = null)
public GitCredential(String name, GitCredentialArgs args)
public GitCredential(String name, GitCredentialArgs args, CustomResourceOptions options)
type: databricks:GitCredential
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args GitCredentialArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args GitCredentialArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args GitCredentialArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args GitCredentialArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args GitCredentialArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var gitCredentialResource = new Databricks.GitCredential("gitCredentialResource", new()
{
GitProvider = "string",
GitUsername = "string",
PersonalAccessToken = "string",
Force = false,
});
example, err := databricks.NewGitCredential(ctx, "gitCredentialResource", &databricks.GitCredentialArgs{
GitProvider: pulumi.String("string"),
GitUsername: pulumi.String("string"),
PersonalAccessToken: pulumi.String("string"),
Force: pulumi.Bool(false),
})
var gitCredentialResource = new GitCredential("gitCredentialResource", GitCredentialArgs.builder()
.gitProvider("string")
.gitUsername("string")
.personalAccessToken("string")
.force(false)
.build());
git_credential_resource = databricks.GitCredential("gitCredentialResource",
git_provider="string",
git_username="string",
personal_access_token="string",
force=False)
const gitCredentialResource = new databricks.GitCredential("gitCredentialResource", {
gitProvider: "string",
gitUsername: "string",
personalAccessToken: "string",
force: false,
});
type: databricks:GitCredential
properties:
force: false
gitProvider: string
gitUsername: string
personalAccessToken: string
GitCredential Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The GitCredential resource accepts the following input properties:
- Git
Provider string - Git
Username string - Personal
Access stringToken - Force bool
- Git
Provider string - Git
Username string - Personal
Access stringToken - Force bool
- git
Provider String - git
Username String - personal
Access StringToken - force Boolean
- git
Provider string - git
Username string - personal
Access stringToken - force boolean
- git_
provider str - git_
username str - personal_
access_ strtoken - force bool
- git
Provider String - git
Username String - personal
Access StringToken - force Boolean
Outputs
All input properties are implicitly available as output properties. Additionally, the GitCredential resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing GitCredential Resource
Get an existing GitCredential resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: GitCredentialState, opts?: CustomResourceOptions): GitCredential@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
force: Optional[bool] = None,
git_provider: Optional[str] = None,
git_username: Optional[str] = None,
personal_access_token: Optional[str] = None) -> GitCredentialfunc GetGitCredential(ctx *Context, name string, id IDInput, state *GitCredentialState, opts ...ResourceOption) (*GitCredential, error)public static GitCredential Get(string name, Input<string> id, GitCredentialState? state, CustomResourceOptions? opts = null)public static GitCredential get(String name, Output<String> id, GitCredentialState state, CustomResourceOptions options)resources: _: type: databricks:GitCredential get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Force bool
- Git
Provider string - Git
Username string - Personal
Access stringToken
- Force bool
- Git
Provider string - Git
Username string - Personal
Access stringToken
- force Boolean
- git
Provider String - git
Username String - personal
Access StringToken
- force boolean
- git
Provider string - git
Username string - personal
Access stringToken
- force bool
- git_
provider str - git_
username str - personal_
access_ strtoken
- force Boolean
- git
Provider String - git
Username String - personal
Access StringToken
Package Details
- Repository
- databricks pulumi/pulumi-databricks
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
databricksTerraform Provider.
published on Monday, Mar 9, 2026 by Pulumi
