get static method

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

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

Implementation

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