get static method

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

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

Implementation

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