get static method
Project
get(
- String name,
- Input<
String> id, { - ProjectState? state,
- CustomResourceOptions? options,
Gets an existing Project resource's state with the given name and id.
Implementation
static Project get(
String name,
pulumi.Input<String> id, {
ProjectState? state,
pulumi.CustomResourceOptions? options,
}) {
return Project._get(
name,
state: state?.toMap(),
options: pulumi.CustomResourceOptions(id: id).merge(options),
);
}