1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. saasruntime
  5. UnitKind
Google Cloud v9.0.0 published on Thursday, Sep 18, 2025 by Pulumi

gcp.saasruntime.UnitKind

Explore with Pulumi AI

gcp logo
Google Cloud v9.0.0 published on Thursday, Sep 18, 2025 by Pulumi

    A UnitKind serves as a template or type definition for a group of Units. Units that belong to the same UnitKind are managed together, follow the same release model, and are typically updated together through rollouts.

    Example Usage

    Saas Runtime Unit Kind Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const exampleSaas = new gcp.saasruntime.SaaS("example_saas", {
        saasId: "example-saas",
        location: "global",
        locations: [{
            name: "us-central1",
        }],
    });
    const clusterUnitKind = new gcp.saasruntime.UnitKind("cluster_unit_kind", {
        location: "global",
        unitKindId: "cluster-unitkind",
        saas: exampleSaas.id,
    });
    const example = new gcp.saasruntime.UnitKind("example", {
        location: "global",
        unitKindId: "app-unitkind",
        saas: exampleSaas.id,
        dependencies: [{
            unitKind: clusterUnitKind.id,
            alias: "cluster",
        }],
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    example_saas = gcp.saasruntime.SaaS("example_saas",
        saas_id="example-saas",
        location="global",
        locations=[{
            "name": "us-central1",
        }])
    cluster_unit_kind = gcp.saasruntime.UnitKind("cluster_unit_kind",
        location="global",
        unit_kind_id="cluster-unitkind",
        saas=example_saas.id)
    example = gcp.saasruntime.UnitKind("example",
        location="global",
        unit_kind_id="app-unitkind",
        saas=example_saas.id,
        dependencies=[{
            "unit_kind": cluster_unit_kind.id,
            "alias": "cluster",
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/saasruntime"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		exampleSaas, err := saasruntime.NewSaaS(ctx, "example_saas", &saasruntime.SaaSArgs{
    			SaasId:   pulumi.String("example-saas"),
    			Location: pulumi.String("global"),
    			Locations: saasruntime.SaaSLocationArray{
    				&saasruntime.SaaSLocationArgs{
    					Name: pulumi.String("us-central1"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		clusterUnitKind, err := saasruntime.NewUnitKind(ctx, "cluster_unit_kind", &saasruntime.UnitKindArgs{
    			Location:   pulumi.String("global"),
    			UnitKindId: pulumi.String("cluster-unitkind"),
    			Saas:       exampleSaas.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = saasruntime.NewUnitKind(ctx, "example", &saasruntime.UnitKindArgs{
    			Location:   pulumi.String("global"),
    			UnitKindId: pulumi.String("app-unitkind"),
    			Saas:       exampleSaas.ID(),
    			Dependencies: saasruntime.UnitKindDependencyArray{
    				&saasruntime.UnitKindDependencyArgs{
    					UnitKind: clusterUnitKind.ID(),
    					Alias:    pulumi.String("cluster"),
    				},
    			},
    		})
    		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 exampleSaas = new Gcp.SaaSRuntime.SaaS("example_saas", new()
        {
            SaasId = "example-saas",
            Location = "global",
            Locations = new[]
            {
                new Gcp.SaaSRuntime.Inputs.SaaSLocationArgs
                {
                    Name = "us-central1",
                },
            },
        });
    
        var clusterUnitKind = new Gcp.SaaSRuntime.UnitKind("cluster_unit_kind", new()
        {
            Location = "global",
            UnitKindId = "cluster-unitkind",
            Saas = exampleSaas.Id,
        });
    
        var example = new Gcp.SaaSRuntime.UnitKind("example", new()
        {
            Location = "global",
            UnitKindId = "app-unitkind",
            Saas = exampleSaas.Id,
            Dependencies = new[]
            {
                new Gcp.SaaSRuntime.Inputs.UnitKindDependencyArgs
                {
                    UnitKind = clusterUnitKind.Id,
                    Alias = "cluster",
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.saasruntime.SaaS;
    import com.pulumi.gcp.saasruntime.SaaSArgs;
    import com.pulumi.gcp.saasruntime.inputs.SaaSLocationArgs;
    import com.pulumi.gcp.saasruntime.UnitKind;
    import com.pulumi.gcp.saasruntime.UnitKindArgs;
    import com.pulumi.gcp.saasruntime.inputs.UnitKindDependencyArgs;
    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) {
            var exampleSaas = new SaaS("exampleSaas", SaaSArgs.builder()
                .saasId("example-saas")
                .location("global")
                .locations(SaaSLocationArgs.builder()
                    .name("us-central1")
                    .build())
                .build());
    
            var clusterUnitKind = new UnitKind("clusterUnitKind", UnitKindArgs.builder()
                .location("global")
                .unitKindId("cluster-unitkind")
                .saas(exampleSaas.id())
                .build());
    
            var example = new UnitKind("example", UnitKindArgs.builder()
                .location("global")
                .unitKindId("app-unitkind")
                .saas(exampleSaas.id())
                .dependencies(UnitKindDependencyArgs.builder()
                    .unitKind(clusterUnitKind.id())
                    .alias("cluster")
                    .build())
                .build());
    
        }
    }
    
    resources:
      exampleSaas:
        type: gcp:saasruntime:SaaS
        name: example_saas
        properties:
          saasId: example-saas
          location: global
          locations:
            - name: us-central1
      clusterUnitKind:
        type: gcp:saasruntime:UnitKind
        name: cluster_unit_kind
        properties:
          location: global
          unitKindId: cluster-unitkind
          saas: ${exampleSaas.id}
      example:
        type: gcp:saasruntime:UnitKind
        properties:
          location: global
          unitKindId: app-unitkind
          saas: ${exampleSaas.id}
          dependencies:
            - unitKind: ${clusterUnitKind.id}
              alias: cluster
    

    Create UnitKind Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new UnitKind(name: string, args: UnitKindArgs, opts?: CustomResourceOptions);
    @overload
    def UnitKind(resource_name: str,
                 args: UnitKindArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def UnitKind(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 location: Optional[str] = None,
                 saas: Optional[str] = None,
                 unit_kind_id: Optional[str] = None,
                 annotations: Optional[Mapping[str, str]] = None,
                 dependencies: Optional[Sequence[UnitKindDependencyArgs]] = None,
                 input_variable_mappings: Optional[Sequence[UnitKindInputVariableMappingArgs]] = None,
                 labels: Optional[Mapping[str, str]] = None,
                 output_variable_mappings: Optional[Sequence[UnitKindOutputVariableMappingArgs]] = None,
                 project: Optional[str] = None)
    func NewUnitKind(ctx *Context, name string, args UnitKindArgs, opts ...ResourceOption) (*UnitKind, error)
    public UnitKind(string name, UnitKindArgs args, CustomResourceOptions? opts = null)
    public UnitKind(String name, UnitKindArgs args)
    public UnitKind(String name, UnitKindArgs args, CustomResourceOptions options)
    
    type: gcp:saasruntime:UnitKind
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args UnitKindArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args UnitKindArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args UnitKindArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UnitKindArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UnitKindArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var unitKindResource = new Gcp.SaaSRuntime.UnitKind("unitKindResource", new()
    {
        Location = "string",
        Saas = "string",
        UnitKindId = "string",
        Annotations = 
        {
            { "string", "string" },
        },
        Dependencies = new[]
        {
            new Gcp.SaaSRuntime.Inputs.UnitKindDependencyArgs
            {
                Alias = "string",
                UnitKind = "string",
            },
        },
        InputVariableMappings = new[]
        {
            new Gcp.SaaSRuntime.Inputs.UnitKindInputVariableMappingArgs
            {
                Variable = "string",
                From = new Gcp.SaaSRuntime.Inputs.UnitKindInputVariableMappingFromArgs
                {
                    Dependency = "string",
                    OutputVariable = "string",
                },
                To = new Gcp.SaaSRuntime.Inputs.UnitKindInputVariableMappingToArgs
                {
                    Dependency = "string",
                    InputVariable = "string",
                    IgnoreForLookup = false,
                },
            },
        },
        Labels = 
        {
            { "string", "string" },
        },
        OutputVariableMappings = new[]
        {
            new Gcp.SaaSRuntime.Inputs.UnitKindOutputVariableMappingArgs
            {
                Variable = "string",
                From = new Gcp.SaaSRuntime.Inputs.UnitKindOutputVariableMappingFromArgs
                {
                    Dependency = "string",
                    OutputVariable = "string",
                },
                To = new Gcp.SaaSRuntime.Inputs.UnitKindOutputVariableMappingToArgs
                {
                    Dependency = "string",
                    InputVariable = "string",
                    IgnoreForLookup = false,
                },
            },
        },
        Project = "string",
    });
    
    example, err := saasruntime.NewUnitKind(ctx, "unitKindResource", &saasruntime.UnitKindArgs{
    	Location:   pulumi.String("string"),
    	Saas:       pulumi.String("string"),
    	UnitKindId: pulumi.String("string"),
    	Annotations: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Dependencies: saasruntime.UnitKindDependencyArray{
    		&saasruntime.UnitKindDependencyArgs{
    			Alias:    pulumi.String("string"),
    			UnitKind: pulumi.String("string"),
    		},
    	},
    	InputVariableMappings: saasruntime.UnitKindInputVariableMappingArray{
    		&saasruntime.UnitKindInputVariableMappingArgs{
    			Variable: pulumi.String("string"),
    			From: &saasruntime.UnitKindInputVariableMappingFromArgs{
    				Dependency:     pulumi.String("string"),
    				OutputVariable: pulumi.String("string"),
    			},
    			To: &saasruntime.UnitKindInputVariableMappingToArgs{
    				Dependency:      pulumi.String("string"),
    				InputVariable:   pulumi.String("string"),
    				IgnoreForLookup: pulumi.Bool(false),
    			},
    		},
    	},
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	OutputVariableMappings: saasruntime.UnitKindOutputVariableMappingArray{
    		&saasruntime.UnitKindOutputVariableMappingArgs{
    			Variable: pulumi.String("string"),
    			From: &saasruntime.UnitKindOutputVariableMappingFromArgs{
    				Dependency:     pulumi.String("string"),
    				OutputVariable: pulumi.String("string"),
    			},
    			To: &saasruntime.UnitKindOutputVariableMappingToArgs{
    				Dependency:      pulumi.String("string"),
    				InputVariable:   pulumi.String("string"),
    				IgnoreForLookup: pulumi.Bool(false),
    			},
    		},
    	},
    	Project: pulumi.String("string"),
    })
    
    var unitKindResource = new UnitKind("unitKindResource", UnitKindArgs.builder()
        .location("string")
        .saas("string")
        .unitKindId("string")
        .annotations(Map.of("string", "string"))
        .dependencies(UnitKindDependencyArgs.builder()
            .alias("string")
            .unitKind("string")
            .build())
        .inputVariableMappings(UnitKindInputVariableMappingArgs.builder()
            .variable("string")
            .from(UnitKindInputVariableMappingFromArgs.builder()
                .dependency("string")
                .outputVariable("string")
                .build())
            .to(UnitKindInputVariableMappingToArgs.builder()
                .dependency("string")
                .inputVariable("string")
                .ignoreForLookup(false)
                .build())
            .build())
        .labels(Map.of("string", "string"))
        .outputVariableMappings(UnitKindOutputVariableMappingArgs.builder()
            .variable("string")
            .from(UnitKindOutputVariableMappingFromArgs.builder()
                .dependency("string")
                .outputVariable("string")
                .build())
            .to(UnitKindOutputVariableMappingToArgs.builder()
                .dependency("string")
                .inputVariable("string")
                .ignoreForLookup(false)
                .build())
            .build())
        .project("string")
        .build());
    
    unit_kind_resource = gcp.saasruntime.UnitKind("unitKindResource",
        location="string",
        saas="string",
        unit_kind_id="string",
        annotations={
            "string": "string",
        },
        dependencies=[{
            "alias": "string",
            "unit_kind": "string",
        }],
        input_variable_mappings=[{
            "variable": "string",
            "from_": {
                "dependency": "string",
                "output_variable": "string",
            },
            "to": {
                "dependency": "string",
                "input_variable": "string",
                "ignore_for_lookup": False,
            },
        }],
        labels={
            "string": "string",
        },
        output_variable_mappings=[{
            "variable": "string",
            "from_": {
                "dependency": "string",
                "output_variable": "string",
            },
            "to": {
                "dependency": "string",
                "input_variable": "string",
                "ignore_for_lookup": False,
            },
        }],
        project="string")
    
    const unitKindResource = new gcp.saasruntime.UnitKind("unitKindResource", {
        location: "string",
        saas: "string",
        unitKindId: "string",
        annotations: {
            string: "string",
        },
        dependencies: [{
            alias: "string",
            unitKind: "string",
        }],
        inputVariableMappings: [{
            variable: "string",
            from: {
                dependency: "string",
                outputVariable: "string",
            },
            to: {
                dependency: "string",
                inputVariable: "string",
                ignoreForLookup: false,
            },
        }],
        labels: {
            string: "string",
        },
        outputVariableMappings: [{
            variable: "string",
            from: {
                dependency: "string",
                outputVariable: "string",
            },
            to: {
                dependency: "string",
                inputVariable: "string",
                ignoreForLookup: false,
            },
        }],
        project: "string",
    });
    
    type: gcp:saasruntime:UnitKind
    properties:
        annotations:
            string: string
        dependencies:
            - alias: string
              unitKind: string
        inputVariableMappings:
            - from:
                dependency: string
                outputVariable: string
              to:
                dependency: string
                ignoreForLookup: false
                inputVariable: string
              variable: string
        labels:
            string: string
        location: string
        outputVariableMappings:
            - from:
                dependency: string
                outputVariable: string
              to:
                dependency: string
                ignoreForLookup: false
                inputVariable: string
              variable: string
        project: string
        saas: string
        unitKindId: string
    

    UnitKind Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The UnitKind resource accepts the following input properties:

    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Saas string
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    UnitKindId string
    The ID value for the new unit kind.
    Annotations Dictionary<string, string>
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    Dependencies List<UnitKindDependency>
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    InputVariableMappings List<UnitKindInputVariableMapping>
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    Labels Dictionary<string, string>
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    OutputVariableMappings List<UnitKindOutputVariableMapping>
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Saas string
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    UnitKindId string
    The ID value for the new unit kind.
    Annotations map[string]string
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    Dependencies []UnitKindDependencyArgs
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    InputVariableMappings []UnitKindInputVariableMappingArgs
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    Labels map[string]string
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    OutputVariableMappings []UnitKindOutputVariableMappingArgs
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    saas String
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    unitKindId String
    The ID value for the new unit kind.
    annotations Map<String,String>
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    dependencies List<UnitKindDependency>
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    inputVariableMappings List<UnitKindInputVariableMapping>
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    labels Map<String,String>
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    outputVariableMappings List<UnitKindOutputVariableMapping>
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    saas string
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    unitKindId string
    The ID value for the new unit kind.
    annotations {[key: string]: string}
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    dependencies UnitKindDependency[]
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    inputVariableMappings UnitKindInputVariableMapping[]
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    labels {[key: string]: string}
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    outputVariableMappings UnitKindOutputVariableMapping[]
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    saas str
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    unit_kind_id str
    The ID value for the new unit kind.
    annotations Mapping[str, str]
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    dependencies Sequence[UnitKindDependencyArgs]
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    input_variable_mappings Sequence[UnitKindInputVariableMappingArgs]
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    labels Mapping[str, str]
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    output_variable_mappings Sequence[UnitKindOutputVariableMappingArgs]
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    saas String
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    unitKindId String
    The ID value for the new unit kind.
    annotations Map<String>
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    dependencies List<Property Map>
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    inputVariableMappings List<Property Map>
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    labels Map<String>
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    outputVariableMappings List<Property Map>
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the UnitKind resource produces the following output properties:

    CreateTime string
    The timestamp when the resource was created.
    EffectiveAnnotations Dictionary<string, string>
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Etag string
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Uid string
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    UpdateTime string
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.
    CreateTime string
    The timestamp when the resource was created.
    EffectiveAnnotations map[string]string
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Etag string
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Uid string
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    UpdateTime string
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.
    createTime String
    The timestamp when the resource was created.
    effectiveAnnotations Map<String,String>
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag String
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid String
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    updateTime String
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.
    createTime string
    The timestamp when the resource was created.
    effectiveAnnotations {[key: string]: string}
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag string
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid string
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    updateTime string
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.
    create_time str
    The timestamp when the resource was created.
    effective_annotations Mapping[str, str]
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag str
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid str
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    update_time str
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.
    createTime String
    The timestamp when the resource was created.
    effectiveAnnotations Map<String>
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag String
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid String
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    updateTime String
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.

    Look up Existing UnitKind Resource

    Get an existing UnitKind resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: UnitKindState, opts?: CustomResourceOptions): UnitKind
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            annotations: Optional[Mapping[str, str]] = None,
            create_time: Optional[str] = None,
            dependencies: Optional[Sequence[UnitKindDependencyArgs]] = None,
            effective_annotations: Optional[Mapping[str, str]] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            etag: Optional[str] = None,
            input_variable_mappings: Optional[Sequence[UnitKindInputVariableMappingArgs]] = None,
            labels: Optional[Mapping[str, str]] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            output_variable_mappings: Optional[Sequence[UnitKindOutputVariableMappingArgs]] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            saas: Optional[str] = None,
            uid: Optional[str] = None,
            unit_kind_id: Optional[str] = None,
            update_time: Optional[str] = None) -> UnitKind
    func GetUnitKind(ctx *Context, name string, id IDInput, state *UnitKindState, opts ...ResourceOption) (*UnitKind, error)
    public static UnitKind Get(string name, Input<string> id, UnitKindState? state, CustomResourceOptions? opts = null)
    public static UnitKind get(String name, Output<String> id, UnitKindState state, CustomResourceOptions options)
    resources:  _:    type: gcp:saasruntime:UnitKind    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Annotations Dictionary<string, string>
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    CreateTime string
    The timestamp when the resource was created.
    Dependencies List<UnitKindDependency>
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    EffectiveAnnotations Dictionary<string, string>
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Etag string
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    InputVariableMappings List<UnitKindInputVariableMapping>
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    Labels Dictionary<string, string>
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Name string
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    OutputVariableMappings List<UnitKindOutputVariableMapping>
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Saas string
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    Uid string
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    UnitKindId string
    The ID value for the new unit kind.
    UpdateTime string
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.
    Annotations map[string]string
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    CreateTime string
    The timestamp when the resource was created.
    Dependencies []UnitKindDependencyArgs
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    EffectiveAnnotations map[string]string
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Etag string
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    InputVariableMappings []UnitKindInputVariableMappingArgs
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    Labels map[string]string
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    Location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    Name string
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    OutputVariableMappings []UnitKindOutputVariableMappingArgs
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Saas string
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    Uid string
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    UnitKindId string
    The ID value for the new unit kind.
    UpdateTime string
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.
    annotations Map<String,String>
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    createTime String
    The timestamp when the resource was created.
    dependencies List<UnitKindDependency>
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    effectiveAnnotations Map<String,String>
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag String
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    inputVariableMappings List<UnitKindInputVariableMapping>
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    labels Map<String,String>
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name String
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    outputVariableMappings List<UnitKindOutputVariableMapping>
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    saas String
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    uid String
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    unitKindId String
    The ID value for the new unit kind.
    updateTime String
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.
    annotations {[key: string]: string}
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    createTime string
    The timestamp when the resource was created.
    dependencies UnitKindDependency[]
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    effectiveAnnotations {[key: string]: string}
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag string
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    inputVariableMappings UnitKindInputVariableMapping[]
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    labels {[key: string]: string}
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location string
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name string
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    outputVariableMappings UnitKindOutputVariableMapping[]
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    saas string
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    uid string
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    unitKindId string
    The ID value for the new unit kind.
    updateTime string
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.
    annotations Mapping[str, str]
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    create_time str
    The timestamp when the resource was created.
    dependencies Sequence[UnitKindDependencyArgs]
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    effective_annotations Mapping[str, str]
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag str
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    input_variable_mappings Sequence[UnitKindInputVariableMappingArgs]
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    labels Mapping[str, str]
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location str
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name str
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    output_variable_mappings Sequence[UnitKindOutputVariableMappingArgs]
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    saas str
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    uid str
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    unit_kind_id str
    The ID value for the new unit kind.
    update_time str
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.
    annotations Map<String>
    Annotations is an unstructured key-value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: https://kubernetes.io/docs/user-guide/annotations Note: This field is non-authoritative, and will only manage the annotations present in your configuration. Please refer to the field effective_annotations for all of the annotations present on the resource.
    createTime String
    The timestamp when the resource was created.
    dependencies List<Property Map>
    List of other unit kinds that this release will depend on. Dependencies will be automatically provisioned if not found. Maximum 10. Structure is documented below.
    effectiveAnnotations Map<String>
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag String
    An opaque value that uniquely identifies a version or generation of a resource. It can be used to confirm that the client and server agree on the ordering of a resource being written.
    inputVariableMappings List<Property Map>
    List of inputVariables for this release that will either be retrieved from a dependency’s outputVariables, or will be passed on to a dependency’s inputVariables. Maximum 100. Structure is documented below.
    labels Map<String>
    The labels on the resource, which can be used for categorization. similar to Kubernetes resource labels. Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.
    location String
    Resource ID segment making up resource name. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
    name String
    Identifier. The resource name (full URI of the resource) following the standard naming scheme: "projects/{project}/locations/{location}/unitKinds/{unitKind}"
    outputVariableMappings List<Property Map>
    List of outputVariables for this unit kind will be passed to this unit's outputVariables. Maximum 100. Structure is documented below.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    saas String
    A reference to the Saas that defines the product (managed service) that the producer wants to manage with SaaS Runtime. Part of the SaaS Runtime common data model. Immutable once set.
    uid String
    The unique identifier of the resource. UID is unique in the time and space for this resource within the scope of the service. It is typically generated by the server on successful creation of a resource and must not be changed. UID is used to uniquely identify resources with resource name reuses. This should be a UUID4.
    unitKindId String
    The ID value for the new unit kind.
    updateTime String
    The timestamp when the resource was last updated. Any change to the resource made by users must refresh this value. Changes to a resource made by the service should refresh this value.

    Supporting Types

    UnitKindDependency, UnitKindDependencyArgs

    Alias string
    An alias for the dependency. Used for input variable mapping.
    UnitKind string
    The unit kind of the dependency.
    Alias string
    An alias for the dependency. Used for input variable mapping.
    UnitKind string
    The unit kind of the dependency.
    alias String
    An alias for the dependency. Used for input variable mapping.
    unitKind String
    The unit kind of the dependency.
    alias string
    An alias for the dependency. Used for input variable mapping.
    unitKind string
    The unit kind of the dependency.
    alias str
    An alias for the dependency. Used for input variable mapping.
    unit_kind str
    The unit kind of the dependency.
    alias String
    An alias for the dependency. Used for input variable mapping.
    unitKind String
    The unit kind of the dependency.

    UnitKindInputVariableMapping, UnitKindInputVariableMappingArgs

    Variable string
    name of the variable
    From UnitKindInputVariableMappingFrom
    Output variables whose values will be passed on to dependencies Structure is documented below.
    To UnitKindInputVariableMappingTo
    Input variables whose values will be passed on to dependencies Structure is documented below.
    Variable string
    name of the variable
    From UnitKindInputVariableMappingFrom
    Output variables whose values will be passed on to dependencies Structure is documented below.
    To UnitKindInputVariableMappingTo
    Input variables whose values will be passed on to dependencies Structure is documented below.
    variable String
    name of the variable
    from UnitKindInputVariableMappingFrom
    Output variables whose values will be passed on to dependencies Structure is documented below.
    to UnitKindInputVariableMappingTo
    Input variables whose values will be passed on to dependencies Structure is documented below.
    variable string
    name of the variable
    from UnitKindInputVariableMappingFrom
    Output variables whose values will be passed on to dependencies Structure is documented below.
    to UnitKindInputVariableMappingTo
    Input variables whose values will be passed on to dependencies Structure is documented below.
    variable str
    name of the variable
    from_ UnitKindInputVariableMappingFrom
    Output variables whose values will be passed on to dependencies Structure is documented below.
    to UnitKindInputVariableMappingTo
    Input variables whose values will be passed on to dependencies Structure is documented below.
    variable String
    name of the variable
    from Property Map
    Output variables whose values will be passed on to dependencies Structure is documented below.
    to Property Map
    Input variables whose values will be passed on to dependencies Structure is documented below.

    UnitKindInputVariableMappingFrom, UnitKindInputVariableMappingFromArgs

    Dependency string
    Alias of the dependency that the outputVariable will pass its value to
    OutputVariable string
    Name of the outputVariable on the dependency
    Dependency string
    Alias of the dependency that the outputVariable will pass its value to
    OutputVariable string
    Name of the outputVariable on the dependency
    dependency String
    Alias of the dependency that the outputVariable will pass its value to
    outputVariable String
    Name of the outputVariable on the dependency
    dependency string
    Alias of the dependency that the outputVariable will pass its value to
    outputVariable string
    Name of the outputVariable on the dependency
    dependency str
    Alias of the dependency that the outputVariable will pass its value to
    output_variable str
    Name of the outputVariable on the dependency
    dependency String
    Alias of the dependency that the outputVariable will pass its value to
    outputVariable String
    Name of the outputVariable on the dependency

    UnitKindInputVariableMappingTo, UnitKindInputVariableMappingToArgs

    Dependency string
    Alias of the dependency that the inputVariable will pass its value to
    InputVariable string
    Name of the inputVariable on the dependency
    IgnoreForLookup bool
    Tells SaaS Runtime if this mapping should be used during lookup or not
    Dependency string
    Alias of the dependency that the inputVariable will pass its value to
    InputVariable string
    Name of the inputVariable on the dependency
    IgnoreForLookup bool
    Tells SaaS Runtime if this mapping should be used during lookup or not
    dependency String
    Alias of the dependency that the inputVariable will pass its value to
    inputVariable String
    Name of the inputVariable on the dependency
    ignoreForLookup Boolean
    Tells SaaS Runtime if this mapping should be used during lookup or not
    dependency string
    Alias of the dependency that the inputVariable will pass its value to
    inputVariable string
    Name of the inputVariable on the dependency
    ignoreForLookup boolean
    Tells SaaS Runtime if this mapping should be used during lookup or not
    dependency str
    Alias of the dependency that the inputVariable will pass its value to
    input_variable str
    Name of the inputVariable on the dependency
    ignore_for_lookup bool
    Tells SaaS Runtime if this mapping should be used during lookup or not
    dependency String
    Alias of the dependency that the inputVariable will pass its value to
    inputVariable String
    Name of the inputVariable on the dependency
    ignoreForLookup Boolean
    Tells SaaS Runtime if this mapping should be used during lookup or not

    UnitKindOutputVariableMapping, UnitKindOutputVariableMappingArgs

    Variable string
    name of the variable
    From UnitKindOutputVariableMappingFrom
    Output variables whose values will be passed on to dependencies Structure is documented below.
    To UnitKindOutputVariableMappingTo
    Input variables whose values will be passed on to dependencies Structure is documented below.
    Variable string
    name of the variable
    From UnitKindOutputVariableMappingFrom
    Output variables whose values will be passed on to dependencies Structure is documented below.
    To UnitKindOutputVariableMappingTo
    Input variables whose values will be passed on to dependencies Structure is documented below.
    variable String
    name of the variable
    from UnitKindOutputVariableMappingFrom
    Output variables whose values will be passed on to dependencies Structure is documented below.
    to UnitKindOutputVariableMappingTo
    Input variables whose values will be passed on to dependencies Structure is documented below.
    variable string
    name of the variable
    from UnitKindOutputVariableMappingFrom
    Output variables whose values will be passed on to dependencies Structure is documented below.
    to UnitKindOutputVariableMappingTo
    Input variables whose values will be passed on to dependencies Structure is documented below.
    variable str
    name of the variable
    from_ UnitKindOutputVariableMappingFrom
    Output variables whose values will be passed on to dependencies Structure is documented below.
    to UnitKindOutputVariableMappingTo
    Input variables whose values will be passed on to dependencies Structure is documented below.
    variable String
    name of the variable
    from Property Map
    Output variables whose values will be passed on to dependencies Structure is documented below.
    to Property Map
    Input variables whose values will be passed on to dependencies Structure is documented below.

    UnitKindOutputVariableMappingFrom, UnitKindOutputVariableMappingFromArgs

    Dependency string
    Alias of the dependency that the outputVariable will pass its value to
    OutputVariable string
    Name of the outputVariable on the dependency
    Dependency string
    Alias of the dependency that the outputVariable will pass its value to
    OutputVariable string
    Name of the outputVariable on the dependency
    dependency String
    Alias of the dependency that the outputVariable will pass its value to
    outputVariable String
    Name of the outputVariable on the dependency
    dependency string
    Alias of the dependency that the outputVariable will pass its value to
    outputVariable string
    Name of the outputVariable on the dependency
    dependency str
    Alias of the dependency that the outputVariable will pass its value to
    output_variable str
    Name of the outputVariable on the dependency
    dependency String
    Alias of the dependency that the outputVariable will pass its value to
    outputVariable String
    Name of the outputVariable on the dependency

    UnitKindOutputVariableMappingTo, UnitKindOutputVariableMappingToArgs

    Dependency string
    Alias of the dependency that the inputVariable will pass its value to
    InputVariable string
    Name of the inputVariable on the dependency
    IgnoreForLookup bool
    Tells SaaS Runtime if this mapping should be used during lookup or not
    Dependency string
    Alias of the dependency that the inputVariable will pass its value to
    InputVariable string
    Name of the inputVariable on the dependency
    IgnoreForLookup bool
    Tells SaaS Runtime if this mapping should be used during lookup or not
    dependency String
    Alias of the dependency that the inputVariable will pass its value to
    inputVariable String
    Name of the inputVariable on the dependency
    ignoreForLookup Boolean
    Tells SaaS Runtime if this mapping should be used during lookup or not
    dependency string
    Alias of the dependency that the inputVariable will pass its value to
    inputVariable string
    Name of the inputVariable on the dependency
    ignoreForLookup boolean
    Tells SaaS Runtime if this mapping should be used during lookup or not
    dependency str
    Alias of the dependency that the inputVariable will pass its value to
    input_variable str
    Name of the inputVariable on the dependency
    ignore_for_lookup bool
    Tells SaaS Runtime if this mapping should be used during lookup or not
    dependency String
    Alias of the dependency that the inputVariable will pass its value to
    inputVariable String
    Name of the inputVariable on the dependency
    ignoreForLookup Boolean
    Tells SaaS Runtime if this mapping should be used during lookup or not

    Import

    UnitKind can be imported using any of these accepted formats:

    • projects/{{project}}/locations/{{location}}/unitKinds/{{unit_kind_id}}

    • {{project}}/{{location}}/{{unit_kind_id}}

    • {{location}}/{{unit_kind_id}}

    When using the pulumi import command, UnitKind can be imported using one of the formats above. For example:

    $ pulumi import gcp:saasruntime/unitKind:UnitKind default projects/{{project}}/locations/{{location}}/unitKinds/{{unit_kind_id}}
    
    $ pulumi import gcp:saasruntime/unitKind:UnitKind default {{project}}/{{location}}/{{unit_kind_id}}
    
    $ pulumi import gcp:saasruntime/unitKind:UnitKind default {{location}}/{{unit_kind_id}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.
    gcp logo
    Google Cloud v9.0.0 published on Thursday, Sep 18, 2025 by Pulumi