get static method

Account get(
  1. String name,
  2. Input<String> id, {
  3. AccountState? state,
  4. CustomResourceOptions? options,
})

Gets an existing Account resource's state with the given name and id.

Implementation

static Account get(
  String name,
  pulumi.Input<String> id, {
  AccountState? state,
  pulumi.CustomResourceOptions? options,
}) {
  return Account._get(
    name,
    state: state?.toMap(),
    options: pulumi.CustomResourceOptions(id: id).merge(options),
  );
}