get static method

Project get(
  1. String name,
  2. Input<String> id, {
  3. ProjectState? state,
  4. 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),
  );
}