GetProject
Example Usage
using Pulumi;
using Aiven = Pulumi.Aiven;
class MyStack : Stack
{
public MyStack()
{
var myproject = Output.Create(Aiven.GetProject.InvokeAsync(new Aiven.GetProjectArgs
{
Project = "<PROJECT_NAME>",
}));
}
}
Coming soon!
import pulumi
import pulumi_aiven as aiven
myproject = aiven.get_project(project="<PROJECT_NAME>")import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const myproject = pulumi.output(aiven.getProject({
project: "<PROJECT_NAME>",
}, { async: true }));Using GetProject
function getProject(args: GetProjectArgs, opts?: InvokeOptions): Promise<GetProjectResult>function get_project(account_id=None, billing_address=None, billing_emails=None, ca_cert=None, card_id=None, copy_from_project=None, country_code=None, project=None, technical_emails=None, opts=None)func LookupProject(ctx *Context, args *LookupProjectArgs, opts ...InvokeOption) (*LookupProjectResult, error)Note: This function is named
LookupProjectin the Go SDK.
public static class GetProject {
public static Task<GetProjectResult> InvokeAsync(GetProjectArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
GetProject Result
The following output properties are available:
- Ca
Cert string - Id string
The provider-assigned unique ID for this managed resource.
- Project string
- Account
Id string - Billing
Address string - Billing
Emails List<string> - Card
Id string - Copy
From stringProject - Country
Code string - Technical
Emails List<string>
- Ca
Cert string - Id string
The provider-assigned unique ID for this managed resource.
- Project string
- Account
Id string - Billing
Address string - Billing
Emails []string - Card
Id string - Copy
From stringProject - Country
Code string - Technical
Emails []string
- ca
Cert string - id string
The provider-assigned unique ID for this managed resource.
- project string
- account
Id string - billing
Address string - billing
Emails string[] - card
Id string - copy
From stringProject - country
Code string - technical
Emails string[]
- ca_
cert str - id str
The provider-assigned unique ID for this managed resource.
- project str
- account_
id str - billing_
address str - billing_
emails List[str] - card_
id str - copy_
from_ strproject - country_
code str - technical_
emails List[str]
Package Details
- Repository
- https://github.com/pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aivenTerraform Provider.