Google Cloud Classic v8.3.1 published on Wednesday, Sep 25, 2024 by Pulumi
gcp.endpoints.getServiceIamPolicy
Explore with Pulumi AI
Retrieves the current IAM policy data for service
example
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const policy = gcp.endpoints.getServiceIamPolicy({
serviceName: endpointsService.serviceName,
});
import pulumi
import pulumi_gcp as gcp
policy = gcp.endpoints.get_service_iam_policy(service_name=endpoints_service["serviceName"])
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/endpoints"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := endpoints.LookupServiceIamPolicy(ctx, &endpoints.LookupServiceIamPolicyArgs{
ServiceName: endpointsService.ServiceName,
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var policy = Gcp.Endpoints.GetServiceIamPolicy.Invoke(new()
{
ServiceName = endpointsService.ServiceName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.endpoints.EndpointsFunctions;
import com.pulumi.gcp.endpoints.inputs.GetServiceIamPolicyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var policy = EndpointsFunctions.getServiceIamPolicy(GetServiceIamPolicyArgs.builder()
.serviceName(endpointsService.serviceName())
.build());
}
}
variables:
policy:
fn::invoke:
Function: gcp:endpoints:getServiceIamPolicy
Arguments:
serviceName: ${endpointsService.serviceName}
Using getServiceIamPolicy
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getServiceIamPolicy(args: GetServiceIamPolicyArgs, opts?: InvokeOptions): Promise<GetServiceIamPolicyResult>
function getServiceIamPolicyOutput(args: GetServiceIamPolicyOutputArgs, opts?: InvokeOptions): Output<GetServiceIamPolicyResult>
def get_service_iam_policy(service_name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetServiceIamPolicyResult
def get_service_iam_policy_output(service_name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceIamPolicyResult]
func LookupServiceIamPolicy(ctx *Context, args *LookupServiceIamPolicyArgs, opts ...InvokeOption) (*LookupServiceIamPolicyResult, error)
func LookupServiceIamPolicyOutput(ctx *Context, args *LookupServiceIamPolicyOutputArgs, opts ...InvokeOption) LookupServiceIamPolicyResultOutput
> Note: This function is named LookupServiceIamPolicy
in the Go SDK.
public static class GetServiceIamPolicy
{
public static Task<GetServiceIamPolicyResult> InvokeAsync(GetServiceIamPolicyArgs args, InvokeOptions? opts = null)
public static Output<GetServiceIamPolicyResult> Invoke(GetServiceIamPolicyInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetServiceIamPolicyResult> getServiceIamPolicy(GetServiceIamPolicyArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: gcp:endpoints/getServiceIamPolicy:getServiceIamPolicy
arguments:
# arguments dictionary
The following arguments are supported:
- Service
Name string
- Service
Name string
- service
Name String
- service
Name string
- service_
name str
- service
Name String
getServiceIamPolicy Result
The following output properties are available:
- Etag string
- (Computed) The etag of the IAM policy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Policy
Data string - (Required only by
gcp.endpoints.ServiceIamPolicy
) The policy data generated by agcp.organizations.getIAMPolicy
data source. - Service
Name string
- Etag string
- (Computed) The etag of the IAM policy.
- Id string
- The provider-assigned unique ID for this managed resource.
- Policy
Data string - (Required only by
gcp.endpoints.ServiceIamPolicy
) The policy data generated by agcp.organizations.getIAMPolicy
data source. - Service
Name string
- etag String
- (Computed) The etag of the IAM policy.
- id String
- The provider-assigned unique ID for this managed resource.
- policy
Data String - (Required only by
gcp.endpoints.ServiceIamPolicy
) The policy data generated by agcp.organizations.getIAMPolicy
data source. - service
Name String
- etag string
- (Computed) The etag of the IAM policy.
- id string
- The provider-assigned unique ID for this managed resource.
- policy
Data string - (Required only by
gcp.endpoints.ServiceIamPolicy
) The policy data generated by agcp.organizations.getIAMPolicy
data source. - service
Name string
- etag str
- (Computed) The etag of the IAM policy.
- id str
- The provider-assigned unique ID for this managed resource.
- policy_
data str - (Required only by
gcp.endpoints.ServiceIamPolicy
) The policy data generated by agcp.organizations.getIAMPolicy
data source. - service_
name str
- etag String
- (Computed) The etag of the IAM policy.
- id String
- The provider-assigned unique ID for this managed resource.
- policy
Data String - (Required only by
gcp.endpoints.ServiceIamPolicy
) The policy data generated by agcp.organizations.getIAMPolicy
data source. - service
Name String
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-beta
Terraform Provider.