get static method
ResourceCollection
get(
- String name,
- Input<
String> id, { - ResourceCollectionState? state,
- CustomResourceOptions? options,
Gets an existing ResourceCollection resource's state with the given name and id.
Implementation
static ResourceCollection get(
String name,
pulumi.Input<String> id, {
ResourceCollectionState? state,
pulumi.CustomResourceOptions? options,
}) {
return ResourceCollection._get(
name,
state: state?.toMap(),
options: pulumi.CustomResourceOptions(id: id).merge(options),
);
}