ibm.ProjectConfig
Explore with Pulumi AI
Create, update, and delete project_configs with this resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const projectConfigInstance = new ibm.ProjectConfig("projectConfigInstance", {
definition: {
name: "static-website-dev",
description: "Website - development",
authorizations: {
method: "api_key",
apiKey: "<your_apikey_here>",
},
locatorId: "1082e7d2-5e2f-0a11-a3bc-f88a8e1931fc.145be7c1-9ec4-4719-b586-584ee52fbed0-global",
inputs: {
app_repo_name: "static-website-repo",
},
},
projectId: ibm_project.project_instance.id,
});
import pulumi
import pulumi_ibm as ibm
project_config_instance = ibm.ProjectConfig("projectConfigInstance",
definition={
"name": "static-website-dev",
"description": "Website - development",
"authorizations": {
"method": "api_key",
"api_key": "<your_apikey_here>",
},
"locator_id": "1082e7d2-5e2f-0a11-a3bc-f88a8e1931fc.145be7c1-9ec4-4719-b586-584ee52fbed0-global",
"inputs": {
"app_repo_name": "static-website-repo",
},
},
project_id=ibm_project["project_instance"]["id"])
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.NewProjectConfig(ctx, "projectConfigInstance", &ibm.ProjectConfigArgs{
Definition: &ibm.ProjectConfigDefinitionArgs{
Name: pulumi.String("static-website-dev"),
Description: pulumi.String("Website - development"),
Authorizations: &ibm.ProjectConfigDefinitionAuthorizationsArgs{
Method: pulumi.String("api_key"),
ApiKey: pulumi.String("<your_apikey_here>"),
},
LocatorId: pulumi.String("1082e7d2-5e2f-0a11-a3bc-f88a8e1931fc.145be7c1-9ec4-4719-b586-584ee52fbed0-global"),
Inputs: pulumi.StringMap{
"app_repo_name": pulumi.String("static-website-repo"),
},
},
ProjectId: pulumi.Any(ibm_project.Project_instance.Id),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;
return await Deployment.RunAsync(() =>
{
var projectConfigInstance = new Ibm.ProjectConfig("projectConfigInstance", new()
{
Definition = new Ibm.Inputs.ProjectConfigDefinitionArgs
{
Name = "static-website-dev",
Description = "Website - development",
Authorizations = new Ibm.Inputs.ProjectConfigDefinitionAuthorizationsArgs
{
Method = "api_key",
ApiKey = "<your_apikey_here>",
},
LocatorId = "1082e7d2-5e2f-0a11-a3bc-f88a8e1931fc.145be7c1-9ec4-4719-b586-584ee52fbed0-global",
Inputs =
{
{ "app_repo_name", "static-website-repo" },
},
},
ProjectId = ibm_project.Project_instance.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.ProjectConfig;
import com.pulumi.ibm.ProjectConfigArgs;
import com.pulumi.ibm.inputs.ProjectConfigDefinitionArgs;
import com.pulumi.ibm.inputs.ProjectConfigDefinitionAuthorizationsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var projectConfigInstance = new ProjectConfig("projectConfigInstance", ProjectConfigArgs.builder()
.definition(ProjectConfigDefinitionArgs.builder()
.name("static-website-dev")
.description("Website - development")
.authorizations(ProjectConfigDefinitionAuthorizationsArgs.builder()
.method("api_key")
.apiKey("<your_apikey_here>")
.build())
.locatorId("1082e7d2-5e2f-0a11-a3bc-f88a8e1931fc.145be7c1-9ec4-4719-b586-584ee52fbed0-global")
.inputs(Map.of("app_repo_name", "static-website-repo"))
.build())
.projectId(ibm_project.project_instance().id())
.build());
}
}
resources:
projectConfigInstance:
type: ibm:ProjectConfig
properties:
definition:
name: static-website-dev
description: Website - development
authorizations:
method: api_key
apiKey: <your_apikey_here>
locatorId: 1082e7d2-5e2f-0a11-a3bc-f88a8e1931fc.145be7c1-9ec4-4719-b586-584ee52fbed0-global
inputs:
app_repo_name: static-website-repo
projectId: ${ibm_project.project_instance.id}
Create ProjectConfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ProjectConfig(name: string, args: ProjectConfigArgs, opts?: CustomResourceOptions);
@overload
def ProjectConfig(resource_name: str,
args: ProjectConfigInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ProjectConfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
definition: Optional[ProjectConfigDefinitionArgs] = None,
project_id: Optional[str] = None,
approved_versions: Optional[Sequence[ProjectConfigApprovedVersionArgs]] = None,
deployed_versions: Optional[Sequence[ProjectConfigDeployedVersionArgs]] = None,
ibm_project_config_id: Optional[str] = None,
member_ofs: Optional[Sequence[ProjectConfigMemberOfArgs]] = None,
schematics: Optional[ProjectConfigSchematicsArgs] = None)
func NewProjectConfig(ctx *Context, name string, args ProjectConfigArgs, opts ...ResourceOption) (*ProjectConfig, error)
public ProjectConfig(string name, ProjectConfigArgs args, CustomResourceOptions? opts = null)
public ProjectConfig(String name, ProjectConfigArgs args)
public ProjectConfig(String name, ProjectConfigArgs args, CustomResourceOptions options)
type: ibm:ProjectConfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ProjectConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ProjectConfigInitArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ProjectConfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ProjectConfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ProjectConfigArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var projectConfigResource = new Ibm.ProjectConfig("projectConfigResource", new()
{
Definition = new Ibm.Inputs.ProjectConfigDefinitionArgs
{
Authorizations = new Ibm.Inputs.ProjectConfigDefinitionAuthorizationsArgs
{
ApiKey = "string",
Method = "string",
TrustedProfileId = "string",
},
ComplianceProfile = new Ibm.Inputs.ProjectConfigDefinitionComplianceProfileArgs
{
AttachmentId = "string",
Id = "string",
InstanceId = "string",
InstanceLocation = "string",
ProfileName = "string",
},
Description = "string",
EnvironmentId = "string",
Inputs =
{
{ "string", "string" },
},
LocatorId = "string",
Members = new[]
{
new Ibm.Inputs.ProjectConfigDefinitionMemberArgs
{
ConfigId = "string",
Name = "string",
},
},
Name = "string",
ResourceCrns = new[]
{
"string",
},
Settings =
{
{ "string", "string" },
},
},
ProjectId = "string",
ApprovedVersions = new[]
{
new Ibm.Inputs.ProjectConfigApprovedVersionArgs
{
Definitions = new[]
{
new Ibm.Inputs.ProjectConfigApprovedVersionDefinitionArgs
{
EnvironmentId = "string",
LocatorId = "string",
},
},
Href = "string",
State = "string",
StateCode = "string",
Version = 0,
},
},
DeployedVersions = new[]
{
new Ibm.Inputs.ProjectConfigDeployedVersionArgs
{
Definitions = new[]
{
new Ibm.Inputs.ProjectConfigDeployedVersionDefinitionArgs
{
EnvironmentId = "string",
LocatorId = "string",
},
},
Href = "string",
State = "string",
StateCode = "string",
Version = 0,
},
},
IbmProjectConfigId = "string",
MemberOfs = new[]
{
new Ibm.Inputs.ProjectConfigMemberOfArgs
{
Definitions = new[]
{
new Ibm.Inputs.ProjectConfigMemberOfDefinitionArgs
{
Members = new[]
{
new Ibm.Inputs.ProjectConfigMemberOfDefinitionMemberArgs
{
ConfigId = "string",
Name = "string",
},
},
Name = "string",
},
},
Href = "string",
Id = "string",
Version = 0,
},
},
Schematics = new Ibm.Inputs.ProjectConfigSchematicsArgs
{
DeployPostScripts = new[]
{
new Ibm.Inputs.ProjectConfigSchematicsDeployPostScriptArgs
{
Path = "string",
ShortDescription = "string",
Type = "string",
},
},
DeployPreScripts = new[]
{
new Ibm.Inputs.ProjectConfigSchematicsDeployPreScriptArgs
{
Path = "string",
ShortDescription = "string",
Type = "string",
},
},
UndeployPostScripts = new[]
{
new Ibm.Inputs.ProjectConfigSchematicsUndeployPostScriptArgs
{
Path = "string",
ShortDescription = "string",
Type = "string",
},
},
UndeployPreScripts = new[]
{
new Ibm.Inputs.ProjectConfigSchematicsUndeployPreScriptArgs
{
Path = "string",
ShortDescription = "string",
Type = "string",
},
},
ValidatePostScripts = new[]
{
new Ibm.Inputs.ProjectConfigSchematicsValidatePostScriptArgs
{
Path = "string",
ShortDescription = "string",
Type = "string",
},
},
ValidatePreScripts = new[]
{
new Ibm.Inputs.ProjectConfigSchematicsValidatePreScriptArgs
{
Path = "string",
ShortDescription = "string",
Type = "string",
},
},
WorkspaceCrn = "string",
},
});
example, err := ibm.NewProjectConfig(ctx, "projectConfigResource", &ibm.ProjectConfigArgs{
Definition: &ibm.ProjectConfigDefinitionArgs{
Authorizations: &ibm.ProjectConfigDefinitionAuthorizationsArgs{
ApiKey: pulumi.String("string"),
Method: pulumi.String("string"),
TrustedProfileId: pulumi.String("string"),
},
ComplianceProfile: &ibm.ProjectConfigDefinitionComplianceProfileArgs{
AttachmentId: pulumi.String("string"),
Id: pulumi.String("string"),
InstanceId: pulumi.String("string"),
InstanceLocation: pulumi.String("string"),
ProfileName: pulumi.String("string"),
},
Description: pulumi.String("string"),
EnvironmentId: pulumi.String("string"),
Inputs: pulumi.StringMap{
"string": pulumi.String("string"),
},
LocatorId: pulumi.String("string"),
Members: ibm.ProjectConfigDefinitionMemberArray{
&ibm.ProjectConfigDefinitionMemberArgs{
ConfigId: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
ResourceCrns: pulumi.StringArray{
pulumi.String("string"),
},
Settings: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
ProjectId: pulumi.String("string"),
ApprovedVersions: ibm.ProjectConfigApprovedVersionArray{
&ibm.ProjectConfigApprovedVersionArgs{
Definitions: ibm.ProjectConfigApprovedVersionDefinitionArray{
&ibm.ProjectConfigApprovedVersionDefinitionArgs{
EnvironmentId: pulumi.String("string"),
LocatorId: pulumi.String("string"),
},
},
Href: pulumi.String("string"),
State: pulumi.String("string"),
StateCode: pulumi.String("string"),
Version: pulumi.Float64(0),
},
},
DeployedVersions: ibm.ProjectConfigDeployedVersionArray{
&ibm.ProjectConfigDeployedVersionArgs{
Definitions: ibm.ProjectConfigDeployedVersionDefinitionArray{
&ibm.ProjectConfigDeployedVersionDefinitionArgs{
EnvironmentId: pulumi.String("string"),
LocatorId: pulumi.String("string"),
},
},
Href: pulumi.String("string"),
State: pulumi.String("string"),
StateCode: pulumi.String("string"),
Version: pulumi.Float64(0),
},
},
IbmProjectConfigId: pulumi.String("string"),
MemberOfs: ibm.ProjectConfigMemberOfArray{
&ibm.ProjectConfigMemberOfArgs{
Definitions: ibm.ProjectConfigMemberOfDefinitionArray{
&ibm.ProjectConfigMemberOfDefinitionArgs{
Members: ibm.ProjectConfigMemberOfDefinitionMemberArray{
&ibm.ProjectConfigMemberOfDefinitionMemberArgs{
ConfigId: pulumi.String("string"),
Name: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
},
},
Href: pulumi.String("string"),
Id: pulumi.String("string"),
Version: pulumi.Float64(0),
},
},
Schematics: &ibm.ProjectConfigSchematicsArgs{
DeployPostScripts: ibm.ProjectConfigSchematicsDeployPostScriptArray{
&ibm.ProjectConfigSchematicsDeployPostScriptArgs{
Path: pulumi.String("string"),
ShortDescription: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
DeployPreScripts: ibm.ProjectConfigSchematicsDeployPreScriptArray{
&ibm.ProjectConfigSchematicsDeployPreScriptArgs{
Path: pulumi.String("string"),
ShortDescription: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
UndeployPostScripts: ibm.ProjectConfigSchematicsUndeployPostScriptArray{
&ibm.ProjectConfigSchematicsUndeployPostScriptArgs{
Path: pulumi.String("string"),
ShortDescription: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
UndeployPreScripts: ibm.ProjectConfigSchematicsUndeployPreScriptArray{
&ibm.ProjectConfigSchematicsUndeployPreScriptArgs{
Path: pulumi.String("string"),
ShortDescription: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
ValidatePostScripts: ibm.ProjectConfigSchematicsValidatePostScriptArray{
&ibm.ProjectConfigSchematicsValidatePostScriptArgs{
Path: pulumi.String("string"),
ShortDescription: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
ValidatePreScripts: ibm.ProjectConfigSchematicsValidatePreScriptArray{
&ibm.ProjectConfigSchematicsValidatePreScriptArgs{
Path: pulumi.String("string"),
ShortDescription: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
WorkspaceCrn: pulumi.String("string"),
},
})
var projectConfigResource = new ProjectConfig("projectConfigResource", ProjectConfigArgs.builder()
.definition(ProjectConfigDefinitionArgs.builder()
.authorizations(ProjectConfigDefinitionAuthorizationsArgs.builder()
.apiKey("string")
.method("string")
.trustedProfileId("string")
.build())
.complianceProfile(ProjectConfigDefinitionComplianceProfileArgs.builder()
.attachmentId("string")
.id("string")
.instanceId("string")
.instanceLocation("string")
.profileName("string")
.build())
.description("string")
.environmentId("string")
.inputs(Map.of("string", "string"))
.locatorId("string")
.members(ProjectConfigDefinitionMemberArgs.builder()
.configId("string")
.name("string")
.build())
.name("string")
.resourceCrns("string")
.settings(Map.of("string", "string"))
.build())
.projectId("string")
.approvedVersions(ProjectConfigApprovedVersionArgs.builder()
.definitions(ProjectConfigApprovedVersionDefinitionArgs.builder()
.environmentId("string")
.locatorId("string")
.build())
.href("string")
.state("string")
.stateCode("string")
.version(0)
.build())
.deployedVersions(ProjectConfigDeployedVersionArgs.builder()
.definitions(ProjectConfigDeployedVersionDefinitionArgs.builder()
.environmentId("string")
.locatorId("string")
.build())
.href("string")
.state("string")
.stateCode("string")
.version(0)
.build())
.ibmProjectConfigId("string")
.memberOfs(ProjectConfigMemberOfArgs.builder()
.definitions(ProjectConfigMemberOfDefinitionArgs.builder()
.members(ProjectConfigMemberOfDefinitionMemberArgs.builder()
.configId("string")
.name("string")
.build())
.name("string")
.build())
.href("string")
.id("string")
.version(0)
.build())
.schematics(ProjectConfigSchematicsArgs.builder()
.deployPostScripts(ProjectConfigSchematicsDeployPostScriptArgs.builder()
.path("string")
.shortDescription("string")
.type("string")
.build())
.deployPreScripts(ProjectConfigSchematicsDeployPreScriptArgs.builder()
.path("string")
.shortDescription("string")
.type("string")
.build())
.undeployPostScripts(ProjectConfigSchematicsUndeployPostScriptArgs.builder()
.path("string")
.shortDescription("string")
.type("string")
.build())
.undeployPreScripts(ProjectConfigSchematicsUndeployPreScriptArgs.builder()
.path("string")
.shortDescription("string")
.type("string")
.build())
.validatePostScripts(ProjectConfigSchematicsValidatePostScriptArgs.builder()
.path("string")
.shortDescription("string")
.type("string")
.build())
.validatePreScripts(ProjectConfigSchematicsValidatePreScriptArgs.builder()
.path("string")
.shortDescription("string")
.type("string")
.build())
.workspaceCrn("string")
.build())
.build());
project_config_resource = ibm.ProjectConfig("projectConfigResource",
definition={
"authorizations": {
"api_key": "string",
"method": "string",
"trusted_profile_id": "string",
},
"compliance_profile": {
"attachment_id": "string",
"id": "string",
"instance_id": "string",
"instance_location": "string",
"profile_name": "string",
},
"description": "string",
"environment_id": "string",
"inputs": {
"string": "string",
},
"locator_id": "string",
"members": [{
"config_id": "string",
"name": "string",
}],
"name": "string",
"resource_crns": ["string"],
"settings": {
"string": "string",
},
},
project_id="string",
approved_versions=[{
"definitions": [{
"environment_id": "string",
"locator_id": "string",
}],
"href": "string",
"state": "string",
"state_code": "string",
"version": 0,
}],
deployed_versions=[{
"definitions": [{
"environment_id": "string",
"locator_id": "string",
}],
"href": "string",
"state": "string",
"state_code": "string",
"version": 0,
}],
ibm_project_config_id="string",
member_ofs=[{
"definitions": [{
"members": [{
"config_id": "string",
"name": "string",
}],
"name": "string",
}],
"href": "string",
"id": "string",
"version": 0,
}],
schematics={
"deploy_post_scripts": [{
"path": "string",
"short_description": "string",
"type": "string",
}],
"deploy_pre_scripts": [{
"path": "string",
"short_description": "string",
"type": "string",
}],
"undeploy_post_scripts": [{
"path": "string",
"short_description": "string",
"type": "string",
}],
"undeploy_pre_scripts": [{
"path": "string",
"short_description": "string",
"type": "string",
}],
"validate_post_scripts": [{
"path": "string",
"short_description": "string",
"type": "string",
}],
"validate_pre_scripts": [{
"path": "string",
"short_description": "string",
"type": "string",
}],
"workspace_crn": "string",
})
const projectConfigResource = new ibm.ProjectConfig("projectConfigResource", {
definition: {
authorizations: {
apiKey: "string",
method: "string",
trustedProfileId: "string",
},
complianceProfile: {
attachmentId: "string",
id: "string",
instanceId: "string",
instanceLocation: "string",
profileName: "string",
},
description: "string",
environmentId: "string",
inputs: {
string: "string",
},
locatorId: "string",
members: [{
configId: "string",
name: "string",
}],
name: "string",
resourceCrns: ["string"],
settings: {
string: "string",
},
},
projectId: "string",
approvedVersions: [{
definitions: [{
environmentId: "string",
locatorId: "string",
}],
href: "string",
state: "string",
stateCode: "string",
version: 0,
}],
deployedVersions: [{
definitions: [{
environmentId: "string",
locatorId: "string",
}],
href: "string",
state: "string",
stateCode: "string",
version: 0,
}],
ibmProjectConfigId: "string",
memberOfs: [{
definitions: [{
members: [{
configId: "string",
name: "string",
}],
name: "string",
}],
href: "string",
id: "string",
version: 0,
}],
schematics: {
deployPostScripts: [{
path: "string",
shortDescription: "string",
type: "string",
}],
deployPreScripts: [{
path: "string",
shortDescription: "string",
type: "string",
}],
undeployPostScripts: [{
path: "string",
shortDescription: "string",
type: "string",
}],
undeployPreScripts: [{
path: "string",
shortDescription: "string",
type: "string",
}],
validatePostScripts: [{
path: "string",
shortDescription: "string",
type: "string",
}],
validatePreScripts: [{
path: "string",
shortDescription: "string",
type: "string",
}],
workspaceCrn: "string",
},
});
type: ibm:ProjectConfig
properties:
approvedVersions:
- definitions:
- environmentId: string
locatorId: string
href: string
state: string
stateCode: string
version: 0
definition:
authorizations:
apiKey: string
method: string
trustedProfileId: string
complianceProfile:
attachmentId: string
id: string
instanceId: string
instanceLocation: string
profileName: string
description: string
environmentId: string
inputs:
string: string
locatorId: string
members:
- configId: string
name: string
name: string
resourceCrns:
- string
settings:
string: string
deployedVersions:
- definitions:
- environmentId: string
locatorId: string
href: string
state: string
stateCode: string
version: 0
ibmProjectConfigId: string
memberOfs:
- definitions:
- members:
- configId: string
name: string
name: string
href: string
id: string
version: 0
projectId: string
schematics:
deployPostScripts:
- path: string
shortDescription: string
type: string
deployPreScripts:
- path: string
shortDescription: string
type: string
undeployPostScripts:
- path: string
shortDescription: string
type: string
undeployPreScripts:
- path: string
shortDescription: string
type: string
validatePostScripts:
- path: string
shortDescription: string
type: string
validatePreScripts:
- path: string
shortDescription: string
type: string
workspaceCrn: string
ProjectConfig Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ProjectConfig resource accepts the following input properties:
- Definition
Project
Config Definition - Nested schema for definition:
- Project
Id string - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Approved
Versions List<ProjectConfig Approved Version> - (List) A summary of a project configuration version. Nested schema for approved_version:
- Deployed
Versions List<ProjectConfig Deployed Version> - (List) A summary of a project configuration version. Nested schema for deployed_version:
- Ibm
Project stringConfig Id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Member
Ofs List<ProjectConfig Member Of> - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- Schematics
Project
Config Schematics - A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
- Definition
Project
Config Definition Args - Nested schema for definition:
- Project
Id string - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Approved
Versions []ProjectConfig Approved Version Args - (List) A summary of a project configuration version. Nested schema for approved_version:
- Deployed
Versions []ProjectConfig Deployed Version Args - (List) A summary of a project configuration version. Nested schema for deployed_version:
- Ibm
Project stringConfig Id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Member
Ofs []ProjectConfig Member Of Args - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- Schematics
Project
Config Schematics Args - A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
- definition
Project
Config Definition - Nested schema for definition:
- project
Id String - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- approved
Versions List<ProjectConfig Approved Version> - (List) A summary of a project configuration version. Nested schema for approved_version:
- deployed
Versions List<ProjectConfig Deployed Version> - (List) A summary of a project configuration version. Nested schema for deployed_version:
- ibm
Project StringConfig Id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- member
Ofs List<ProjectConfig Member Of> - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- schematics
Project
Config Schematics - A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
- definition
Project
Config Definition - Nested schema for definition:
- project
Id string - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- approved
Versions ProjectConfig Approved Version[] - (List) A summary of a project configuration version. Nested schema for approved_version:
- deployed
Versions ProjectConfig Deployed Version[] - (List) A summary of a project configuration version. Nested schema for deployed_version:
- ibm
Project stringConfig Id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- member
Ofs ProjectConfig Member Of[] - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- schematics
Project
Config Schematics - A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
- definition
Project
Config Definition Args - Nested schema for definition:
- project_
id str - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- approved_
versions Sequence[ProjectConfig Approved Version Args] - (List) A summary of a project configuration version. Nested schema for approved_version:
- deployed_
versions Sequence[ProjectConfig Deployed Version Args] - (List) A summary of a project configuration version. Nested schema for deployed_version:
- ibm_
project_ strconfig_ id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- member_
ofs Sequence[ProjectConfig Member Of Args] - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- schematics
Project
Config Schematics Args - A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
- definition Property Map
- Nested schema for definition:
- project
Id String - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- approved
Versions List<Property Map> - (List) A summary of a project configuration version. Nested schema for approved_version:
- deployed
Versions List<Property Map> - (List) A summary of a project configuration version. Nested schema for deployed_version:
- ibm
Project StringConfig Id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- member
Ofs List<Property Map> - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- schematics Property Map
- A Schematics workspace that is associated to a project configuration, with scripts. Nested schema for schematics:
Outputs
All input properties are implicitly available as output properties. Additionally, the ProjectConfig resource produces the following output properties:
- Created
At 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.
- Deployment
Model string - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Draft bool - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- Last
Saved stringAt - (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.
- Modified
At 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.
- Needs
Attention List<ProjectStates Config Needs Attention State> - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- Outputs
List<Project
Config Output> - (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- Project
Config stringId - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Projects
List<Project
Config Project> - (List) The project that is referenced by this resource. Nested schema for project:
- 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
.
- Constraints: Allowable values are:
- State
Code 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
.
- Constraints: Allowable values are:
- Template
Id string - (String) The stack definition identifier.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Update
Available bool - (Boolean) The flag that indicates whether a configuration update is available.
- Version double
- (Integer) The version of the configuration.
- Created
At 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.
- Deployment
Model string - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- Id string
- The provider-assigned unique ID for this managed resource.
- Is
Draft bool - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- Last
Saved stringAt - (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.
- Modified
At 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.
- Needs
Attention []ProjectStates Config Needs Attention State - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- Outputs
[]Project
Config Output Type - (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- Project
Config stringId - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Projects
[]Project
Config Project - (List) The project that is referenced by this resource. Nested schema for project:
- 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
.
- Constraints: Allowable values are:
- State
Code 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
.
- Constraints: Allowable values are:
- Template
Id string - (String) The stack definition identifier.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Update
Available bool - (Boolean) The flag that indicates whether a configuration update is available.
- Version float64
- (Integer) The version of the configuration.
- created
At 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.
- deployment
Model String - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- is
Draft Boolean - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- last
Saved StringAt - (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.
- modified
At 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.
- needs
Attention List<ProjectStates Config Needs Attention State> - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- outputs
List<Project
Config Output> - (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- project
Config StringId - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- projects
List<Project
Config Project> - (List) The project that is referenced by this resource. Nested schema for project:
- 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- template
Id String - (String) The stack definition identifier.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- update
Available Boolean - (Boolean) The flag that indicates whether a configuration update is available.
- version Double
- (Integer) The version of the configuration.
- created
At 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.
- deployment
Model string - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id string
- The provider-assigned unique ID for this managed resource.
- is
Draft boolean - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- last
Saved stringAt - (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.
- modified
At 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.
- needs
Attention ProjectStates Config Needs Attention State[] - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- outputs
Project
Config Output[] - (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- project
Config stringId - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- projects
Project
Config Project[] - (List) The project that is referenced by this resource. Nested schema for project:
- 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- template
Id string - (String) The stack definition identifier.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- update
Available boolean - (Boolean) The flag that indicates whether a configuration update is available.
- version number
- (Integer) The version of the configuration.
- 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.
- deployment_
model str - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- href str
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id str
- The provider-assigned unique ID for this managed resource.
- is_
draft bool - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- last_
saved_ strat - (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.
- 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_ Sequence[Projectstates Config Needs Attention State] - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- outputs
Sequence[Project
Config Output] - (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- project_
config_ strid - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- projects
Sequence[Project
Config Project] - (List) The project that is referenced by this resource. Nested schema for project:
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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]+$/
.
- Constraints: The maximum length is
- update_
available bool - (Boolean) The flag that indicates whether a configuration update is available.
- version float
- (Integer) The version of the configuration.
- created
At 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.
- deployment
Model String - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id String
- The provider-assigned unique ID for this managed resource.
- is
Draft Boolean - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- last
Saved StringAt - (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.
- modified
At 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.
- needs
Attention List<Property Map>States - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- outputs List<Property Map>
- (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- project
Config StringId - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- projects List<Property Map>
- (List) The project that is referenced by this resource. Nested schema for project:
- 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- template
Id String - (String) The stack definition identifier.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- update
Available Boolean - (Boolean) The flag that indicates whether a configuration update is available.
- version Number
- (Integer) The version of the configuration.
Look up Existing ProjectConfig Resource
Get an existing ProjectConfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ProjectConfigState, opts?: CustomResourceOptions): ProjectConfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
approved_versions: Optional[Sequence[ProjectConfigApprovedVersionArgs]] = None,
created_at: Optional[str] = None,
definition: Optional[ProjectConfigDefinitionArgs] = None,
deployed_versions: Optional[Sequence[ProjectConfigDeployedVersionArgs]] = None,
deployment_model: Optional[str] = None,
href: Optional[str] = None,
ibm_project_config_id: Optional[str] = None,
is_draft: Optional[bool] = None,
last_saved_at: Optional[str] = None,
member_ofs: Optional[Sequence[ProjectConfigMemberOfArgs]] = None,
modified_at: Optional[str] = None,
needs_attention_states: Optional[Sequence[ProjectConfigNeedsAttentionStateArgs]] = None,
outputs: Optional[Sequence[ProjectConfigOutputArgs]] = None,
project_config_id: Optional[str] = None,
project_id: Optional[str] = None,
projects: Optional[Sequence[ProjectConfigProjectArgs]] = None,
schematics: Optional[ProjectConfigSchematicsArgs] = None,
state: Optional[str] = None,
state_code: Optional[str] = None,
template_id: Optional[str] = None,
update_available: Optional[bool] = None,
version: Optional[float] = None) -> ProjectConfig
func GetProjectConfig(ctx *Context, name string, id IDInput, state *ProjectConfigState, opts ...ResourceOption) (*ProjectConfig, error)
public static ProjectConfig Get(string name, Input<string> id, ProjectConfigState? state, CustomResourceOptions? opts = null)
public static ProjectConfig get(String name, Output<String> id, ProjectConfigState state, CustomResourceOptions options)
resources: _: type: ibm:ProjectConfig get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Approved
Versions List<ProjectConfig Approved Version> - (List) A summary of a project configuration version. Nested schema for approved_version:
- Created
At 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.
- Definition
Project
Config Definition - Nested schema for definition:
- Deployed
Versions List<ProjectConfig Deployed Version> - (List) A summary of a project configuration version. Nested schema for deployed_version:
- Deployment
Model string - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- Ibm
Project stringConfig Id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Is
Draft bool - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- Last
Saved stringAt - (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 List<ProjectConfig Member Of> - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- Modified
At 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.
- Needs
Attention List<ProjectStates Config Needs Attention State> - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- Outputs
List<Project
Config Output> - (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- Project
Config stringId - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Project
Id string - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Projects
List<Project
Config Project> - (List) The project that is referenced by this resource. Nested schema for project:
- Schematics
Project
Config Schematics - 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
.
- Constraints: Allowable values are:
- State
Code 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
.
- Constraints: Allowable values are:
- Template
Id string - (String) The stack definition identifier.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Update
Available bool - (Boolean) The flag that indicates whether a configuration update is available.
- Version double
- (Integer) The version of the configuration.
- Approved
Versions []ProjectConfig Approved Version Args - (List) A summary of a project configuration version. Nested schema for approved_version:
- Created
At 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.
- Definition
Project
Config Definition Args - Nested schema for definition:
- Deployed
Versions []ProjectConfig Deployed Version Args - (List) A summary of a project configuration version. Nested schema for deployed_version:
- Deployment
Model string - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- Ibm
Project stringConfig Id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Is
Draft bool - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- Last
Saved stringAt - (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 []ProjectConfig Member Of Args - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- Modified
At 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.
- Needs
Attention []ProjectStates Config Needs Attention State Args - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- Outputs
[]Project
Config Output Type Args - (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- Project
Config stringId - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Project
Id string - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Projects
[]Project
Config Project Args - (List) The project that is referenced by this resource. Nested schema for project:
- Schematics
Project
Config Schematics Args - 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
.
- Constraints: Allowable values are:
- State
Code 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
.
- Constraints: Allowable values are:
- Template
Id string - (String) The stack definition identifier.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Update
Available bool - (Boolean) The flag that indicates whether a configuration update is available.
- Version float64
- (Integer) The version of the configuration.
- approved
Versions List<ProjectConfig Approved Version> - (List) A summary of a project configuration version. Nested schema for approved_version:
- created
At 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.
- definition
Project
Config Definition - Nested schema for definition:
- deployed
Versions List<ProjectConfig Deployed Version> - (List) A summary of a project configuration version. Nested schema for deployed_version:
- deployment
Model String - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- ibm
Project StringConfig Id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- is
Draft Boolean - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- last
Saved StringAt - (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 List<ProjectConfig Member Of> - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- modified
At 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.
- needs
Attention List<ProjectStates Config Needs Attention State> - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- outputs
List<Project
Config Output> - (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- project
Config StringId - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- project
Id String - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- projects
List<Project
Config Project> - (List) The project that is referenced by this resource. Nested schema for project:
- schematics
Project
Config Schematics - 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- template
Id String - (String) The stack definition identifier.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- update
Available Boolean - (Boolean) The flag that indicates whether a configuration update is available.
- version Double
- (Integer) The version of the configuration.
- approved
Versions ProjectConfig Approved Version[] - (List) A summary of a project configuration version. Nested schema for approved_version:
- created
At 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.
- definition
Project
Config Definition - Nested schema for definition:
- deployed
Versions ProjectConfig Deployed Version[] - (List) A summary of a project configuration version. Nested schema for deployed_version:
- deployment
Model string - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- ibm
Project stringConfig Id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- is
Draft boolean - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- last
Saved stringAt - (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 ProjectConfig Member Of[] - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- modified
At 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.
- needs
Attention ProjectStates Config Needs Attention State[] - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- outputs
Project
Config Output[] - (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- project
Config stringId - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- project
Id string - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- projects
Project
Config Project[] - (List) The project that is referenced by this resource. Nested schema for project:
- schematics
Project
Config Schematics - 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- template
Id string - (String) The stack definition identifier.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- update
Available boolean - (Boolean) The flag that indicates whether a configuration update is available.
- version number
- (Integer) The version of the configuration.
- approved_
versions Sequence[ProjectConfig Approved Version Args] - (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.
- definition
Project
Config Definition Args - Nested schema for definition:
- deployed_
versions Sequence[ProjectConfig Deployed Version Args] - (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
.
- Constraints: Allowable values are:
- href str
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- ibm_
project_ strconfig_ id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- is_
draft bool - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- last_
saved_ strat - (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[ProjectConfig Member Of Args] - (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_ Sequence[Projectstates Config Needs Attention State Args] - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- outputs
Sequence[Project
Config Output Args] - (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- project_
config_ strid - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- project_
id str - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- projects
Sequence[Project
Config Project Args] - (List) The project that is referenced by this resource. Nested schema for project:
- schematics
Project
Config Schematics Args - 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- 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]+$/
.
- Constraints: The maximum length is
- update_
available bool - (Boolean) The flag that indicates whether a configuration update is available.
- version float
- (Integer) The version of the configuration.
- approved
Versions List<Property Map> - (List) A summary of a project configuration version. Nested schema for approved_version:
- created
At 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.
- definition Property Map
- Nested schema for definition:
- deployed
Versions List<Property Map> - (List) A summary of a project configuration version. Nested schema for deployed_version:
- deployment
Model String - (String) The configuration type.
- Constraints: Allowable values are:
project_deployed
,user_deployed
,stack
.
- Constraints: Allowable values are:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- ibm
Project StringConfig Id - (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- is
Draft Boolean - (Boolean) The flag that indicates whether the version of the configuration is draft, or active.
- last
Saved StringAt - (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 List<Property Map> - (List) The stack config parent of which this configuration is a member of. Nested schema for member_of:
- modified
At 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.
- needs
Attention List<Property Map>States - (List) The needs attention state of a configuration.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for needs_attention_state:
- Constraints: The default value is
- outputs List<Property Map>
- (List) The outputs of a Schematics template property.
- Constraints: The default value is
[]
. The maximum length is50
items. The minimum length is0
items. Nested schema for outputs:
- Constraints: The default value is
- project
Config StringId - (String) The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- project
Id String - The unique project ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- projects List<Property Map>
- (List) The project that is referenced by this resource. Nested schema for project:
- schematics Property Map
- 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- template
Id String - (String) The stack definition identifier.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- update
Available Boolean - (Boolean) The flag that indicates whether a configuration update is available.
- version Number
- (Integer) The version of the configuration.
Supporting Types
ProjectConfigApprovedVersion, ProjectConfigApprovedVersionArgs
- Definitions
List<Project
Config Approved Version Definition> - Nested schema for definition:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- State
Code 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
.
- Constraints: Allowable values are:
- Version double
- (Integer) The version of the configuration.
- Definitions
[]Project
Config Approved Version Definition - Nested schema for definition:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- State
Code 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
.
- Constraints: Allowable values are:
- Version float64
- (Integer) The version of the configuration.
- definitions
List<Project
Config Approved Version Definition> - Nested schema for definition:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- version Double
- (Integer) The version of the configuration.
- definitions
Project
Config Approved Version Definition[] - Nested schema for definition:
- href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- version number
- (Integer) The version of the configuration.
- definitions
Sequence[Project
Config Approved Version Definition] - Nested schema for definition:
- href str
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- version float
- (Integer) The version of the configuration.
- definitions List<Property Map>
- Nested schema for definition:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- version Number
- (Integer) The version of the configuration.
ProjectConfigApprovedVersionDefinition, ProjectConfigApprovedVersionDefinitionArgs
- Environment
Id string - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Locator
Id string
- Environment
Id string - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Locator
Id string
- environment
Id String - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- locator
Id String
- environment
Id string - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- locator
Id string
- environment_
id str - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- locator_
id str
- environment
Id String - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- locator
Id String
ProjectConfigDefinition, ProjectConfigDefinitionArgs
- Project
Config Definition Authorizations - The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
- Compliance
Profile ProjectConfig Definition Compliance Profile - The profile that is required for compliance. Nested schema for compliance_profile:
- Description string
- A project configuration description.
- Constraints: The default value is
''
. The maximum length is1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The default value is
- Environment
Id string - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Inputs Dictionary<string, string>
- The input variables that are used for configuration definition and environment.
- Locator
Id string - Members
List<Project
Config Definition Member> - The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- Name string
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- Resource
Crns List<string> - 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 is110
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Settings Dictionary<string, string>
- The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
- Project
Config Definition Authorizations - The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
- Compliance
Profile ProjectConfig Definition Compliance Profile - The profile that is required for compliance. Nested schema for compliance_profile:
- Description string
- A project configuration description.
- Constraints: The default value is
''
. The maximum length is1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The default value is
- Environment
Id string - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Inputs map[string]string
- The input variables that are used for configuration definition and environment.
- Locator
Id string - Members
[]Project
Config Definition Member - The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- Name string
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- Resource
Crns []string - 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 is110
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- Settings map[string]string
- The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
- Project
Config Definition Authorizations - The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
- compliance
Profile ProjectConfig Definition Compliance Profile - The profile that is required for compliance. Nested schema for compliance_profile:
- description String
- A project configuration description.
- Constraints: The default value is
''
. The maximum length is1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The default value is
- environment
Id String - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- inputs Map<String,String>
- The input variables that are used for configuration definition and environment.
- locator
Id String - members
List<Project
Config Definition Member> - The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- name String
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- resource
Crns List<String> - 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 is110
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- settings Map<String,String>
- The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
- Project
Config Definition Authorizations - The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
- compliance
Profile ProjectConfig Definition Compliance Profile - The profile that is required for compliance. Nested schema for compliance_profile:
- description string
- A project configuration description.
- Constraints: The default value is
''
. The maximum length is1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The default value is
- environment
Id string - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- inputs {[key: string]: string}
- The input variables that are used for configuration definition and environment.
- locator
Id string - members
Project
Config Definition Member[] - The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- name string
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- resource
Crns string[] - 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 is110
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- settings {[key: string]: string}
- The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
- Project
Config Definition Authorizations - The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
- compliance_
profile ProjectConfig Definition Compliance Profile - The profile that is required for compliance. Nested schema for compliance_profile:
- description str
- A project configuration description.
- Constraints: The default value is
''
. The maximum length is1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The default value is
- environment_
id str - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- inputs Mapping[str, str]
- The input variables that are used for configuration definition and environment.
- locator_
id str - members
Sequence[Project
Config Definition Member] - The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- name str
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- resource_
crns Sequence[str] - 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 is110
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- settings Mapping[str, str]
- The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
- Property Map
- The authorization details. You can authorize by using a trusted profile or an API key in Secrets Manager. Nested schema for authorizations:
- compliance
Profile Property Map - The profile that is required for compliance. Nested schema for compliance_profile:
- description String
- A project configuration description.
- Constraints: The default value is
''
. The maximum length is1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The default value is
- environment
Id String - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- inputs Map<String>
- The input variables that are used for configuration definition and environment.
- locator
Id String - members List<Property Map>
- The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- name String
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- resource
Crns List<String> - 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 is110
items. The minimum length is0
items.
- Constraints: The list items must match regular expression
- settings Map<String>
- The Schematics environment variables to use to deploy the configuration. Settings are only available if they are specified when the configuration is initially created.
ProjectConfigDefinitionAuthorizations, ProjectConfigDefinitionAuthorizationsArgs
- Api
Key string - The IBM Cloud API Key. It can be either raw or pulled from the catalog via a
CRN
orJSON
blob.- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Method 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
.
- Constraints: Allowable values are:
- Trusted
Profile stringId - The trusted profile ID.
- Constraints: The maximum length is
512
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Api
Key string - The IBM Cloud API Key. It can be either raw or pulled from the catalog via a
CRN
orJSON
blob.- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Method 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
.
- Constraints: Allowable values are:
- Trusted
Profile stringId - The trusted profile ID.
- Constraints: The maximum length is
512
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- api
Key String - The IBM Cloud API Key. It can be either raw or pulled from the catalog via a
CRN
orJSON
blob.- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- method 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
.
- Constraints: Allowable values are:
- trusted
Profile StringId - The trusted profile ID.
- Constraints: The maximum length is
512
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- api
Key string - The IBM Cloud API Key. It can be either raw or pulled from the catalog via a
CRN
orJSON
blob.- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- method 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
.
- Constraints: Allowable values are:
- trusted
Profile stringId - The trusted profile ID.
- Constraints: The maximum length is
512
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- api_
key str - The IBM Cloud API Key. It can be either raw or pulled from the catalog via a
CRN
orJSON
blob.- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- method str
- 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
.
- Constraints: Allowable values are:
- trusted_
profile_ strid - The trusted profile ID.
- Constraints: The maximum length is
512
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- api
Key String - The IBM Cloud API Key. It can be either raw or pulled from the catalog via a
CRN
orJSON
blob.- Constraints: The maximum length is
512
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- method 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
.
- Constraints: Allowable values are:
- trusted
Profile StringId - The trusted profile ID.
- Constraints: The maximum length is
512
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
ProjectConfigDefinitionComplianceProfile, ProjectConfigDefinitionComplianceProfileArgs
- Attachment
Id 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]+$/
.
- Constraints: The maximum length is
- Id string
- The unique ID for the compliance profile.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Instance
Id 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]+$/
.
- Constraints: The maximum length is
- Instance
Location string - The location of the compliance instance.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
,ca-tor
.
- Constraints: Allowable values are:
- Profile
Name string - The name of the compliance profile.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Attachment
Id 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]+$/
.
- Constraints: The maximum length is
- Id string
- The unique ID for the compliance profile.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Instance
Id 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]+$/
.
- Constraints: The maximum length is
- Instance
Location string - The location of the compliance instance.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
,ca-tor
.
- Constraints: Allowable values are:
- Profile
Name string - The name of the compliance profile.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- attachment
Id 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]+$/
.
- Constraints: The maximum length is
- id String
- The unique ID for the compliance profile.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- instance
Id 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]+$/
.
- Constraints: The maximum length is
- instance
Location String - The location of the compliance instance.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
,ca-tor
.
- Constraints: Allowable values are:
- profile
Name String - The name of the compliance profile.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- attachment
Id 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]+$/
.
- Constraints: The maximum length is
- id string
- The unique ID for the compliance profile.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- instance
Id 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]+$/
.
- Constraints: The maximum length is
- instance
Location string - The location of the compliance instance.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
,ca-tor
.
- Constraints: Allowable values are:
- profile
Name string - The name of the compliance profile.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- attachment_
id str - 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]+$/
.
- Constraints: The maximum length is
- id str
- The unique ID for the compliance profile.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- instance_
id str - 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]+$/
.
- Constraints: The maximum length is
- instance_
location str - The location of the compliance instance.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
,ca-tor
.
- Constraints: Allowable values are:
- profile_
name str - The name of the compliance profile.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- attachment
Id 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]+$/
.
- Constraints: The maximum length is
- id String
- The unique ID for the compliance profile.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- instance
Id 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]+$/
.
- Constraints: The maximum length is
- instance
Location String - The location of the compliance instance.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
,ca-tor
.
- Constraints: Allowable values are:
- profile
Name String - The name of the compliance profile.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^<>\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
ProjectConfigDefinitionMember, ProjectConfigDefinitionMemberArgs
- Config
Id string - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Name string
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- Config
Id string - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Name string
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- config
Id String - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- name String
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- config
Id string - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- name string
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- config_
id str - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- name str
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- config
Id String - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- name String
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
ProjectConfigDeployedVersion, ProjectConfigDeployedVersionArgs
- Definitions
List<Project
Config Deployed Version Definition> - Nested schema for definition:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- State
Code 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
.
- Constraints: Allowable values are:
- Version double
- (Integer) The version of the configuration.
- Definitions
[]Project
Config Deployed Version Definition - Nested schema for definition:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- State
Code 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
.
- Constraints: Allowable values are:
- Version float64
- (Integer) The version of the configuration.
- definitions
List<Project
Config Deployed Version Definition> - Nested schema for definition:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- version Double
- (Integer) The version of the configuration.
- definitions
Project
Config Deployed Version Definition[] - Nested schema for definition:
- href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- version number
- (Integer) The version of the configuration.
- definitions
Sequence[Project
Config Deployed Version Definition] - Nested schema for definition:
- href str
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- 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
.
- Constraints: Allowable values are:
- version float
- (Integer) The version of the configuration.
- definitions List<Property Map>
- Nested schema for definition:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- 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
.
- Constraints: Allowable values are:
- state
Code 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
.
- Constraints: Allowable values are:
- version Number
- (Integer) The version of the configuration.
ProjectConfigDeployedVersionDefinition, ProjectConfigDeployedVersionDefinitionArgs
- Environment
Id string - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Locator
Id string
- Environment
Id string - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Locator
Id string
- environment
Id String - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- locator
Id String
- environment
Id string - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- locator
Id string
- environment_
id str - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- locator_
id str
- environment
Id String - The ID of the project environment.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- locator
Id String
ProjectConfigMemberOf, ProjectConfigMemberOfArgs
- Definitions
List<Project
Config Member Of Definition> - Nested schema for definition:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- Id string
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Version double
- (Integer) The version of the configuration.
- Definitions
[]Project
Config Member Of Definition - Nested schema for definition:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- Id string
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Version float64
- (Integer) The version of the configuration.
- definitions
List<Project
Config Member Of Definition> - Nested schema for definition:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id String
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- version Double
- (Integer) The version of the configuration.
- definitions
Project
Config Member Of Definition[] - Nested schema for definition:
- href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id string
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- version number
- (Integer) The version of the configuration.
- definitions
Sequence[Project
Config Member Of Definition] - Nested schema for definition:
- href str
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id str
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- version float
- (Integer) The version of the configuration.
- definitions List<Property Map>
- Nested schema for definition:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id String
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- version Number
- (Integer) The version of the configuration.
ProjectConfigMemberOfDefinition, ProjectConfigMemberOfDefinitionArgs
- Members
List<Project
Config Member Of Definition Member> - The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- Name string
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- Members
[]Project
Config Member Of Definition Member - The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- Name string
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- members
List<Project
Config Member Of Definition Member> - The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- name String
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- members
Project
Config Member Of Definition Member[] - The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- name string
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- members
Sequence[Project
Config Member Of Definition Member] - The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- name str
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- members List<Property Map>
- The member deployabe architectures that are included in your stack.
- Constraints: The maximum length is
100
items. The minimum length is0
items. Nested schema for members:
- Constraints: The maximum length is
- name String
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
ProjectConfigMemberOfDefinitionMember, ProjectConfigMemberOfDefinitionMemberArgs
- Config
Id string - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Name string
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- Config
Id string - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Name string
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- config
Id String - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- name String
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- config
Id string - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- name string
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- config_
id str - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- name str
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- config
Id String - The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- name String
- The name matching the alias in the stack definition.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
ProjectConfigNeedsAttentionState, ProjectConfigNeedsAttentionStateArgs
- Action
Url 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 string
- (String) The name of the event.
- Event
Id string - (String) The id of the event.
- Severity 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
.
- Constraints: Allowable values are:
- Target 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 string
- (String) The timestamp of the event.
- Triggered
By 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 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 string
- (String) The name of the event.
- Event
Id string - (String) The id of the event.
- Severity 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
.
- Constraints: Allowable values are:
- Target 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 string
- (String) The timestamp of the event.
- Triggered
By 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 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 String
- (String) The name of the event.
- event
Id String - (String) The id of the event.
- severity 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
.
- Constraints: Allowable values are:
- target 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 String
- (String) The timestamp of the event.
- triggered
By 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 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 string
- (String) The name of the event.
- event
Id string - (String) The id of the event.
- severity 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
.
- Constraints: Allowable values are:
- target 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 string
- (String) The timestamp of the event.
- triggered
By 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 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 str
- (String) The name of the event.
- event_
id str - (String) The id of the event.
- severity 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
.
- Constraints: Allowable values are:
- target 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 str
- (String) The timestamp of the event.
- triggered_
by 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.
- action
Url 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 String
- (String) The name of the event.
- event
Id String - (String) The id of the event.
- severity 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
.
- Constraints: Allowable values are:
- target 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 String
- (String) The timestamp of the event.
- triggered
By 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.
ProjectConfigOutput, ProjectConfigOutputArgs
- Description string
- (String) A short explanation of the output value.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Name string
- (String) The name of the project.
- Constraints: The maximum length is
64
characters. The minimum length is1
character. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/
.
- Constraints: The maximum length is
- Value string
- (String) This property can be any value - a string, number, boolean, array, or object.
- Description string
- (String) A short explanation of the output value.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Name string
- (String) The name of the project.
- Constraints: The maximum length is
64
characters. The minimum length is1
character. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/
.
- Constraints: The maximum length is
- Value string
- (String) This property can be any value - a string, number, boolean, array, or object.
- description String
- (String) A short explanation of the output value.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- name String
- (String) The name of the project.
- Constraints: The maximum length is
64
characters. The minimum length is1
character. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/
.
- Constraints: The maximum length is
- value String
- (String) This property can be any value - a string, number, boolean, array, or object.
- description string
- (String) A short explanation of the output value.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- name string
- (String) The name of the project.
- Constraints: The maximum length is
64
characters. The minimum length is1
character. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/
.
- Constraints: The maximum length is
- value string
- (String) This property can be any value - a string, number, boolean, array, or object.
- description str
- (String) A short explanation of the output value.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- name str
- (String) The name of the project.
- Constraints: The maximum length is
64
characters. The minimum length is1
character. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/
.
- Constraints: The maximum length is
- value str
- (String) This property can be any value - a string, number, boolean, array, or object.
- description String
- (String) A short explanation of the output value.
- Constraints: The maximum length is
1024
characters. The minimum length is0
characters. The value must match regular expression/^$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- name String
- (String) The name of the project.
- Constraints: The maximum length is
64
characters. The minimum length is1
character. The value must match regular expression/^(?!\\s)(?!.*\\s$)[^'"<>{}\\x00-\\x1F]+$/
.
- Constraints: The maximum length is
- value String
- (String) This property can be any value - a string, number, boolean, array, or object.
ProjectConfigProject, ProjectConfigProjectArgs
- Crn string
- (String) An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- Definitions
List<Project
Config Project Definition> - Nested schema for definition:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- Id string
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- Crn string
- (String) An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- Definitions
[]Project
Config Project Definition - Nested schema for definition:
- Href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- Id string
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- crn String
- (String) An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- definitions
List<Project
Config Project Definition> - Nested schema for definition:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id String
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- crn string
- (String) An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- definitions
Project
Config Project Definition[] - Nested schema for definition:
- href string
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id string
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- crn str
- (String) An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- definitions
Sequence[Project
Config Project Definition] - Nested schema for definition:
- href str
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id str
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
- crn String
- (String) An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- definitions List<Property Map>
- Nested schema for definition:
- href String
- (String) A URL.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^(http(s)?:\/\/)[a-zA-Z0-9\\$\\-_\\.+!\\*'\\(\\),=&?\/]+$/
.
- Constraints: The maximum length is
- id String
- (String) The unique ID.
- Constraints: The maximum length is
128
characters. The value must match regular expression/^[\\.\\-0-9a-zA-Z]+$/
.
- Constraints: The maximum length is
ProjectConfigProjectDefinition, ProjectConfigProjectDefinitionArgs
- Name string
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- Name string
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- name String
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- name string
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- name str
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
- name String
- The configuration name. It's unique within the account across projects and regions.
- Constraints: The maximum length is
128
characters. The minimum length is1
character. The value must match regular expression/^[a-zA-Z0-9][a-zA-Z0-9-_ ]*$/
.
- Constraints: The maximum length is
ProjectConfigSchematics, ProjectConfigSchematicsArgs
- Deploy
Post List<ProjectScripts Config Schematics Deploy Post Script> - 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 List<ProjectScripts Config Schematics Deploy Pre Script> - 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 List<ProjectScripts Config Schematics Undeploy Post Script> - 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 List<ProjectScripts Config Schematics Undeploy Pre Script> - 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 List<ProjectScripts Config Schematics Validate Post Script> - 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 List<ProjectScripts Config Schematics Validate Pre Script> - 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 string - An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- Deploy
Post []ProjectScripts Config Schematics Deploy Post Script - 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 []ProjectScripts Config Schematics Deploy Pre Script - 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 []ProjectScripts Config Schematics Undeploy Post Script - 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 []ProjectScripts Config Schematics Undeploy Pre Script - 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 []ProjectScripts Config Schematics Validate Post Script - 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 []ProjectScripts Config Schematics Validate Pre Script - 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 string - An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- deploy
Post List<ProjectScripts Config Schematics Deploy Post Script> - 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 List<ProjectScripts Config Schematics Deploy Pre Script> - 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 List<ProjectScripts Config Schematics Undeploy Post Script> - 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 List<ProjectScripts Config Schematics Undeploy Pre Script> - 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 List<ProjectScripts Config Schematics Validate Post Script> - 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 List<ProjectScripts Config Schematics Validate Pre Script> - 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 String - An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- deploy
Post ProjectScripts Config Schematics Deploy Post Script[] - 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 ProjectScripts Config Schematics Deploy Pre Script[] - 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 ProjectScripts Config Schematics Undeploy Post Script[] - 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 ProjectScripts Config Schematics Undeploy Pre Script[] - 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 ProjectScripts Config Schematics Validate Post Script[] - 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 ProjectScripts Config Schematics Validate Pre Script[] - 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 string - An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- deploy_
post_ Sequence[Projectscripts Config Schematics Deploy Post Script] - 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_ Sequence[Projectscripts Config Schematics Deploy Pre Script] - 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_ Sequence[Projectscripts Config Schematics Undeploy Post Script] - 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_ Sequence[Projectscripts Config Schematics Undeploy Pre Script] - 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_ Sequence[Projectscripts Config Schematics Validate Post Script] - 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_ Sequence[Projectscripts Config Schematics Validate Pre Script] - 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 str - An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
- deploy
Post List<Property Map>Scripts - 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 List<Property Map>Scripts - 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 List<Property Map>Scripts - 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 List<Property Map>Scripts - 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 List<Property Map>Scripts - 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 List<Property Map>Scripts - 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 String - An IBM Cloud resource name that uniquely identifies a resource.
- Constraints: The maximum length is
512
characters. The minimum length is4
characters. The value must match regular expression/(?!\\s)(?!.*\\s$)^(crn)[^'"<>{}\\s\\x00-\\x1F]*/
.
- Constraints: The maximum length is
ProjectConfigSchematicsDeployPostScript, ProjectConfigSchematicsDeployPostScriptArgs
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path str
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short_
description str - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type str
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
ProjectConfigSchematicsDeployPreScript, ProjectConfigSchematicsDeployPreScriptArgs
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path str
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short_
description str - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type str
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
ProjectConfigSchematicsUndeployPostScript, ProjectConfigSchematicsUndeployPostScriptArgs
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path str
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short_
description str - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type str
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
ProjectConfigSchematicsUndeployPreScript, ProjectConfigSchematicsUndeployPreScriptArgs
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path str
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short_
description str - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type str
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
ProjectConfigSchematicsValidatePostScript, ProjectConfigSchematicsValidatePostScriptArgs
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path str
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short_
description str - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type str
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
ProjectConfigSchematicsValidatePreScript, ProjectConfigSchematicsValidatePreScriptArgs
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- Path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- Short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- Type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path string
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description string - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type string
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path str
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short_
description str - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type str
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
- path String
- The path to this script is within the current version source.
- Constraints: The maximum length is
256
characters. The minimum length is1
character. The value must match regular expression/^\\S+$/
.
- Constraints: The maximum length is
- short
Description String - The short description for this script.
- Constraints: The maximum length is
256
characters. The minimum length is0
characters. The value must match regular expression/$|^(?!\\s)(?!.*\\s$)[^\\x00-\\x1F]*$/
.
- Constraints: The maximum length is
- type String
- The type of the script.
- Constraints: The maximum length is
7
characters. The minimum length is7
characters. The value must match regular expression/^(ansible)$/
.
- Constraints: The maximum length is
Import
You can import the ibm_project_config
resource by using id
.
The id
property can be formed from project_id
, and project_config_id
in the following format:
<project_id>/<project_config_id>
project_id
: A string. The unique project ID.project_config_id
: A string. The ID of the configuration. If this parameter is empty, an ID is automatically created for the configuration.
Syntax
```sh $ pulumi import ibm:index/projectConfig:ProjectConfig project_config <project_id>/<project_config_id> ```
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- ibm ibm-cloud/terraform-provider-ibm
- License
- Notes
- This Pulumi package is based on the
ibm
Terraform Provider.