defang v1.0.0 published on Monday, Mar 24, 2025 by Defang
defang.Project
Explore with Pulumi AI
Create Project Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Project(name: string, args: ProjectArgs, opts?: CustomResourceOptions);
@overload
def Project(resource_name: str,
args: ProjectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Project(resource_name: str,
opts: Optional[ResourceOptions] = None,
config_paths: Optional[Sequence[str]] = None,
provider_id: Optional[str] = None)
func NewProject(ctx *Context, name string, args ProjectArgs, opts ...ResourceOption) (*Project, error)
public Project(string name, ProjectArgs args, CustomResourceOptions? opts = null)
public Project(String name, ProjectArgs args)
public Project(String name, ProjectArgs args, CustomResourceOptions options)
type: defang:Project
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 ProjectArgs
- 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 ProjectArgs
- 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 ProjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectArgs
- 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 projectResource = new Defang.Project("projectResource", new()
{
ConfigPaths = new[]
{
"string",
},
ProviderID = "string",
});
example, err := defang.NewProject(ctx, "projectResource", &defang.ProjectArgs{
ConfigPaths: pulumi.StringArray{
pulumi.String("string"),
},
ProviderID: pulumi.String("string"),
})
var projectResource = new Project("projectResource", ProjectArgs.builder()
.configPaths("string")
.providerID("string")
.build());
project_resource = defang.Project("projectResource",
config_paths=["string"],
provider_id="string")
const projectResource = new defang.Project("projectResource", {
configPaths: ["string"],
providerID: "string",
});
type: defang:Project
properties:
configPaths:
- string
providerID: string
Project 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 Project resource accepts the following input properties:
- Config
Paths List<string> - Provider
ID string
- Config
Paths []string - Provider
ID string
- config
Paths List<String> - provider
ID String
- config
Paths string[] - provider
ID string
- config_
paths Sequence[str] - provider_
id str
- config
Paths List<String> - provider
ID String
Outputs
All input properties are implicitly available as output properties. Additionally, the Project resource produces the following output properties:
- Alb
Arn string - Etag string
- Id string
- The provider-assigned unique ID for this managed resource.
- Services
List<Defang
Labs. Defang. V1. Outputs. Service Info>
- Alb
Arn string - Etag string
- Id string
- The provider-assigned unique ID for this managed resource.
- Services
Service
Info
- alb
Arn String - etag String
- id String
- The provider-assigned unique ID for this managed resource.
- services
List<Service
Info>
- alb
Arn string - etag string
- id string
- The provider-assigned unique ID for this managed resource.
- services
v1Service
Info[]
- alb_
arn str - etag str
- id str
- The provider-assigned unique ID for this managed resource.
- services
Sequence[v1.
Service Info]
- alb
Arn String - etag String
- id String
- The provider-assigned unique ID for this managed resource.
- services List<Property Map>
Package Details
- Repository
- defang DefangLabs/pulumi-defang
- License
- Apache-2.0