1. Packages
  2. Nutanix
  3. API Docs
  4. getBlueprintRuntimeEditables
Nutanix v0.8.0 published on Sunday, May 11, 2025 by Piers Karsenbarg

nutanix.getBlueprintRuntimeEditables

Explore with Pulumi AI

nutanix logo
Nutanix v0.8.0 published on Sunday, May 11, 2025 by Piers Karsenbarg

    Describes runtime editables that are present in a blueprint.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as local from "@pulumi/local";
    import * as nutanix from "@pulumi/nutanix";
    
    const example = nutanix.getBlueprintRuntimeEditables({
        bpName: "NAME OF BLUEPRINT",
    });
    // dumps read value into a readable json file
    const dumpRuntimeValue = new local.index.Local_file("dumpRuntimeValue", {
        content: JSON.stringify(example.runtimeEditables),
        filename: "runtime_value.json",
    });
    
    import pulumi
    import json
    import pulumi_local as local
    import pulumi_nutanix as nutanix
    
    example = nutanix.get_blueprint_runtime_editables(bp_name="NAME OF BLUEPRINT")
    # dumps read value into a readable json file
    dump_runtime_value = local.File("dumpRuntimeValue",
        content=json.dumps(example.runtime_editables),
        filename="runtime_value.json")
    
    package main
    
    import (
    	"encoding/json"
    
    	"github.com/pierskarsenbarg/pulumi-nutanix/sdk/go/nutanix"
    	"github.com/pulumi/pulumi-local/sdk/go/local"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := nutanix.GetBlueprintRuntimeEditables(ctx, &nutanix.GetBlueprintRuntimeEditablesArgs{
    			BpName: pulumi.StringRef("NAME OF BLUEPRINT"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		tmpJSON0, err := json.Marshal(example.RuntimeEditables)
    		if err != nil {
    			return err
    		}
    		json0 := string(tmpJSON0)
    		// dumps read value into a readable json file
    		_, err = local.NewFile(ctx, "dumpRuntimeValue", &local.FileArgs{
    			Content:  pulumi.String(json0),
    			Filename: pulumi.String("runtime_value.json"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using System.Text.Json;
    using Pulumi;
    using Local = Pulumi.Local;
    using Nutanix = Pulumi.Nutanix;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Nutanix.GetBlueprintRuntimeEditables.Invoke(new()
        {
            BpName = "NAME OF BLUEPRINT",
        });
    
        // dumps read value into a readable json file
        var dumpRuntimeValue = new Local.File("dumpRuntimeValue", new()
        {
            Content = JsonSerializer.Serialize(example.Apply(getBlueprintRuntimeEditablesResult => getBlueprintRuntimeEditablesResult.RuntimeEditables)),
            Filename = "runtime_value.json",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.nutanix.NutanixFunctions;
    import com.pulumi.nutanix.inputs.GetBlueprintRuntimeEditablesArgs;
    import com.pulumi.local.File;
    import com.pulumi.local.FileArgs;
    import static com.pulumi.codegen.internal.Serialization.*;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = NutanixFunctions.getBlueprintRuntimeEditables(GetBlueprintRuntimeEditablesArgs.builder()
                .bpName("NAME OF BLUEPRINT")
                .build());
    
            // dumps read value into a readable json file
            var dumpRuntimeValue = new File("dumpRuntimeValue", FileArgs.builder()
                .content(serializeJson(
                    example.runtimeEditables()))
                .filename("runtime_value.json")
                .build());
    
        }
    }
    
    resources:
      # dumps read value into a readable json file
      dumpRuntimeValue:
        type: local:File
        properties:
          content:
            fn::toJSON: ${example.runtimeEditables}
          filename: runtime_value.json
    variables:
      example:
        fn::invoke:
          function: nutanix:getBlueprintRuntimeEditables
          arguments:
            bpName: NAME OF BLUEPRINT
    

    Using getBlueprintRuntimeEditables

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getBlueprintRuntimeEditables(args: GetBlueprintRuntimeEditablesArgs, opts?: InvokeOptions): Promise<GetBlueprintRuntimeEditablesResult>
    function getBlueprintRuntimeEditablesOutput(args: GetBlueprintRuntimeEditablesOutputArgs, opts?: InvokeOptions): Output<GetBlueprintRuntimeEditablesResult>
    def get_blueprint_runtime_editables(bp_name: Optional[str] = None,
                                        bp_uuid: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetBlueprintRuntimeEditablesResult
    def get_blueprint_runtime_editables_output(bp_name: Optional[pulumi.Input[str]] = None,
                                        bp_uuid: Optional[pulumi.Input[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetBlueprintRuntimeEditablesResult]
    func GetBlueprintRuntimeEditables(ctx *Context, args *GetBlueprintRuntimeEditablesArgs, opts ...InvokeOption) (*GetBlueprintRuntimeEditablesResult, error)
    func GetBlueprintRuntimeEditablesOutput(ctx *Context, args *GetBlueprintRuntimeEditablesOutputArgs, opts ...InvokeOption) GetBlueprintRuntimeEditablesResultOutput

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

    public static class GetBlueprintRuntimeEditables 
    {
        public static Task<GetBlueprintRuntimeEditablesResult> InvokeAsync(GetBlueprintRuntimeEditablesArgs args, InvokeOptions? opts = null)
        public static Output<GetBlueprintRuntimeEditablesResult> Invoke(GetBlueprintRuntimeEditablesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetBlueprintRuntimeEditablesResult> getBlueprintRuntimeEditables(GetBlueprintRuntimeEditablesArgs args, InvokeOptions options)
    public static Output<GetBlueprintRuntimeEditablesResult> getBlueprintRuntimeEditables(GetBlueprintRuntimeEditablesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: nutanix:index/getBlueprintRuntimeEditables:getBlueprintRuntimeEditables
      arguments:
        # arguments dictionary

    The following arguments are supported:

    BpName string
    • (Optional) The name of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.

    Both (bp_uuid and bp_name) are optional but atleast one of them to be provided for this data source to work.

    BpUuid string
    • (Optional) The UUID of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.
    BpName string
    • (Optional) The name of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.

    Both (bp_uuid and bp_name) are optional but atleast one of them to be provided for this data source to work.

    BpUuid string
    • (Optional) The UUID of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.
    bpName String
    • (Optional) The name of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.

    Both (bp_uuid and bp_name) are optional but atleast one of them to be provided for this data source to work.

    bpUuid String
    • (Optional) The UUID of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.
    bpName string
    • (Optional) The name of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.

    Both (bp_uuid and bp_name) are optional but atleast one of them to be provided for this data source to work.

    bpUuid string
    • (Optional) The UUID of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.
    bp_name str
    • (Optional) The name of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.

    Both (bp_uuid and bp_name) are optional but atleast one of them to be provided for this data source to work.

    bp_uuid str
    • (Optional) The UUID of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.
    bpName String
    • (Optional) The name of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.

    Both (bp_uuid and bp_name) are optional but atleast one of them to be provided for this data source to work.

    bpUuid String
    • (Optional) The UUID of the blueprint for which runtime editables will be listed. If this is provided, it will return runtime editables for the specified blueprint.

    getBlueprintRuntimeEditables Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    RuntimeEditables List<PiersKarsenbarg.Nutanix.Outputs.GetBlueprintRuntimeEditablesRuntimeEditable>
    BpName string
    BpUuid string
    Id string
    The provider-assigned unique ID for this managed resource.
    RuntimeEditables []GetBlueprintRuntimeEditablesRuntimeEditable
    BpName string
    BpUuid string
    id String
    The provider-assigned unique ID for this managed resource.
    runtimeEditables List<GetBlueprintRuntimeEditablesRuntimeEditable>
    bpName String
    bpUuid String
    id string
    The provider-assigned unique ID for this managed resource.
    runtimeEditables GetBlueprintRuntimeEditablesRuntimeEditable[]
    bpName string
    bpUuid string
    id str
    The provider-assigned unique ID for this managed resource.
    runtime_editables Sequence[GetBlueprintRuntimeEditablesRuntimeEditable]
    bp_name str
    bp_uuid str
    id String
    The provider-assigned unique ID for this managed resource.
    runtimeEditables List<Property Map>
    bpName String
    bpUuid String

    Supporting Types

    GetBlueprintRuntimeEditablesRuntimeEditable

    ActionLists List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditableActionList>
    • A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
    AppProfiles List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditableAppProfile>
    • A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
    CredentialLists List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditableCredentialList>
    • A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
    DeploymentLists List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditableDeploymentList>
    • A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
    PackageLists List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditablePackageList>
    • A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
    RestoreConfigLists List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditableRestoreConfigList>
    • A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
    ServiceLists List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditableServiceList>
    • A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
    SnapshotConfigLists List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditableSnapshotConfigList>
    • A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
    SubstrateLists List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditableSubstrateList>
    • A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
    TaskLists List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditableTaskList>
    • A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
    VariableLists List<PiersKarsenbarg.Nutanix.Inputs.GetBlueprintRuntimeEditablesRuntimeEditableVariableList>
    • A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).
    ActionLists []GetBlueprintRuntimeEditablesRuntimeEditableActionList
    • A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
    AppProfiles []GetBlueprintRuntimeEditablesRuntimeEditableAppProfile
    • A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
    CredentialLists []GetBlueprintRuntimeEditablesRuntimeEditableCredentialList
    • A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
    DeploymentLists []GetBlueprintRuntimeEditablesRuntimeEditableDeploymentList
    • A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
    PackageLists []GetBlueprintRuntimeEditablesRuntimeEditablePackageList
    • A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
    RestoreConfigLists []GetBlueprintRuntimeEditablesRuntimeEditableRestoreConfigList
    • A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
    ServiceLists []GetBlueprintRuntimeEditablesRuntimeEditableServiceList
    • A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
    SnapshotConfigLists []GetBlueprintRuntimeEditablesRuntimeEditableSnapshotConfigList
    • A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
    SubstrateLists []GetBlueprintRuntimeEditablesRuntimeEditableSubstrateList
    • A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
    TaskLists []GetBlueprintRuntimeEditablesRuntimeEditableTaskList
    • A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
    VariableLists []GetBlueprintRuntimeEditablesRuntimeEditableVariableList
    • A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).
    actionLists List<GetBlueprintRuntimeEditablesRuntimeEditableActionList>
    • A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
    appProfiles List<GetBlueprintRuntimeEditablesRuntimeEditableAppProfile>
    • A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
    credentialLists List<GetBlueprintRuntimeEditablesRuntimeEditableCredentialList>
    • A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
    deploymentLists List<GetBlueprintRuntimeEditablesRuntimeEditableDeploymentList>
    • A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
    packageLists List<GetBlueprintRuntimeEditablesRuntimeEditablePackageList>
    • A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
    restoreConfigLists List<GetBlueprintRuntimeEditablesRuntimeEditableRestoreConfigList>
    • A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
    serviceLists List<GetBlueprintRuntimeEditablesRuntimeEditableServiceList>
    • A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
    snapshotConfigLists List<GetBlueprintRuntimeEditablesRuntimeEditableSnapshotConfigList>
    • A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
    substrateLists List<GetBlueprintRuntimeEditablesRuntimeEditableSubstrateList>
    • A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
    taskLists List<GetBlueprintRuntimeEditablesRuntimeEditableTaskList>
    • A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
    variableLists List<GetBlueprintRuntimeEditablesRuntimeEditableVariableList>
    • A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).
    actionLists GetBlueprintRuntimeEditablesRuntimeEditableActionList[]
    • A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
    appProfiles GetBlueprintRuntimeEditablesRuntimeEditableAppProfile[]
    • A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
    credentialLists GetBlueprintRuntimeEditablesRuntimeEditableCredentialList[]
    • A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
    deploymentLists GetBlueprintRuntimeEditablesRuntimeEditableDeploymentList[]
    • A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
    packageLists GetBlueprintRuntimeEditablesRuntimeEditablePackageList[]
    • A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
    restoreConfigLists GetBlueprintRuntimeEditablesRuntimeEditableRestoreConfigList[]
    • A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
    serviceLists GetBlueprintRuntimeEditablesRuntimeEditableServiceList[]
    • A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
    snapshotConfigLists GetBlueprintRuntimeEditablesRuntimeEditableSnapshotConfigList[]
    • A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
    substrateLists GetBlueprintRuntimeEditablesRuntimeEditableSubstrateList[]
    • A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
    taskLists GetBlueprintRuntimeEditablesRuntimeEditableTaskList[]
    • A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
    variableLists GetBlueprintRuntimeEditablesRuntimeEditableVariableList[]
    • A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).
    action_lists Sequence[GetBlueprintRuntimeEditablesRuntimeEditableActionList]
    • A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
    app_profiles Sequence[GetBlueprintRuntimeEditablesRuntimeEditableAppProfile]
    • A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
    credential_lists Sequence[GetBlueprintRuntimeEditablesRuntimeEditableCredentialList]
    • A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
    deployment_lists Sequence[GetBlueprintRuntimeEditablesRuntimeEditableDeploymentList]
    • A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
    package_lists Sequence[GetBlueprintRuntimeEditablesRuntimeEditablePackageList]
    • A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
    restore_config_lists Sequence[GetBlueprintRuntimeEditablesRuntimeEditableRestoreConfigList]
    • A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
    service_lists Sequence[GetBlueprintRuntimeEditablesRuntimeEditableServiceList]
    • A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
    snapshot_config_lists Sequence[GetBlueprintRuntimeEditablesRuntimeEditableSnapshotConfigList]
    • A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
    substrate_lists Sequence[GetBlueprintRuntimeEditablesRuntimeEditableSubstrateList]
    • A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
    task_lists Sequence[GetBlueprintRuntimeEditablesRuntimeEditableTaskList]
    • A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
    variable_lists Sequence[GetBlueprintRuntimeEditablesRuntimeEditableVariableList]
    • A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).
    actionLists List<Property Map>
    • A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
    appProfiles List<Property Map>
    • A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
    credentialLists List<Property Map>
    • A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
    deploymentLists List<Property Map>
    • A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
    packageLists List<Property Map>
    • A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
    restoreConfigLists List<Property Map>
    • A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
    serviceLists List<Property Map>
    • A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
    snapshotConfigLists List<Property Map>
    • A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
    substrateLists List<Property Map>
    • A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
    taskLists List<Property Map>
    • A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
    variableLists List<Property Map>
    • A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).

    GetBlueprintRuntimeEditablesRuntimeEditableActionList

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    GetBlueprintRuntimeEditablesRuntimeEditableAppProfile

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    GetBlueprintRuntimeEditablesRuntimeEditableCredentialList

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    GetBlueprintRuntimeEditablesRuntimeEditableDeploymentList

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    GetBlueprintRuntimeEditablesRuntimeEditablePackageList

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    GetBlueprintRuntimeEditablesRuntimeEditableRestoreConfigList

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    GetBlueprintRuntimeEditablesRuntimeEditableServiceList

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    GetBlueprintRuntimeEditablesRuntimeEditableSnapshotConfigList

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    GetBlueprintRuntimeEditablesRuntimeEditableSubstrateList

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    GetBlueprintRuntimeEditablesRuntimeEditableTaskList

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    GetBlueprintRuntimeEditablesRuntimeEditableVariableList

    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    Context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    Description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    Name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    Type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    Uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    Value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context string
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description string
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name string
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type string
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid string
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value string
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context str
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description str
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name str
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type str
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid str
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value str
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.
    context String
    (Optional, Computed) The context in which the runtime specification is applied. It is full address of where the entity in target is present.
    description String
    (Optional, Computed) A textual description of the runtime specification. This field provides additional information or context about the entity.
    name String
    (Optional, Computed) The name of the runtime specification. This could be the name of an action, service, credential, or other runtime-editable resource.
    type String
    (Optional, Computed) The type of runtime specification. This field indicates the category or classification of the runtime resource, such as an action, service, or credential.
    uuid String
    (Optional, Computed) The unique identifier (UUID) associated with the runtime specification. This is useful for identifying specific resources or entities.
    value String
    (Optional, Computed) The value associated with the runtime specification. This can be a string value representing a configuration or setting.

    Package Details

    Repository
    nutanix pierskarsenbarg/pulumi-nutanix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the nutanix Terraform Provider.
    nutanix logo
    Nutanix v0.8.0 published on Sunday, May 11, 2025 by Piers Karsenbarg