ibm.SchematicsAgent
Explore with Pulumi AI
Provides a resource for schematics_agent. This allows schematics_agent to be created, updated and deleted.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";
const schematicsAgentInstance = new ibm.SchematicsAgent("schematicsAgentInstance", {
agentInfrastructure: {
clusterId: "cluster_id",
clusterResourceGroup: "cluster_resource_group",
cosBucketName: "cos_bucket_name",
cosBucketRegion: "cos_bucket_region",
cosInstanceName: "cos_instance_name",
infraType: "ibm_kubernetes",
},
agentLocation: "us-south",
agentMetadatas: [{
name: "purpose",
values: [
"git",
"terraform",
"ansible",
],
}],
description: "Create Agent",
resourceGroup: "Default",
runDestroyResources: 1,
schematicsLocation: "us-south",
tags: ["agent-MyDevAgent"],
version: "1.0.0",
});
import pulumi
import pulumi_ibm as ibm
schematics_agent_instance = ibm.SchematicsAgent("schematicsAgentInstance",
agent_infrastructure={
"cluster_id": "cluster_id",
"cluster_resource_group": "cluster_resource_group",
"cos_bucket_name": "cos_bucket_name",
"cos_bucket_region": "cos_bucket_region",
"cos_instance_name": "cos_instance_name",
"infra_type": "ibm_kubernetes",
},
agent_location="us-south",
agent_metadatas=[{
"name": "purpose",
"values": [
"git",
"terraform",
"ansible",
],
}],
description="Create Agent",
resource_group="Default",
run_destroy_resources=1,
schematics_location="us-south",
tags=["agent-MyDevAgent"],
version="1.0.0")
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.NewSchematicsAgent(ctx, "schematicsAgentInstance", &ibm.SchematicsAgentArgs{
AgentInfrastructure: &ibm.SchematicsAgentAgentInfrastructureArgs{
ClusterId: pulumi.String("cluster_id"),
ClusterResourceGroup: pulumi.String("cluster_resource_group"),
CosBucketName: pulumi.String("cos_bucket_name"),
CosBucketRegion: pulumi.String("cos_bucket_region"),
CosInstanceName: pulumi.String("cos_instance_name"),
InfraType: pulumi.String("ibm_kubernetes"),
},
AgentLocation: pulumi.String("us-south"),
AgentMetadatas: ibm.SchematicsAgentAgentMetadataArray{
&ibm.SchematicsAgentAgentMetadataArgs{
Name: pulumi.String("purpose"),
Values: pulumi.StringArray{
pulumi.String("git"),
pulumi.String("terraform"),
pulumi.String("ansible"),
},
},
},
Description: pulumi.String("Create Agent"),
ResourceGroup: pulumi.String("Default"),
RunDestroyResources: pulumi.Float64(1),
SchematicsLocation: pulumi.String("us-south"),
Tags: pulumi.StringArray{
pulumi.String("agent-MyDevAgent"),
},
Version: pulumi.String("1.0.0"),
})
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 schematicsAgentInstance = new Ibm.SchematicsAgent("schematicsAgentInstance", new()
{
AgentInfrastructure = new Ibm.Inputs.SchematicsAgentAgentInfrastructureArgs
{
ClusterId = "cluster_id",
ClusterResourceGroup = "cluster_resource_group",
CosBucketName = "cos_bucket_name",
CosBucketRegion = "cos_bucket_region",
CosInstanceName = "cos_instance_name",
InfraType = "ibm_kubernetes",
},
AgentLocation = "us-south",
AgentMetadatas = new[]
{
new Ibm.Inputs.SchematicsAgentAgentMetadataArgs
{
Name = "purpose",
Values = new[]
{
"git",
"terraform",
"ansible",
},
},
},
Description = "Create Agent",
ResourceGroup = "Default",
RunDestroyResources = 1,
SchematicsLocation = "us-south",
Tags = new[]
{
"agent-MyDevAgent",
},
Version = "1.0.0",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.SchematicsAgent;
import com.pulumi.ibm.SchematicsAgentArgs;
import com.pulumi.ibm.inputs.SchematicsAgentAgentInfrastructureArgs;
import com.pulumi.ibm.inputs.SchematicsAgentAgentMetadataArgs;
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 schematicsAgentInstance = new SchematicsAgent("schematicsAgentInstance", SchematicsAgentArgs.builder()
.agentInfrastructure(SchematicsAgentAgentInfrastructureArgs.builder()
.clusterId("cluster_id")
.clusterResourceGroup("cluster_resource_group")
.cosBucketName("cos_bucket_name")
.cosBucketRegion("cos_bucket_region")
.cosInstanceName("cos_instance_name")
.infraType("ibm_kubernetes")
.build())
.agentLocation("us-south")
.agentMetadatas(SchematicsAgentAgentMetadataArgs.builder()
.name("purpose")
.values(
"git",
"terraform",
"ansible")
.build())
.description("Create Agent")
.resourceGroup("Default")
.runDestroyResources(1)
.schematicsLocation("us-south")
.tags("agent-MyDevAgent")
.version("1.0.0")
.build());
}
}
resources:
schematicsAgentInstance:
type: ibm:SchematicsAgent
properties:
agentInfrastructure:
clusterId: cluster_id
clusterResourceGroup: cluster_resource_group
cosBucketName: cos_bucket_name
cosBucketRegion: cos_bucket_region
cosInstanceName: cos_instance_name
infraType: ibm_kubernetes
agentLocation: us-south
agentMetadatas:
- name: purpose
values:
- git
- terraform
- ansible
description: Create Agent
resourceGroup: Default
runDestroyResources: 1
schematicsLocation: us-south
tags:
- agent-MyDevAgent
version: 1.0.0
Create SchematicsAgent Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SchematicsAgent(name: string, args: SchematicsAgentArgs, opts?: CustomResourceOptions);
@overload
def SchematicsAgent(resource_name: str,
args: SchematicsAgentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SchematicsAgent(resource_name: str,
opts: Optional[ResourceOptions] = None,
schematics_location: Optional[str] = None,
resource_group: Optional[str] = None,
agent_location: Optional[str] = None,
version: Optional[str] = None,
agent_infrastructure: Optional[SchematicsAgentAgentInfrastructureArgs] = None,
user_state: Optional[SchematicsAgentUserStateArgs] = None,
schematics_agent_id: Optional[str] = None,
name: Optional[str] = None,
agent_inputs: Optional[Sequence[SchematicsAgentAgentInputArgs]] = None,
description: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
timeouts: Optional[SchematicsAgentTimeoutsArgs] = None,
run_destroy_resources: Optional[float] = None,
agent_metadatas: Optional[Sequence[SchematicsAgentAgentMetadataArgs]] = None)
func NewSchematicsAgent(ctx *Context, name string, args SchematicsAgentArgs, opts ...ResourceOption) (*SchematicsAgent, error)
public SchematicsAgent(string name, SchematicsAgentArgs args, CustomResourceOptions? opts = null)
public SchematicsAgent(String name, SchematicsAgentArgs args)
public SchematicsAgent(String name, SchematicsAgentArgs args, CustomResourceOptions options)
type: ibm:SchematicsAgent
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 SchematicsAgentArgs
- 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 SchematicsAgentArgs
- 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 SchematicsAgentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SchematicsAgentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SchematicsAgentArgs
- 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 schematicsAgentResource = new Ibm.SchematicsAgent("schematicsAgentResource", new()
{
SchematicsLocation = "string",
ResourceGroup = "string",
AgentLocation = "string",
Version = "string",
AgentInfrastructure = new Ibm.Inputs.SchematicsAgentAgentInfrastructureArgs
{
ClusterId = "string",
ClusterResourceGroup = "string",
CosBucketName = "string",
CosBucketRegion = "string",
CosInstanceName = "string",
InfraType = "string",
},
UserState = new Ibm.Inputs.SchematicsAgentUserStateArgs
{
SetAt = "string",
SetBy = "string",
State = "string",
},
SchematicsAgentId = "string",
Name = "string",
AgentInputs = new[]
{
new Ibm.Inputs.SchematicsAgentAgentInputArgs
{
Link = "string",
Metadata = new Ibm.Inputs.SchematicsAgentAgentInputMetadataArgs
{
Aliases = new[]
{
"string",
},
CloudDataType = "string",
DefaultValue = "string",
Description = "string",
GroupBy = "string",
Hidden = false,
Immutable = false,
LinkStatus = "string",
Matches = "string",
MaxLength = 0,
MaxValue = 0,
MinLength = 0,
MinValue = 0,
Options = new[]
{
"string",
},
Position = 0,
Required = false,
Secure = false,
Source = "string",
Type = "string",
},
Name = "string",
UseDefault = false,
Value = "string",
},
},
Description = "string",
Tags = new[]
{
"string",
},
Timeouts = new Ibm.Inputs.SchematicsAgentTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
RunDestroyResources = 0,
AgentMetadatas = new[]
{
new Ibm.Inputs.SchematicsAgentAgentMetadataArgs
{
Name = "string",
Values = new[]
{
"string",
},
},
},
});
example, err := ibm.NewSchematicsAgent(ctx, "schematicsAgentResource", &ibm.SchematicsAgentArgs{
SchematicsLocation: pulumi.String("string"),
ResourceGroup: pulumi.String("string"),
AgentLocation: pulumi.String("string"),
Version: pulumi.String("string"),
AgentInfrastructure: &ibm.SchematicsAgentAgentInfrastructureArgs{
ClusterId: pulumi.String("string"),
ClusterResourceGroup: pulumi.String("string"),
CosBucketName: pulumi.String("string"),
CosBucketRegion: pulumi.String("string"),
CosInstanceName: pulumi.String("string"),
InfraType: pulumi.String("string"),
},
UserState: &ibm.SchematicsAgentUserStateArgs{
SetAt: pulumi.String("string"),
SetBy: pulumi.String("string"),
State: pulumi.String("string"),
},
SchematicsAgentId: pulumi.String("string"),
Name: pulumi.String("string"),
AgentInputs: ibm.SchematicsAgentAgentInputArray{
&ibm.SchematicsAgentAgentInputArgs{
Link: pulumi.String("string"),
Metadata: &ibm.SchematicsAgentAgentInputMetadataArgs{
Aliases: pulumi.StringArray{
pulumi.String("string"),
},
CloudDataType: pulumi.String("string"),
DefaultValue: pulumi.String("string"),
Description: pulumi.String("string"),
GroupBy: pulumi.String("string"),
Hidden: pulumi.Bool(false),
Immutable: pulumi.Bool(false),
LinkStatus: pulumi.String("string"),
Matches: pulumi.String("string"),
MaxLength: pulumi.Float64(0),
MaxValue: pulumi.Float64(0),
MinLength: pulumi.Float64(0),
MinValue: pulumi.Float64(0),
Options: pulumi.StringArray{
pulumi.String("string"),
},
Position: pulumi.Float64(0),
Required: pulumi.Bool(false),
Secure: pulumi.Bool(false),
Source: pulumi.String("string"),
Type: pulumi.String("string"),
},
Name: pulumi.String("string"),
UseDefault: pulumi.Bool(false),
Value: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Timeouts: &ibm.SchematicsAgentTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
RunDestroyResources: pulumi.Float64(0),
AgentMetadatas: ibm.SchematicsAgentAgentMetadataArray{
&ibm.SchematicsAgentAgentMetadataArgs{
Name: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
})
var schematicsAgentResource = new SchematicsAgent("schematicsAgentResource", SchematicsAgentArgs.builder()
.schematicsLocation("string")
.resourceGroup("string")
.agentLocation("string")
.version("string")
.agentInfrastructure(SchematicsAgentAgentInfrastructureArgs.builder()
.clusterId("string")
.clusterResourceGroup("string")
.cosBucketName("string")
.cosBucketRegion("string")
.cosInstanceName("string")
.infraType("string")
.build())
.userState(SchematicsAgentUserStateArgs.builder()
.setAt("string")
.setBy("string")
.state("string")
.build())
.schematicsAgentId("string")
.name("string")
.agentInputs(SchematicsAgentAgentInputArgs.builder()
.link("string")
.metadata(SchematicsAgentAgentInputMetadataArgs.builder()
.aliases("string")
.cloudDataType("string")
.defaultValue("string")
.description("string")
.groupBy("string")
.hidden(false)
.immutable(false)
.linkStatus("string")
.matches("string")
.maxLength(0)
.maxValue(0)
.minLength(0)
.minValue(0)
.options("string")
.position(0)
.required(false)
.secure(false)
.source("string")
.type("string")
.build())
.name("string")
.useDefault(false)
.value("string")
.build())
.description("string")
.tags("string")
.timeouts(SchematicsAgentTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.runDestroyResources(0)
.agentMetadatas(SchematicsAgentAgentMetadataArgs.builder()
.name("string")
.values("string")
.build())
.build());
schematics_agent_resource = ibm.SchematicsAgent("schematicsAgentResource",
schematics_location="string",
resource_group="string",
agent_location="string",
version="string",
agent_infrastructure={
"cluster_id": "string",
"cluster_resource_group": "string",
"cos_bucket_name": "string",
"cos_bucket_region": "string",
"cos_instance_name": "string",
"infra_type": "string",
},
user_state={
"set_at": "string",
"set_by": "string",
"state": "string",
},
schematics_agent_id="string",
name="string",
agent_inputs=[{
"link": "string",
"metadata": {
"aliases": ["string"],
"cloud_data_type": "string",
"default_value": "string",
"description": "string",
"group_by": "string",
"hidden": False,
"immutable": False,
"link_status": "string",
"matches": "string",
"max_length": 0,
"max_value": 0,
"min_length": 0,
"min_value": 0,
"options": ["string"],
"position": 0,
"required": False,
"secure": False,
"source": "string",
"type": "string",
},
"name": "string",
"use_default": False,
"value": "string",
}],
description="string",
tags=["string"],
timeouts={
"create": "string",
"delete": "string",
"update": "string",
},
run_destroy_resources=0,
agent_metadatas=[{
"name": "string",
"values": ["string"],
}])
const schematicsAgentResource = new ibm.SchematicsAgent("schematicsAgentResource", {
schematicsLocation: "string",
resourceGroup: "string",
agentLocation: "string",
version: "string",
agentInfrastructure: {
clusterId: "string",
clusterResourceGroup: "string",
cosBucketName: "string",
cosBucketRegion: "string",
cosInstanceName: "string",
infraType: "string",
},
userState: {
setAt: "string",
setBy: "string",
state: "string",
},
schematicsAgentId: "string",
name: "string",
agentInputs: [{
link: "string",
metadata: {
aliases: ["string"],
cloudDataType: "string",
defaultValue: "string",
description: "string",
groupBy: "string",
hidden: false,
immutable: false,
linkStatus: "string",
matches: "string",
maxLength: 0,
maxValue: 0,
minLength: 0,
minValue: 0,
options: ["string"],
position: 0,
required: false,
secure: false,
source: "string",
type: "string",
},
name: "string",
useDefault: false,
value: "string",
}],
description: "string",
tags: ["string"],
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
runDestroyResources: 0,
agentMetadatas: [{
name: "string",
values: ["string"],
}],
});
type: ibm:SchematicsAgent
properties:
agentInfrastructure:
clusterId: string
clusterResourceGroup: string
cosBucketName: string
cosBucketRegion: string
cosInstanceName: string
infraType: string
agentInputs:
- link: string
metadata:
aliases:
- string
cloudDataType: string
defaultValue: string
description: string
groupBy: string
hidden: false
immutable: false
linkStatus: string
matches: string
maxLength: 0
maxValue: 0
minLength: 0
minValue: 0
options:
- string
position: 0
required: false
secure: false
source: string
type: string
name: string
useDefault: false
value: string
agentLocation: string
agentMetadatas:
- name: string
values:
- string
description: string
name: string
resourceGroup: string
runDestroyResources: 0
schematicsAgentId: string
schematicsLocation: string
tags:
- string
timeouts:
create: string
delete: string
update: string
userState:
setAt: string
setBy: string
state: string
version: string
SchematicsAgent 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 SchematicsAgent resource accepts the following input properties:
- Agent
Infrastructure SchematicsAgent Agent Infrastructure - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- Agent
Location string - The location where agent is deployed in the user environment.
- Resource
Group string - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- Schematics
Location string - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- Version string
- Agent version.
- Agent
Inputs List<SchematicsAgent Agent Input> - Additional input variables for the agent.
- Agent
Metadatas List<SchematicsAgent Agent Metadata> - The metadata of an agent. Nested scheme for agent_metadata:
- Description string
- Agent description.
- Name string
- The name of the agent (must be unique, for an account).
- Run
Destroy doubleResources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- Schematics
Agent stringId - The unique identifier of the schematics_agent.
- List<string>
- Tags for the agent.
- Timeouts
Schematics
Agent Timeouts - User
State SchematicsAgent User State - User defined status of the agent. Nested scheme for user_state:
- Agent
Infrastructure SchematicsAgent Agent Infrastructure Args - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- Agent
Location string - The location where agent is deployed in the user environment.
- Resource
Group string - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- Schematics
Location string - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- Version string
- Agent version.
- Agent
Inputs []SchematicsAgent Agent Input Args - Additional input variables for the agent.
- Agent
Metadatas []SchematicsAgent Agent Metadata Args - The metadata of an agent. Nested scheme for agent_metadata:
- Description string
- Agent description.
- Name string
- The name of the agent (must be unique, for an account).
- Run
Destroy float64Resources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- Schematics
Agent stringId - The unique identifier of the schematics_agent.
- []string
- Tags for the agent.
- Timeouts
Schematics
Agent Timeouts Args - User
State SchematicsAgent User State Args - User defined status of the agent. Nested scheme for user_state:
- agent
Infrastructure SchematicsAgent Agent Infrastructure - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- agent
Location String - The location where agent is deployed in the user environment.
- resource
Group String - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- schematics
Location String - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- version String
- Agent version.
- agent
Inputs List<SchematicsAgent Agent Input> - Additional input variables for the agent.
- agent
Metadatas List<SchematicsAgent Agent Metadata> - The metadata of an agent. Nested scheme for agent_metadata:
- description String
- Agent description.
- name String
- The name of the agent (must be unique, for an account).
- run
Destroy DoubleResources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- schematics
Agent StringId - The unique identifier of the schematics_agent.
- List<String>
- Tags for the agent.
- timeouts
Schematics
Agent Timeouts - user
State SchematicsAgent User State - User defined status of the agent. Nested scheme for user_state:
- agent
Infrastructure SchematicsAgent Agent Infrastructure - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- agent
Location string - The location where agent is deployed in the user environment.
- resource
Group string - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- schematics
Location string - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- version string
- Agent version.
- agent
Inputs SchematicsAgent Agent Input[] - Additional input variables for the agent.
- agent
Metadatas SchematicsAgent Agent Metadata[] - The metadata of an agent. Nested scheme for agent_metadata:
- description string
- Agent description.
- name string
- The name of the agent (must be unique, for an account).
- run
Destroy numberResources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- schematics
Agent stringId - The unique identifier of the schematics_agent.
- string[]
- Tags for the agent.
- timeouts
Schematics
Agent Timeouts - user
State SchematicsAgent User State - User defined status of the agent. Nested scheme for user_state:
- agent_
infrastructure SchematicsAgent Agent Infrastructure Args - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- agent_
location str - The location where agent is deployed in the user environment.
- resource_
group str - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- schematics_
location str - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- version str
- Agent version.
- agent_
inputs Sequence[SchematicsAgent Agent Input Args] - Additional input variables for the agent.
- agent_
metadatas Sequence[SchematicsAgent Agent Metadata Args] - The metadata of an agent. Nested scheme for agent_metadata:
- description str
- Agent description.
- name str
- The name of the agent (must be unique, for an account).
- run_
destroy_ floatresources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- schematics_
agent_ strid - The unique identifier of the schematics_agent.
- Sequence[str]
- Tags for the agent.
- timeouts
Schematics
Agent Timeouts Args - user_
state SchematicsAgent User State Args - User defined status of the agent. Nested scheme for user_state:
- agent
Infrastructure Property Map - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- agent
Location String - The location where agent is deployed in the user environment.
- resource
Group String - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- schematics
Location String - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- version String
- Agent version.
- agent
Inputs List<Property Map> - Additional input variables for the agent.
- agent
Metadatas List<Property Map> - The metadata of an agent. Nested scheme for agent_metadata:
- description String
- Agent description.
- name String
- The name of the agent (must be unique, for an account).
- run
Destroy NumberResources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- schematics
Agent StringId - The unique identifier of the schematics_agent.
- List<String>
- Tags for the agent.
- timeouts Property Map
- user
State Property Map - User defined status of the agent. Nested scheme for user_state:
Outputs
All input properties are implicitly available as output properties. Additionally, the SchematicsAgent resource produces the following output properties:
- Agent
Crn string - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- Agent
Kpis List<SchematicsAgent Agent Kpi> - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- Created
At string - (String) The agent creation date-time.
- Creation
By string - (String) The email address of an user who created the agent.
- Id string
- The provider-assigned unique ID for this managed resource.
- Recent
Deploy List<SchematicsJobs Agent Recent Deploy Job> - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- Recent
Health List<SchematicsJobs Agent Recent Health Job> - (List) Agent health check. Nested scheme for recent_health_job:
- Recent
Prs List<SchematicsJobs Agent Recent Prs Job> - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- System
States List<SchematicsAgent System State> - (List) Computed state of the agent. Nested scheme for system_state:
- Updated
At string - (String) The agent registration updation time.
- Updated
By string - (String) Email address of user who updated the agent registration.
- Agent
Crn string - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- Agent
Kpis []SchematicsAgent Agent Kpi - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- Created
At string - (String) The agent creation date-time.
- Creation
By string - (String) The email address of an user who created the agent.
- Id string
- The provider-assigned unique ID for this managed resource.
- Recent
Deploy []SchematicsJobs Agent Recent Deploy Job - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- Recent
Health []SchematicsJobs Agent Recent Health Job - (List) Agent health check. Nested scheme for recent_health_job:
- Recent
Prs []SchematicsJobs Agent Recent Prs Job - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- System
States []SchematicsAgent System State - (List) Computed state of the agent. Nested scheme for system_state:
- Updated
At string - (String) The agent registration updation time.
- Updated
By string - (String) Email address of user who updated the agent registration.
- agent
Crn String - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- agent
Kpis List<SchematicsAgent Agent Kpi> - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- created
At String - (String) The agent creation date-time.
- creation
By String - (String) The email address of an user who created the agent.
- id String
- The provider-assigned unique ID for this managed resource.
- recent
Deploy List<SchematicsJobs Agent Recent Deploy Job> - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- recent
Health List<SchematicsJobs Agent Recent Health Job> - (List) Agent health check. Nested scheme for recent_health_job:
- recent
Prs List<SchematicsJobs Agent Recent Prs Job> - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- system
States List<SchematicsAgent System State> - (List) Computed state of the agent. Nested scheme for system_state:
- updated
At String - (String) The agent registration updation time.
- updated
By String - (String) Email address of user who updated the agent registration.
- agent
Crn string - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- agent
Kpis SchematicsAgent Agent Kpi[] - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- created
At string - (String) The agent creation date-time.
- creation
By string - (String) The email address of an user who created the agent.
- id string
- The provider-assigned unique ID for this managed resource.
- recent
Deploy SchematicsJobs Agent Recent Deploy Job[] - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- recent
Health SchematicsJobs Agent Recent Health Job[] - (List) Agent health check. Nested scheme for recent_health_job:
- recent
Prs SchematicsJobs Agent Recent Prs Job[] - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- system
States SchematicsAgent System State[] - (List) Computed state of the agent. Nested scheme for system_state:
- updated
At string - (String) The agent registration updation time.
- updated
By string - (String) Email address of user who updated the agent registration.
- agent_
crn str - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- agent_
kpis Sequence[SchematicsAgent Agent Kpi] - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- created_
at str - (String) The agent creation date-time.
- creation_
by str - (String) The email address of an user who created the agent.
- id str
- The provider-assigned unique ID for this managed resource.
- recent_
deploy_ Sequence[Schematicsjobs Agent Recent Deploy Job] - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- recent_
health_ Sequence[Schematicsjobs Agent Recent Health Job] - (List) Agent health check. Nested scheme for recent_health_job:
- recent_
prs_ Sequence[Schematicsjobs Agent Recent Prs Job] - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- system_
states Sequence[SchematicsAgent System State] - (List) Computed state of the agent. Nested scheme for system_state:
- updated_
at str - (String) The agent registration updation time.
- updated_
by str - (String) Email address of user who updated the agent registration.
- agent
Crn String - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- agent
Kpis List<Property Map> - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- created
At String - (String) The agent creation date-time.
- creation
By String - (String) The email address of an user who created the agent.
- id String
- The provider-assigned unique ID for this managed resource.
- recent
Deploy List<Property Map>Jobs - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- recent
Health List<Property Map>Jobs - (List) Agent health check. Nested scheme for recent_health_job:
- recent
Prs List<Property Map>Jobs - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- system
States List<Property Map> - (List) Computed state of the agent. Nested scheme for system_state:
- updated
At String - (String) The agent registration updation time.
- updated
By String - (String) Email address of user who updated the agent registration.
Look up Existing SchematicsAgent Resource
Get an existing SchematicsAgent 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?: SchematicsAgentState, opts?: CustomResourceOptions): SchematicsAgent
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
agent_crn: Optional[str] = None,
agent_infrastructure: Optional[SchematicsAgentAgentInfrastructureArgs] = None,
agent_inputs: Optional[Sequence[SchematicsAgentAgentInputArgs]] = None,
agent_kpis: Optional[Sequence[SchematicsAgentAgentKpiArgs]] = None,
agent_location: Optional[str] = None,
agent_metadatas: Optional[Sequence[SchematicsAgentAgentMetadataArgs]] = None,
created_at: Optional[str] = None,
creation_by: Optional[str] = None,
description: Optional[str] = None,
name: Optional[str] = None,
recent_deploy_jobs: Optional[Sequence[SchematicsAgentRecentDeployJobArgs]] = None,
recent_health_jobs: Optional[Sequence[SchematicsAgentRecentHealthJobArgs]] = None,
recent_prs_jobs: Optional[Sequence[SchematicsAgentRecentPrsJobArgs]] = None,
resource_group: Optional[str] = None,
run_destroy_resources: Optional[float] = None,
schematics_agent_id: Optional[str] = None,
schematics_location: Optional[str] = None,
system_states: Optional[Sequence[SchematicsAgentSystemStateArgs]] = None,
tags: Optional[Sequence[str]] = None,
timeouts: Optional[SchematicsAgentTimeoutsArgs] = None,
updated_at: Optional[str] = None,
updated_by: Optional[str] = None,
user_state: Optional[SchematicsAgentUserStateArgs] = None,
version: Optional[str] = None) -> SchematicsAgent
func GetSchematicsAgent(ctx *Context, name string, id IDInput, state *SchematicsAgentState, opts ...ResourceOption) (*SchematicsAgent, error)
public static SchematicsAgent Get(string name, Input<string> id, SchematicsAgentState? state, CustomResourceOptions? opts = null)
public static SchematicsAgent get(String name, Output<String> id, SchematicsAgentState state, CustomResourceOptions options)
resources: _: type: ibm:SchematicsAgent 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.
- Agent
Crn string - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- Agent
Infrastructure SchematicsAgent Agent Infrastructure - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- Agent
Inputs List<SchematicsAgent Agent Input> - Additional input variables for the agent.
- Agent
Kpis List<SchematicsAgent Agent Kpi> - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- Agent
Location string - The location where agent is deployed in the user environment.
- Agent
Metadatas List<SchematicsAgent Agent Metadata> - The metadata of an agent. Nested scheme for agent_metadata:
- Created
At string - (String) The agent creation date-time.
- Creation
By string - (String) The email address of an user who created the agent.
- Description string
- Agent description.
- Name string
- The name of the agent (must be unique, for an account).
- Recent
Deploy List<SchematicsJobs Agent Recent Deploy Job> - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- Recent
Health List<SchematicsJobs Agent Recent Health Job> - (List) Agent health check. Nested scheme for recent_health_job:
- Recent
Prs List<SchematicsJobs Agent Recent Prs Job> - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- Resource
Group string - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- Run
Destroy doubleResources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- Schematics
Agent stringId - The unique identifier of the schematics_agent.
- Schematics
Location string - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- System
States List<SchematicsAgent System State> - (List) Computed state of the agent. Nested scheme for system_state:
- List<string>
- Tags for the agent.
- Timeouts
Schematics
Agent Timeouts - Updated
At string - (String) The agent registration updation time.
- Updated
By string - (String) Email address of user who updated the agent registration.
- User
State SchematicsAgent User State - User defined status of the agent. Nested scheme for user_state:
- Version string
- Agent version.
- Agent
Crn string - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- Agent
Infrastructure SchematicsAgent Agent Infrastructure Args - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- Agent
Inputs []SchematicsAgent Agent Input Args - Additional input variables for the agent.
- Agent
Kpis []SchematicsAgent Agent Kpi Args - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- Agent
Location string - The location where agent is deployed in the user environment.
- Agent
Metadatas []SchematicsAgent Agent Metadata Args - The metadata of an agent. Nested scheme for agent_metadata:
- Created
At string - (String) The agent creation date-time.
- Creation
By string - (String) The email address of an user who created the agent.
- Description string
- Agent description.
- Name string
- The name of the agent (must be unique, for an account).
- Recent
Deploy []SchematicsJobs Agent Recent Deploy Job Args - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- Recent
Health []SchematicsJobs Agent Recent Health Job Args - (List) Agent health check. Nested scheme for recent_health_job:
- Recent
Prs []SchematicsJobs Agent Recent Prs Job Args - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- Resource
Group string - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- Run
Destroy float64Resources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- Schematics
Agent stringId - The unique identifier of the schematics_agent.
- Schematics
Location string - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- System
States []SchematicsAgent System State Args - (List) Computed state of the agent. Nested scheme for system_state:
- []string
- Tags for the agent.
- Timeouts
Schematics
Agent Timeouts Args - Updated
At string - (String) The agent registration updation time.
- Updated
By string - (String) Email address of user who updated the agent registration.
- User
State SchematicsAgent User State Args - User defined status of the agent. Nested scheme for user_state:
- Version string
- Agent version.
- agent
Crn String - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- agent
Infrastructure SchematicsAgent Agent Infrastructure - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- agent
Inputs List<SchematicsAgent Agent Input> - Additional input variables for the agent.
- agent
Kpis List<SchematicsAgent Agent Kpi> - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- agent
Location String - The location where agent is deployed in the user environment.
- agent
Metadatas List<SchematicsAgent Agent Metadata> - The metadata of an agent. Nested scheme for agent_metadata:
- created
At String - (String) The agent creation date-time.
- creation
By String - (String) The email address of an user who created the agent.
- description String
- Agent description.
- name String
- The name of the agent (must be unique, for an account).
- recent
Deploy List<SchematicsJobs Agent Recent Deploy Job> - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- recent
Health List<SchematicsJobs Agent Recent Health Job> - (List) Agent health check. Nested scheme for recent_health_job:
- recent
Prs List<SchematicsJobs Agent Recent Prs Job> - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- resource
Group String - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- run
Destroy DoubleResources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- schematics
Agent StringId - The unique identifier of the schematics_agent.
- schematics
Location String - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- system
States List<SchematicsAgent System State> - (List) Computed state of the agent. Nested scheme for system_state:
- List<String>
- Tags for the agent.
- timeouts
Schematics
Agent Timeouts - updated
At String - (String) The agent registration updation time.
- updated
By String - (String) Email address of user who updated the agent registration.
- user
State SchematicsAgent User State - User defined status of the agent. Nested scheme for user_state:
- version String
- Agent version.
- agent
Crn string - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- agent
Infrastructure SchematicsAgent Agent Infrastructure - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- agent
Inputs SchematicsAgent Agent Input[] - Additional input variables for the agent.
- agent
Kpis SchematicsAgent Agent Kpi[] - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- agent
Location string - The location where agent is deployed in the user environment.
- agent
Metadatas SchematicsAgent Agent Metadata[] - The metadata of an agent. Nested scheme for agent_metadata:
- created
At string - (String) The agent creation date-time.
- creation
By string - (String) The email address of an user who created the agent.
- description string
- Agent description.
- name string
- The name of the agent (must be unique, for an account).
- recent
Deploy SchematicsJobs Agent Recent Deploy Job[] - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- recent
Health SchematicsJobs Agent Recent Health Job[] - (List) Agent health check. Nested scheme for recent_health_job:
- recent
Prs SchematicsJobs Agent Recent Prs Job[] - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- resource
Group string - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- run
Destroy numberResources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- schematics
Agent stringId - The unique identifier of the schematics_agent.
- schematics
Location string - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- system
States SchematicsAgent System State[] - (List) Computed state of the agent. Nested scheme for system_state:
- string[]
- Tags for the agent.
- timeouts
Schematics
Agent Timeouts - updated
At string - (String) The agent registration updation time.
- updated
By string - (String) Email address of user who updated the agent registration.
- user
State SchematicsAgent User State - User defined status of the agent. Nested scheme for user_state:
- version string
- Agent version.
- agent_
crn str - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- agent_
infrastructure SchematicsAgent Agent Infrastructure Args - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- agent_
inputs Sequence[SchematicsAgent Agent Input Args] - Additional input variables for the agent.
- agent_
kpis Sequence[SchematicsAgent Agent Kpi Args] - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- agent_
location str - The location where agent is deployed in the user environment.
- agent_
metadatas Sequence[SchematicsAgent Agent Metadata Args] - The metadata of an agent. Nested scheme for agent_metadata:
- created_
at str - (String) The agent creation date-time.
- creation_
by str - (String) The email address of an user who created the agent.
- description str
- Agent description.
- name str
- The name of the agent (must be unique, for an account).
- recent_
deploy_ Sequence[Schematicsjobs Agent Recent Deploy Job Args] - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- recent_
health_ Sequence[Schematicsjobs Agent Recent Health Job Args] - (List) Agent health check. Nested scheme for recent_health_job:
- recent_
prs_ Sequence[Schematicsjobs Agent Recent Prs Job Args] - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- resource_
group str - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- run_
destroy_ floatresources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- schematics_
agent_ strid - The unique identifier of the schematics_agent.
- schematics_
location str - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- system_
states Sequence[SchematicsAgent System State Args] - (List) Computed state of the agent. Nested scheme for system_state:
- Sequence[str]
- Tags for the agent.
- timeouts
Schematics
Agent Timeouts Args - updated_
at str - (String) The agent registration updation time.
- updated_
by str - (String) Email address of user who updated the agent registration.
- user_
state SchematicsAgent User State Args - User defined status of the agent. Nested scheme for user_state:
- version str
- Agent version.
- agent
Crn String - (String) The agent crn, obtained from the Schematics agent deployment configuration.
- agent
Infrastructure Property Map - The infrastructure parameters used by the agent. Nested scheme for agent_infrastructure:
- agent
Inputs List<Property Map> - Additional input variables for the agent.
- agent
Kpis List<Property Map> - (List) Schematics Agent key performance indicators. Nested scheme for agent_kpi:
- agent
Location String - The location where agent is deployed in the user environment.
- agent
Metadatas List<Property Map> - The metadata of an agent. Nested scheme for agent_metadata:
- created
At String - (String) The agent creation date-time.
- creation
By String - (String) The email address of an user who created the agent.
- description String
- Agent description.
- name String
- The name of the agent (must be unique, for an account).
- recent
Deploy List<Property Map>Jobs - (List) Post-installations checks for Agent health. Nested scheme for recent_deploy_job:
- recent
Health List<Property Map>Jobs - (List) Agent health check. Nested scheme for recent_health_job:
- recent
Prs List<Property Map>Jobs - (List) Run a pre-requisite scanner for deploying agent. Nested scheme for recent_prs_job:
- resource
Group String - The resource-group name for the agent. By default, agent will be registered in Default Resource Group.
- run
Destroy NumberResources - Argument which helps to run destroy resources job. Increment the value to destroy resources associated with agent deployment.
- schematics
Agent StringId - The unique identifier of the schematics_agent.
- schematics
Location String - List of locations supported by IBM Cloud Schematics service. While creating your workspace or action, choose the right region, since it cannot be changed. Note, this does not limit the location of the IBM Cloud resources, provisioned using Schematics.
- Constraints: Allowable values are:
us-south
,us-east
,eu-gb
,eu-de
.
- Constraints: Allowable values are:
- system
States List<Property Map> - (List) Computed state of the agent. Nested scheme for system_state:
- List<String>
- Tags for the agent.
- timeouts Property Map
- updated
At String - (String) The agent registration updation time.
- updated
By String - (String) Email address of user who updated the agent registration.
- user
State Property Map - User defined status of the agent. Nested scheme for user_state:
- version String
- Agent version.
Supporting Types
SchematicsAgentAgentInfrastructure, SchematicsAgentAgentInfrastructureArgs
- Cluster
Id string - The cluster ID where agent services will be running.
- Cluster
Resource stringGroup - The resource group of the cluster (is it required?).
- Cos
Bucket stringName - The COS bucket name used to store the logs.
- Cos
Bucket stringRegion - The COS bucket region.
- Cos
Instance stringName - The COS instance name to store the agent logs.
- Infra
Type string - Type of target agent infrastructure.
- Constraints: Allowable values are:
ibm_kubernetes
,ibm_openshift
,ibm_satellite
.
- Constraints: Allowable values are:
- Cluster
Id string - The cluster ID where agent services will be running.
- Cluster
Resource stringGroup - The resource group of the cluster (is it required?).
- Cos
Bucket stringName - The COS bucket name used to store the logs.
- Cos
Bucket stringRegion - The COS bucket region.
- Cos
Instance stringName - The COS instance name to store the agent logs.
- Infra
Type string - Type of target agent infrastructure.
- Constraints: Allowable values are:
ibm_kubernetes
,ibm_openshift
,ibm_satellite
.
- Constraints: Allowable values are:
- cluster
Id String - The cluster ID where agent services will be running.
- cluster
Resource StringGroup - The resource group of the cluster (is it required?).
- cos
Bucket StringName - The COS bucket name used to store the logs.
- cos
Bucket StringRegion - The COS bucket region.
- cos
Instance StringName - The COS instance name to store the agent logs.
- infra
Type String - Type of target agent infrastructure.
- Constraints: Allowable values are:
ibm_kubernetes
,ibm_openshift
,ibm_satellite
.
- Constraints: Allowable values are:
- cluster
Id string - The cluster ID where agent services will be running.
- cluster
Resource stringGroup - The resource group of the cluster (is it required?).
- cos
Bucket stringName - The COS bucket name used to store the logs.
- cos
Bucket stringRegion - The COS bucket region.
- cos
Instance stringName - The COS instance name to store the agent logs.
- infra
Type string - Type of target agent infrastructure.
- Constraints: Allowable values are:
ibm_kubernetes
,ibm_openshift
,ibm_satellite
.
- Constraints: Allowable values are:
- cluster_
id str - The cluster ID where agent services will be running.
- cluster_
resource_ strgroup - The resource group of the cluster (is it required?).
- cos_
bucket_ strname - The COS bucket name used to store the logs.
- cos_
bucket_ strregion - The COS bucket region.
- cos_
instance_ strname - The COS instance name to store the agent logs.
- infra_
type str - Type of target agent infrastructure.
- Constraints: Allowable values are:
ibm_kubernetes
,ibm_openshift
,ibm_satellite
.
- Constraints: Allowable values are:
- cluster
Id String - The cluster ID where agent services will be running.
- cluster
Resource StringGroup - The resource group of the cluster (is it required?).
- cos
Bucket StringName - The COS bucket name used to store the logs.
- cos
Bucket StringRegion - The COS bucket region.
- cos
Instance StringName - The COS instance name to store the agent logs.
- infra
Type String - Type of target agent infrastructure.
- Constraints: Allowable values are:
ibm_kubernetes
,ibm_openshift
,ibm_satellite
.
- Constraints: Allowable values are:
SchematicsAgentAgentInput, SchematicsAgentAgentInputArgs
- Link string
- The reference link to the variable value By default the expression points to
$self.value
. - Metadata
Schematics
Agent Agent Input Metadata - An user editable metadata for the variables.
- Name string
- The name of the agent (must be unique, for an account).
- Use
Default bool - True, will ignore the data in the value attribute, instead the data in metadata.default_value will be used.
- Value string
The value for the variable or reference to the value. For example, `value = "<provide your ssh_key_value with
"
. **Note** The SSH key should contain
` at the end of the key details in case of command line or API calls.
- Link string
- The reference link to the variable value By default the expression points to
$self.value
. - Metadata
Schematics
Agent Agent Input Metadata - An user editable metadata for the variables.
- Name string
- The name of the agent (must be unique, for an account).
- Use
Default bool - True, will ignore the data in the value attribute, instead the data in metadata.default_value will be used.
- Value string
The value for the variable or reference to the value. For example, `value = "<provide your ssh_key_value with
"
. **Note** The SSH key should contain
` at the end of the key details in case of command line or API calls.
- link String
- The reference link to the variable value By default the expression points to
$self.value
. - metadata
Schematics
Agent Agent Input Metadata - An user editable metadata for the variables.
- name String
- The name of the agent (must be unique, for an account).
- use
Default Boolean - True, will ignore the data in the value attribute, instead the data in metadata.default_value will be used.
- value String
The value for the variable or reference to the value. For example, `value = "<provide your ssh_key_value with
"
. **Note** The SSH key should contain
` at the end of the key details in case of command line or API calls.
- link string
- The reference link to the variable value By default the expression points to
$self.value
. - metadata
Schematics
Agent Agent Input Metadata - An user editable metadata for the variables.
- name string
- The name of the agent (must be unique, for an account).
- use
Default boolean - True, will ignore the data in the value attribute, instead the data in metadata.default_value will be used.
- value string
The value for the variable or reference to the value. For example, `value = "<provide your ssh_key_value with
"
. **Note** The SSH key should contain
` at the end of the key details in case of command line or API calls.
- link str
- The reference link to the variable value By default the expression points to
$self.value
. - metadata
Schematics
Agent Agent Input Metadata - An user editable metadata for the variables.
- name str
- The name of the agent (must be unique, for an account).
- use_
default bool - True, will ignore the data in the value attribute, instead the data in metadata.default_value will be used.
- value str
The value for the variable or reference to the value. For example, `value = "<provide your ssh_key_value with
"
. **Note** The SSH key should contain
` at the end of the key details in case of command line or API calls.
- link String
- The reference link to the variable value By default the expression points to
$self.value
. - metadata Property Map
- An user editable metadata for the variables.
- name String
- The name of the agent (must be unique, for an account).
- use
Default Boolean - True, will ignore the data in the value attribute, instead the data in metadata.default_value will be used.
- value String
The value for the variable or reference to the value. For example, `value = "<provide your ssh_key_value with
"
. **Note** The SSH key should contain
` at the end of the key details in case of command line or API calls.
SchematicsAgentAgentInputMetadata, SchematicsAgentAgentInputMetadataArgs
- Aliases List<string>
- The list of aliases for the variable name.
- Cloud
Data stringType - Cloud data type of the variable. eg. resource_group_id, region, vpc_id.
- Default
Value string - Default value for the variable only if the override value is not specified.
- Description string
- Agent description.
- Group
By string - The display name of the group this variable belongs to.
- bool
- If true, the variable is not displayed on UI or Command line.
- Immutable bool
- Is the variable readonly ?.
- Link
Status string - The status of the link.
- Matches string
- The regex for the variable value.
- Max
Length double - The maximum length of the variable value. Applicable for the string type.
- Max
Value double - The maximum value of the variable. Applicable for the integer type.
- Min
Length double - The minimum length of the variable value. Applicable for the string type.
- Min
Value double - The minimum value of the variable. Applicable for the integer type.
- Options List<string>
- The list of possible values for this variable. If type is integer or date, then the array of string is converted to array of integers or date during the runtime.
- Position double
- The relative position of this variable in a list.
- Required bool
- If the variable required?.
- Secure bool
- Is the variable secure or sensitive ?.
- Source string
- The source of this meta-data.
- Type string
- Type of the variable.
- Aliases []string
- The list of aliases for the variable name.
- Cloud
Data stringType - Cloud data type of the variable. eg. resource_group_id, region, vpc_id.
- Default
Value string - Default value for the variable only if the override value is not specified.
- Description string
- Agent description.
- Group
By string - The display name of the group this variable belongs to.
- bool
- If true, the variable is not displayed on UI or Command line.
- Immutable bool
- Is the variable readonly ?.
- Link
Status string - The status of the link.
- Matches string
- The regex for the variable value.
- Max
Length float64 - The maximum length of the variable value. Applicable for the string type.
- Max
Value float64 - The maximum value of the variable. Applicable for the integer type.
- Min
Length float64 - The minimum length of the variable value. Applicable for the string type.
- Min
Value float64 - The minimum value of the variable. Applicable for the integer type.
- Options []string
- The list of possible values for this variable. If type is integer or date, then the array of string is converted to array of integers or date during the runtime.
- Position float64
- The relative position of this variable in a list.
- Required bool
- If the variable required?.
- Secure bool
- Is the variable secure or sensitive ?.
- Source string
- The source of this meta-data.
- Type string
- Type of the variable.
- aliases List<String>
- The list of aliases for the variable name.
- cloud
Data StringType - Cloud data type of the variable. eg. resource_group_id, region, vpc_id.
- default
Value String - Default value for the variable only if the override value is not specified.
- description String
- Agent description.
- group
By String - The display name of the group this variable belongs to.
- Boolean
- If true, the variable is not displayed on UI or Command line.
- immutable Boolean
- Is the variable readonly ?.
- link
Status String - The status of the link.
- matches String
- The regex for the variable value.
- max
Length Double - The maximum length of the variable value. Applicable for the string type.
- max
Value Double - The maximum value of the variable. Applicable for the integer type.
- min
Length Double - The minimum length of the variable value. Applicable for the string type.
- min
Value Double - The minimum value of the variable. Applicable for the integer type.
- options List<String>
- The list of possible values for this variable. If type is integer or date, then the array of string is converted to array of integers or date during the runtime.
- position Double
- The relative position of this variable in a list.
- required Boolean
- If the variable required?.
- secure Boolean
- Is the variable secure or sensitive ?.
- source String
- The source of this meta-data.
- type String
- Type of the variable.
- aliases string[]
- The list of aliases for the variable name.
- cloud
Data stringType - Cloud data type of the variable. eg. resource_group_id, region, vpc_id.
- default
Value string - Default value for the variable only if the override value is not specified.
- description string
- Agent description.
- group
By string - The display name of the group this variable belongs to.
- boolean
- If true, the variable is not displayed on UI or Command line.
- immutable boolean
- Is the variable readonly ?.
- link
Status string - The status of the link.
- matches string
- The regex for the variable value.
- max
Length number - The maximum length of the variable value. Applicable for the string type.
- max
Value number - The maximum value of the variable. Applicable for the integer type.
- min
Length number - The minimum length of the variable value. Applicable for the string type.
- min
Value number - The minimum value of the variable. Applicable for the integer type.
- options string[]
- The list of possible values for this variable. If type is integer or date, then the array of string is converted to array of integers or date during the runtime.
- position number
- The relative position of this variable in a list.
- required boolean
- If the variable required?.
- secure boolean
- Is the variable secure or sensitive ?.
- source string
- The source of this meta-data.
- type string
- Type of the variable.
- aliases Sequence[str]
- The list of aliases for the variable name.
- cloud_
data_ strtype - Cloud data type of the variable. eg. resource_group_id, region, vpc_id.
- default_
value str - Default value for the variable only if the override value is not specified.
- description str
- Agent description.
- group_
by str - The display name of the group this variable belongs to.
- bool
- If true, the variable is not displayed on UI or Command line.
- immutable bool
- Is the variable readonly ?.
- link_
status str - The status of the link.
- matches str
- The regex for the variable value.
- max_
length float - The maximum length of the variable value. Applicable for the string type.
- max_
value float - The maximum value of the variable. Applicable for the integer type.
- min_
length float - The minimum length of the variable value. Applicable for the string type.
- min_
value float - The minimum value of the variable. Applicable for the integer type.
- options Sequence[str]
- The list of possible values for this variable. If type is integer or date, then the array of string is converted to array of integers or date during the runtime.
- position float
- The relative position of this variable in a list.
- required bool
- If the variable required?.
- secure bool
- Is the variable secure or sensitive ?.
- source str
- The source of this meta-data.
- type str
- Type of the variable.
- aliases List<String>
- The list of aliases for the variable name.
- cloud
Data StringType - Cloud data type of the variable. eg. resource_group_id, region, vpc_id.
- default
Value String - Default value for the variable only if the override value is not specified.
- description String
- Agent description.
- group
By String - The display name of the group this variable belongs to.
- Boolean
- If true, the variable is not displayed on UI or Command line.
- immutable Boolean
- Is the variable readonly ?.
- link
Status String - The status of the link.
- matches String
- The regex for the variable value.
- max
Length Number - The maximum length of the variable value. Applicable for the string type.
- max
Value Number - The maximum value of the variable. Applicable for the integer type.
- min
Length Number - The minimum length of the variable value. Applicable for the string type.
- min
Value Number - The minimum value of the variable. Applicable for the integer type.
- options List<String>
- The list of possible values for this variable. If type is integer or date, then the array of string is converted to array of integers or date during the runtime.
- position Number
- The relative position of this variable in a list.
- required Boolean
- If the variable required?.
- secure Boolean
- Is the variable secure or sensitive ?.
- source String
- The source of this meta-data.
- type String
- Type of the variable.
SchematicsAgentAgentKpi, SchematicsAgentAgentKpiArgs
- Application
Indicators List<ImmutableDictionary<string, string>> - (List) Agent application key performance indicators.
- Availability
Indicator string - (String) Overall availability indicator reported by the agent.
- Constraints: Allowable values are:
available
,unavailable
,error
.
- Constraints: Allowable values are:
- Infra
Indicators List<ImmutableDictionary<string, string>> - (List) Agent infrastructure key performance indicators.
- Lifecycle
Indicator string - (String) Overall lifecycle indicator reported by the agents.
- Constraints: Allowable values are:
consistent
,inconsistent
,obselete
.
- Constraints: Allowable values are:
- Percent
Usage stringIndicator - (String) Percentage usage of the agent resources.
- Application
Indicators []map[string]string - (List) Agent application key performance indicators.
- Availability
Indicator string - (String) Overall availability indicator reported by the agent.
- Constraints: Allowable values are:
available
,unavailable
,error
.
- Constraints: Allowable values are:
- Infra
Indicators []map[string]string - (List) Agent infrastructure key performance indicators.
- Lifecycle
Indicator string - (String) Overall lifecycle indicator reported by the agents.
- Constraints: Allowable values are:
consistent
,inconsistent
,obselete
.
- Constraints: Allowable values are:
- Percent
Usage stringIndicator - (String) Percentage usage of the agent resources.
- application
Indicators List<Map<String,String>> - (List) Agent application key performance indicators.
- availability
Indicator String - (String) Overall availability indicator reported by the agent.
- Constraints: Allowable values are:
available
,unavailable
,error
.
- Constraints: Allowable values are:
- infra
Indicators List<Map<String,String>> - (List) Agent infrastructure key performance indicators.
- lifecycle
Indicator String - (String) Overall lifecycle indicator reported by the agents.
- Constraints: Allowable values are:
consistent
,inconsistent
,obselete
.
- Constraints: Allowable values are:
- percent
Usage StringIndicator - (String) Percentage usage of the agent resources.
- application
Indicators {[key: string]: string}[] - (List) Agent application key performance indicators.
- availability
Indicator string - (String) Overall availability indicator reported by the agent.
- Constraints: Allowable values are:
available
,unavailable
,error
.
- Constraints: Allowable values are:
- infra
Indicators {[key: string]: string}[] - (List) Agent infrastructure key performance indicators.
- lifecycle
Indicator string - (String) Overall lifecycle indicator reported by the agents.
- Constraints: Allowable values are:
consistent
,inconsistent
,obselete
.
- Constraints: Allowable values are:
- percent
Usage stringIndicator - (String) Percentage usage of the agent resources.
- application_
indicators Sequence[Mapping[str, str]] - (List) Agent application key performance indicators.
- availability_
indicator str - (String) Overall availability indicator reported by the agent.
- Constraints: Allowable values are:
available
,unavailable
,error
.
- Constraints: Allowable values are:
- infra_
indicators Sequence[Mapping[str, str]] - (List) Agent infrastructure key performance indicators.
- lifecycle_
indicator str - (String) Overall lifecycle indicator reported by the agents.
- Constraints: Allowable values are:
consistent
,inconsistent
,obselete
.
- Constraints: Allowable values are:
- percent_
usage_ strindicator - (String) Percentage usage of the agent resources.
- application
Indicators List<Map<String>> - (List) Agent application key performance indicators.
- availability
Indicator String - (String) Overall availability indicator reported by the agent.
- Constraints: Allowable values are:
available
,unavailable
,error
.
- Constraints: Allowable values are:
- infra
Indicators List<Map<String>> - (List) Agent infrastructure key performance indicators.
- lifecycle
Indicator String - (String) Overall lifecycle indicator reported by the agents.
- Constraints: Allowable values are:
consistent
,inconsistent
,obselete
.
- Constraints: Allowable values are:
- percent
Usage StringIndicator - (String) Percentage usage of the agent resources.
SchematicsAgentAgentMetadata, SchematicsAgentAgentMetadataArgs
SchematicsAgentRecentDeployJob, SchematicsAgentRecentDeployJobArgs
- Agent
Id string - (String) Id of the agent.
- Agent
Version string - (String) Agent version.
- Is
Redeployed bool - (Boolean) True, when the same version of the agent was redeployed.
- Job
Id string - (String) Job Id.
- Log
Url string - (String) URL to the full pre-requisite scanner job logs.
- Status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- Status
Message string - (String) The agent status message.
- Updated
At string - (String) The agent registration updation time.
- Updated
By string - (String) Email address of user who updated the agent registration.
- Agent
Id string - (String) Id of the agent.
- Agent
Version string - (String) Agent version.
- Is
Redeployed bool - (Boolean) True, when the same version of the agent was redeployed.
- Job
Id string - (String) Job Id.
- Log
Url string - (String) URL to the full pre-requisite scanner job logs.
- Status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- Status
Message string - (String) The agent status message.
- Updated
At string - (String) The agent registration updation time.
- Updated
By string - (String) Email address of user who updated the agent registration.
- agent
Id String - (String) Id of the agent.
- agent
Version String - (String) Agent version.
- is
Redeployed Boolean - (Boolean) True, when the same version of the agent was redeployed.
- job
Id String - (String) Job Id.
- log
Url String - (String) URL to the full pre-requisite scanner job logs.
- status
Code String - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message String - (String) The agent status message.
- updated
At String - (String) The agent registration updation time.
- updated
By String - (String) Email address of user who updated the agent registration.
- agent
Id string - (String) Id of the agent.
- agent
Version string - (String) Agent version.
- is
Redeployed boolean - (Boolean) True, when the same version of the agent was redeployed.
- job
Id string - (String) Job Id.
- log
Url string - (String) URL to the full pre-requisite scanner job logs.
- status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message string - (String) The agent status message.
- updated
At string - (String) The agent registration updation time.
- updated
By string - (String) Email address of user who updated the agent registration.
- agent_
id str - (String) Id of the agent.
- agent_
version str - (String) Agent version.
- is_
redeployed bool - (Boolean) True, when the same version of the agent was redeployed.
- job_
id str - (String) Job Id.
- log_
url str - (String) URL to the full pre-requisite scanner job logs.
- status_
code str - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status_
message str - (String) The agent status message.
- updated_
at str - (String) The agent registration updation time.
- updated_
by str - (String) Email address of user who updated the agent registration.
- agent
Id String - (String) Id of the agent.
- agent
Version String - (String) Agent version.
- is
Redeployed Boolean - (Boolean) True, when the same version of the agent was redeployed.
- job
Id String - (String) Job Id.
- log
Url String - (String) URL to the full pre-requisite scanner job logs.
- status
Code String - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message String - (String) The agent status message.
- updated
At String - (String) The agent registration updation time.
- updated
By String - (String) Email address of user who updated the agent registration.
SchematicsAgentRecentHealthJob, SchematicsAgentRecentHealthJobArgs
- Agent
Id string - (String) Id of the agent.
- Agent
Version string - (String) Agent version.
- Job
Id string - (String) Job Id.
- Log
Url string - (String) URL to the full pre-requisite scanner job logs.
- Status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- Status
Message string - (String) The agent status message.
- Updated
At string - (String) The agent registration updation time.
- Updated
By string - (String) Email address of user who updated the agent registration.
- Agent
Id string - (String) Id of the agent.
- Agent
Version string - (String) Agent version.
- Job
Id string - (String) Job Id.
- Log
Url string - (String) URL to the full pre-requisite scanner job logs.
- Status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- Status
Message string - (String) The agent status message.
- Updated
At string - (String) The agent registration updation time.
- Updated
By string - (String) Email address of user who updated the agent registration.
- agent
Id String - (String) Id of the agent.
- agent
Version String - (String) Agent version.
- job
Id String - (String) Job Id.
- log
Url String - (String) URL to the full pre-requisite scanner job logs.
- status
Code String - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message String - (String) The agent status message.
- updated
At String - (String) The agent registration updation time.
- updated
By String - (String) Email address of user who updated the agent registration.
- agent
Id string - (String) Id of the agent.
- agent
Version string - (String) Agent version.
- job
Id string - (String) Job Id.
- log
Url string - (String) URL to the full pre-requisite scanner job logs.
- status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message string - (String) The agent status message.
- updated
At string - (String) The agent registration updation time.
- updated
By string - (String) Email address of user who updated the agent registration.
- agent_
id str - (String) Id of the agent.
- agent_
version str - (String) Agent version.
- job_
id str - (String) Job Id.
- log_
url str - (String) URL to the full pre-requisite scanner job logs.
- status_
code str - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status_
message str - (String) The agent status message.
- updated_
at str - (String) The agent registration updation time.
- updated_
by str - (String) Email address of user who updated the agent registration.
- agent
Id String - (String) Id of the agent.
- agent
Version String - (String) Agent version.
- job
Id String - (String) Job Id.
- log
Url String - (String) URL to the full pre-requisite scanner job logs.
- status
Code String - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message String - (String) The agent status message.
- updated
At String - (String) The agent registration updation time.
- updated
By String - (String) Email address of user who updated the agent registration.
SchematicsAgentRecentPrsJob, SchematicsAgentRecentPrsJobArgs
- Agent
Id string - (String) Id of the agent.
- Agent
Version string - (String) Agent version.
- Job
Id string - (String) Job Id.
- Log
Url string - (String) URL to the full pre-requisite scanner job logs.
- Status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- Status
Message string - (String) The agent status message.
- Updated
At string - (String) The agent registration updation time.
- Updated
By string - (String) Email address of user who updated the agent registration.
- Agent
Id string - (String) Id of the agent.
- Agent
Version string - (String) Agent version.
- Job
Id string - (String) Job Id.
- Log
Url string - (String) URL to the full pre-requisite scanner job logs.
- Status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- Status
Message string - (String) The agent status message.
- Updated
At string - (String) The agent registration updation time.
- Updated
By string - (String) Email address of user who updated the agent registration.
- agent
Id String - (String) Id of the agent.
- agent
Version String - (String) Agent version.
- job
Id String - (String) Job Id.
- log
Url String - (String) URL to the full pre-requisite scanner job logs.
- status
Code String - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message String - (String) The agent status message.
- updated
At String - (String) The agent registration updation time.
- updated
By String - (String) Email address of user who updated the agent registration.
- agent
Id string - (String) Id of the agent.
- agent
Version string - (String) Agent version.
- job
Id string - (String) Job Id.
- log
Url string - (String) URL to the full pre-requisite scanner job logs.
- status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message string - (String) The agent status message.
- updated
At string - (String) The agent registration updation time.
- updated
By string - (String) Email address of user who updated the agent registration.
- agent_
id str - (String) Id of the agent.
- agent_
version str - (String) Agent version.
- job_
id str - (String) Job Id.
- log_
url str - (String) URL to the full pre-requisite scanner job logs.
- status_
code str - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status_
message str - (String) The agent status message.
- updated_
at str - (String) The agent registration updation time.
- updated_
by str - (String) Email address of user who updated the agent registration.
- agent
Id String - (String) Id of the agent.
- agent
Version String - (String) Agent version.
- job
Id String - (String) Job Id.
- log
Url String - (String) URL to the full pre-requisite scanner job logs.
- status
Code String - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message String - (String) The agent status message.
- updated
At String - (String) The agent registration updation time.
- updated
By String - (String) Email address of user who updated the agent registration.
SchematicsAgentSystemState, SchematicsAgentSystemStateArgs
- Status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- Status
Message string - (String) The agent status message.
- Status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- Status
Message string - (String) The agent status message.
- status
Code String - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message String - (String) The agent status message.
- status
Code string - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message string - (String) The agent status message.
- status_
code str - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status_
message str - (String) The agent status message.
- status
Code String - (String) Agent Status.
- Constraints: Allowable values are:
error
,normal
,in_progress
,pending
,draft
.
- Constraints: Allowable values are:
- status
Message String - (String) The agent status message.
SchematicsAgentTimeouts, SchematicsAgentTimeoutsArgs
SchematicsAgentUserState, SchematicsAgentUserStateArgs
Import
You can import the ibm_schematics_agent
resource by using id
. The agent resource id.
Syntax
$ pulumi import ibm:index/schematicsAgent:SchematicsAgent schematics_agent <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.