nutanix.getBlueprintRuntimeEditables
Explore with Pulumi AI
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:
- Bp
Name 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
andbp_name
) are optional but atleast one of them to be provided for this data source to work.- Bp
Uuid 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 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
andbp_name
) are optional but atleast one of them to be provided for this data source to work.- Bp
Uuid 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 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
andbp_name
) are optional but atleast one of them to be provided for this data source to work.- bp
Uuid 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 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
andbp_name
) are optional but atleast one of them to be provided for this data source to work.- bp
Uuid 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
andbp_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.
- bp
Name 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
andbp_name
) are optional but atleast one of them to be provided for this data source to work.- bp
Uuid 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.
- Runtime
Editables List<PiersKarsenbarg. Nutanix. Outputs. Get Blueprint Runtime Editables Runtime Editable> - Bp
Name string - Bp
Uuid string
- Id string
- The provider-assigned unique ID for this managed resource.
- Runtime
Editables []GetBlueprint Runtime Editables Runtime Editable - Bp
Name string - Bp
Uuid string
- id String
- The provider-assigned unique ID for this managed resource.
- runtime
Editables List<GetBlueprint Runtime Editables Runtime Editable> - bp
Name String - bp
Uuid String
- id string
- The provider-assigned unique ID for this managed resource.
- runtime
Editables GetBlueprint Runtime Editables Runtime Editable[] - bp
Name string - bp
Uuid string
- id str
- The provider-assigned unique ID for this managed resource.
- runtime_
editables Sequence[GetBlueprint Runtime Editables Runtime Editable] - bp_
name str - bp_
uuid str
- id String
- The provider-assigned unique ID for this managed resource.
- runtime
Editables List<Property Map> - bp
Name String - bp
Uuid String
Supporting Types
GetBlueprintRuntimeEditablesRuntimeEditable
- Action
Lists List<PiersKarsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable Action List> - A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
- App
Profiles List<PiersKarsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable App Profile> - A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
- Credential
Lists List<PiersKarsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable Credential List> - A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
- Deployment
Lists List<PiersKarsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable Deployment List> - A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
- Package
Lists List<PiersKarsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable Package List> - A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
- Restore
Config List<PiersLists Karsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable Restore Config List> - A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
- Service
Lists List<PiersKarsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable Service List> - A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
- Snapshot
Config List<PiersLists Karsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable Snapshot Config List> - A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
- Substrate
Lists List<PiersKarsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable Substrate List> - A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
- Task
Lists List<PiersKarsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable Task List> - A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
- Variable
Lists List<PiersKarsenbarg. Nutanix. Inputs. Get Blueprint Runtime Editables Runtime Editable Variable List> - A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).
- Action
Lists []GetBlueprint Runtime Editables Runtime Editable Action List - A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
- App
Profiles []GetBlueprint Runtime Editables Runtime Editable App Profile - A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
- Credential
Lists []GetBlueprint Runtime Editables Runtime Editable Credential List - A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
- Deployment
Lists []GetBlueprint Runtime Editables Runtime Editable Deployment List - A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
- Package
Lists []GetBlueprint Runtime Editables Runtime Editable Package List - A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
- Restore
Config []GetLists Blueprint Runtime Editables Runtime Editable Restore Config List - A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
- Service
Lists []GetBlueprint Runtime Editables Runtime Editable Service List - A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
- Snapshot
Config []GetLists Blueprint Runtime Editables Runtime Editable Snapshot Config List - A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
- Substrate
Lists []GetBlueprint Runtime Editables Runtime Editable Substrate List - A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
- Task
Lists []GetBlueprint Runtime Editables Runtime Editable Task List - A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
- Variable
Lists []GetBlueprint Runtime Editables Runtime Editable Variable List - A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).
- action
Lists List<GetBlueprint Runtime Editables Runtime Editable Action List> - A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
- app
Profiles List<GetBlueprint Runtime Editables Runtime Editable App Profile> - A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
- credential
Lists List<GetBlueprint Runtime Editables Runtime Editable Credential List> - A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
- deployment
Lists List<GetBlueprint Runtime Editables Runtime Editable Deployment List> - A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
- package
Lists List<GetBlueprint Runtime Editables Runtime Editable Package List> - A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
- restore
Config List<GetLists Blueprint Runtime Editables Runtime Editable Restore Config List> - A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
- service
Lists List<GetBlueprint Runtime Editables Runtime Editable Service List> - A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
- snapshot
Config List<GetLists Blueprint Runtime Editables Runtime Editable Snapshot Config List> - A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
- substrate
Lists List<GetBlueprint Runtime Editables Runtime Editable Substrate List> - A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
- task
Lists List<GetBlueprint Runtime Editables Runtime Editable Task List> - A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
- variable
Lists List<GetBlueprint Runtime Editables Runtime Editable Variable List> - A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).
- action
Lists GetBlueprint Runtime Editables Runtime Editable Action List[] - A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
- app
Profiles GetBlueprint Runtime Editables Runtime Editable App Profile[] - A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
- credential
Lists GetBlueprint Runtime Editables Runtime Editable Credential List[] - A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
- deployment
Lists GetBlueprint Runtime Editables Runtime Editable Deployment List[] - A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
- package
Lists GetBlueprint Runtime Editables Runtime Editable Package List[] - A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
- restore
Config GetLists Blueprint Runtime Editables Runtime Editable Restore Config List[] - A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
- service
Lists GetBlueprint Runtime Editables Runtime Editable Service List[] - A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
- snapshot
Config GetLists Blueprint Runtime Editables Runtime Editable Snapshot Config List[] - A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
- substrate
Lists GetBlueprint Runtime Editables Runtime Editable Substrate List[] - A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
- task
Lists GetBlueprint Runtime Editables Runtime Editable Task List[] - A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
- variable
Lists GetBlueprint Runtime Editables Runtime Editable Variable List[] - A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).
- action_
lists Sequence[GetBlueprint Runtime Editables Runtime Editable Action List] - A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
- app_
profiles Sequence[GetBlueprint Runtime Editables Runtime Editable App Profile] - A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
- credential_
lists Sequence[GetBlueprint Runtime Editables Runtime Editable Credential List] - A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
- deployment_
lists Sequence[GetBlueprint Runtime Editables Runtime Editable Deployment List] - A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
- package_
lists Sequence[GetBlueprint Runtime Editables Runtime Editable Package List] - A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
- restore_
config_ Sequence[Getlists Blueprint Runtime Editables Runtime Editable Restore Config List] - A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
- service_
lists Sequence[GetBlueprint Runtime Editables Runtime Editable Service List] - A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
- snapshot_
config_ Sequence[Getlists Blueprint Runtime Editables Runtime Editable Snapshot Config List] - A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
- substrate_
lists Sequence[GetBlueprint Runtime Editables Runtime Editable Substrate List] - A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
- task_
lists Sequence[GetBlueprint Runtime Editables Runtime Editable Task List] - A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
- variable_
lists Sequence[GetBlueprint Runtime Editables Runtime Editable Variable List] - A list of variables associated with the blueprint. Each variable contains runtime specifications (defined in RuntimeSpecDS).
- action
Lists List<Property Map> - A list of actions associated with the blueprint. Each action contains runtime specifications (defined in RuntimeSpecDS).
- app
Profiles List<Property Map> - A list of application profiles associated with the blueprint. Each application profile contains runtime specifications (defined in RuntimeSpecDS).
- credential
Lists List<Property Map> - A list of credentials associated with the blueprint. Each credential contains runtime specifications (defined in RuntimeSpecDS).
- deployment
Lists List<Property Map> - A list of deployments associated with the blueprint. Each deployment contains runtime specifications (defined in RuntimeSpecDS).
- package
Lists List<Property Map> - A list of packages associated with the blueprint. Each package contains runtime specifications (defined in RuntimeSpecDS).
- restore
Config List<Property Map>Lists - A list of restore configurations associated with the blueprint. Each restore configuration contains runtime specifications (defined in RuntimeSpecDS).
- service
Lists List<Property Map> - A list of services associated with the blueprint. Each service contains runtime specifications (defined in RuntimeSpecDS).
- snapshot
Config List<Property Map>Lists - A list of snapshot configurations associated with the blueprint. Each snapshot configuration contains runtime specifications (defined in RuntimeSpecDS).
- substrate
Lists List<Property Map> - A list of substrates associated with the blueprint. Each substrate contains runtime specifications (defined in RuntimeSpecDS).
- task
Lists List<Property Map> - A list of tasks associated with the blueprint. Each task contains runtime specifications (defined in RuntimeSpecDS).
- variable
Lists 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.