get static method

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

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

Implementation

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