UNPKG

@pulumi/gcp

Version:

A Pulumi package for creating and managing Google Cloud Platform resources.

52 lines 1.84 kB
"use strict"; // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. *** // *** Do not edit by hand unless you're certain you know what you are doing! *** Object.defineProperty(exports, "__esModule", { value: true }); exports.getWebTypeComputeIamPolicyOutput = exports.getWebTypeComputeIamPolicy = void 0; const pulumi = require("@pulumi/pulumi"); const utilities = require("../utilities"); /** * Retrieves the current IAM policy data for webtypecompute * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const policy = gcp.iap.getWebTypeComputeIamPolicy({ * project: projectService.project, * }); * ``` */ function getWebTypeComputeIamPolicy(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("gcp:iap/getWebTypeComputeIamPolicy:getWebTypeComputeIamPolicy", { "project": args.project, }, opts); } exports.getWebTypeComputeIamPolicy = getWebTypeComputeIamPolicy; /** * Retrieves the current IAM policy data for webtypecompute * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const policy = gcp.iap.getWebTypeComputeIamPolicy({ * project: projectService.project, * }); * ``` */ function getWebTypeComputeIamPolicyOutput(args, opts) { args = args || {}; opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("gcp:iap/getWebTypeComputeIamPolicy:getWebTypeComputeIamPolicy", { "project": args.project, }, opts); } exports.getWebTypeComputeIamPolicyOutput = getWebTypeComputeIamPolicyOutput; //# sourceMappingURL=getWebTypeComputeIamPolicy.js.map