1. Packages
  2. Ibm Provider
  3. API Docs
  4. getProjectConfig
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.getProjectConfig

Explore with Pulumi AI

Provides a read-only data source to retrieve information about a project_config. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const projectConfig = ibm.getProjectConfig({
    projectConfigId: ibm_project_config.project_config_instance.project_config_id,
    projectId: ibm_project_config.project_config_instance.project_id,
});
Copy
import pulumi
import pulumi_ibm as ibm

project_config = ibm.get_project_config(project_config_id=ibm_project_config["project_config_instance"]["project_config_id"],
    project_id=ibm_project_config["project_config_instance"]["project_id"])
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := ibm.LookupProjectConfig(ctx, &ibm.LookupProjectConfigArgs{
			ProjectConfigId: ibm_project_config.Project_config_instance.Project_config_id,
			ProjectId:       ibm_project_config.Project_config_instance.Project_id,
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;

return await Deployment.RunAsync(() => 
{
    var projectConfig = Ibm.GetProjectConfig.Invoke(new()
    {
        ProjectConfigId = ibm_project_config.Project_config_instance.Project_config_id,
        ProjectId = ibm_project_config.Project_config_instance.Project_id,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.IbmFunctions;
import com.pulumi.ibm.inputs.GetProjectConfigArgs;
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 projectConfig = IbmFunctions.getProjectConfig(GetProjectConfigArgs.builder()
            .projectConfigId(ibm_project_config.project_config_instance().project_config_id())
            .projectId(ibm_project_config.project_config_instance().project_id())
            .build());

    }
}
Copy
variables:
  projectConfig:
    fn::invoke:
      function: ibm:getProjectConfig
      arguments:
        projectConfigId: ${ibm_project_config.project_config_instance.project_config_id}
        projectId: ${ibm_project_config.project_config_instance.project_id}
Copy

Using getProjectConfig

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

function getProjectConfig(args: GetProjectConfigArgs, opts?: InvokeOptions): Promise<GetProjectConfigResult>
function getProjectConfigOutput(args: GetProjectConfigOutputArgs, opts?: InvokeOptions): Output<GetProjectConfigResult>
Copy
def get_project_config(id: Optional[str] = None,
                       project_config_id: Optional[str] = None,
                       project_id: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetProjectConfigResult
def get_project_config_output(id: Optional[pulumi.Input[str]] = None,
                       project_config_id: Optional[pulumi.Input[str]] = None,
                       project_id: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetProjectConfigResult]
Copy
func LookupProjectConfig(ctx *Context, args *LookupProjectConfigArgs, opts ...InvokeOption) (*LookupProjectConfigResult, error)
func LookupProjectConfigOutput(ctx *Context, args *LookupProjectConfigOutputArgs, opts ...InvokeOption) LookupProjectConfigResultOutput
Copy

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

public static class GetProjectConfig 
{
    public static Task<GetProjectConfigResult> InvokeAsync(GetProjectConfigArgs args, InvokeOptions? opts = null)
    public static Output<GetProjectConfigResult> Invoke(GetProjectConfigInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetProjectConfigResult> getProjectConfig(GetProjectConfigArgs args, InvokeOptions options)
public static Output<GetProjectConfigResult> getProjectConfig(GetProjectConfigArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: ibm:index/getProjectConfig:getProjectConfig
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

ProjectConfigId This property is required. string
The unique configuration ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
ProjectId This property is required. string
The unique project ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Id string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
ProjectConfigId This property is required. string
The unique configuration ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
ProjectId This property is required. string
The unique project ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Id string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
projectConfigId This property is required. String
The unique configuration ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
projectId This property is required. String
The unique project ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
id String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
projectConfigId This property is required. string
The unique configuration ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
projectId This property is required. string
The unique project ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
id string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
project_config_id This property is required. str
The unique configuration ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
project_id This property is required. str
The unique project ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
id str
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
projectConfigId This property is required. String
The unique configuration ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
projectId This property is required. String
The unique project ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
id String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.

getProjectConfig Result

The following output properties are available:

ApprovedVersions List<GetProjectConfigApprovedVersion>
(List) A summary of a project configuration version. Nested schema for approved_version:
CreatedAt string
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
Definitions List<GetProjectConfigDefinition>
(List) The definition of the project reference. Nested schema for definition:
DeployedVersions List<GetProjectConfigDeployedVersion>
(List) A summary of a project configuration version. Nested schema for deployed_version:
DeploymentModel string
(String) The configuration type.

  • Constraints: Allowable values are: project_deployed, user_deployed, stack.
Href string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
Id string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
IsDraft bool
(Boolean) The flag that indicates whether the version of the configuration is draft, or active.
LastSavedAt string
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
MemberOfs List<GetProjectConfigMemberOf>
(List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
ModifiedAt string
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
NeedsAttentionStates List<GetProjectConfigNeedsAttentionState>
(List) The needs attention state of a configuration.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for needs_attention_state:
Outputs List<GetProjectConfigOutput>
(List) The outputs of a Schematics template property.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for outputs:
ProjectConfigId string
ProjectId string
Projects List<GetProjectConfigProject>
(List) The project that is referenced by this resource. Nested schema for project:
Schematics List<GetProjectConfigSchematic>
(List) A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
State string
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
StateCode string
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
TemplateId string
(String) The stack definition identifier.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
UpdateAvailable bool
(Boolean) The flag that indicates whether a configuration update is available.
Version double
(Integer) The version of the configuration.
ApprovedVersions []GetProjectConfigApprovedVersion
(List) A summary of a project configuration version. Nested schema for approved_version:
CreatedAt string
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
Definitions []GetProjectConfigDefinition
(List) The definition of the project reference. Nested schema for definition:
DeployedVersions []GetProjectConfigDeployedVersion
(List) A summary of a project configuration version. Nested schema for deployed_version:
DeploymentModel string
(String) The configuration type.

  • Constraints: Allowable values are: project_deployed, user_deployed, stack.
Href string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
Id string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
IsDraft bool
(Boolean) The flag that indicates whether the version of the configuration is draft, or active.
LastSavedAt string
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
MemberOfs []GetProjectConfigMemberOf
(List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
ModifiedAt string
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
NeedsAttentionStates []GetProjectConfigNeedsAttentionState
(List) The needs attention state of a configuration.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for needs_attention_state:
Outputs []GetProjectConfigTypeOutput
(List) The outputs of a Schematics template property.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for outputs:
ProjectConfigId string
ProjectId string
Projects []GetProjectConfigProject
(List) The project that is referenced by this resource. Nested schema for project:
Schematics []GetProjectConfigSchematic
(List) A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
State string
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
StateCode string
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
TemplateId string
(String) The stack definition identifier.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
UpdateAvailable bool
(Boolean) The flag that indicates whether a configuration update is available.
Version float64
(Integer) The version of the configuration.
approvedVersions List<GetProjectConfigApprovedVersion>
(List) A summary of a project configuration version. Nested schema for approved_version:
createdAt String
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
definitions List<GetProjectConfigDefinition>
(List) The definition of the project reference. Nested schema for definition:
deployedVersions List<GetProjectConfigDeployedVersion>
(List) A summary of a project configuration version. Nested schema for deployed_version:
deploymentModel String
(String) The configuration type.

  • Constraints: Allowable values are: project_deployed, user_deployed, stack.
href String
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
isDraft Boolean
(Boolean) The flag that indicates whether the version of the configuration is draft, or active.
lastSavedAt String
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
memberOfs List<GetProjectConfigMemberOf>
(List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
modifiedAt String
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
needsAttentionStates List<GetProjectConfigNeedsAttentionState>
(List) The needs attention state of a configuration.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for needs_attention_state:
outputs List<GetProjectConfigOutput>
(List) The outputs of a Schematics template property.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for outputs:
projectConfigId String
projectId String
projects List<GetProjectConfigProject>
(List) The project that is referenced by this resource. Nested schema for project:
schematics List<GetProjectConfigSchematic>
(List) A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
state String
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
stateCode String
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
templateId String
(String) The stack definition identifier.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
updateAvailable Boolean
(Boolean) The flag that indicates whether a configuration update is available.
version Double
(Integer) The version of the configuration.
approvedVersions GetProjectConfigApprovedVersion[]
(List) A summary of a project configuration version. Nested schema for approved_version:
createdAt string
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
definitions GetProjectConfigDefinition[]
(List) The definition of the project reference. Nested schema for definition:
deployedVersions GetProjectConfigDeployedVersion[]
(List) A summary of a project configuration version. Nested schema for deployed_version:
deploymentModel string
(String) The configuration type.

  • Constraints: Allowable values are: project_deployed, user_deployed, stack.
href string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
isDraft boolean
(Boolean) The flag that indicates whether the version of the configuration is draft, or active.
lastSavedAt string
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
memberOfs GetProjectConfigMemberOf[]
(List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
modifiedAt string
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
needsAttentionStates GetProjectConfigNeedsAttentionState[]
(List) The needs attention state of a configuration.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for needs_attention_state:
outputs GetProjectConfigOutput[]
(List) The outputs of a Schematics template property.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for outputs:
projectConfigId string
projectId string
projects GetProjectConfigProject[]
(List) The project that is referenced by this resource. Nested schema for project:
schematics GetProjectConfigSchematic[]
(List) A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
state string
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
stateCode string
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
templateId string
(String) The stack definition identifier.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
updateAvailable boolean
(Boolean) The flag that indicates whether a configuration update is available.
version number
(Integer) The version of the configuration.
approved_versions Sequence[GetProjectConfigApprovedVersion]
(List) A summary of a project configuration version. Nested schema for approved_version:
created_at str
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
definitions Sequence[GetProjectConfigDefinition]
(List) The definition of the project reference. Nested schema for definition:
deployed_versions Sequence[GetProjectConfigDeployedVersion]
(List) A summary of a project configuration version. Nested schema for deployed_version:
deployment_model str
(String) The configuration type.

  • Constraints: Allowable values are: project_deployed, user_deployed, stack.
href str
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id str
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
is_draft bool
(Boolean) The flag that indicates whether the version of the configuration is draft, or active.
last_saved_at str
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
member_ofs Sequence[GetProjectConfigMemberOf]
(List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
modified_at str
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
needs_attention_states Sequence[GetProjectConfigNeedsAttentionState]
(List) The needs attention state of a configuration.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for needs_attention_state:
outputs Sequence[GetProjectConfigOutput]
(List) The outputs of a Schematics template property.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for outputs:
project_config_id str
project_id str
projects Sequence[GetProjectConfigProject]
(List) The project that is referenced by this resource. Nested schema for project:
schematics Sequence[GetProjectConfigSchematic]
(List) A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
state str
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
state_code str
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
template_id str
(String) The stack definition identifier.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
update_available bool
(Boolean) The flag that indicates whether a configuration update is available.
version float
(Integer) The version of the configuration.
approvedVersions List<Property Map>
(List) A summary of a project configuration version. Nested schema for approved_version:
createdAt String
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
definitions List<Property Map>
(List) The definition of the project reference. Nested schema for definition:
deployedVersions List<Property Map>
(List) A summary of a project configuration version. Nested schema for deployed_version:
deploymentModel String
(String) The configuration type.

  • Constraints: Allowable values are: project_deployed, user_deployed, stack.
href String
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
isDraft Boolean
(Boolean) The flag that indicates whether the version of the configuration is draft, or active.
lastSavedAt String
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
memberOfs List<Property Map>
(List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
modifiedAt String
(String) A date and time value in the format YYYY-MM-DDTHH:mm:ssZ or YYYY-MM-DDTHH:mm:ss.sssZ to match the date and time format as specified by RFC 3339.
needsAttentionStates List<Property Map>
(List) The needs attention state of a configuration.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for needs_attention_state:
outputs List<Property Map>
(List) The outputs of a Schematics template property.

  • Constraints: The default value is []. The maximum length is 50 items. The minimum length is 0 items. Nested schema for outputs:
projectConfigId String
projectId String
projects List<Property Map>
(List) The project that is referenced by this resource. Nested schema for project:
schematics List<Property Map>
(List) A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
state String
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
stateCode String
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
templateId String
(String) The stack definition identifier.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
updateAvailable Boolean
(Boolean) The flag that indicates whether a configuration update is available.
version Number
(Integer) The version of the configuration.

Supporting Types

GetProjectConfigApprovedVersion

Definitions This property is required. List<GetProjectConfigApprovedVersionDefinition>
(List) The definition of the project reference. Nested schema for definition:
Href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
State This property is required. string
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
StateCode This property is required. string
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
Version This property is required. double
(Integer) The version of the configuration.
Definitions This property is required. []GetProjectConfigApprovedVersionDefinition
(List) The definition of the project reference. Nested schema for definition:
Href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
State This property is required. string
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
StateCode This property is required. string
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
Version This property is required. float64
(Integer) The version of the configuration.
definitions This property is required. List<GetProjectConfigApprovedVersionDefinition>
(List) The definition of the project reference. Nested schema for definition:
href This property is required. String
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
state This property is required. String
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
stateCode This property is required. String
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
version This property is required. Double
(Integer) The version of the configuration.
definitions This property is required. GetProjectConfigApprovedVersionDefinition[]
(List) The definition of the project reference. Nested schema for definition:
href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
state This property is required. string
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
stateCode This property is required. string
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
version This property is required. number
(Integer) The version of the configuration.
definitions This property is required. Sequence[GetProjectConfigApprovedVersionDefinition]
(List) The definition of the project reference. Nested schema for definition:
href This property is required. str
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
state This property is required. str
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
state_code This property is required. str
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
version This property is required. float
(Integer) The version of the configuration.
definitions This property is required. List<Property Map>
(List) The definition of the project reference. Nested schema for definition:
href This property is required. String
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
state This property is required. String
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
stateCode This property is required. String
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
version This property is required. Number
(Integer) The version of the configuration.

GetProjectConfigApprovedVersionDefinition

EnvironmentId This property is required. string
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
LocatorId This property is required. string
EnvironmentId This property is required. string
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
LocatorId This property is required. string
environmentId This property is required. String
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
locatorId This property is required. String
environmentId This property is required. string
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
locatorId This property is required. string
environment_id This property is required. str
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
locator_id This property is required. str
environmentId This property is required. String
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
locatorId This property is required. String

GetProjectConfigDefinition

Authorizations This property is required. List<GetProjectConfigDefinitionAuthorization>
(List) The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
ComplianceProfiles This property is required. List<GetProjectConfigDefinitionComplianceProfile>
(List) The profile that is required for compliance. Nested schema for compliance_profile:
Description This property is required. string
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
EnvironmentId This property is required. string
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Inputs This property is required. Dictionary<string, string>
(Map) The input variables that are used for configuration definition and environment.
LocatorId This property is required. string
Members This property is required. List<GetProjectConfigDefinitionMember>
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
ResourceCrns This property is required. List<string>
(List) The CRNs of the resources that are associated with this configuration.

  • Constraints: The list items must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/. The maximum length is 110 items. The minimum length is 0 items.
Settings This property is required. Dictionary<string, string>
(Map) The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
Authorizations This property is required. []GetProjectConfigDefinitionAuthorization
(List) The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
ComplianceProfiles This property is required. []GetProjectConfigDefinitionComplianceProfile
(List) The profile that is required for compliance. Nested schema for compliance_profile:
Description This property is required. string
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
EnvironmentId This property is required. string
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Inputs This property is required. map[string]string
(Map) The input variables that are used for configuration definition and environment.
LocatorId This property is required. string
Members This property is required. []GetProjectConfigDefinitionMember
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
ResourceCrns This property is required. []string
(List) The CRNs of the resources that are associated with this configuration.

  • Constraints: The list items must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/. The maximum length is 110 items. The minimum length is 0 items.
Settings This property is required. map[string]string
(Map) The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
authorizations This property is required. List<GetProjectConfigDefinitionAuthorization>
(List) The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
complianceProfiles This property is required. List<GetProjectConfigDefinitionComplianceProfile>
(List) The profile that is required for compliance. Nested schema for compliance_profile:
description This property is required. String
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
environmentId This property is required. String
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
inputs This property is required. Map<String,String>
(Map) The input variables that are used for configuration definition and environment.
locatorId This property is required. String
members This property is required. List<GetProjectConfigDefinitionMember>
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
resourceCrns This property is required. List<String>
(List) The CRNs of the resources that are associated with this configuration.

  • Constraints: The list items must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/. The maximum length is 110 items. The minimum length is 0 items.
settings This property is required. Map<String,String>
(Map) The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
authorizations This property is required. GetProjectConfigDefinitionAuthorization[]
(List) The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
complianceProfiles This property is required. GetProjectConfigDefinitionComplianceProfile[]
(List) The profile that is required for compliance. Nested schema for compliance_profile:
description This property is required. string
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
environmentId This property is required. string
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
inputs This property is required. {[key: string]: string}
(Map) The input variables that are used for configuration definition and environment.
locatorId This property is required. string
members This property is required. GetProjectConfigDefinitionMember[]
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
resourceCrns This property is required. string[]
(List) The CRNs of the resources that are associated with this configuration.

  • Constraints: The list items must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/. The maximum length is 110 items. The minimum length is 0 items.
settings This property is required. {[key: string]: string}
(Map) The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
authorizations This property is required. Sequence[GetProjectConfigDefinitionAuthorization]
(List) The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
compliance_profiles This property is required. Sequence[GetProjectConfigDefinitionComplianceProfile]
(List) The profile that is required for compliance. Nested schema for compliance_profile:
description This property is required. str
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
environment_id This property is required. str
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
inputs This property is required. Mapping[str, str]
(Map) The input variables that are used for configuration definition and environment.
locator_id This property is required. str
members This property is required. Sequence[GetProjectConfigDefinitionMember]
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
name This property is required. str
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
resource_crns This property is required. Sequence[str]
(List) The CRNs of the resources that are associated with this configuration.

  • Constraints: The list items must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/. The maximum length is 110 items. The minimum length is 0 items.
settings This property is required. Mapping[str, str]
(Map) The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
authorizations This property is required. List<Property Map>
(List) The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
complianceProfiles This property is required. List<Property Map>
(List) The profile that is required for compliance. Nested schema for compliance_profile:
description This property is required. String
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
environmentId This property is required. String
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
inputs This property is required. Map<String>
(Map) The input variables that are used for configuration definition and environment.
locatorId This property is required. String
members This property is required. List<Property Map>
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
resourceCrns This property is required. List<String>
(List) The CRNs of the resources that are associated with this configuration.

  • Constraints: The list items must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/. The maximum length is 110 items. The minimum length is 0 items.
settings This property is required. Map<String>
(Map) The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.

GetProjectConfigDefinitionAuthorization

ApiKey This property is required. string
(String) The IBM Cloud API Key. It can be either raw or pulled from the catalog via a CRN or JSON blob.

  • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
Method This property is required. string
(String) The authorization method. You can authorize by using a trusted profile or an API key in Secrets Manager.

  • Constraints: Allowable values are: api_key, trusted_profile.
TrustedProfileId This property is required. string
(String) The trusted profile ID.

  • Constraints: The maximum length is 512 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
ApiKey This property is required. string
(String) The IBM Cloud API Key. It can be either raw or pulled from the catalog via a CRN or JSON blob.

  • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
Method This property is required. string
(String) The authorization method. You can authorize by using a trusted profile or an API key in Secrets Manager.

  • Constraints: Allowable values are: api_key, trusted_profile.
TrustedProfileId This property is required. string
(String) The trusted profile ID.

  • Constraints: The maximum length is 512 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
apiKey This property is required. String
(String) The IBM Cloud API Key. It can be either raw or pulled from the catalog via a CRN or JSON blob.

  • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
method This property is required. String
(String) The authorization method. You can authorize by using a trusted profile or an API key in Secrets Manager.

  • Constraints: Allowable values are: api_key, trusted_profile.
trustedProfileId This property is required. String
(String) The trusted profile ID.

  • Constraints: The maximum length is 512 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
apiKey This property is required. string
(String) The IBM Cloud API Key. It can be either raw or pulled from the catalog via a CRN or JSON blob.

  • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
method This property is required. string
(String) The authorization method. You can authorize by using a trusted profile or an API key in Secrets Manager.

  • Constraints: Allowable values are: api_key, trusted_profile.
trustedProfileId This property is required. string
(String) The trusted profile ID.

  • Constraints: The maximum length is 512 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
api_key This property is required. str
(String) The IBM Cloud API Key. It can be either raw or pulled from the catalog via a CRN or JSON blob.

  • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
method This property is required. str
(String) The authorization method. You can authorize by using a trusted profile or an API key in Secrets Manager.

  • Constraints: Allowable values are: api_key, trusted_profile.
trusted_profile_id This property is required. str
(String) The trusted profile ID.

  • Constraints: The maximum length is 512 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
apiKey This property is required. String
(String) The IBM Cloud API Key. It can be either raw or pulled from the catalog via a CRN or JSON blob.

  • Constraints: The maximum length is 512 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
method This property is required. String
(String) The authorization method. You can authorize by using a trusted profile or an API key in Secrets Manager.

  • Constraints: Allowable values are: api_key, trusted_profile.
trustedProfileId This property is required. String
(String) The trusted profile ID.

  • Constraints: The maximum length is 512 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.

GetProjectConfigDefinitionComplianceProfile

AttachmentId This property is required. string
(String) A unique ID for the attachment to a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Id This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
InstanceId This property is required. string
(String) A unique ID for the instance of a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
InstanceLocation This property is required. string
(String) The location of the compliance instance.

  • Constraints: Allowable values are: us-south, us-east, eu-gb, eu-de, ca-tor.
ProfileName This property is required. string
(String) The name of the compliance profile.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
AttachmentId This property is required. string
(String) A unique ID for the attachment to a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Id This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
InstanceId This property is required. string
(String) A unique ID for the instance of a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
InstanceLocation This property is required. string
(String) The location of the compliance instance.

  • Constraints: Allowable values are: us-south, us-east, eu-gb, eu-de, ca-tor.
ProfileName This property is required. string
(String) The name of the compliance profile.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
attachmentId This property is required. String
(String) A unique ID for the attachment to a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
id This property is required. String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
instanceId This property is required. String
(String) A unique ID for the instance of a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
instanceLocation This property is required. String
(String) The location of the compliance instance.

  • Constraints: Allowable values are: us-south, us-east, eu-gb, eu-de, ca-tor.
profileName This property is required. String
(String) The name of the compliance profile.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
attachmentId This property is required. string
(String) A unique ID for the attachment to a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
id This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
instanceId This property is required. string
(String) A unique ID for the instance of a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
instanceLocation This property is required. string
(String) The location of the compliance instance.

  • Constraints: Allowable values are: us-south, us-east, eu-gb, eu-de, ca-tor.
profileName This property is required. string
(String) The name of the compliance profile.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
attachment_id This property is required. str
(String) A unique ID for the attachment to a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
id This property is required. str
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
instance_id This property is required. str
(String) A unique ID for the instance of a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
instance_location This property is required. str
(String) The location of the compliance instance.

  • Constraints: Allowable values are: us-south, us-east, eu-gb, eu-de, ca-tor.
profile_name This property is required. str
(String) The name of the compliance profile.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.
attachmentId This property is required. String
(String) A unique ID for the attachment to a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
id This property is required. String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
instanceId This property is required. String
(String) A unique ID for the instance of a compliance profile.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
instanceLocation This property is required. String
(String) The location of the compliance instance.

  • Constraints: Allowable values are: us-south, us-east, eu-gb, eu-de, ca-tor.
profileName This property is required. String
(String) The name of the compliance profile.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/.

GetProjectConfigDefinitionMember

ConfigId This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
ConfigId This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
configId This property is required. String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
configId This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
config_id This property is required. str
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
name This property is required. str
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
configId This property is required. String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.

GetProjectConfigDeployedVersion

Definitions This property is required. List<GetProjectConfigDeployedVersionDefinition>
(List) The definition of the project reference. Nested schema for definition:
Href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
State This property is required. string
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
StateCode This property is required. string
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
Version This property is required. double
(Integer) The version of the configuration.
Definitions This property is required. []GetProjectConfigDeployedVersionDefinition
(List) The definition of the project reference. Nested schema for definition:
Href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
State This property is required. string
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
StateCode This property is required. string
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
Version This property is required. float64
(Integer) The version of the configuration.
definitions This property is required. List<GetProjectConfigDeployedVersionDefinition>
(List) The definition of the project reference. Nested schema for definition:
href This property is required. String
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
state This property is required. String
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
stateCode This property is required. String
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
version This property is required. Double
(Integer) The version of the configuration.
definitions This property is required. GetProjectConfigDeployedVersionDefinition[]
(List) The definition of the project reference. Nested schema for definition:
href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
state This property is required. string
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
stateCode This property is required. string
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
version This property is required. number
(Integer) The version of the configuration.
definitions This property is required. Sequence[GetProjectConfigDeployedVersionDefinition]
(List) The definition of the project reference. Nested schema for definition:
href This property is required. str
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
state This property is required. str
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
state_code This property is required. str
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
version This property is required. float
(Integer) The version of the configuration.
definitions This property is required. List<Property Map>
(List) The definition of the project reference. Nested schema for definition:
href This property is required. String
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
state This property is required. String
(String) The state of the configuration.

  • Constraints: Allowable values are: approved, deleted, deleting, deleting_failed, discarded, draft, deployed, deploying_failed, deploying, superseded, undeploying, undeploying_failed, validated, validating, validating_failed, applied, apply_failed.
stateCode This property is required. String
(String) Computed state code clarifying the prerequisites for validation for the configuration.

  • Constraints: Allowable values are: awaiting_input, awaiting_prerequisite, awaiting_validation, awaiting_member_deployment, awaiting_stack_setup.
version This property is required. Number
(Integer) The version of the configuration.

GetProjectConfigDeployedVersionDefinition

EnvironmentId This property is required. string
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
LocatorId This property is required. string
EnvironmentId This property is required. string
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
LocatorId This property is required. string
environmentId This property is required. String
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
locatorId This property is required. String
environmentId This property is required. string
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
locatorId This property is required. string
environment_id This property is required. str
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
locator_id This property is required. str
environmentId This property is required. String
(String) The ID of the project environment.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
locatorId This property is required. String

GetProjectConfigMemberOf

Definitions This property is required. List<GetProjectConfigMemberOfDefinition>
(List) The definition of the project reference. Nested schema for definition:
Href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
Id This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Version This property is required. double
(Integer) The version of the configuration.
Definitions This property is required. []GetProjectConfigMemberOfDefinition
(List) The definition of the project reference. Nested schema for definition:
Href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
Id This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Version This property is required. float64
(Integer) The version of the configuration.
definitions This property is required. List<GetProjectConfigMemberOfDefinition>
(List) The definition of the project reference. Nested schema for definition:
href This property is required. String
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id This property is required. String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
version This property is required. Double
(Integer) The version of the configuration.
definitions This property is required. GetProjectConfigMemberOfDefinition[]
(List) The definition of the project reference. Nested schema for definition:
href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
version This property is required. number
(Integer) The version of the configuration.
definitions This property is required. Sequence[GetProjectConfigMemberOfDefinition]
(List) The definition of the project reference. Nested schema for definition:
href This property is required. str
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id This property is required. str
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
version This property is required. float
(Integer) The version of the configuration.
definitions This property is required. List<Property Map>
(List) The definition of the project reference. Nested schema for definition:
href This property is required. String
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id This property is required. String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
version This property is required. Number
(Integer) The version of the configuration.

GetProjectConfigMemberOfDefinition

Members This property is required. List<GetProjectConfigMemberOfDefinitionMember>
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
Members This property is required. []GetProjectConfigMemberOfDefinitionMember
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
members This property is required. List<GetProjectConfigMemberOfDefinitionMember>
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
members This property is required. GetProjectConfigMemberOfDefinitionMember[]
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
members This property is required. Sequence[GetProjectConfigMemberOfDefinitionMember]
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
name This property is required. str
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
members This property is required. List<Property Map>
(List) The member deployabe architectures that are included in your stack.

  • Constraints: The default value is []. The maximum length is 100 items. The minimum length is 0 items. Nested schema for members:
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.

GetProjectConfigMemberOfDefinitionMember

ConfigId This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
ConfigId This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
configId This property is required. String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
configId This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
config_id This property is required. str
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
name This property is required. str
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
configId This property is required. String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.

GetProjectConfigNeedsAttentionState

ActionUrl This property is required. string
(String) An actionable URL that users can access in response to the event. This is a system generated field. For user triggered events the field is not present.
Event This property is required. string
(String) The name of the event.
EventId This property is required. string
(String) The id of the event.
Severity This property is required. string
(String) The severity of the event. This is a system generated field. For user triggered events the field is not present.

  • Constraints: Allowable values are: INFO, WARNING, ERROR.
Target This property is required. string
(String) The configuration id and version for which the event occurred. This field is only available for user generated events. For system triggered events the field is not present.
Timestamp This property is required. string
(String) The timestamp of the event.
TriggeredBy This property is required. string
(String) The IAM id of the user that triggered the event. This field is only available for user generated events. For system triggered events the field is not present.
ActionUrl This property is required. string
(String) An actionable URL that users can access in response to the event. This is a system generated field. For user triggered events the field is not present.
Event This property is required. string
(String) The name of the event.
EventId This property is required. string
(String) The id of the event.
Severity This property is required. string
(String) The severity of the event. This is a system generated field. For user triggered events the field is not present.

  • Constraints: Allowable values are: INFO, WARNING, ERROR.
Target This property is required. string
(String) The configuration id and version for which the event occurred. This field is only available for user generated events. For system triggered events the field is not present.
Timestamp This property is required. string
(String) The timestamp of the event.
TriggeredBy This property is required. string
(String) The IAM id of the user that triggered the event. This field is only available for user generated events. For system triggered events the field is not present.
actionUrl This property is required. String
(String) An actionable URL that users can access in response to the event. This is a system generated field. For user triggered events the field is not present.
event This property is required. String
(String) The name of the event.
eventId This property is required. String
(String) The id of the event.
severity This property is required. String
(String) The severity of the event. This is a system generated field. For user triggered events the field is not present.

  • Constraints: Allowable values are: INFO, WARNING, ERROR.
target This property is required. String
(String) The configuration id and version for which the event occurred. This field is only available for user generated events. For system triggered events the field is not present.
timestamp This property is required. String
(String) The timestamp of the event.
triggeredBy This property is required. String
(String) The IAM id of the user that triggered the event. This field is only available for user generated events. For system triggered events the field is not present.
actionUrl This property is required. string
(String) An actionable URL that users can access in response to the event. This is a system generated field. For user triggered events the field is not present.
event This property is required. string
(String) The name of the event.
eventId This property is required. string
(String) The id of the event.
severity This property is required. string
(String) The severity of the event. This is a system generated field. For user triggered events the field is not present.

  • Constraints: Allowable values are: INFO, WARNING, ERROR.
target This property is required. string
(String) The configuration id and version for which the event occurred. This field is only available for user generated events. For system triggered events the field is not present.
timestamp This property is required. string
(String) The timestamp of the event.
triggeredBy This property is required. string
(String) The IAM id of the user that triggered the event. This field is only available for user generated events. For system triggered events the field is not present.
action_url This property is required. str
(String) An actionable URL that users can access in response to the event. This is a system generated field. For user triggered events the field is not present.
event This property is required. str
(String) The name of the event.
event_id This property is required. str
(String) The id of the event.
severity This property is required. str
(String) The severity of the event. This is a system generated field. For user triggered events the field is not present.

  • Constraints: Allowable values are: INFO, WARNING, ERROR.
target This property is required. str
(String) The configuration id and version for which the event occurred. This field is only available for user generated events. For system triggered events the field is not present.
timestamp This property is required. str
(String) The timestamp of the event.
triggered_by This property is required. str
(String) The IAM id of the user that triggered the event. This field is only available for user generated events. For system triggered events the field is not present.
actionUrl This property is required. String
(String) An actionable URL that users can access in response to the event. This is a system generated field. For user triggered events the field is not present.
event This property is required. String
(String) The name of the event.
eventId This property is required. String
(String) The id of the event.
severity This property is required. String
(String) The severity of the event. This is a system generated field. For user triggered events the field is not present.

  • Constraints: Allowable values are: INFO, WARNING, ERROR.
target This property is required. String
(String) The configuration id and version for which the event occurred. This field is only available for user generated events. For system triggered events the field is not present.
timestamp This property is required. String
(String) The timestamp of the event.
triggeredBy This property is required. String
(String) The IAM id of the user that triggered the event. This field is only available for user generated events. For system triggered events the field is not present.

GetProjectConfigOutput

Description This property is required. string
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
Value This property is required. string
(String) This property can be any value - a string, number, boolean, array, or object.
Description This property is required. string
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
Value This property is required. string
(String) This property can be any value - a string, number, boolean, array, or object.
description This property is required. String
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
value This property is required. String
(String) This property can be any value - a string, number, boolean, array, or object.
description This property is required. string
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
value This property is required. string
(String) This property can be any value - a string, number, boolean, array, or object.
description This property is required. str
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
name This property is required. str
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
value This property is required. str
(String) This property can be any value - a string, number, boolean, array, or object.
description This property is required. String
(String) A short explanation of the output value.

  • Constraints: The maximum length is 1024 characters. The minimum length is 0 characters. The value must match regular expression /^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
value This property is required. String
(String) This property can be any value - a string, number, boolean, array, or object.

GetProjectConfigProject

Crn This property is required. string
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
Definitions This property is required. List<GetProjectConfigProjectDefinition>
(List) The definition of the project reference. Nested schema for definition:
Href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
Id This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
Crn This property is required. string
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
Definitions This property is required. []GetProjectConfigProjectDefinition
(List) The definition of the project reference. Nested schema for definition:
Href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
Id This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
crn This property is required. String
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
definitions This property is required. List<GetProjectConfigProjectDefinition>
(List) The definition of the project reference. Nested schema for definition:
href This property is required. String
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id This property is required. String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
crn This property is required. string
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
definitions This property is required. GetProjectConfigProjectDefinition[]
(List) The definition of the project reference. Nested schema for definition:
href This property is required. string
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id This property is required. string
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
crn This property is required. str
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
definitions This property is required. Sequence[GetProjectConfigProjectDefinition]
(List) The definition of the project reference. Nested schema for definition:
href This property is required. str
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id This property is required. str
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.
crn This property is required. String
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
definitions This property is required. List<Property Map>
(List) The definition of the project reference. Nested schema for definition:
href This property is required. String
(String) A URL.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/.
id This property is required. String
(String) The unique ID.

  • Constraints: The maximum length is 128 characters. The value must match regular expression /^[\\.\\-0-9a-zA-Z]+$/.

GetProjectConfigProjectDefinition

Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
Name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
name This property is required. string
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
name This property is required. str
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.
name This property is required. String
(String) The name of the project.

  • Constraints: The maximum length is 64 characters. The minimum length is 1 character. The value must match regular expression /^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/.

GetProjectConfigSchematic

DeployPostScripts This property is required. List<GetProjectConfigSchematicDeployPostScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_post_script:
DeployPreScripts This property is required. List<GetProjectConfigSchematicDeployPreScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_pre_script:
UndeployPostScripts This property is required. List<GetProjectConfigSchematicUndeployPostScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_post_script:
UndeployPreScripts This property is required. List<GetProjectConfigSchematicUndeployPreScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_pre_script:
ValidatePostScripts This property is required. List<GetProjectConfigSchematicValidatePostScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_post_script:
ValidatePreScripts This property is required. List<GetProjectConfigSchematicValidatePreScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_pre_script:
WorkspaceCrn This property is required. string
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
DeployPostScripts This property is required. []GetProjectConfigSchematicDeployPostScript
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_post_script:
DeployPreScripts This property is required. []GetProjectConfigSchematicDeployPreScript
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_pre_script:
UndeployPostScripts This property is required. []GetProjectConfigSchematicUndeployPostScript
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_post_script:
UndeployPreScripts This property is required. []GetProjectConfigSchematicUndeployPreScript
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_pre_script:
ValidatePostScripts This property is required. []GetProjectConfigSchematicValidatePostScript
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_post_script:
ValidatePreScripts This property is required. []GetProjectConfigSchematicValidatePreScript
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_pre_script:
WorkspaceCrn This property is required. string
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
deployPostScripts This property is required. List<GetProjectConfigSchematicDeployPostScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_post_script:
deployPreScripts This property is required. List<GetProjectConfigSchematicDeployPreScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_pre_script:
undeployPostScripts This property is required. List<GetProjectConfigSchematicUndeployPostScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_post_script:
undeployPreScripts This property is required. List<GetProjectConfigSchematicUndeployPreScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_pre_script:
validatePostScripts This property is required. List<GetProjectConfigSchematicValidatePostScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_post_script:
validatePreScripts This property is required. List<GetProjectConfigSchematicValidatePreScript>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_pre_script:
workspaceCrn This property is required. String
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
deployPostScripts This property is required. GetProjectConfigSchematicDeployPostScript[]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_post_script:
deployPreScripts This property is required. GetProjectConfigSchematicDeployPreScript[]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_pre_script:
undeployPostScripts This property is required. GetProjectConfigSchematicUndeployPostScript[]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_post_script:
undeployPreScripts This property is required. GetProjectConfigSchematicUndeployPreScript[]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_pre_script:
validatePostScripts This property is required. GetProjectConfigSchematicValidatePostScript[]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_post_script:
validatePreScripts This property is required. GetProjectConfigSchematicValidatePreScript[]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_pre_script:
workspaceCrn This property is required. string
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
deploy_post_scripts This property is required. Sequence[GetProjectConfigSchematicDeployPostScript]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_post_script:
deploy_pre_scripts This property is required. Sequence[GetProjectConfigSchematicDeployPreScript]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_pre_script:
undeploy_post_scripts This property is required. Sequence[GetProjectConfigSchematicUndeployPostScript]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_post_script:
undeploy_pre_scripts This property is required. Sequence[GetProjectConfigSchematicUndeployPreScript]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_pre_script:
validate_post_scripts This property is required. Sequence[GetProjectConfigSchematicValidatePostScript]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_post_script:
validate_pre_scripts This property is required. Sequence[GetProjectConfigSchematicValidatePreScript]
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_pre_script:
workspace_crn This property is required. str
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.
deployPostScripts This property is required. List<Property Map>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_post_script:
deployPreScripts This property is required. List<Property Map>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for deploy_pre_script:
undeployPostScripts This property is required. List<Property Map>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_post_script:
undeployPreScripts This property is required. List<Property Map>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for undeploy_pre_script:
validatePostScripts This property is required. List<Property Map>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_post_script:
validatePreScripts This property is required. List<Property Map>
(List) A script to be run as part of a project configuration for a specific stage (pre or post) and action (validate, deploy, or undeploy). Nested schema for validate_pre_script:
workspaceCrn This property is required. String
(String) An IBM Cloud resource name that uniquely identifies a resource.

  • Constraints: The maximum length is 512 characters. The minimum length is 4 characters. The value must match regular expression /(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/.

GetProjectConfigSchematicDeployPostScript

Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. str
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
short_description This property is required. str
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. str
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.

GetProjectConfigSchematicDeployPreScript

Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. str
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
short_description This property is required. str
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. str
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.

GetProjectConfigSchematicUndeployPostScript

Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. str
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
short_description This property is required. str
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. str
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.

GetProjectConfigSchematicUndeployPreScript

Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. str
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
short_description This property is required. str
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. str
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.

GetProjectConfigSchematicValidatePostScript

Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. str
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
short_description This property is required. str
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. str
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.

GetProjectConfigSchematicValidatePreScript

Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
Path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
ShortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
Type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. string
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. string
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. string
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. str
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
short_description This property is required. str
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. str
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.
path This property is required. String
(String) The path to this script is within the current version source.

  • Constraints: The maximum length is 256 characters. The minimum length is 1 character. The value must match regular expression /^\\S+$/.
shortDescription This property is required. String
(String) The short description for this script.

  • Constraints: The maximum length is 256 characters. The minimum length is 0 characters. The value must match regular expression /$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/.
type This property is required. String
(String) The type of the script.

  • Constraints: The maximum length is 7 characters. The minimum length is 7 characters. The value must match regular expression /^(ansible)$/.

Package Details

Repository
ibm ibm-cloud/terraform-provider-ibm
License
Notes
This Pulumi package is based on the ibm Terraform Provider.