1. Packages
  2. Googleworkspace Provider
  3. API Docs
  4. getDomain
googleworkspace 0.7.0 published on Wednesday, Jan 15, 2025 by hashicorp

googleworkspace.getDomain

Explore with Pulumi AI

googleworkspace logo
googleworkspace 0.7.0 published on Wednesday, Jan 15, 2025 by hashicorp

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as googleworkspace from "@pulumi/googleworkspace";
    
    const example = googleworkspace.getDomain({
        domainName: "example.com",
    });
    export const domainVerified = example.then(example => example.verified);
    
    import pulumi
    import pulumi_googleworkspace as googleworkspace
    
    example = googleworkspace.get_domain(domain_name="example.com")
    pulumi.export("domainVerified", example.verified)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/googleworkspace/googleworkspace"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := googleworkspace.LookupDomain(ctx, &googleworkspace.LookupDomainArgs{
    			DomainName: "example.com",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("domainVerified", example.Verified)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Googleworkspace = Pulumi.Googleworkspace;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Googleworkspace.GetDomain.Invoke(new()
        {
            DomainName = "example.com",
        });
    
        return new Dictionary<string, object?>
        {
            ["domainVerified"] = example.Apply(getDomainResult => getDomainResult.Verified),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.googleworkspace.GoogleworkspaceFunctions;
    import com.pulumi.googleworkspace.inputs.GetDomainArgs;
    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 example = GoogleworkspaceFunctions.getDomain(GetDomainArgs.builder()
                .domainName("example.com")
                .build());
    
            ctx.export("domainVerified", example.applyValue(getDomainResult -> getDomainResult.verified()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: googleworkspace:getDomain
          arguments:
            domainName: example.com
    outputs:
      domainVerified: ${example.verified}
    

    Using getDomain

    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 getDomain(args: GetDomainArgs, opts?: InvokeOptions): Promise<GetDomainResult>
    function getDomainOutput(args: GetDomainOutputArgs, opts?: InvokeOptions): Output<GetDomainResult>
    def get_domain(domain_name: Optional[str] = None,
                   opts: Optional[InvokeOptions] = None) -> GetDomainResult
    def get_domain_output(domain_name: Optional[pulumi.Input[str]] = None,
                   opts: Optional[InvokeOptions] = None) -> Output[GetDomainResult]
    func LookupDomain(ctx *Context, args *LookupDomainArgs, opts ...InvokeOption) (*LookupDomainResult, error)
    func LookupDomainOutput(ctx *Context, args *LookupDomainOutputArgs, opts ...InvokeOption) LookupDomainResultOutput

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

    public static class GetDomain 
    {
        public static Task<GetDomainResult> InvokeAsync(GetDomainArgs args, InvokeOptions? opts = null)
        public static Output<GetDomainResult> Invoke(GetDomainInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDomainResult> getDomain(GetDomainArgs args, InvokeOptions options)
    public static Output<GetDomainResult> getDomain(GetDomainArgs args, InvokeOptions options)
    
    fn::invoke:
      function: googleworkspace:index/getDomain:getDomain
      arguments:
        # arguments dictionary

    The following arguments are supported:

    DomainName string
    The domain name of the customer.
    DomainName string
    The domain name of the customer.
    domainName String
    The domain name of the customer.
    domainName string
    The domain name of the customer.
    domain_name str
    The domain name of the customer.
    domainName String
    The domain name of the customer.

    getDomain Result

    The following output properties are available:

    CreationTime double
    Creation time of the domain. Expressed in Unix time format.
    DomainAliases List<string>
    asps.list of domain alias objects.
    DomainName string
    The domain name of the customer.
    Etag string
    ETag of the resource.
    Id string
    The ID of this resource.
    IsPrimary bool
    Indicates if the domain is a primary domain.
    Verified bool
    Indicates the verification state of a domain.
    CreationTime float64
    Creation time of the domain. Expressed in Unix time format.
    DomainAliases []string
    asps.list of domain alias objects.
    DomainName string
    The domain name of the customer.
    Etag string
    ETag of the resource.
    Id string
    The ID of this resource.
    IsPrimary bool
    Indicates if the domain is a primary domain.
    Verified bool
    Indicates the verification state of a domain.
    creationTime Double
    Creation time of the domain. Expressed in Unix time format.
    domainAliases List<String>
    asps.list of domain alias objects.
    domainName String
    The domain name of the customer.
    etag String
    ETag of the resource.
    id String
    The ID of this resource.
    isPrimary Boolean
    Indicates if the domain is a primary domain.
    verified Boolean
    Indicates the verification state of a domain.
    creationTime number
    Creation time of the domain. Expressed in Unix time format.
    domainAliases string[]
    asps.list of domain alias objects.
    domainName string
    The domain name of the customer.
    etag string
    ETag of the resource.
    id string
    The ID of this resource.
    isPrimary boolean
    Indicates if the domain is a primary domain.
    verified boolean
    Indicates the verification state of a domain.
    creation_time float
    Creation time of the domain. Expressed in Unix time format.
    domain_aliases Sequence[str]
    asps.list of domain alias objects.
    domain_name str
    The domain name of the customer.
    etag str
    ETag of the resource.
    id str
    The ID of this resource.
    is_primary bool
    Indicates if the domain is a primary domain.
    verified bool
    Indicates the verification state of a domain.
    creationTime Number
    Creation time of the domain. Expressed in Unix time format.
    domainAliases List<String>
    asps.list of domain alias objects.
    domainName String
    The domain name of the customer.
    etag String
    ETag of the resource.
    id String
    The ID of this resource.
    isPrimary Boolean
    Indicates if the domain is a primary domain.
    verified Boolean
    Indicates the verification state of a domain.

    Package Details

    Repository
    googleworkspace hashicorp/terraform-provider-googleworkspace
    License
    Notes
    This Pulumi package is based on the googleworkspace Terraform Provider.
    googleworkspace logo
    googleworkspace 0.7.0 published on Wednesday, Jan 15, 2025 by hashicorp