vercel.IntegrationProjectAccess
Explore with Pulumi AI
Provides Project access to an existing Integration. This requires the integration already exists and is already configured for Specific Project access.
Create IntegrationProjectAccess Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationProjectAccess(name: string, args: IntegrationProjectAccessArgs, opts?: CustomResourceOptions);
@overload
def IntegrationProjectAccess(resource_name: str,
args: IntegrationProjectAccessArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationProjectAccess(resource_name: str,
opts: Optional[ResourceOptions] = None,
integration_id: Optional[str] = None,
project_id: Optional[str] = None,
team_id: Optional[str] = None)
func NewIntegrationProjectAccess(ctx *Context, name string, args IntegrationProjectAccessArgs, opts ...ResourceOption) (*IntegrationProjectAccess, error)
public IntegrationProjectAccess(string name, IntegrationProjectAccessArgs args, CustomResourceOptions? opts = null)
public IntegrationProjectAccess(String name, IntegrationProjectAccessArgs args)
public IntegrationProjectAccess(String name, IntegrationProjectAccessArgs args, CustomResourceOptions options)
type: vercel:IntegrationProjectAccess
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 IntegrationProjectAccessArgs
- 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 IntegrationProjectAccessArgs
- 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 IntegrationProjectAccessArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationProjectAccessArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationProjectAccessArgs
- 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 integrationProjectAccessResource = new Vercel.IntegrationProjectAccess("integrationProjectAccessResource", new()
{
IntegrationId = "string",
ProjectId = "string",
TeamId = "string",
});
example, err := vercel.NewIntegrationProjectAccess(ctx, "integrationProjectAccessResource", &vercel.IntegrationProjectAccessArgs{
IntegrationId: pulumi.String("string"),
ProjectId: pulumi.String("string"),
TeamId: pulumi.String("string"),
})
var integrationProjectAccessResource = new IntegrationProjectAccess("integrationProjectAccessResource", IntegrationProjectAccessArgs.builder()
.integrationId("string")
.projectId("string")
.teamId("string")
.build());
integration_project_access_resource = vercel.IntegrationProjectAccess("integrationProjectAccessResource",
integration_id="string",
project_id="string",
team_id="string")
const integrationProjectAccessResource = new vercel.IntegrationProjectAccess("integrationProjectAccessResource", {
integrationId: "string",
projectId: "string",
teamId: "string",
});
type: vercel:IntegrationProjectAccess
properties:
integrationId: string
projectId: string
teamId: string
IntegrationProjectAccess 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 IntegrationProjectAccess resource accepts the following input properties:
- Integration
Id string - The ID of the integration.
- Project
Id string - The ID of the Vercel project.
- Team
Id string - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
- Integration
Id string - The ID of the integration.
- Project
Id string - The ID of the Vercel project.
- Team
Id string - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
- integration
Id String - The ID of the integration.
- project
Id String - The ID of the Vercel project.
- team
Id String - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
- integration
Id string - The ID of the integration.
- project
Id string - The ID of the Vercel project.
- team
Id string - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
- integration_
id str - The ID of the integration.
- project_
id str - The ID of the Vercel project.
- team_
id str - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
- integration
Id String - The ID of the integration.
- project
Id String - The ID of the Vercel project.
- team
Id String - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationProjectAccess 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 IntegrationProjectAccess Resource
Get an existing IntegrationProjectAccess 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?: IntegrationProjectAccessState, opts?: CustomResourceOptions): IntegrationProjectAccess
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
integration_id: Optional[str] = None,
project_id: Optional[str] = None,
team_id: Optional[str] = None) -> IntegrationProjectAccess
func GetIntegrationProjectAccess(ctx *Context, name string, id IDInput, state *IntegrationProjectAccessState, opts ...ResourceOption) (*IntegrationProjectAccess, error)
public static IntegrationProjectAccess Get(string name, Input<string> id, IntegrationProjectAccessState? state, CustomResourceOptions? opts = null)
public static IntegrationProjectAccess get(String name, Output<String> id, IntegrationProjectAccessState state, CustomResourceOptions options)
resources: _: type: vercel:IntegrationProjectAccess 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.
- Integration
Id string - The ID of the integration.
- Project
Id string - The ID of the Vercel project.
- Team
Id string - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
- Integration
Id string - The ID of the integration.
- Project
Id string - The ID of the Vercel project.
- Team
Id string - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
- integration
Id String - The ID of the integration.
- project
Id String - The ID of the Vercel project.
- team
Id String - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
- integration
Id string - The ID of the integration.
- project
Id string - The ID of the Vercel project.
- team
Id string - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
- integration_
id str - The ID of the integration.
- project_
id str - The ID of the Vercel project.
- team_
id str - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
- integration
Id String - The ID of the integration.
- project
Id String - The ID of the Vercel project.
- team
Id String - The ID of the Vercel team.Required when configuring a team resource if a default team has not been set in the provider.
Package Details
- Repository
- vercel pulumiverse/pulumi-vercel
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
vercel
Terraform Provider.