This provider is currently in preview.
published on Thursday, May 21, 2026 by Pulumi
This provider is currently in preview.
published on Thursday, May 21, 2026 by Pulumi
Adds a repository to a custom VCS integration. The repository name must be unique within the integration. Returns 409 Conflict if a repository with the same name is already configured.
Create CustomVCSRepository Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CustomVCSRepository(name: string, args: CustomVCSRepositoryArgs, opts?: CustomResourceOptions);@overload
def CustomVCSRepository(resource_name: str,
args: CustomVCSRepositoryArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CustomVCSRepository(resource_name: str,
opts: Optional[ResourceOptions] = None,
integration_id: Optional[str] = None,
name: Optional[str] = None,
org_name: Optional[str] = None,
display_name: Optional[str] = None)func NewCustomVCSRepository(ctx *Context, name string, args CustomVCSRepositoryArgs, opts ...ResourceOption) (*CustomVCSRepository, error)public CustomVCSRepository(string name, CustomVCSRepositoryArgs args, CustomResourceOptions? opts = null)
public CustomVCSRepository(String name, CustomVCSRepositoryArgs args)
public CustomVCSRepository(String name, CustomVCSRepositoryArgs args, CustomResourceOptions options)
type: pulumiservice:api/integrations:CustomVCSRepository
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "pulumiservice_api_integrations_customvcsrepository" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args CustomVCSRepositoryArgs
- 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 CustomVCSRepositoryArgs
- 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 CustomVCSRepositoryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CustomVCSRepositoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CustomVCSRepositoryArgs
- 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 customVCSRepositoryResource = new PulumiService.Api.Integrations.CustomVCSRepository("customVCSRepositoryResource", new()
{
IntegrationId = "string",
Name = "string",
OrgName = "string",
DisplayName = "string",
});
example, err := integrations.NewCustomVCSRepository(ctx, "customVCSRepositoryResource", &integrations.CustomVCSRepositoryArgs{
IntegrationId: pulumi.String("string"),
Name: pulumi.String("string"),
OrgName: pulumi.String("string"),
DisplayName: pulumi.String("string"),
})
resource "pulumiservice_api_integrations_customvcsrepository" "customVCSRepositoryResource" {
integration_id = "string"
name = "string"
org_name = "string"
display_name = "string"
}
var customVCSRepositoryResource = new CustomVCSRepository("customVCSRepositoryResource", CustomVCSRepositoryArgs.builder()
.integrationId("string")
.name("string")
.orgName("string")
.displayName("string")
.build());
custom_vcs_repository_resource = pulumiservice.api.integrations.CustomVCSRepository("customVCSRepositoryResource",
integration_id="string",
name="string",
org_name="string",
display_name="string")
const customVCSRepositoryResource = new pulumiservice.api.integrations.CustomVCSRepository("customVCSRepositoryResource", {
integrationId: "string",
name: "string",
orgName: "string",
displayName: "string",
});
type: pulumiservice:api/integrations:CustomVCSRepository
properties:
displayName: string
integrationId: string
name: string
orgName: string
CustomVCSRepository 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 CustomVCSRepository resource accepts the following input properties:
- Integration
Id string - The custom VCS integration identifier
- Name string
- Repository name or path, joined with the integration's base URL to form the clone URL (e.g. 'myrepo' or 'subgroup/myrepo')
- Org
Name string - The organization name
- Display
Name string - Human-readable display name for the repository. If not provided, the name is used for display purposes.
- Integration
Id string - The custom VCS integration identifier
- Name string
- Repository name or path, joined with the integration's base URL to form the clone URL (e.g. 'myrepo' or 'subgroup/myrepo')
- Org
Name string - The organization name
- Display
Name string - Human-readable display name for the repository. If not provided, the name is used for display purposes.
- integration_
id string - The custom VCS integration identifier
- name string
- Repository name or path, joined with the integration's base URL to form the clone URL (e.g. 'myrepo' or 'subgroup/myrepo')
- org_
name string - The organization name
- display_
name string - Human-readable display name for the repository. If not provided, the name is used for display purposes.
- integration
Id String - The custom VCS integration identifier
- name String
- Repository name or path, joined with the integration's base URL to form the clone URL (e.g. 'myrepo' or 'subgroup/myrepo')
- org
Name String - The organization name
- display
Name String - Human-readable display name for the repository. If not provided, the name is used for display purposes.
- integration
Id string - The custom VCS integration identifier
- name string
- Repository name or path, joined with the integration's base URL to form the clone URL (e.g. 'myrepo' or 'subgroup/myrepo')
- org
Name string - The organization name
- display
Name string - Human-readable display name for the repository. If not provided, the name is used for display purposes.
- integration_
id str - The custom VCS integration identifier
- name str
- Repository name or path, joined with the integration's base URL to form the clone URL (e.g. 'myrepo' or 'subgroup/myrepo')
- org_
name str - The organization name
- display_
name str - Human-readable display name for the repository. If not provided, the name is used for display purposes.
- integration
Id String - The custom VCS integration identifier
- name String
- Repository name or path, joined with the integration's base URL to form the clone URL (e.g. 'myrepo' or 'subgroup/myrepo')
- org
Name String - The organization name
- display
Name String - Human-readable display name for the repository. If not provided, the name is used for display purposes.
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomVCSRepository 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 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.
Package Details
- Repository
- pulumiservice pulumi/pulumi-pulumiservice
- License
- Apache-2.0
This provider is currently in preview.
published on Thursday, May 21, 2026 by Pulumi