intersight.WorkflowCustomDataTypeDefinition
Explore with Pulumi AI
Captures a customized data type definition that can be used for task or workflow input/output. This can be reused across multiple tasks and workflow definitions.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const workflowCatalog = config.require("workflowCatalog");
const workflowCustomDataTypeDefinition1 = new intersight.WorkflowCustomDataTypeDefinition("workflowCustomDataTypeDefinition1", {
description: "captures a customized data type definition for workflow input/output",
label: "custom_data_dfn1",
catalogs: [{
objectType: "workflow.Catalog",
moid: workflowCatalog,
}],
parameterSets: [{
classId: "workflow.ParameterSet",
objectType: "workflow.ParameterSet",
name: "show-netapp",
condition: "eq",
controlParameter: "PlatformType",
enableParameters: ["ExpandedVolumeCapacity"],
value: "storage.NetAppCluster",
}],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
workflow_catalog = config.require("workflowCatalog")
workflow_custom_data_type_definition1 = intersight.WorkflowCustomDataTypeDefinition("workflowCustomDataTypeDefinition1",
description="captures a customized data type definition for workflow input/output",
label="custom_data_dfn1",
catalogs=[{
"object_type": "workflow.Catalog",
"moid": workflow_catalog,
}],
parameter_sets=[{
"class_id": "workflow.ParameterSet",
"object_type": "workflow.ParameterSet",
"name": "show-netapp",
"condition": "eq",
"control_parameter": "PlatformType",
"enable_parameters": ["ExpandedVolumeCapacity"],
"value": "storage.NetAppCluster",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
workflowCatalog := cfg.Require("workflowCatalog")
_, err := intersight.NewWorkflowCustomDataTypeDefinition(ctx, "workflowCustomDataTypeDefinition1", &intersight.WorkflowCustomDataTypeDefinitionArgs{
Description: pulumi.String("captures a customized data type definition for workflow input/output"),
Label: pulumi.String("custom_data_dfn1"),
Catalogs: intersight.WorkflowCustomDataTypeDefinitionCatalogArray{
&intersight.WorkflowCustomDataTypeDefinitionCatalogArgs{
ObjectType: pulumi.String("workflow.Catalog"),
Moid: pulumi.String(workflowCatalog),
},
},
ParameterSets: intersight.WorkflowCustomDataTypeDefinitionParameterSetArray{
&intersight.WorkflowCustomDataTypeDefinitionParameterSetArgs{
ClassId: pulumi.String("workflow.ParameterSet"),
ObjectType: pulumi.String("workflow.ParameterSet"),
Name: pulumi.String("show-netapp"),
Condition: pulumi.String("eq"),
ControlParameter: pulumi.String("PlatformType"),
EnableParameters: pulumi.StringArray{
pulumi.String("ExpandedVolumeCapacity"),
},
Value: pulumi.String("storage.NetAppCluster"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var workflowCatalog = config.Require("workflowCatalog");
var workflowCustomDataTypeDefinition1 = new Intersight.WorkflowCustomDataTypeDefinition("workflowCustomDataTypeDefinition1", new()
{
Description = "captures a customized data type definition for workflow input/output",
Label = "custom_data_dfn1",
Catalogs = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionCatalogArgs
{
ObjectType = "workflow.Catalog",
Moid = workflowCatalog,
},
},
ParameterSets = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionParameterSetArgs
{
ClassId = "workflow.ParameterSet",
ObjectType = "workflow.ParameterSet",
Name = "show-netapp",
Condition = "eq",
ControlParameter = "PlatformType",
EnableParameters = new[]
{
"ExpandedVolumeCapacity",
},
Value = "storage.NetAppCluster",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.WorkflowCustomDataTypeDefinition;
import com.pulumi.intersight.WorkflowCustomDataTypeDefinitionArgs;
import com.pulumi.intersight.inputs.WorkflowCustomDataTypeDefinitionCatalogArgs;
import com.pulumi.intersight.inputs.WorkflowCustomDataTypeDefinitionParameterSetArgs;
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 config = ctx.config();
final var workflowCatalog = config.get("workflowCatalog");
var workflowCustomDataTypeDefinition1 = new WorkflowCustomDataTypeDefinition("workflowCustomDataTypeDefinition1", WorkflowCustomDataTypeDefinitionArgs.builder()
.description("captures a customized data type definition for workflow input/output")
.label("custom_data_dfn1")
.catalogs(WorkflowCustomDataTypeDefinitionCatalogArgs.builder()
.objectType("workflow.Catalog")
.moid(workflowCatalog)
.build())
.parameterSets(WorkflowCustomDataTypeDefinitionParameterSetArgs.builder()
.classId("workflow.ParameterSet")
.objectType("workflow.ParameterSet")
.name("show-netapp")
.condition("eq")
.controlParameter("PlatformType")
.enableParameters("ExpandedVolumeCapacity")
.value("storage.NetAppCluster")
.build())
.build());
}
}
configuration:
workflowCatalog:
type: string
resources:
workflowCustomDataTypeDefinition1:
type: intersight:WorkflowCustomDataTypeDefinition
properties:
description: captures a customized data type definition for workflow input/output
label: custom_data_dfn1
catalogs:
- objectType: workflow.Catalog
moid: ${workflowCatalog}
parameterSets:
- classId: workflow.ParameterSet
objectType: workflow.ParameterSet
name: show-netapp
condition: eq
controlParameter: PlatformType
enableParameters:
- ExpandedVolumeCapacity
value: storage.NetAppCluster
Allowed Types in AdditionalProperties
workflow.ArrayDataType
This data type represents an array of a given type. It can be an array of primitive data or of custom data.
array_item_type
:(HashMap) - Data item within the array data type. This complex property has following sub-properties:object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
max
:(int) Specify the maximum value of the array.min
:(int) Specify the minimum value of the array.
workflow.CustomDataType
This data type represents a custom data object.
properties
:(HashMap) - Captures the custom data type properties. This complex property has following sub-properties:catalog_moid
:(string) Specify the catalog moid that this custom data type belongs.custom_data_type_id
:(string)(ReadOnly) The resolved custom data type definition managed object.custom_data_type_name
:(string) Name of the custom data type for this input.object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
workflow.DynamicTemplateParserDataType
Data type to fetch a generic template from given selector and parse it using an api to give an array of secure and non-secure keys for form generation. URL used to fetch the template object is based on the templateType. Final input passed to the workflow using this data type is a JSON containing {‘Template’:’’, ‘Keys’:[{’
is_template_secure
:(bool) When set to true, the template is marked as secure and the content is encrypted and stored.template_type
:(string) Template type decides on the API to be used to fetch the placeholders present inside the template.*OsInstall
- This refers to the OS configuration template MO.
workflow.MoInventoryDataType
The data type to represent the selected properties of an Intersight managed object. This data type is used only in Service items to define the schema of resources and their attributes.
properties
:(Array) This complex property has following sub-properties:attributes
: (Array of schema.TypeString) -object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.reference_object_type
:(string) ObjectType for which the attributes need to be collected.reference_type
:(string) Defines how the reference to the shadow resource is done. Base case is via an Moid, but reference via a selector is also possible.*Moid
- The reference to the original resource is via an Moid.*Selector
- The reference to the original resource is via a selector query. This can potentially lead to tracking data for multiple resources.
workflow.MoReferenceAutoDataType
The data type to capture an Intersight managed object reference that is automatically selected by the system based on a given selection criteria.
properties
:(Array) This complex property has following sub-properties:display_attributes
: (Array of schema.TypeString) -filters
: (Array of schema.TypeString) -object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.order_by
:(string) Determines properties that are used to sort the collection of resources.rule
:(HashMap) - The rule can be obtained directly from a Resource Selection Criteria or provided as inline resource filter conditions. This complex property has following sub-properties:object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
workflow.MoReferenceDataType
Data type to capture an Intersight Managed object reference.
properties
:(Array) This complex property has following sub-properties:display_attributes
: (Array of schema.TypeString) -object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.selector
:(string) Field to hold an Intersight API along with an optional filter to narrow down the search options.selector_property
:(HashMap) - Selector properties to define HTTP method and ‘body’ in case of upsert operation. This complex property has following sub-properties:body
:(JSON as string) Content of the request body to send for POST request.method
:(string) The HTTP method to be used.*GET
- The HTTP GET method requests a representation of the specified resource.*POST
- The HTTP POST method sends data to the server.object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
value_attribute
:(string) A property from the Intersight object, value of which can be used as value for referenced input definition.
workflow.PrimitiveDataType
This data type is used to represent primitives like string, floats and integers.
properties
:(HashMap) - Primitive data type properties. This complex property has following sub-properties:constraints
:(HashMap) - Constraints that must be applied to the parameter value supplied for this data type. This complex property has following sub-properties:enum_list
:(Array) This complex property has following sub-properties:label
:(string) Label for the enum value. A user friendly short string to identify the enum value. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote (’), forward slash (/), round parenthesis ( () ), or an underscore (_) and must have an alphanumeric character.object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.value
:(string) Enum value for this enum entry. Value will be passed to the workflow as string type for execution. Value can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), round parenthesis ( () ), forward slash (/), or an underscore (_).
max
:(float) Allowed maximum value of the parameter if parameter is integer/float or maximum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then maximum number supported is 1.797693134862315708145274237317043567981e+308 or (21023 * (253 - 1) / 2**52). When a number bigger than this is given as Maximum value, the constraints will not be enforced.min
:(float) Allowed minimum value of the parameter if parameter is integer/float or minimum length of the parameter if the parameter is string. When max and min are set to 0, then the limits are not checked. If parameter is integer/float, then minimum number supported is 4.940656458412465441765687928682213723651e-324 or (1 / 2 ** (1023 - 1 + 52)). When a number smaller than this is given as minimum value, the constraints will not be enforced.object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.regex
:(string) When the parameter is a string this regular expression is used to ensure the value is valid.data_source_selector
:(Array) This complex property has following sub-properties:display_attributes
: (Array of schema.TypeString) -object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.selector
:(string) This field holds mapping information used to provide suggestions to the user. The mapping should be in the ‘${workflow.input.property}’ format. It supports workflow input mapping for workflows, and for User Actions, it supports workflow inputs, workflow outputs, workflow variables, and outputs from previous tasks.value_attribute
:(string) A property from the mapped parameter, value of which can be used as value for referenced input definition.
inventory_selector
:(Array) This complex property has following sub-properties:display_attributes
: (Array of schema.TypeString) -object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.selector
:(string) Field to hold an Intersight API along with an optional filter to narrow down the search options.selector_property
:(HashMap) - Selector properties to define HTTP method and ‘body’ in case of upsert operation. This complex property has following sub-properties:body
:(JSON as string) Content of the request body to send for POST request.method
:(string) The HTTP method to be used.*GET
- The HTTP GET method requests a representation of the specified resource.*POST
- The HTTP POST method sends data to the server.object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
value_attribute
:(string) A property from the Intersight object, value of which can be used as value for referenced input definition.object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.secure
:(bool) Intersight supports secure properties as task input/output. The values ofthese properties are encrypted and stored in Intersight.This flag marks the property to be secure when it is set to true.type
:(string) Specify the enum type for primitive data type.*string
- Enum to specify a string data type.*integer
- Enum to specify an integer32 data type.*float
- Enum to specify a float64 data type.*boolean
- Enum to specify a boolean data type.*json
- Enum to specify a json data type.*enum
- Enum to specify a enum data type which is a list of pre-defined strings.
workflow.TargetDataType
Data type to capture a target endpoint or device.
custom_data_type_properties
:(HashMap) - Reference to custom data type definition. This complex property has following sub-properties:catalog_moid
:(string) Specify the catalog moid that this custom data type belongs.custom_data_type_id
:(string)(ReadOnly) The resolved custom data type definition managed object.custom_data_type_name
:(string) Name of the custom data type for this input.object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
is_array
:(bool) When this property is true then an array of targets can be passed as input.max
:(int) Specify the maximum value of the array.min
:(int) Specify the minimum value of the array.properties
:(Array) This complex property has following sub-properties:connector_attribute
:(string) A singleton value which will contain the path to connector object from the selected object.constraint_attributes
: (Array of schema.TypeString) -display_attributes
: (Array of schema.TypeString) -object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.platform_type
: (Array of schema.TypeString) -selector
:(string) Field to hold an Intersight API along with an optional filter to narrow down the search options for target device.selector_property
:(HashMap) - Selector properties to define HTTP method and ‘body’ in case of upsert operation. This complex property has following sub-properties:body
:(JSON as string) Content of the request body to send for POST request.method
:(string) The HTTP method to be used.*GET
- The HTTP GET method requests a representation of the specified resource.*POST
- The HTTP POST method sends data to the server.object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
supported_objects
: (Array of schema.TypeString) -
Create WorkflowCustomDataTypeDefinition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkflowCustomDataTypeDefinition(name: string, args?: WorkflowCustomDataTypeDefinitionArgs, opts?: CustomResourceOptions);
@overload
def WorkflowCustomDataTypeDefinition(resource_name: str,
args: Optional[WorkflowCustomDataTypeDefinitionArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def WorkflowCustomDataTypeDefinition(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[WorkflowCustomDataTypeDefinitionAncestorArgs]] = None,
catalogs: Optional[Sequence[WorkflowCustomDataTypeDefinitionCatalogArgs]] = None,
class_id: Optional[str] = None,
cloned_froms: Optional[Sequence[WorkflowCustomDataTypeDefinitionClonedFromArgs]] = None,
composite_type: Optional[bool] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
label: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
parameter_sets: Optional[Sequence[WorkflowCustomDataTypeDefinitionParameterSetArgs]] = None,
parents: Optional[Sequence[WorkflowCustomDataTypeDefinitionParentArgs]] = None,
permission_resources: Optional[Sequence[WorkflowCustomDataTypeDefinitionPermissionResourceArgs]] = None,
properties: Optional[Sequence[WorkflowCustomDataTypeDefinitionPropertyArgs]] = None,
shared_scope: Optional[str] = None,
tags: Optional[Sequence[WorkflowCustomDataTypeDefinitionTagArgs]] = None,
type_definitions: Optional[Sequence[WorkflowCustomDataTypeDefinitionTypeDefinitionArgs]] = None,
version_contexts: Optional[Sequence[WorkflowCustomDataTypeDefinitionVersionContextArgs]] = None,
workflow_custom_data_type_definition_id: Optional[str] = None)
func NewWorkflowCustomDataTypeDefinition(ctx *Context, name string, args *WorkflowCustomDataTypeDefinitionArgs, opts ...ResourceOption) (*WorkflowCustomDataTypeDefinition, error)
public WorkflowCustomDataTypeDefinition(string name, WorkflowCustomDataTypeDefinitionArgs? args = null, CustomResourceOptions? opts = null)
public WorkflowCustomDataTypeDefinition(String name, WorkflowCustomDataTypeDefinitionArgs args)
public WorkflowCustomDataTypeDefinition(String name, WorkflowCustomDataTypeDefinitionArgs args, CustomResourceOptions options)
type: intersight:WorkflowCustomDataTypeDefinition
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args WorkflowCustomDataTypeDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args WorkflowCustomDataTypeDefinitionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args WorkflowCustomDataTypeDefinitionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkflowCustomDataTypeDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkflowCustomDataTypeDefinitionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var workflowCustomDataTypeDefinitionResource = new Intersight.WorkflowCustomDataTypeDefinition("workflowCustomDataTypeDefinitionResource", new()
{
AccountMoid = "string",
AdditionalProperties = "string",
Ancestors = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Catalogs = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionCatalogArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ClassId = "string",
ClonedFroms = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionClonedFromArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
CompositeType = false,
CreateTime = "string",
Description = "string",
DomainGroupMoid = "string",
Label = "string",
ModTime = "string",
Moid = "string",
Name = "string",
ObjectType = "string",
Owners = new[]
{
"string",
},
ParameterSets = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionParameterSetArgs
{
AdditionalProperties = "string",
ClassId = "string",
Condition = "string",
ControlParameter = "string",
EnableParameters = new[]
{
"string",
},
Name = "string",
ObjectType = "string",
Value = "string",
},
},
Parents = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionPermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Properties = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionPropertyArgs
{
AdditionalProperties = "string",
ClassId = "string",
Cloneable = false,
ExternalMeta = false,
ObjectType = "string",
},
},
SharedScope = "string",
Tags = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
TypeDefinitions = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionTypeDefinitionArgs
{
AdditionalProperties = "string",
ClassId = "string",
Defaults = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionTypeDefinitionDefaultArgs
{
AdditionalProperties = "string",
ClassId = "string",
IsValueSet = false,
ObjectType = "string",
Override = false,
Value = "string",
},
},
Description = "string",
DisplayMetas = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionTypeDefinitionDisplayMetaArgs
{
AdditionalProperties = "string",
ClassId = "string",
InventorySelector = false,
ObjectType = "string",
WidgetType = "string",
},
},
InputParameters = "string",
Label = "string",
Name = "string",
ObjectType = "string",
Required = false,
},
},
VersionContexts = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.WorkflowCustomDataTypeDefinitionVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
WorkflowCustomDataTypeDefinitionId = "string",
});
example, err := intersight.NewWorkflowCustomDataTypeDefinition(ctx, "workflowCustomDataTypeDefinitionResource", &intersight.WorkflowCustomDataTypeDefinitionArgs{
AccountMoid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
Ancestors: intersight.WorkflowCustomDataTypeDefinitionAncestorArray{
&intersight.WorkflowCustomDataTypeDefinitionAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Catalogs: intersight.WorkflowCustomDataTypeDefinitionCatalogArray{
&intersight.WorkflowCustomDataTypeDefinitionCatalogArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ClassId: pulumi.String("string"),
ClonedFroms: intersight.WorkflowCustomDataTypeDefinitionClonedFromArray{
&intersight.WorkflowCustomDataTypeDefinitionClonedFromArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
CompositeType: pulumi.Bool(false),
CreateTime: pulumi.String("string"),
Description: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
Label: pulumi.String("string"),
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Owners: pulumi.StringArray{
pulumi.String("string"),
},
ParameterSets: intersight.WorkflowCustomDataTypeDefinitionParameterSetArray{
&intersight.WorkflowCustomDataTypeDefinitionParameterSetArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Condition: pulumi.String("string"),
ControlParameter: pulumi.String("string"),
EnableParameters: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Parents: intersight.WorkflowCustomDataTypeDefinitionParentArray{
&intersight.WorkflowCustomDataTypeDefinitionParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.WorkflowCustomDataTypeDefinitionPermissionResourceArray{
&intersight.WorkflowCustomDataTypeDefinitionPermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Properties: intersight.WorkflowCustomDataTypeDefinitionPropertyArray{
&intersight.WorkflowCustomDataTypeDefinitionPropertyArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Cloneable: pulumi.Bool(false),
ExternalMeta: pulumi.Bool(false),
ObjectType: pulumi.String("string"),
},
},
SharedScope: pulumi.String("string"),
Tags: intersight.WorkflowCustomDataTypeDefinitionTagArray{
&intersight.WorkflowCustomDataTypeDefinitionTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TypeDefinitions: intersight.WorkflowCustomDataTypeDefinitionTypeDefinitionArray{
&intersight.WorkflowCustomDataTypeDefinitionTypeDefinitionArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Defaults: intersight.WorkflowCustomDataTypeDefinitionTypeDefinitionDefaultArray{
&intersight.WorkflowCustomDataTypeDefinitionTypeDefinitionDefaultArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
IsValueSet: pulumi.Bool(false),
ObjectType: pulumi.String("string"),
Override: pulumi.Bool(false),
Value: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
DisplayMetas: intersight.WorkflowCustomDataTypeDefinitionTypeDefinitionDisplayMetaArray{
&intersight.WorkflowCustomDataTypeDefinitionTypeDefinitionDisplayMetaArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InventorySelector: pulumi.Bool(false),
ObjectType: pulumi.String("string"),
WidgetType: pulumi.String("string"),
},
},
InputParameters: pulumi.String("string"),
Label: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Required: pulumi.Bool(false),
},
},
VersionContexts: intersight.WorkflowCustomDataTypeDefinitionVersionContextArray{
&intersight.WorkflowCustomDataTypeDefinitionVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.WorkflowCustomDataTypeDefinitionVersionContextInterestedMoArray{
&intersight.WorkflowCustomDataTypeDefinitionVersionContextInterestedMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
MarkedForDeletion: pulumi.Bool(false),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
RefMos: intersight.WorkflowCustomDataTypeDefinitionVersionContextRefMoArray{
&intersight.WorkflowCustomDataTypeDefinitionVersionContextRefMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Timestamp: pulumi.String("string"),
VersionType: pulumi.String("string"),
},
},
WorkflowCustomDataTypeDefinitionId: pulumi.String("string"),
})
var workflowCustomDataTypeDefinitionResource = new WorkflowCustomDataTypeDefinition("workflowCustomDataTypeDefinitionResource", WorkflowCustomDataTypeDefinitionArgs.builder()
.accountMoid("string")
.additionalProperties("string")
.ancestors(WorkflowCustomDataTypeDefinitionAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.catalogs(WorkflowCustomDataTypeDefinitionCatalogArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.classId("string")
.clonedFroms(WorkflowCustomDataTypeDefinitionClonedFromArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.compositeType(false)
.createTime("string")
.description("string")
.domainGroupMoid("string")
.label("string")
.modTime("string")
.moid("string")
.name("string")
.objectType("string")
.owners("string")
.parameterSets(WorkflowCustomDataTypeDefinitionParameterSetArgs.builder()
.additionalProperties("string")
.classId("string")
.condition("string")
.controlParameter("string")
.enableParameters("string")
.name("string")
.objectType("string")
.value("string")
.build())
.parents(WorkflowCustomDataTypeDefinitionParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(WorkflowCustomDataTypeDefinitionPermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.properties(WorkflowCustomDataTypeDefinitionPropertyArgs.builder()
.additionalProperties("string")
.classId("string")
.cloneable(false)
.externalMeta(false)
.objectType("string")
.build())
.sharedScope("string")
.tags(WorkflowCustomDataTypeDefinitionTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.typeDefinitions(WorkflowCustomDataTypeDefinitionTypeDefinitionArgs.builder()
.additionalProperties("string")
.classId("string")
.defaults(WorkflowCustomDataTypeDefinitionTypeDefinitionDefaultArgs.builder()
.additionalProperties("string")
.classId("string")
.isValueSet(false)
.objectType("string")
.override(false)
.value("string")
.build())
.description("string")
.displayMetas(WorkflowCustomDataTypeDefinitionTypeDefinitionDisplayMetaArgs.builder()
.additionalProperties("string")
.classId("string")
.inventorySelector(false)
.objectType("string")
.widgetType("string")
.build())
.inputParameters("string")
.label("string")
.name("string")
.objectType("string")
.required(false)
.build())
.versionContexts(WorkflowCustomDataTypeDefinitionVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(WorkflowCustomDataTypeDefinitionVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(WorkflowCustomDataTypeDefinitionVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.workflowCustomDataTypeDefinitionId("string")
.build());
workflow_custom_data_type_definition_resource = intersight.WorkflowCustomDataTypeDefinition("workflowCustomDataTypeDefinitionResource",
account_moid="string",
additional_properties="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
catalogs=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
class_id="string",
cloned_froms=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
composite_type=False,
create_time="string",
description="string",
domain_group_moid="string",
label="string",
mod_time="string",
moid="string",
name="string",
object_type="string",
owners=["string"],
parameter_sets=[{
"additional_properties": "string",
"class_id": "string",
"condition": "string",
"control_parameter": "string",
"enable_parameters": ["string"],
"name": "string",
"object_type": "string",
"value": "string",
}],
parents=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
permission_resources=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
properties=[{
"additional_properties": "string",
"class_id": "string",
"cloneable": False,
"external_meta": False,
"object_type": "string",
}],
shared_scope="string",
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
type_definitions=[{
"additional_properties": "string",
"class_id": "string",
"defaults": [{
"additional_properties": "string",
"class_id": "string",
"is_value_set": False,
"object_type": "string",
"override": False,
"value": "string",
}],
"description": "string",
"display_metas": [{
"additional_properties": "string",
"class_id": "string",
"inventory_selector": False,
"object_type": "string",
"widget_type": "string",
}],
"input_parameters": "string",
"label": "string",
"name": "string",
"object_type": "string",
"required": False,
}],
version_contexts=[{
"additional_properties": "string",
"class_id": "string",
"interested_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"marked_for_deletion": False,
"nr_version": "string",
"object_type": "string",
"ref_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"timestamp": "string",
"version_type": "string",
}],
workflow_custom_data_type_definition_id="string")
const workflowCustomDataTypeDefinitionResource = new intersight.WorkflowCustomDataTypeDefinition("workflowCustomDataTypeDefinitionResource", {
accountMoid: "string",
additionalProperties: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
catalogs: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
classId: "string",
clonedFroms: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
compositeType: false,
createTime: "string",
description: "string",
domainGroupMoid: "string",
label: "string",
modTime: "string",
moid: "string",
name: "string",
objectType: "string",
owners: ["string"],
parameterSets: [{
additionalProperties: "string",
classId: "string",
condition: "string",
controlParameter: "string",
enableParameters: ["string"],
name: "string",
objectType: "string",
value: "string",
}],
parents: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
permissionResources: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
properties: [{
additionalProperties: "string",
classId: "string",
cloneable: false,
externalMeta: false,
objectType: "string",
}],
sharedScope: "string",
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
typeDefinitions: [{
additionalProperties: "string",
classId: "string",
defaults: [{
additionalProperties: "string",
classId: "string",
isValueSet: false,
objectType: "string",
override: false,
value: "string",
}],
description: "string",
displayMetas: [{
additionalProperties: "string",
classId: "string",
inventorySelector: false,
objectType: "string",
widgetType: "string",
}],
inputParameters: "string",
label: "string",
name: "string",
objectType: "string",
required: false,
}],
versionContexts: [{
additionalProperties: "string",
classId: "string",
interestedMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
markedForDeletion: false,
nrVersion: "string",
objectType: "string",
refMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
timestamp: "string",
versionType: "string",
}],
workflowCustomDataTypeDefinitionId: "string",
});
type: intersight:WorkflowCustomDataTypeDefinition
properties:
accountMoid: string
additionalProperties: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
catalogs:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
classId: string
clonedFroms:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
compositeType: false
createTime: string
description: string
domainGroupMoid: string
label: string
modTime: string
moid: string
name: string
objectType: string
owners:
- string
parameterSets:
- additionalProperties: string
classId: string
condition: string
controlParameter: string
enableParameters:
- string
name: string
objectType: string
value: string
parents:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
permissionResources:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
properties:
- additionalProperties: string
classId: string
cloneable: false
externalMeta: false
objectType: string
sharedScope: string
tags:
- additionalProperties: string
key: string
value: string
typeDefinitions:
- additionalProperties: string
classId: string
defaults:
- additionalProperties: string
classId: string
isValueSet: false
objectType: string
override: false
value: string
description: string
displayMetas:
- additionalProperties: string
classId: string
inventorySelector: false
objectType: string
widgetType: string
inputParameters: string
label: string
name: string
objectType: string
required: false
versionContexts:
- additionalProperties: string
classId: string
interestedMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
markedForDeletion: false
nrVersion: string
objectType: string
refMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
timestamp: string
versionType: string
workflowCustomDataTypeDefinitionId: string
WorkflowCustomDataTypeDefinition Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The WorkflowCustomDataTypeDefinition resource accepts the following input properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Workflow
Custom Data Type Definition Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Catalogs
List<Workflow
Custom Data Type Definition Catalog> - A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Cloned
Froms List<WorkflowCustom Data Type Definition Cloned From> - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Composite
Type bool - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- A human-friendly description of this custom data type indicating it's domain and usage.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Label string
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parameter
Sets List<WorkflowCustom Data Type Definition Parameter Set> - This complex property has following sub-properties:
- Parents
List<Workflow
Custom Data Type Definition Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<WorkflowCustom Data Type Definition Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Properties
List<Workflow
Custom Data Type Definition Property> - Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Workflow
Custom Data Type Definition Tag> - This complex property has following sub-properties:
- Type
Definitions List<WorkflowCustom Data Type Definition Type Definition> - This complex property has following sub-properties:
- Version
Contexts List<WorkflowCustom Data Type Definition Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workflow
Custom stringData Type Definition Id
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Workflow
Custom Data Type Definition Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Catalogs
[]Workflow
Custom Data Type Definition Catalog Args - A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Cloned
Froms []WorkflowCustom Data Type Definition Cloned From Args - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Composite
Type bool - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- A human-friendly description of this custom data type indicating it's domain and usage.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Label string
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parameter
Sets []WorkflowCustom Data Type Definition Parameter Set Args - This complex property has following sub-properties:
- Parents
[]Workflow
Custom Data Type Definition Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []WorkflowCustom Data Type Definition Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Properties
[]Workflow
Custom Data Type Definition Property Args - Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- []Workflow
Custom Data Type Definition Tag Args - This complex property has following sub-properties:
- Type
Definitions []WorkflowCustom Data Type Definition Type Definition Args - This complex property has following sub-properties:
- Version
Contexts []WorkflowCustom Data Type Definition Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workflow
Custom stringData Type Definition Id
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Workflow
Custom Data Type Definition Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
List<Workflow
Custom Data Type Definition Catalog> - A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cloned
Froms List<WorkflowCustom Data Type Definition Cloned From> - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- composite
Type Boolean - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- A human-friendly description of this custom data type indicating it's domain and usage.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- label String
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parameter
Sets List<WorkflowCustom Data Type Definition Parameter Set> - This complex property has following sub-properties:
- parents
List<Workflow
Custom Data Type Definition Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<WorkflowCustom Data Type Definition Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- properties
List<Workflow
Custom Data Type Definition Property> - Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Workflow
Custom Data Type Definition Tag> - This complex property has following sub-properties:
- type
Definitions List<WorkflowCustom Data Type Definition Type Definition> - This complex property has following sub-properties:
- version
Contexts List<WorkflowCustom Data Type Definition Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workflow
Custom StringData Type Definition Id
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Workflow
Custom Data Type Definition Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
Workflow
Custom Data Type Definition Catalog[] - A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cloned
Froms WorkflowCustom Data Type Definition Cloned From[] - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- composite
Type boolean - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- A human-friendly description of this custom data type indicating it's domain and usage.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- label string
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parameter
Sets WorkflowCustom Data Type Definition Parameter Set[] - This complex property has following sub-properties:
- parents
Workflow
Custom Data Type Definition Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources WorkflowCustom Data Type Definition Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- properties
Workflow
Custom Data Type Definition Property[] - Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Workflow
Custom Data Type Definition Tag[] - This complex property has following sub-properties:
- type
Definitions WorkflowCustom Data Type Definition Type Definition[] - This complex property has following sub-properties:
- version
Contexts WorkflowCustom Data Type Definition Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workflow
Custom stringData Type Definition Id
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Workflow
Custom Data Type Definition Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
Sequence[Workflow
Custom Data Type Definition Catalog Args] - A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cloned_
froms Sequence[WorkflowCustom Data Type Definition Cloned From Args] - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- composite_
type bool - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- create_
time str - (ReadOnly) The time when this managed object was created.
- description str
- A human-friendly description of this custom data type indicating it's domain and usage.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- label str
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parameter_
sets Sequence[WorkflowCustom Data Type Definition Parameter Set Args] - This complex property has following sub-properties:
- parents
Sequence[Workflow
Custom Data Type Definition Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[WorkflowCustom Data Type Definition Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- properties
Sequence[Workflow
Custom Data Type Definition Property Args] - Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Sequence[Workflow
Custom Data Type Definition Tag Args] - This complex property has following sub-properties:
- type_
definitions Sequence[WorkflowCustom Data Type Definition Type Definition Args] - This complex property has following sub-properties:
- version_
contexts Sequence[WorkflowCustom Data Type Definition Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workflow_
custom_ strdata_ type_ definition_ id
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs List<Property Map>
- A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cloned
Froms List<Property Map> - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- composite
Type Boolean - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- A human-friendly description of this custom data type indicating it's domain and usage.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- label String
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parameter
Sets List<Property Map> - This complex property has following sub-properties:
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- properties List<Property Map>
- Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Property Map>
- This complex property has following sub-properties:
- type
Definitions List<Property Map> - This complex property has following sub-properties:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workflow
Custom StringData Type Definition Id
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkflowCustomDataTypeDefinition resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing WorkflowCustomDataTypeDefinition Resource
Get an existing WorkflowCustomDataTypeDefinition resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: WorkflowCustomDataTypeDefinitionState, opts?: CustomResourceOptions): WorkflowCustomDataTypeDefinition
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
additional_properties: Optional[str] = None,
ancestors: Optional[Sequence[WorkflowCustomDataTypeDefinitionAncestorArgs]] = None,
catalogs: Optional[Sequence[WorkflowCustomDataTypeDefinitionCatalogArgs]] = None,
class_id: Optional[str] = None,
cloned_froms: Optional[Sequence[WorkflowCustomDataTypeDefinitionClonedFromArgs]] = None,
composite_type: Optional[bool] = None,
create_time: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
label: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
object_type: Optional[str] = None,
owners: Optional[Sequence[str]] = None,
parameter_sets: Optional[Sequence[WorkflowCustomDataTypeDefinitionParameterSetArgs]] = None,
parents: Optional[Sequence[WorkflowCustomDataTypeDefinitionParentArgs]] = None,
permission_resources: Optional[Sequence[WorkflowCustomDataTypeDefinitionPermissionResourceArgs]] = None,
properties: Optional[Sequence[WorkflowCustomDataTypeDefinitionPropertyArgs]] = None,
shared_scope: Optional[str] = None,
tags: Optional[Sequence[WorkflowCustomDataTypeDefinitionTagArgs]] = None,
type_definitions: Optional[Sequence[WorkflowCustomDataTypeDefinitionTypeDefinitionArgs]] = None,
version_contexts: Optional[Sequence[WorkflowCustomDataTypeDefinitionVersionContextArgs]] = None,
workflow_custom_data_type_definition_id: Optional[str] = None) -> WorkflowCustomDataTypeDefinition
func GetWorkflowCustomDataTypeDefinition(ctx *Context, name string, id IDInput, state *WorkflowCustomDataTypeDefinitionState, opts ...ResourceOption) (*WorkflowCustomDataTypeDefinition, error)
public static WorkflowCustomDataTypeDefinition Get(string name, Input<string> id, WorkflowCustomDataTypeDefinitionState? state, CustomResourceOptions? opts = null)
public static WorkflowCustomDataTypeDefinition get(String name, Output<String> id, WorkflowCustomDataTypeDefinitionState state, CustomResourceOptions options)
resources: _: type: intersight:WorkflowCustomDataTypeDefinition get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Workflow
Custom Data Type Definition Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Catalogs
List<Workflow
Custom Data Type Definition Catalog> - A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Cloned
Froms List<WorkflowCustom Data Type Definition Cloned From> - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Composite
Type bool - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- A human-friendly description of this custom data type indicating it's domain and usage.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Label string
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parameter
Sets List<WorkflowCustom Data Type Definition Parameter Set> - This complex property has following sub-properties:
- Parents
List<Workflow
Custom Data Type Definition Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<WorkflowCustom Data Type Definition Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Properties
List<Workflow
Custom Data Type Definition Property> - Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Workflow
Custom Data Type Definition Tag> - This complex property has following sub-properties:
- Type
Definitions List<WorkflowCustom Data Type Definition Type Definition> - This complex property has following sub-properties:
- Version
Contexts List<WorkflowCustom Data Type Definition Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workflow
Custom stringData Type Definition Id
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Workflow
Custom Data Type Definition Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Catalogs
[]Workflow
Custom Data Type Definition Catalog Args - A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Cloned
Froms []WorkflowCustom Data Type Definition Cloned From Args - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Composite
Type bool - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- A human-friendly description of this custom data type indicating it's domain and usage.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Label string
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parameter
Sets []WorkflowCustom Data Type Definition Parameter Set Args - This complex property has following sub-properties:
- Parents
[]Workflow
Custom Data Type Definition Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []WorkflowCustom Data Type Definition Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Properties
[]Workflow
Custom Data Type Definition Property Args - Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- []Workflow
Custom Data Type Definition Tag Args - This complex property has following sub-properties:
- Type
Definitions []WorkflowCustom Data Type Definition Type Definition Args - This complex property has following sub-properties:
- Version
Contexts []WorkflowCustom Data Type Definition Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workflow
Custom stringData Type Definition Id
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Workflow
Custom Data Type Definition Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
List<Workflow
Custom Data Type Definition Catalog> - A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cloned
Froms List<WorkflowCustom Data Type Definition Cloned From> - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- composite
Type Boolean - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- A human-friendly description of this custom data type indicating it's domain and usage.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- label String
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parameter
Sets List<WorkflowCustom Data Type Definition Parameter Set> - This complex property has following sub-properties:
- parents
List<Workflow
Custom Data Type Definition Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<WorkflowCustom Data Type Definition Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- properties
List<Workflow
Custom Data Type Definition Property> - Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Workflow
Custom Data Type Definition Tag> - This complex property has following sub-properties:
- type
Definitions List<WorkflowCustom Data Type Definition Type Definition> - This complex property has following sub-properties:
- version
Contexts List<WorkflowCustom Data Type Definition Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workflow
Custom StringData Type Definition Id
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Workflow
Custom Data Type Definition Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
Workflow
Custom Data Type Definition Catalog[] - A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cloned
Froms WorkflowCustom Data Type Definition Cloned From[] - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- composite
Type boolean - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- A human-friendly description of this custom data type indicating it's domain and usage.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- label string
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parameter
Sets WorkflowCustom Data Type Definition Parameter Set[] - This complex property has following sub-properties:
- parents
Workflow
Custom Data Type Definition Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources WorkflowCustom Data Type Definition Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- properties
Workflow
Custom Data Type Definition Property[] - Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Workflow
Custom Data Type Definition Tag[] - This complex property has following sub-properties:
- type
Definitions WorkflowCustom Data Type Definition Type Definition[] - This complex property has following sub-properties:
- version
Contexts WorkflowCustom Data Type Definition Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workflow
Custom stringData Type Definition Id
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- additional_
properties str - ancestors
Sequence[Workflow
Custom Data Type Definition Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs
Sequence[Workflow
Custom Data Type Definition Catalog Args] - A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cloned_
froms Sequence[WorkflowCustom Data Type Definition Cloned From Args] - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- composite_
type bool - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- create_
time str - (ReadOnly) The time when this managed object was created.
- description str
- A human-friendly description of this custom data type indicating it's domain and usage.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- label str
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parameter_
sets Sequence[WorkflowCustom Data Type Definition Parameter Set Args] - This complex property has following sub-properties:
- parents
Sequence[Workflow
Custom Data Type Definition Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[WorkflowCustom Data Type Definition Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- properties
Sequence[Workflow
Custom Data Type Definition Property Args] - Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Sequence[Workflow
Custom Data Type Definition Tag Args] - This complex property has following sub-properties:
- type_
definitions Sequence[WorkflowCustom Data Type Definition Type Definition Args] - This complex property has following sub-properties:
- version_
contexts Sequence[WorkflowCustom Data Type Definition Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workflow_
custom_ strdata_ type_ definition_ id
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- catalogs List<Property Map>
- A reference to a workflowCatalog resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- cloned
Froms List<Property Map> - (ReadOnly) A reference to a workflowCustomDataTypeDefinition resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- composite
Type Boolean - When true this data type definition is a collection of type definitions to represent composite data like JSON.
- create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- A human-friendly description of this custom data type indicating it's domain and usage.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- label String
- A user friendly short name to identify the custom data type definition. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), period (.), colon (:), space ( ), single quote ('), or an underscore (_) and must be at least 2 characters.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- The name of custom data type definition. The valid name can contain lower case and upper case alphabetic characters, digits and special characters '-' and '_'.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parameter
Sets List<Property Map> - This complex property has following sub-properties:
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- properties List<Property Map>
- Type to capture all the properties for the custom data type definition. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- List<Property Map>
- This complex property has following sub-properties:
- type
Definitions List<Property Map> - This complex property has following sub-properties:
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workflow
Custom StringData Type Definition Id
Supporting Types
WorkflowCustomDataTypeDefinitionAncestor, WorkflowCustomDataTypeDefinitionAncestorArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
WorkflowCustomDataTypeDefinitionCatalog, WorkflowCustomDataTypeDefinitionCatalogArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
WorkflowCustomDataTypeDefinitionClonedFrom, WorkflowCustomDataTypeDefinitionClonedFromArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
WorkflowCustomDataTypeDefinitionParameterSet, WorkflowCustomDataTypeDefinitionParameterSetArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Condition string
- The condition to be evaluated.*
eq
- Checks if the values of the two parameters are equal.*ne
- Checks if the values of the two parameters are not equal.*contains
- Checks if the second parameter string value is a substring of the first parameter string value.*matchesPattern
- Checks if a string matches a regular expression. - Control
Parameter string - Name of the controlling entity, whose value will be used for evaluating the parameter set.
- Enable
Parameters List<string> - (Array of schema.TypeString) -
- Name string
- Name for the parameter set. Limited to 64 alphanumeric characters (upper and lower case), and special characters '-' and '_'.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The controlling parameter will be evaluated against this 'value'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Condition string
- The condition to be evaluated.*
eq
- Checks if the values of the two parameters are equal.*ne
- Checks if the values of the two parameters are not equal.*contains
- Checks if the second parameter string value is a substring of the first parameter string value.*matchesPattern
- Checks if a string matches a regular expression. - Control
Parameter string - Name of the controlling entity, whose value will be used for evaluating the parameter set.
- Enable
Parameters []string - (Array of schema.TypeString) -
- Name string
- Name for the parameter set. Limited to 64 alphanumeric characters (upper and lower case), and special characters '-' and '_'.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- The controlling parameter will be evaluated against this 'value'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - condition String
- The condition to be evaluated.*
eq
- Checks if the values of the two parameters are equal.*ne
- Checks if the values of the two parameters are not equal.*contains
- Checks if the second parameter string value is a substring of the first parameter string value.*matchesPattern
- Checks if a string matches a regular expression. - control
Parameter String - Name of the controlling entity, whose value will be used for evaluating the parameter set.
- enable
Parameters List<String> - (Array of schema.TypeString) -
- name String
- Name for the parameter set. Limited to 64 alphanumeric characters (upper and lower case), and special characters '-' and '_'.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The controlling parameter will be evaluated against this 'value'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - condition string
- The condition to be evaluated.*
eq
- Checks if the values of the two parameters are equal.*ne
- Checks if the values of the two parameters are not equal.*contains
- Checks if the second parameter string value is a substring of the first parameter string value.*matchesPattern
- Checks if a string matches a regular expression. - control
Parameter string - Name of the controlling entity, whose value will be used for evaluating the parameter set.
- enable
Parameters string[] - (Array of schema.TypeString) -
- name string
- Name for the parameter set. Limited to 64 alphanumeric characters (upper and lower case), and special characters '-' and '_'.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value string
- The controlling parameter will be evaluated against this 'value'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - condition str
- The condition to be evaluated.*
eq
- Checks if the values of the two parameters are equal.*ne
- Checks if the values of the two parameters are not equal.*contains
- Checks if the second parameter string value is a substring of the first parameter string value.*matchesPattern
- Checks if a string matches a regular expression. - control_
parameter str - Name of the controlling entity, whose value will be used for evaluating the parameter set.
- enable_
parameters Sequence[str] - (Array of schema.TypeString) -
- name str
- Name for the parameter set. Limited to 64 alphanumeric characters (upper and lower case), and special characters '-' and '_'.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value str
- The controlling parameter will be evaluated against this 'value'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - condition String
- The condition to be evaluated.*
eq
- Checks if the values of the two parameters are equal.*ne
- Checks if the values of the two parameters are not equal.*contains
- Checks if the second parameter string value is a substring of the first parameter string value.*matchesPattern
- Checks if a string matches a regular expression. - control
Parameter String - Name of the controlling entity, whose value will be used for evaluating the parameter set.
- enable
Parameters List<String> - (Array of schema.TypeString) -
- name String
- Name for the parameter set. Limited to 64 alphanumeric characters (upper and lower case), and special characters '-' and '_'.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- The controlling parameter will be evaluated against this 'value'.
WorkflowCustomDataTypeDefinitionParent, WorkflowCustomDataTypeDefinitionParentArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
WorkflowCustomDataTypeDefinitionPermissionResource, WorkflowCustomDataTypeDefinitionPermissionResourceArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
WorkflowCustomDataTypeDefinitionProperty, WorkflowCustomDataTypeDefinitionPropertyArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Cloneable bool
- (ReadOnly) When set to false custom data type is not cloneable. It is set to true only if data type is not internal and it is not using any internal custom data type.
- External
Meta bool - (ReadOnly) When set to false the custom data type is owned by the system and used for internal services. Such custom data type cannot be directly used by external entities.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Cloneable bool
- (ReadOnly) When set to false custom data type is not cloneable. It is set to true only if data type is not internal and it is not using any internal custom data type.
- External
Meta bool - (ReadOnly) When set to false the custom data type is owned by the system and used for internal services. Such custom data type cannot be directly used by external entities.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - cloneable Boolean
- (ReadOnly) When set to false custom data type is not cloneable. It is set to true only if data type is not internal and it is not using any internal custom data type.
- external
Meta Boolean - (ReadOnly) When set to false the custom data type is owned by the system and used for internal services. Such custom data type cannot be directly used by external entities.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - cloneable boolean
- (ReadOnly) When set to false custom data type is not cloneable. It is set to true only if data type is not internal and it is not using any internal custom data type.
- external
Meta boolean - (ReadOnly) When set to false the custom data type is owned by the system and used for internal services. Such custom data type cannot be directly used by external entities.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - cloneable bool
- (ReadOnly) When set to false custom data type is not cloneable. It is set to true only if data type is not internal and it is not using any internal custom data type.
- external_
meta bool - (ReadOnly) When set to false the custom data type is owned by the system and used for internal services. Such custom data type cannot be directly used by external entities.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - cloneable Boolean
- (ReadOnly) When set to false custom data type is not cloneable. It is set to true only if data type is not internal and it is not using any internal custom data type.
- external
Meta Boolean - (ReadOnly) When set to false the custom data type is owned by the system and used for internal services. Such custom data type cannot be directly used by external entities.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
WorkflowCustomDataTypeDefinitionTag, WorkflowCustomDataTypeDefinitionTagArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
WorkflowCustomDataTypeDefinitionTypeDefinition, WorkflowCustomDataTypeDefinitionTypeDefinitionArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Defaults
List<Workflow
Custom Data Type Definition Type Definition Default> - Default value for the data type. If default value was provided and the input was required the default value will be used as the input. This complex property has following sub-properties:
- Description string
- Provide a detailed description of the data type.
- Display
Metas List<WorkflowCustom Data Type Definition Type Definition Display Meta> - Captures the meta data needed for displaying workflow data types in Intersight User Interface. This complex property has following sub-properties:
- Input
Parameters string - JSON formatted mapping from other property of the definition to the current property. Input parameter mapping is supported only for custom data type property in workflow definition and custom data type definition. The format to specify mapping ina workflow definition when source property is of scalar types is '${workflow.input.property}'. The format to specify mapping when the source property is of object reference and mapping needs to be made to the property of the object is '${workflow.input.property.subproperty}'. The format to specify mapping in a custom data type definition is '${datatype.type.property}'. When the current property is of non-scalar type like composite custom data type, then mapping can be provided to the individual property of the custom data type like 'cdt_property:${workflow.input.property}'.
- Label string
- Descriptive label for the data type. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), space ( ), forward slash (/) or an underscore (_). The first and last character in label must be an alphanumeric character.
- Name string
- Descriptive name for the data type. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- Required bool
- Specifies whether this parameter is required. The field is applicable for task and workflow.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Defaults
[]Workflow
Custom Data Type Definition Type Definition Default - Default value for the data type. If default value was provided and the input was required the default value will be used as the input. This complex property has following sub-properties:
- Description string
- Provide a detailed description of the data type.
- Display
Metas []WorkflowCustom Data Type Definition Type Definition Display Meta - Captures the meta data needed for displaying workflow data types in Intersight User Interface. This complex property has following sub-properties:
- Input
Parameters string - JSON formatted mapping from other property of the definition to the current property. Input parameter mapping is supported only for custom data type property in workflow definition and custom data type definition. The format to specify mapping ina workflow definition when source property is of scalar types is '${workflow.input.property}'. The format to specify mapping when the source property is of object reference and mapping needs to be made to the property of the object is '${workflow.input.property.subproperty}'. The format to specify mapping in a custom data type definition is '${datatype.type.property}'. When the current property is of non-scalar type like composite custom data type, then mapping can be provided to the individual property of the custom data type like 'cdt_property:${workflow.input.property}'.
- Label string
- Descriptive label for the data type. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), space ( ), forward slash (/) or an underscore (_). The first and last character in label must be an alphanumeric character.
- Name string
- Descriptive name for the data type. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- Required bool
- Specifies whether this parameter is required. The field is applicable for task and workflow.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - defaults
List<Workflow
Custom Data Type Definition Type Definition Default> - Default value for the data type. If default value was provided and the input was required the default value will be used as the input. This complex property has following sub-properties:
- description String
- Provide a detailed description of the data type.
- display
Metas List<WorkflowCustom Data Type Definition Type Definition Display Meta> - Captures the meta data needed for displaying workflow data types in Intersight User Interface. This complex property has following sub-properties:
- input
Parameters String - JSON formatted mapping from other property of the definition to the current property. Input parameter mapping is supported only for custom data type property in workflow definition and custom data type definition. The format to specify mapping ina workflow definition when source property is of scalar types is '${workflow.input.property}'. The format to specify mapping when the source property is of object reference and mapping needs to be made to the property of the object is '${workflow.input.property.subproperty}'. The format to specify mapping in a custom data type definition is '${datatype.type.property}'. When the current property is of non-scalar type like composite custom data type, then mapping can be provided to the individual property of the custom data type like 'cdt_property:${workflow.input.property}'.
- label String
- Descriptive label for the data type. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), space ( ), forward slash (/) or an underscore (_). The first and last character in label must be an alphanumeric character.
- name String
- Descriptive name for the data type. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- required Boolean
- Specifies whether this parameter is required. The field is applicable for task and workflow.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - defaults
Workflow
Custom Data Type Definition Type Definition Default[] - Default value for the data type. If default value was provided and the input was required the default value will be used as the input. This complex property has following sub-properties:
- description string
- Provide a detailed description of the data type.
- display
Metas WorkflowCustom Data Type Definition Type Definition Display Meta[] - Captures the meta data needed for displaying workflow data types in Intersight User Interface. This complex property has following sub-properties:
- input
Parameters string - JSON formatted mapping from other property of the definition to the current property. Input parameter mapping is supported only for custom data type property in workflow definition and custom data type definition. The format to specify mapping ina workflow definition when source property is of scalar types is '${workflow.input.property}'. The format to specify mapping when the source property is of object reference and mapping needs to be made to the property of the object is '${workflow.input.property.subproperty}'. The format to specify mapping in a custom data type definition is '${datatype.type.property}'. When the current property is of non-scalar type like composite custom data type, then mapping can be provided to the individual property of the custom data type like 'cdt_property:${workflow.input.property}'.
- label string
- Descriptive label for the data type. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), space ( ), forward slash (/) or an underscore (_). The first and last character in label must be an alphanumeric character.
- name string
- Descriptive name for the data type. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- required boolean
- Specifies whether this parameter is required. The field is applicable for task and workflow.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - defaults
Sequence[Workflow
Custom Data Type Definition Type Definition Default] - Default value for the data type. If default value was provided and the input was required the default value will be used as the input. This complex property has following sub-properties:
- description str
- Provide a detailed description of the data type.
- display_
metas Sequence[WorkflowCustom Data Type Definition Type Definition Display Meta] - Captures the meta data needed for displaying workflow data types in Intersight User Interface. This complex property has following sub-properties:
- input_
parameters str - JSON formatted mapping from other property of the definition to the current property. Input parameter mapping is supported only for custom data type property in workflow definition and custom data type definition. The format to specify mapping ina workflow definition when source property is of scalar types is '${workflow.input.property}'. The format to specify mapping when the source property is of object reference and mapping needs to be made to the property of the object is '${workflow.input.property.subproperty}'. The format to specify mapping in a custom data type definition is '${datatype.type.property}'. When the current property is of non-scalar type like composite custom data type, then mapping can be provided to the individual property of the custom data type like 'cdt_property:${workflow.input.property}'.
- label str
- Descriptive label for the data type. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), space ( ), forward slash (/) or an underscore (_). The first and last character in label must be an alphanumeric character.
- name str
- Descriptive name for the data type. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- required bool
- Specifies whether this parameter is required. The field is applicable for task and workflow.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - defaults List<Property Map>
- Default value for the data type. If default value was provided and the input was required the default value will be used as the input. This complex property has following sub-properties:
- description String
- Provide a detailed description of the data type.
- display
Metas List<Property Map> - Captures the meta data needed for displaying workflow data types in Intersight User Interface. This complex property has following sub-properties:
- input
Parameters String - JSON formatted mapping from other property of the definition to the current property. Input parameter mapping is supported only for custom data type property in workflow definition and custom data type definition. The format to specify mapping ina workflow definition when source property is of scalar types is '${workflow.input.property}'. The format to specify mapping when the source property is of object reference and mapping needs to be made to the property of the object is '${workflow.input.property.subproperty}'. The format to specify mapping in a custom data type definition is '${datatype.type.property}'. When the current property is of non-scalar type like composite custom data type, then mapping can be provided to the individual property of the custom data type like 'cdt_property:${workflow.input.property}'.
- label String
- Descriptive label for the data type. Label can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-), space ( ), forward slash (/) or an underscore (_). The first and last character in label must be an alphanumeric character.
- name String
- Descriptive name for the data type. Name can only contain letters (a-z, A-Z), numbers (0-9), hyphen (-) or an underscore (_). The first and last character in name must be an alphanumeric character.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- required Boolean
- Specifies whether this parameter is required. The field is applicable for task and workflow.
WorkflowCustomDataTypeDefinitionTypeDefinitionDefault, WorkflowCustomDataTypeDefinitionTypeDefinitionDefaultArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Is
Value boolSet - (ReadOnly) A flag that indicates whether a default value is given or not. This flag will be useful in case of the secure parameter where the value will be filtered out in API responses.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Override bool
- Override the default value provided for the data type. When true, allow the user to enter value for the data type.
- Value string
- Default value for the data type. If default value was provided and the input was required the default value will be used as the input.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Is
Value boolSet - (ReadOnly) A flag that indicates whether a default value is given or not. This flag will be useful in case of the secure parameter where the value will be filtered out in API responses.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Override bool
- Override the default value provided for the data type. When true, allow the user to enter value for the data type.
- Value string
- Default value for the data type. If default value was provided and the input was required the default value will be used as the input.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - is
Value BooleanSet - (ReadOnly) A flag that indicates whether a default value is given or not. This flag will be useful in case of the secure parameter where the value will be filtered out in API responses.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- override Boolean
- Override the default value provided for the data type. When true, allow the user to enter value for the data type.
- value String
- Default value for the data type. If default value was provided and the input was required the default value will be used as the input.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - is
Value booleanSet - (ReadOnly) A flag that indicates whether a default value is given or not. This flag will be useful in case of the secure parameter where the value will be filtered out in API responses.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- override boolean
- Override the default value provided for the data type. When true, allow the user to enter value for the data type.
- value string
- Default value for the data type. If default value was provided and the input was required the default value will be used as the input.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - is_
value_ boolset - (ReadOnly) A flag that indicates whether a default value is given or not. This flag will be useful in case of the secure parameter where the value will be filtered out in API responses.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- override bool
- Override the default value provided for the data type. When true, allow the user to enter value for the data type.
- value str
- Default value for the data type. If default value was provided and the input was required the default value will be used as the input.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - is
Value BooleanSet - (ReadOnly) A flag that indicates whether a default value is given or not. This flag will be useful in case of the secure parameter where the value will be filtered out in API responses.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- override Boolean
- Override the default value provided for the data type. When true, allow the user to enter value for the data type.
- value String
- Default value for the data type. If default value was provided and the input was required the default value will be used as the input.
WorkflowCustomDataTypeDefinitionTypeDefinitionDisplayMeta, WorkflowCustomDataTypeDefinitionTypeDefinitionDisplayMetaArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Inventory
Selector bool - Inventory selector specified for primitive data property should be used in Intersight User Interface.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Widget
Type string - Specify the widget type for data display.*
None
- Display none of the widget types.*Radio
- Display the widget as a radio button.*Dropdown
- Display the widget as a dropdown.*GridSelector
- Display the widget as a selector.*DrawerSelector
- Display the widget as a selector.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Inventory
Selector bool - Inventory selector specified for primitive data property should be used in Intersight User Interface.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Widget
Type string - Specify the widget type for data display.*
None
- Display none of the widget types.*Radio
- Display the widget as a radio button.*Dropdown
- Display the widget as a dropdown.*GridSelector
- Display the widget as a selector.*DrawerSelector
- Display the widget as a selector.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - inventory
Selector Boolean - Inventory selector specified for primitive data property should be used in Intersight User Interface.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- widget
Type String - Specify the widget type for data display.*
None
- Display none of the widget types.*Radio
- Display the widget as a radio button.*Dropdown
- Display the widget as a dropdown.*GridSelector
- Display the widget as a selector.*DrawerSelector
- Display the widget as a selector.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - inventory
Selector boolean - Inventory selector specified for primitive data property should be used in Intersight User Interface.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- widget
Type string - Specify the widget type for data display.*
None
- Display none of the widget types.*Radio
- Display the widget as a radio button.*Dropdown
- Display the widget as a dropdown.*GridSelector
- Display the widget as a selector.*DrawerSelector
- Display the widget as a selector.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - inventory_
selector bool - Inventory selector specified for primitive data property should be used in Intersight User Interface.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- widget_
type str - Specify the widget type for data display.*
None
- Display none of the widget types.*Radio
- Display the widget as a radio button.*Dropdown
- Display the widget as a dropdown.*GridSelector
- Display the widget as a selector.*DrawerSelector
- Display the widget as a selector.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - inventory
Selector Boolean - Inventory selector specified for primitive data property should be used in Intersight User Interface.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- widget
Type String - Specify the widget type for data display.*
None
- Display none of the widget types.*Radio
- Display the widget as a radio button.*Dropdown
- Display the widget as a dropdown.*GridSelector
- Display the widget as a selector.*DrawerSelector
- Display the widget as a selector.
WorkflowCustomDataTypeDefinitionVersionContext, WorkflowCustomDataTypeDefinitionVersionContextArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Interested
Mos List<WorkflowCustom Data Type Definition Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<WorkflowCustom Data Type Definition Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Interested
Mos []WorkflowCustom Data Type Definition Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []WorkflowCustom Data Type Definition Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - interested
Mos List<WorkflowCustom Data Type Definition Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<WorkflowCustom Data Type Definition Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - interested
Mos WorkflowCustom Data Type Definition Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos WorkflowCustom Data Type Definition Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - interested_
mos Sequence[WorkflowCustom Data Type Definition Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[WorkflowCustom Data Type Definition Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
WorkflowCustomDataTypeDefinitionVersionContextInterestedMo, WorkflowCustomDataTypeDefinitionVersionContextInterestedMoArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
WorkflowCustomDataTypeDefinitionVersionContextRefMo, WorkflowCustomDataTypeDefinitionVersionContextRefMoArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: workflow.ArrayDataType workflow.CustomDataType workflow.DynamicTemplateParserDataType workflow.MoInventoryDataType workflow.MoReferenceAutoDataType workflow.MoReferenceDataType workflow.PrimitiveDataType workflow.TargetDataType - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_workflow_custom_data_type_definition
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/workflowCustomDataTypeDefinition:WorkflowCustomDataTypeDefinition example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the
intersight
Terraform Provider.