UNPKG

@pulumi/aws

Version:

A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.

87 lines 3.61 kB
"use strict"; // *** WARNING: this file was generated by pulumi-language-nodejs. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.WorkspaceServiceAccount = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * ## Example Usage * * ### Basic Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aws from "@pulumi/aws"; * * const example = new aws.grafana.WorkspaceServiceAccount("example", { * name: "example-admin", * grafanaRole: "ADMIN", * workspaceId: exampleAwsGrafanaWorkspace.id, * }); * ``` * * ## Import * * Using `pulumi import`, import Managed Grafana Workspace Service Account using the `workspace_id` and `service_account_id` separated by a comma (`,`). For example: * * ```sh * $ pulumi import aws:grafana/workspaceServiceAccount:WorkspaceServiceAccount example g-abc12345,1 * ``` */ class WorkspaceServiceAccount extends pulumi.CustomResource { /** * Get an existing WorkspaceServiceAccount resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name, id, state, opts) { return new WorkspaceServiceAccount(name, state, { ...opts, id: id }); } /** * Returns true if the given object is an instance of WorkspaceServiceAccount. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj) { if (obj === undefined || obj === null) { return false; } return obj['__pulumiType'] === WorkspaceServiceAccount.__pulumiType; } constructor(name, argsOrState, opts) { let resourceInputs = {}; opts = opts || {}; if (opts.id) { const state = argsOrState; resourceInputs["grafanaRole"] = state?.grafanaRole; resourceInputs["name"] = state?.name; resourceInputs["region"] = state?.region; resourceInputs["serviceAccountId"] = state?.serviceAccountId; resourceInputs["workspaceId"] = state?.workspaceId; } else { const args = argsOrState; if (args?.grafanaRole === undefined && !opts.urn) { throw new Error("Missing required property 'grafanaRole'"); } if (args?.workspaceId === undefined && !opts.urn) { throw new Error("Missing required property 'workspaceId'"); } resourceInputs["grafanaRole"] = args?.grafanaRole; resourceInputs["name"] = args?.name; resourceInputs["region"] = args?.region; resourceInputs["workspaceId"] = args?.workspaceId; resourceInputs["serviceAccountId"] = undefined /*out*/; } opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts); super(WorkspaceServiceAccount.__pulumiType, name, resourceInputs, opts); } } exports.WorkspaceServiceAccount = WorkspaceServiceAccount; /** @internal */ WorkspaceServiceAccount.__pulumiType = 'aws:grafana/workspaceServiceAccount:WorkspaceServiceAccount'; //# sourceMappingURL=workspaceServiceAccount.js.map