1. Packages
  2. OpenStack
  3. API Docs
  4. identity
  5. getService
OpenStack v3.15.1 published on Thursday, Feb 1, 2024 by Pulumi

openstack.identity.getService

Explore with Pulumi AI

openstack logo
OpenStack v3.15.1 published on Thursday, Feb 1, 2024 by Pulumi

    Use this data source to get the ID of an OpenStack service.

    Note: This usually requires admin privileges.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using OpenStack = Pulumi.OpenStack;
    
    return await Deployment.RunAsync(() => 
    {
        var service1 = OpenStack.Identity.GetService.Invoke(new()
        {
            Name = "keystone",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-openstack/sdk/v3/go/openstack/identity"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := identity.GetService(ctx, &identity.GetServiceArgs{
    			Name: pulumi.StringRef("keystone"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.openstack.identity.IdentityFunctions;
    import com.pulumi.openstack.identity.inputs.GetServiceArgs;
    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 service1 = IdentityFunctions.getService(GetServiceArgs.builder()
                .name("keystone")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_openstack as openstack
    
    service1 = openstack.identity.get_service(name="keystone")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as openstack from "@pulumi/openstack";
    
    const service1 = openstack.identity.getService({
        name: "keystone",
    });
    
    variables:
      service1:
        fn::invoke:
          Function: openstack:identity:getService
          Arguments:
            name: keystone
    

    Using getService

    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 getService(args: GetServiceArgs, opts?: InvokeOptions): Promise<GetServiceResult>
    function getServiceOutput(args: GetServiceOutputArgs, opts?: InvokeOptions): Output<GetServiceResult>
    def get_service(enabled: Optional[bool] = None,
                    name: Optional[str] = None,
                    region: Optional[str] = None,
                    type: Optional[str] = None,
                    opts: Optional[InvokeOptions] = None) -> GetServiceResult
    def get_service_output(enabled: Optional[pulumi.Input[bool]] = None,
                    name: Optional[pulumi.Input[str]] = None,
                    region: Optional[pulumi.Input[str]] = None,
                    type: Optional[pulumi.Input[str]] = None,
                    opts: Optional[InvokeOptions] = None) -> Output[GetServiceResult]
    func GetService(ctx *Context, args *GetServiceArgs, opts ...InvokeOption) (*GetServiceResult, error)
    func GetServiceOutput(ctx *Context, args *GetServiceOutputArgs, opts ...InvokeOption) GetServiceResultOutput

    > Note: This function is named GetService in the Go SDK.

    public static class GetService 
    {
        public static Task<GetServiceResult> InvokeAsync(GetServiceArgs args, InvokeOptions? opts = null)
        public static Output<GetServiceResult> Invoke(GetServiceInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetServiceResult> getService(GetServiceArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: openstack:identity/getService:getService
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Enabled bool
    The service status.
    Name string
    The service name.
    Region string
    The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.
    Type string
    The service type.
    Enabled bool
    The service status.
    Name string
    The service name.
    Region string
    The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.
    Type string
    The service type.
    enabled Boolean
    The service status.
    name String
    The service name.
    region String
    The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.
    type String
    The service type.
    enabled boolean
    The service status.
    name string
    The service name.
    region string
    The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.
    type string
    The service type.
    enabled bool
    The service status.
    name str
    The service name.
    region str
    The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.
    type str
    The service type.
    enabled Boolean
    The service status.
    name String
    The service name.
    region String
    The region in which to obtain the V3 Keystone client. If omitted, the region argument of the provider is used.
    type String
    The service type.

    getService Result

    The following output properties are available:

    Description string
    The service description.
    Id string
    The provider-assigned unique ID for this managed resource.
    Region string
    See Argument Reference above.
    Enabled bool
    See Argument Reference above.
    Name string
    See Argument Reference above.
    Type string
    See Argument Reference above.
    Description string
    The service description.
    Id string
    The provider-assigned unique ID for this managed resource.
    Region string
    See Argument Reference above.
    Enabled bool
    See Argument Reference above.
    Name string
    See Argument Reference above.
    Type string
    See Argument Reference above.
    description String
    The service description.
    id String
    The provider-assigned unique ID for this managed resource.
    region String
    See Argument Reference above.
    enabled Boolean
    See Argument Reference above.
    name String
    See Argument Reference above.
    type String
    See Argument Reference above.
    description string
    The service description.
    id string
    The provider-assigned unique ID for this managed resource.
    region string
    See Argument Reference above.
    enabled boolean
    See Argument Reference above.
    name string
    See Argument Reference above.
    type string
    See Argument Reference above.
    description str
    The service description.
    id str
    The provider-assigned unique ID for this managed resource.
    region str
    See Argument Reference above.
    enabled bool
    See Argument Reference above.
    name str
    See Argument Reference above.
    type str
    See Argument Reference above.
    description String
    The service description.
    id String
    The provider-assigned unique ID for this managed resource.
    region String
    See Argument Reference above.
    enabled Boolean
    See Argument Reference above.
    name String
    See Argument Reference above.
    type String
    See Argument Reference above.

    Package Details

    Repository
    OpenStack pulumi/pulumi-openstack
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the openstack Terraform Provider.
    openstack logo
    OpenStack v3.15.1 published on Thursday, Feb 1, 2024 by Pulumi