gcp.saasruntime.UnitKind
Explore with Pulumi AI
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.
- Unit
Kind stringId - 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<Unit
Kind Dependency> - 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 List<UnitMappings Kind Input Variable Mapping> - 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. - Output
Variable List<UnitMappings Kind Output Variable Mapping> - 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.
- Unit
Kind stringId - 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
[]Unit
Kind Dependency Args - 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 []UnitMappings Kind Input Variable Mapping Args - 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. - Output
Variable []UnitMappings Kind Output Variable Mapping Args - 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.
- unit
Kind StringId - 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<Unit
Kind Dependency> - 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 List<UnitMappings Kind Input Variable Mapping> - 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. - output
Variable List<UnitMappings Kind Output Variable Mapping> - 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.
- unit
Kind stringId - 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
Unit
Kind Dependency[] - 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 UnitMappings Kind Input Variable Mapping[] - 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. - output
Variable UnitMappings Kind Output Variable Mapping[] - 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_ strid - 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[Unit
Kind Dependency Args] - 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_ Sequence[Unitmappings Kind Input Variable Mapping Args] - 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_ Sequence[Unitmappings Kind Output Variable Mapping Args] - 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.
- unit
Kind StringId - 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.
- input
Variable List<Property Map>Mappings - 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. - output
Variable List<Property Map>Mappings - 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:
- Create
Time string - The timestamp when the resource was created.
- Effective
Annotations Dictionary<string, string> - Effective
Labels 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}"
- Pulumi
Labels 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.
- Update
Time 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 string - The timestamp when the resource was created.
- Effective
Annotations map[string]string - Effective
Labels 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}"
- Pulumi
Labels 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.
- Update
Time 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 String - The timestamp when the resource was created.
- effective
Annotations Map<String,String> - effective
Labels 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}"
- pulumi
Labels 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.
- update
Time 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 string - The timestamp when the resource was created.
- effective
Annotations {[key: string]: string} - effective
Labels {[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}"
- pulumi
Labels {[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.
- update
Time 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.
- create
Time String - The timestamp when the resource was created.
- effective
Annotations Map<String> - effective
Labels 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}"
- pulumi
Labels 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.
- update
Time 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.
- 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. - Create
Time string - The timestamp when the resource was created.
- Dependencies
List<Unit
Kind Dependency> - 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 Dictionary<string, string> - Effective
Labels 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.
- Input
Variable List<UnitMappings Kind Input Variable Mapping> - 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}"
- Output
Variable List<UnitMappings Kind Output Variable Mapping> - 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.
- Pulumi
Labels 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.
- Unit
Kind stringId - The ID value for the new unit kind.
- Update
Time 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. - Create
Time string - The timestamp when the resource was created.
- Dependencies
[]Unit
Kind Dependency Args - 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 map[string]string - Effective
Labels 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.
- Input
Variable []UnitMappings Kind Input Variable Mapping Args - 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}"
- Output
Variable []UnitMappings Kind Output Variable Mapping Args - 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.
- Pulumi
Labels 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.
- Unit
Kind stringId - The ID value for the new unit kind.
- Update
Time 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. - create
Time String - The timestamp when the resource was created.
- dependencies
List<Unit
Kind Dependency> - 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 Map<String,String> - effective
Labels 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.
- input
Variable List<UnitMappings Kind Input Variable Mapping> - 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}"
- output
Variable List<UnitMappings Kind Output Variable Mapping> - 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.
- pulumi
Labels 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.
- unit
Kind StringId - The ID value for the new unit kind.
- update
Time 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. - create
Time string - The timestamp when the resource was created.
- dependencies
Unit
Kind Dependency[] - 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 {[key: string]: string} - effective
Labels {[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.
- input
Variable UnitMappings Kind Input Variable Mapping[] - 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}"
- output
Variable UnitMappings Kind Output Variable Mapping[] - 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.
- pulumi
Labels {[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.
- unit
Kind stringId - The ID value for the new unit kind.
- update
Time 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[Unit
Kind Dependency Args] - 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_ Sequence[Unitmappings Kind Input Variable Mapping Args] - 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_ Sequence[Unitmappings Kind Output Variable Mapping Args] - 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_ strid - 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. - create
Time 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.
- effective
Annotations Map<String> - effective
Labels 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.
- input
Variable List<Property Map>Mappings - 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}"
- output
Variable List<Property Map>Mappings - 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.
- pulumi
Labels 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.
- unit
Kind StringId - The ID value for the new unit kind.
- update
Time 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
UnitKindInputVariableMapping, UnitKindInputVariableMappingArgs
- Variable string
- name of the variable
- From
Unit
Kind Input Variable Mapping From - Output variables whose values will be passed on to dependencies Structure is documented below.
- To
Unit
Kind Input Variable Mapping To - Input variables whose values will be passed on to dependencies Structure is documented below.
- Variable string
- name of the variable
- From
Unit
Kind Input Variable Mapping From - Output variables whose values will be passed on to dependencies Structure is documented below.
- To
Unit
Kind Input Variable Mapping To - Input variables whose values will be passed on to dependencies Structure is documented below.
- variable String
- name of the variable
- from
Unit
Kind Input Variable Mapping From - Output variables whose values will be passed on to dependencies Structure is documented below.
- to
Unit
Kind Input Variable Mapping To - Input variables whose values will be passed on to dependencies Structure is documented below.
- variable string
- name of the variable
- from
Unit
Kind Input Variable Mapping From - Output variables whose values will be passed on to dependencies Structure is documented below.
- to
Unit
Kind Input Variable Mapping To - Input variables whose values will be passed on to dependencies Structure is documented below.
- variable str
- name of the variable
- from_
Unit
Kind Input Variable Mapping From - Output variables whose values will be passed on to dependencies Structure is documented below.
- to
Unit
Kind Input Variable Mapping To - 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
- Output
Variable string - Name of the outputVariable on the dependency
- Dependency string
- Alias of the dependency that the outputVariable will pass its value to
- Output
Variable string - Name of the outputVariable on the dependency
- dependency String
- Alias of the dependency that the outputVariable will pass its value to
- output
Variable String - Name of the outputVariable on the dependency
- dependency string
- Alias of the dependency that the outputVariable will pass its value to
- output
Variable 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
- output
Variable String - Name of the outputVariable on the dependency
UnitKindInputVariableMappingTo, UnitKindInputVariableMappingToArgs
- Dependency string
- Alias of the dependency that the inputVariable will pass its value to
- Input
Variable string - Name of the inputVariable on the dependency
- Ignore
For boolLookup - 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
- Input
Variable string - Name of the inputVariable on the dependency
- Ignore
For boolLookup - 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
- input
Variable String - Name of the inputVariable on the dependency
- ignore
For BooleanLookup - 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
- input
Variable string - Name of the inputVariable on the dependency
- ignore
For booleanLookup - 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_ boollookup - 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
- input
Variable String - Name of the inputVariable on the dependency
- ignore
For BooleanLookup - Tells SaaS Runtime if this mapping should be used during lookup or not
UnitKindOutputVariableMapping, UnitKindOutputVariableMappingArgs
- Variable string
- name of the variable
- From
Unit
Kind Output Variable Mapping From - Output variables whose values will be passed on to dependencies Structure is documented below.
- To
Unit
Kind Output Variable Mapping To - Input variables whose values will be passed on to dependencies Structure is documented below.
- Variable string
- name of the variable
- From
Unit
Kind Output Variable Mapping From - Output variables whose values will be passed on to dependencies Structure is documented below.
- To
Unit
Kind Output Variable Mapping To - Input variables whose values will be passed on to dependencies Structure is documented below.
- variable String
- name of the variable
- from
Unit
Kind Output Variable Mapping From - Output variables whose values will be passed on to dependencies Structure is documented below.
- to
Unit
Kind Output Variable Mapping To - Input variables whose values will be passed on to dependencies Structure is documented below.
- variable string
- name of the variable
- from
Unit
Kind Output Variable Mapping From - Output variables whose values will be passed on to dependencies Structure is documented below.
- to
Unit
Kind Output Variable Mapping To - Input variables whose values will be passed on to dependencies Structure is documented below.
- variable str
- name of the variable
- from_
Unit
Kind Output Variable Mapping From - Output variables whose values will be passed on to dependencies Structure is documented below.
- to
Unit
Kind Output Variable Mapping To - 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
- Output
Variable string - Name of the outputVariable on the dependency
- Dependency string
- Alias of the dependency that the outputVariable will pass its value to
- Output
Variable string - Name of the outputVariable on the dependency
- dependency String
- Alias of the dependency that the outputVariable will pass its value to
- output
Variable String - Name of the outputVariable on the dependency
- dependency string
- Alias of the dependency that the outputVariable will pass its value to
- output
Variable 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
- output
Variable String - Name of the outputVariable on the dependency
UnitKindOutputVariableMappingTo, UnitKindOutputVariableMappingToArgs
- Dependency string
- Alias of the dependency that the inputVariable will pass its value to
- Input
Variable string - Name of the inputVariable on the dependency
- Ignore
For boolLookup - 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
- Input
Variable string - Name of the inputVariable on the dependency
- Ignore
For boolLookup - 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
- input
Variable String - Name of the inputVariable on the dependency
- ignore
For BooleanLookup - 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
- input
Variable string - Name of the inputVariable on the dependency
- ignore
For booleanLookup - 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_ boollookup - 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
- input
Variable String - Name of the inputVariable on the dependency
- ignore
For BooleanLookup - 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.