intersight.TamSecurityAdvisory
Explore with Pulumi AI
Intersight representation of a Cisco PSIRT (https://tools.cisco.com/security/center/publicationListing.x) advisory definition. It includes the description of the security advisory and a corresponding reference to the published advisory. It also includes the Intersight data sources needed to evaluate the applicability of this advisory for relevant Intersight managed objects. A PSIRT definition is evaluated against all managed object referenced using the included data sources. Only Cisco TAC and Intersight devops engineers have the ability to create PSIRT definitions in Intersight.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const organization = config.require("organization");
const tamSecurityAdvisory1 = new intersight.TamSecurityAdvisory("tamSecurityAdvisory1", {
state: "ready",
severities: [{
objectType: "tam.SecurityAdvisoryDetails",
classId: "tam.SecurityAdvisoryDetails",
}],
actions: [{
classId: "tam.SecurityAdvisoryDetails",
operationType: "create",
name: "tam_security_advisories1",
objectType: "tam.SecurityAdvisoryDetails",
alertType: "psirt",
type: "restApi",
}],
status: "final",
organizations: [{
objectType: "organization.Organization",
moid: organization,
}],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
organization = config.require("organization")
tam_security_advisory1 = intersight.TamSecurityAdvisory("tamSecurityAdvisory1",
state="ready",
severities=[{
"object_type": "tam.SecurityAdvisoryDetails",
"class_id": "tam.SecurityAdvisoryDetails",
}],
actions=[{
"class_id": "tam.SecurityAdvisoryDetails",
"operation_type": "create",
"name": "tam_security_advisories1",
"object_type": "tam.SecurityAdvisoryDetails",
"alert_type": "psirt",
"type": "restApi",
}],
status="final",
organizations=[{
"object_type": "organization.Organization",
"moid": organization,
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
organization := cfg.Require("organization")
_, err := intersight.NewTamSecurityAdvisory(ctx, "tamSecurityAdvisory1", &intersight.TamSecurityAdvisoryArgs{
State: pulumi.String("ready"),
Severities: intersight.TamSecurityAdvisorySeverityArray{
&intersight.TamSecurityAdvisorySeverityArgs{
ObjectType: pulumi.String("tam.SecurityAdvisoryDetails"),
ClassId: pulumi.String("tam.SecurityAdvisoryDetails"),
},
},
Actions: intersight.TamSecurityAdvisoryActionArray{
&intersight.TamSecurityAdvisoryActionArgs{
ClassId: pulumi.String("tam.SecurityAdvisoryDetails"),
OperationType: pulumi.String("create"),
Name: pulumi.String("tam_security_advisories1"),
ObjectType: pulumi.String("tam.SecurityAdvisoryDetails"),
AlertType: pulumi.String("psirt"),
Type: pulumi.String("restApi"),
},
},
Status: pulumi.String("final"),
Organizations: intersight.TamSecurityAdvisoryOrganizationArray{
&intersight.TamSecurityAdvisoryOrganizationArgs{
ObjectType: pulumi.String("organization.Organization"),
Moid: pulumi.String(organization),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var organization = config.Require("organization");
var tamSecurityAdvisory1 = new Intersight.TamSecurityAdvisory("tamSecurityAdvisory1", new()
{
State = "ready",
Severities = new[]
{
new Intersight.Inputs.TamSecurityAdvisorySeverityArgs
{
ObjectType = "tam.SecurityAdvisoryDetails",
ClassId = "tam.SecurityAdvisoryDetails",
},
},
Actions = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryActionArgs
{
ClassId = "tam.SecurityAdvisoryDetails",
OperationType = "create",
Name = "tam_security_advisories1",
ObjectType = "tam.SecurityAdvisoryDetails",
AlertType = "psirt",
Type = "restApi",
},
},
Status = "final",
Organizations = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryOrganizationArgs
{
ObjectType = "organization.Organization",
Moid = organization,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.TamSecurityAdvisory;
import com.pulumi.intersight.TamSecurityAdvisoryArgs;
import com.pulumi.intersight.inputs.TamSecurityAdvisorySeverityArgs;
import com.pulumi.intersight.inputs.TamSecurityAdvisoryActionArgs;
import com.pulumi.intersight.inputs.TamSecurityAdvisoryOrganizationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var config = ctx.config();
final var organization = config.get("organization");
var tamSecurityAdvisory1 = new TamSecurityAdvisory("tamSecurityAdvisory1", TamSecurityAdvisoryArgs.builder()
.state("ready")
.severities(TamSecurityAdvisorySeverityArgs.builder()
.objectType("tam.SecurityAdvisoryDetails")
.classId("tam.SecurityAdvisoryDetails")
.build())
.actions(TamSecurityAdvisoryActionArgs.builder()
.classId("tam.SecurityAdvisoryDetails")
.operationType("create")
.name("tam_security_advisories1")
.objectType("tam.SecurityAdvisoryDetails")
.alertType("psirt")
.type("restApi")
.build())
.status("final")
.organizations(TamSecurityAdvisoryOrganizationArgs.builder()
.objectType("organization.Organization")
.moid(organization)
.build())
.build());
}
}
configuration:
organization:
type: string
resources:
tamSecurityAdvisory1:
type: intersight:TamSecurityAdvisory
properties:
state: ready
severities:
- objectType: tam.SecurityAdvisoryDetails
classId: tam.SecurityAdvisoryDetails
actions:
- classId: tam.SecurityAdvisoryDetails
operationType: create
name: tam_security_advisories1
objectType: tam.SecurityAdvisoryDetails
alertType: psirt
type: restApi
status: final
organizations:
- objectType: organization.Organization
moid: ${organization}
Create TamSecurityAdvisory Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TamSecurityAdvisory(name: string, args?: TamSecurityAdvisoryArgs, opts?: CustomResourceOptions);
@overload
def TamSecurityAdvisory(resource_name: str,
args: Optional[TamSecurityAdvisoryArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def TamSecurityAdvisory(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
actions: Optional[Sequence[TamSecurityAdvisoryActionArgs]] = None,
additional_properties: Optional[str] = None,
advisory_id: Optional[str] = None,
ancestors: Optional[Sequence[TamSecurityAdvisoryAncestorArgs]] = None,
api_data_sources: Optional[Sequence[TamSecurityAdvisoryApiDataSourceArgs]] = None,
base_score: Optional[float] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
cve_ids: Optional[Sequence[str]] = None,
date_published: Optional[str] = None,
date_updated: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
environmental_score: Optional[float] = None,
execute_on_pod: Optional[str] = None,
external_url: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
nr_version: Optional[str] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[TamSecurityAdvisoryOrganizationArgs]] = None,
other_ref_urls: Optional[Sequence[str]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[TamSecurityAdvisoryParentArgs]] = None,
permission_resources: Optional[Sequence[TamSecurityAdvisoryPermissionResourceArgs]] = None,
recommendation: Optional[str] = None,
severities: Optional[Sequence[TamSecurityAdvisorySeverityArgs]] = None,
shared_scope: Optional[str] = None,
state: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[TamSecurityAdvisoryTagArgs]] = None,
tam_security_advisory_id: Optional[str] = None,
temporal_score: Optional[float] = None,
version_contexts: Optional[Sequence[TamSecurityAdvisoryVersionContextArgs]] = None,
workaround: Optional[str] = None)
func NewTamSecurityAdvisory(ctx *Context, name string, args *TamSecurityAdvisoryArgs, opts ...ResourceOption) (*TamSecurityAdvisory, error)
public TamSecurityAdvisory(string name, TamSecurityAdvisoryArgs? args = null, CustomResourceOptions? opts = null)
public TamSecurityAdvisory(String name, TamSecurityAdvisoryArgs args)
public TamSecurityAdvisory(String name, TamSecurityAdvisoryArgs args, CustomResourceOptions options)
type: intersight:TamSecurityAdvisory
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 TamSecurityAdvisoryArgs
- 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 TamSecurityAdvisoryArgs
- 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 TamSecurityAdvisoryArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TamSecurityAdvisoryArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TamSecurityAdvisoryArgs
- 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 tamSecurityAdvisoryResource = new Intersight.TamSecurityAdvisory("tamSecurityAdvisoryResource", new()
{
AccountMoid = "string",
Actions = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryActionArgs
{
AdditionalProperties = "string",
AffectedObjectType = "string",
AlertType = "string",
ClassId = "string",
Identifiers = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryActionIdentifierArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Value = "string",
},
},
Name = "string",
ObjectType = "string",
OperationType = "string",
Queries = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryActionQueryArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Priority = 0,
Query = "string",
},
},
Type = "string",
},
},
AdditionalProperties = "string",
AdvisoryId = "string",
Ancestors = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ApiDataSources = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryApiDataSourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
MoType = "string",
Name = "string",
ObjectType = "string",
Queries = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryApiDataSourceQueryArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Priority = 0,
Query = "string",
},
},
Type = "string",
},
},
BaseScore = 0,
ClassId = "string",
CreateTime = "string",
CveIds = new[]
{
"string",
},
DatePublished = "string",
DateUpdated = "string",
Description = "string",
DomainGroupMoid = "string",
EnvironmentalScore = 0,
ExecuteOnPod = "string",
ExternalUrl = "string",
ModTime = "string",
Moid = "string",
Name = "string",
NrVersion = "string",
ObjectType = "string",
Organizations = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryOrganizationArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
OtherRefUrls = new[]
{
"string",
},
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryPermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Recommendation = "string",
Severities = new[]
{
new Intersight.Inputs.TamSecurityAdvisorySeverityArgs
{
AdditionalProperties = "string",
ClassId = "string",
ObjectType = "string",
},
},
SharedScope = "string",
State = "string",
Status = "string",
Tags = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
TamSecurityAdvisoryId = "string",
TemporalScore = 0,
VersionContexts = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.TamSecurityAdvisoryVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
Workaround = "string",
});
example, err := intersight.NewTamSecurityAdvisory(ctx, "tamSecurityAdvisoryResource", &intersight.TamSecurityAdvisoryArgs{
AccountMoid: pulumi.String("string"),
Actions: intersight.TamSecurityAdvisoryActionArray{
&intersight.TamSecurityAdvisoryActionArgs{
AdditionalProperties: pulumi.String("string"),
AffectedObjectType: pulumi.String("string"),
AlertType: pulumi.String("string"),
ClassId: pulumi.String("string"),
Identifiers: intersight.TamSecurityAdvisoryActionIdentifierArray{
&intersight.TamSecurityAdvisoryActionIdentifierArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
OperationType: pulumi.String("string"),
Queries: intersight.TamSecurityAdvisoryActionQueryArray{
&intersight.TamSecurityAdvisoryActionQueryArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Priority: pulumi.Float64(0),
Query: pulumi.String("string"),
},
},
Type: pulumi.String("string"),
},
},
AdditionalProperties: pulumi.String("string"),
AdvisoryId: pulumi.String("string"),
Ancestors: intersight.TamSecurityAdvisoryAncestorArray{
&intersight.TamSecurityAdvisoryAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ApiDataSources: intersight.TamSecurityAdvisoryApiDataSourceArray{
&intersight.TamSecurityAdvisoryApiDataSourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
MoType: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Queries: intersight.TamSecurityAdvisoryApiDataSourceQueryArray{
&intersight.TamSecurityAdvisoryApiDataSourceQueryArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Priority: pulumi.Float64(0),
Query: pulumi.String("string"),
},
},
Type: pulumi.String("string"),
},
},
BaseScore: pulumi.Float64(0),
ClassId: pulumi.String("string"),
CreateTime: pulumi.String("string"),
CveIds: pulumi.StringArray{
pulumi.String("string"),
},
DatePublished: pulumi.String("string"),
DateUpdated: pulumi.String("string"),
Description: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
EnvironmentalScore: pulumi.Float64(0),
ExecuteOnPod: pulumi.String("string"),
ExternalUrl: pulumi.String("string"),
ModTime: pulumi.String("string"),
Moid: pulumi.String("string"),
Name: pulumi.String("string"),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Organizations: intersight.TamSecurityAdvisoryOrganizationArray{
&intersight.TamSecurityAdvisoryOrganizationArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
OtherRefUrls: pulumi.StringArray{
pulumi.String("string"),
},
Owners: pulumi.StringArray{
pulumi.String("string"),
},
Parents: intersight.TamSecurityAdvisoryParentArray{
&intersight.TamSecurityAdvisoryParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.TamSecurityAdvisoryPermissionResourceArray{
&intersight.TamSecurityAdvisoryPermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Recommendation: pulumi.String("string"),
Severities: intersight.TamSecurityAdvisorySeverityArray{
&intersight.TamSecurityAdvisorySeverityArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
},
},
SharedScope: pulumi.String("string"),
State: pulumi.String("string"),
Status: pulumi.String("string"),
Tags: intersight.TamSecurityAdvisoryTagArray{
&intersight.TamSecurityAdvisoryTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TamSecurityAdvisoryId: pulumi.String("string"),
TemporalScore: pulumi.Float64(0),
VersionContexts: intersight.TamSecurityAdvisoryVersionContextArray{
&intersight.TamSecurityAdvisoryVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.TamSecurityAdvisoryVersionContextInterestedMoArray{
&intersight.TamSecurityAdvisoryVersionContextInterestedMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
MarkedForDeletion: pulumi.Bool(false),
NrVersion: pulumi.String("string"),
ObjectType: pulumi.String("string"),
RefMos: intersight.TamSecurityAdvisoryVersionContextRefMoArray{
&intersight.TamSecurityAdvisoryVersionContextRefMoArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Timestamp: pulumi.String("string"),
VersionType: pulumi.String("string"),
},
},
Workaround: pulumi.String("string"),
})
var tamSecurityAdvisoryResource = new TamSecurityAdvisory("tamSecurityAdvisoryResource", TamSecurityAdvisoryArgs.builder()
.accountMoid("string")
.actions(TamSecurityAdvisoryActionArgs.builder()
.additionalProperties("string")
.affectedObjectType("string")
.alertType("string")
.classId("string")
.identifiers(TamSecurityAdvisoryActionIdentifierArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.value("string")
.build())
.name("string")
.objectType("string")
.operationType("string")
.queries(TamSecurityAdvisoryActionQueryArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.priority(0)
.query("string")
.build())
.type("string")
.build())
.additionalProperties("string")
.advisoryId("string")
.ancestors(TamSecurityAdvisoryAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.apiDataSources(TamSecurityAdvisoryApiDataSourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moType("string")
.name("string")
.objectType("string")
.queries(TamSecurityAdvisoryApiDataSourceQueryArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.priority(0)
.query("string")
.build())
.type("string")
.build())
.baseScore(0)
.classId("string")
.createTime("string")
.cveIds("string")
.datePublished("string")
.dateUpdated("string")
.description("string")
.domainGroupMoid("string")
.environmentalScore(0)
.executeOnPod("string")
.externalUrl("string")
.modTime("string")
.moid("string")
.name("string")
.nrVersion("string")
.objectType("string")
.organizations(TamSecurityAdvisoryOrganizationArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.otherRefUrls("string")
.owners("string")
.parents(TamSecurityAdvisoryParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(TamSecurityAdvisoryPermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.recommendation("string")
.severities(TamSecurityAdvisorySeverityArgs.builder()
.additionalProperties("string")
.classId("string")
.objectType("string")
.build())
.sharedScope("string")
.state("string")
.status("string")
.tags(TamSecurityAdvisoryTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.tamSecurityAdvisoryId("string")
.temporalScore(0)
.versionContexts(TamSecurityAdvisoryVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(TamSecurityAdvisoryVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(TamSecurityAdvisoryVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.workaround("string")
.build());
tam_security_advisory_resource = intersight.TamSecurityAdvisory("tamSecurityAdvisoryResource",
account_moid="string",
actions=[{
"additional_properties": "string",
"affected_object_type": "string",
"alert_type": "string",
"class_id": "string",
"identifiers": [{
"additional_properties": "string",
"class_id": "string",
"name": "string",
"object_type": "string",
"value": "string",
}],
"name": "string",
"object_type": "string",
"operation_type": "string",
"queries": [{
"additional_properties": "string",
"class_id": "string",
"name": "string",
"object_type": "string",
"priority": 0,
"query": "string",
}],
"type": "string",
}],
additional_properties="string",
advisory_id="string",
ancestors=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
api_data_sources=[{
"additional_properties": "string",
"class_id": "string",
"mo_type": "string",
"name": "string",
"object_type": "string",
"queries": [{
"additional_properties": "string",
"class_id": "string",
"name": "string",
"object_type": "string",
"priority": 0,
"query": "string",
}],
"type": "string",
}],
base_score=0,
class_id="string",
create_time="string",
cve_ids=["string"],
date_published="string",
date_updated="string",
description="string",
domain_group_moid="string",
environmental_score=0,
execute_on_pod="string",
external_url="string",
mod_time="string",
moid="string",
name="string",
nr_version="string",
object_type="string",
organizations=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
other_ref_urls=["string"],
owners=["string"],
parents=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
permission_resources=[{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
recommendation="string",
severities=[{
"additional_properties": "string",
"class_id": "string",
"object_type": "string",
}],
shared_scope="string",
state="string",
status="string",
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
tam_security_advisory_id="string",
temporal_score=0,
version_contexts=[{
"additional_properties": "string",
"class_id": "string",
"interested_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"marked_for_deletion": False,
"nr_version": "string",
"object_type": "string",
"ref_mos": [{
"additional_properties": "string",
"class_id": "string",
"moid": "string",
"object_type": "string",
"selector": "string",
}],
"timestamp": "string",
"version_type": "string",
}],
workaround="string")
const tamSecurityAdvisoryResource = new intersight.TamSecurityAdvisory("tamSecurityAdvisoryResource", {
accountMoid: "string",
actions: [{
additionalProperties: "string",
affectedObjectType: "string",
alertType: "string",
classId: "string",
identifiers: [{
additionalProperties: "string",
classId: "string",
name: "string",
objectType: "string",
value: "string",
}],
name: "string",
objectType: "string",
operationType: "string",
queries: [{
additionalProperties: "string",
classId: "string",
name: "string",
objectType: "string",
priority: 0,
query: "string",
}],
type: "string",
}],
additionalProperties: "string",
advisoryId: "string",
ancestors: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
apiDataSources: [{
additionalProperties: "string",
classId: "string",
moType: "string",
name: "string",
objectType: "string",
queries: [{
additionalProperties: "string",
classId: "string",
name: "string",
objectType: "string",
priority: 0,
query: "string",
}],
type: "string",
}],
baseScore: 0,
classId: "string",
createTime: "string",
cveIds: ["string"],
datePublished: "string",
dateUpdated: "string",
description: "string",
domainGroupMoid: "string",
environmentalScore: 0,
executeOnPod: "string",
externalUrl: "string",
modTime: "string",
moid: "string",
name: "string",
nrVersion: "string",
objectType: "string",
organizations: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
otherRefUrls: ["string"],
owners: ["string"],
parents: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
permissionResources: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
recommendation: "string",
severities: [{
additionalProperties: "string",
classId: "string",
objectType: "string",
}],
sharedScope: "string",
state: "string",
status: "string",
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
tamSecurityAdvisoryId: "string",
temporalScore: 0,
versionContexts: [{
additionalProperties: "string",
classId: "string",
interestedMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
markedForDeletion: false,
nrVersion: "string",
objectType: "string",
refMos: [{
additionalProperties: "string",
classId: "string",
moid: "string",
objectType: "string",
selector: "string",
}],
timestamp: "string",
versionType: "string",
}],
workaround: "string",
});
type: intersight:TamSecurityAdvisory
properties:
accountMoid: string
actions:
- additionalProperties: string
affectedObjectType: string
alertType: string
classId: string
identifiers:
- additionalProperties: string
classId: string
name: string
objectType: string
value: string
name: string
objectType: string
operationType: string
queries:
- additionalProperties: string
classId: string
name: string
objectType: string
priority: 0
query: string
type: string
additionalProperties: string
advisoryId: string
ancestors:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
apiDataSources:
- additionalProperties: string
classId: string
moType: string
name: string
objectType: string
queries:
- additionalProperties: string
classId: string
name: string
objectType: string
priority: 0
query: string
type: string
baseScore: 0
classId: string
createTime: string
cveIds:
- string
datePublished: string
dateUpdated: string
description: string
domainGroupMoid: string
environmentalScore: 0
executeOnPod: string
externalUrl: string
modTime: string
moid: string
name: string
nrVersion: string
objectType: string
organizations:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
otherRefUrls:
- string
owners:
- string
parents:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
permissionResources:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
recommendation: string
severities:
- additionalProperties: string
classId: string
objectType: string
sharedScope: string
state: string
status: string
tags:
- additionalProperties: string
key: string
value: string
tamSecurityAdvisoryId: string
temporalScore: 0
versionContexts:
- additionalProperties: string
classId: string
interestedMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
markedForDeletion: false
nrVersion: string
objectType: string
refMos:
- additionalProperties: string
classId: string
moid: string
objectType: string
selector: string
timestamp: string
versionType: string
workaround: string
TamSecurityAdvisory 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 TamSecurityAdvisory resource accepts the following input properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Actions
List<Tam
Security Advisory Action> - This complex property has following sub-properties:
- Additional
Properties string - Advisory
Id string - Cisco generated identifier for the published security advisory.
- Ancestors
List<Tam
Security Advisory Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Api
Data List<TamSources Security Advisory Api Data Source> - This complex property has following sub-properties:
- Base
Score double - CVSS version 3 base score for the security Advisory.
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Cve
Ids List<string> - (Array of schema.TypeString) -
- Date
Published string - Date when the security advisory was first published by Cisco.
- Date
Updated string - Date when the security advisory was last updated by Cisco.
- Description string
- Brief description of the advisory details.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Environmental
Score double - CVSS version 3 environmental score for the security Advisory.
- Execute
On stringPod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - External
Url string - A link to an external URL describing security Advisory in more details.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- A user defined name for the Intersight Advisory.
- Nr
Version string - Cisco assigned advisory version after latest revision.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Tam
Security Advisory Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Other
Ref List<string>Urls - (Array of schema.TypeString) -
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Tam
Security Advisory Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<TamSecurity Advisory Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Recommendation string
- Recommended action to resolve the security advisory.
- Severities
List<Tam
Security Advisory Severity> - Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- State string
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - Status string
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - List<Tam
Security Advisory Tag> - This complex property has following sub-properties:
- Tam
Security stringAdvisory Id - Temporal
Score double - CVSS version 3 temporal score for the security Advisory.
- Version
Contexts List<TamSecurity Advisory Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workaround string
- Workarounds available for the advisory.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Actions
[]Tam
Security Advisory Action Args - This complex property has following sub-properties:
- Additional
Properties string - Advisory
Id string - Cisco generated identifier for the published security advisory.
- Ancestors
[]Tam
Security Advisory Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Api
Data []TamSources Security Advisory Api Data Source Args - This complex property has following sub-properties:
- Base
Score float64 - CVSS version 3 base score for the security Advisory.
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Cve
Ids []string - (Array of schema.TypeString) -
- Date
Published string - Date when the security advisory was first published by Cisco.
- Date
Updated string - Date when the security advisory was last updated by Cisco.
- Description string
- Brief description of the advisory details.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Environmental
Score float64 - CVSS version 3 environmental score for the security Advisory.
- Execute
On stringPod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - External
Url string - A link to an external URL describing security Advisory in more details.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- A user defined name for the Intersight Advisory.
- Nr
Version string - Cisco assigned advisory version after latest revision.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Tam
Security Advisory Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Other
Ref []stringUrls - (Array of schema.TypeString) -
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Tam
Security Advisory Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []TamSecurity Advisory Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Recommendation string
- Recommended action to resolve the security advisory.
- Severities
[]Tam
Security Advisory Severity Args - Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- State string
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - Status string
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - []Tam
Security Advisory Tag Args - This complex property has following sub-properties:
- Tam
Security stringAdvisory Id - Temporal
Score float64 - CVSS version 3 temporal score for the security Advisory.
- Version
Contexts []TamSecurity Advisory Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workaround string
- Workarounds available for the advisory.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- actions
List<Tam
Security Advisory Action> - This complex property has following sub-properties:
- additional
Properties String - advisory
Id String - Cisco generated identifier for the published security advisory.
- ancestors
List<Tam
Security Advisory Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api
Data List<TamSources Security Advisory Api Data Source> - This complex property has following sub-properties:
- base
Score Double - CVSS version 3 base score for the security Advisory.
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- cve
Ids List<String> - (Array of schema.TypeString) -
- date
Published String - Date when the security advisory was first published by Cisco.
- date
Updated String - Date when the security advisory was last updated by Cisco.
- description String
- Brief description of the advisory details.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- environmental
Score Double - CVSS version 3 environmental score for the security Advisory.
- execute
On StringPod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - external
Url String - A link to an external URL describing security Advisory in more details.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- A user defined name for the Intersight Advisory.
- nr
Version String - Cisco assigned advisory version after latest revision.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Tam
Security Advisory Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- other
Ref List<String>Urls - (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Tam
Security Advisory Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<TamSecurity Advisory Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation String
- Recommended action to resolve the security advisory.
- severities
List<Tam
Security Advisory Severity> - Severity level of the Intersight Advisory. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state String
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - status String
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - List<Tam
Security Advisory Tag> - This complex property has following sub-properties:
- tam
Security StringAdvisory Id - temporal
Score Double - CVSS version 3 temporal score for the security Advisory.
- version
Contexts List<TamSecurity Advisory Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround String
- Workarounds available for the advisory.
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- actions
Tam
Security Advisory Action[] - This complex property has following sub-properties:
- additional
Properties string - advisory
Id string - Cisco generated identifier for the published security advisory.
- ancestors
Tam
Security Advisory Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api
Data TamSources Security Advisory Api Data Source[] - This complex property has following sub-properties:
- base
Score number - CVSS version 3 base score for the security Advisory.
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- cve
Ids string[] - (Array of schema.TypeString) -
- date
Published string - Date when the security advisory was first published by Cisco.
- date
Updated string - Date when the security advisory was last updated by Cisco.
- description string
- Brief description of the advisory details.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- environmental
Score number - CVSS version 3 environmental score for the security Advisory.
- execute
On stringPod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - external
Url string - A link to an external URL describing security Advisory in more details.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- A user defined name for the Intersight Advisory.
- nr
Version string - Cisco assigned advisory version after latest revision.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Tam
Security Advisory Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- other
Ref string[]Urls - (Array of schema.TypeString) -
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Tam
Security Advisory Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources TamSecurity Advisory Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation string
- Recommended action to resolve the security advisory.
- severities
Tam
Security Advisory Severity[] - Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state string
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - status string
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - Tam
Security Advisory Tag[] - This complex property has following sub-properties:
- tam
Security stringAdvisory Id - temporal
Score number - CVSS version 3 temporal score for the security Advisory.
- version
Contexts TamSecurity Advisory Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround string
- Workarounds available for the advisory.
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- actions
Sequence[Tam
Security Advisory Action Args] - This complex property has following sub-properties:
- additional_
properties str - advisory_
id str - Cisco generated identifier for the published security advisory.
- ancestors
Sequence[Tam
Security Advisory Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api_
data_ Sequence[Tamsources Security Advisory Api Data Source Args] - This complex property has following sub-properties:
- base_
score float - CVSS version 3 base score for the security Advisory.
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- cve_
ids Sequence[str] - (Array of schema.TypeString) -
- date_
published str - Date when the security advisory was first published by Cisco.
- date_
updated str - Date when the security advisory was last updated by Cisco.
- description str
- Brief description of the advisory details.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- environmental_
score float - CVSS version 3 environmental score for the security Advisory.
- execute_
on_ strpod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - external_
url str - A link to an external URL describing security Advisory in more details.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- A user defined name for the Intersight Advisory.
- nr_
version str - Cisco assigned advisory version after latest revision.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[Tam
Security Advisory Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- other_
ref_ Sequence[str]urls - (Array of schema.TypeString) -
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Tam
Security Advisory Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[TamSecurity Advisory Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation str
- Recommended action to resolve the security advisory.
- severities
Sequence[Tam
Security Advisory Severity Args] - Severity level of the Intersight Advisory. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state str
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - status str
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - Sequence[Tam
Security Advisory Tag Args] - This complex property has following sub-properties:
- tam_
security_ stradvisory_ id - temporal_
score float - CVSS version 3 temporal score for the security Advisory.
- version_
contexts Sequence[TamSecurity Advisory Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround str
- Workarounds available for the advisory.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- actions List<Property Map>
- This complex property has following sub-properties:
- additional
Properties String - advisory
Id String - Cisco generated identifier for the published security advisory.
- ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api
Data List<Property Map>Sources - This complex property has following sub-properties:
- base
Score Number - CVSS version 3 base score for the security Advisory.
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- cve
Ids List<String> - (Array of schema.TypeString) -
- date
Published String - Date when the security advisory was first published by Cisco.
- date
Updated String - Date when the security advisory was last updated by Cisco.
- description String
- Brief description of the advisory details.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- environmental
Score Number - CVSS version 3 environmental score for the security Advisory.
- execute
On StringPod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - external
Url String - A link to an external URL describing security Advisory in more details.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- A user defined name for the Intersight Advisory.
- nr
Version String - Cisco assigned advisory version after latest revision.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- other
Ref List<String>Urls - (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation String
- Recommended action to resolve the security advisory.
- severities List<Property Map>
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state String
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - status String
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - List<Property Map>
- This complex property has following sub-properties:
- tam
Security StringAdvisory Id - temporal
Score Number - CVSS version 3 temporal score for the security Advisory.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround String
- Workarounds available for the advisory.
Outputs
All input properties are implicitly available as output properties. Additionally, the TamSecurityAdvisory resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing TamSecurityAdvisory Resource
Get an existing TamSecurityAdvisory 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?: TamSecurityAdvisoryState, opts?: CustomResourceOptions): TamSecurityAdvisory
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
actions: Optional[Sequence[TamSecurityAdvisoryActionArgs]] = None,
additional_properties: Optional[str] = None,
advisory_id: Optional[str] = None,
ancestors: Optional[Sequence[TamSecurityAdvisoryAncestorArgs]] = None,
api_data_sources: Optional[Sequence[TamSecurityAdvisoryApiDataSourceArgs]] = None,
base_score: Optional[float] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
cve_ids: Optional[Sequence[str]] = None,
date_published: Optional[str] = None,
date_updated: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = None,
environmental_score: Optional[float] = None,
execute_on_pod: Optional[str] = None,
external_url: Optional[str] = None,
mod_time: Optional[str] = None,
moid: Optional[str] = None,
name: Optional[str] = None,
nr_version: Optional[str] = None,
object_type: Optional[str] = None,
organizations: Optional[Sequence[TamSecurityAdvisoryOrganizationArgs]] = None,
other_ref_urls: Optional[Sequence[str]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[TamSecurityAdvisoryParentArgs]] = None,
permission_resources: Optional[Sequence[TamSecurityAdvisoryPermissionResourceArgs]] = None,
recommendation: Optional[str] = None,
severities: Optional[Sequence[TamSecurityAdvisorySeverityArgs]] = None,
shared_scope: Optional[str] = None,
state: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[TamSecurityAdvisoryTagArgs]] = None,
tam_security_advisory_id: Optional[str] = None,
temporal_score: Optional[float] = None,
version_contexts: Optional[Sequence[TamSecurityAdvisoryVersionContextArgs]] = None,
workaround: Optional[str] = None) -> TamSecurityAdvisory
func GetTamSecurityAdvisory(ctx *Context, name string, id IDInput, state *TamSecurityAdvisoryState, opts ...ResourceOption) (*TamSecurityAdvisory, error)
public static TamSecurityAdvisory Get(string name, Input<string> id, TamSecurityAdvisoryState? state, CustomResourceOptions? opts = null)
public static TamSecurityAdvisory get(String name, Output<String> id, TamSecurityAdvisoryState state, CustomResourceOptions options)
resources: _: type: intersight:TamSecurityAdvisory get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Actions
List<Tam
Security Advisory Action> - This complex property has following sub-properties:
- Additional
Properties string - Advisory
Id string - Cisco generated identifier for the published security advisory.
- Ancestors
List<Tam
Security Advisory Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Api
Data List<TamSources Security Advisory Api Data Source> - This complex property has following sub-properties:
- Base
Score double - CVSS version 3 base score for the security Advisory.
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Cve
Ids List<string> - (Array of schema.TypeString) -
- Date
Published string - Date when the security advisory was first published by Cisco.
- Date
Updated string - Date when the security advisory was last updated by Cisco.
- Description string
- Brief description of the advisory details.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Environmental
Score double - CVSS version 3 environmental score for the security Advisory.
- Execute
On stringPod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - External
Url string - A link to an external URL describing security Advisory in more details.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- A user defined name for the Intersight Advisory.
- Nr
Version string - Cisco assigned advisory version after latest revision.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Tam
Security Advisory Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Other
Ref List<string>Urls - (Array of schema.TypeString) -
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Tam
Security Advisory Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<TamSecurity Advisory Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Recommendation string
- Recommended action to resolve the security advisory.
- Severities
List<Tam
Security Advisory Severity> - Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- State string
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - Status string
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - List<Tam
Security Advisory Tag> - This complex property has following sub-properties:
- Tam
Security stringAdvisory Id - Temporal
Score double - CVSS version 3 temporal score for the security Advisory.
- Version
Contexts List<TamSecurity Advisory Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workaround string
- Workarounds available for the advisory.
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Actions
[]Tam
Security Advisory Action Args - This complex property has following sub-properties:
- Additional
Properties string - Advisory
Id string - Cisco generated identifier for the published security advisory.
- Ancestors
[]Tam
Security Advisory Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Api
Data []TamSources Security Advisory Api Data Source Args - This complex property has following sub-properties:
- Base
Score float64 - CVSS version 3 base score for the security Advisory.
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Cve
Ids []string - (Array of schema.TypeString) -
- Date
Published string - Date when the security advisory was first published by Cisco.
- Date
Updated string - Date when the security advisory was last updated by Cisco.
- Description string
- Brief description of the advisory details.
- Domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- Environmental
Score float64 - CVSS version 3 environmental score for the security Advisory.
- Execute
On stringPod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - External
Url string - A link to an external URL describing security Advisory in more details.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- A user defined name for the Intersight Advisory.
- Nr
Version string - Cisco assigned advisory version after latest revision.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Tam
Security Advisory Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Other
Ref []stringUrls - (Array of schema.TypeString) -
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Tam
Security Advisory Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []TamSecurity Advisory Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Recommendation string
- Recommended action to resolve the security advisory.
- Severities
[]Tam
Security Advisory Severity Args - Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- State string
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - Status string
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - []Tam
Security Advisory Tag Args - This complex property has following sub-properties:
- Tam
Security stringAdvisory Id - Temporal
Score float64 - CVSS version 3 temporal score for the security Advisory.
- Version
Contexts []TamSecurity Advisory Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workaround string
- Workarounds available for the advisory.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- actions
List<Tam
Security Advisory Action> - This complex property has following sub-properties:
- additional
Properties String - advisory
Id String - Cisco generated identifier for the published security advisory.
- ancestors
List<Tam
Security Advisory Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api
Data List<TamSources Security Advisory Api Data Source> - This complex property has following sub-properties:
- base
Score Double - CVSS version 3 base score for the security Advisory.
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- cve
Ids List<String> - (Array of schema.TypeString) -
- date
Published String - Date when the security advisory was first published by Cisco.
- date
Updated String - Date when the security advisory was last updated by Cisco.
- description String
- Brief description of the advisory details.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- environmental
Score Double - CVSS version 3 environmental score for the security Advisory.
- execute
On StringPod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - external
Url String - A link to an external URL describing security Advisory in more details.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- A user defined name for the Intersight Advisory.
- nr
Version String - Cisco assigned advisory version after latest revision.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Tam
Security Advisory Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- other
Ref List<String>Urls - (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Tam
Security Advisory Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<TamSecurity Advisory Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation String
- Recommended action to resolve the security advisory.
- severities
List<Tam
Security Advisory Severity> - Severity level of the Intersight Advisory. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state String
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - status String
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - List<Tam
Security Advisory Tag> - This complex property has following sub-properties:
- tam
Security StringAdvisory Id - temporal
Score Double - CVSS version 3 temporal score for the security Advisory.
- version
Contexts List<TamSecurity Advisory Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround String
- Workarounds available for the advisory.
- account
Moid string - (ReadOnly) The Account ID for this managed object.
- actions
Tam
Security Advisory Action[] - This complex property has following sub-properties:
- additional
Properties string - advisory
Id string - Cisco generated identifier for the published security advisory.
- ancestors
Tam
Security Advisory Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api
Data TamSources Security Advisory Api Data Source[] - This complex property has following sub-properties:
- base
Score number - CVSS version 3 base score for the security Advisory.
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- cve
Ids string[] - (Array of schema.TypeString) -
- date
Published string - Date when the security advisory was first published by Cisco.
- date
Updated string - Date when the security advisory was last updated by Cisco.
- description string
- Brief description of the advisory details.
- domain
Group stringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- environmental
Score number - CVSS version 3 environmental score for the security Advisory.
- execute
On stringPod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - external
Url string - A link to an external URL describing security Advisory in more details.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- A user defined name for the Intersight Advisory.
- nr
Version string - Cisco assigned advisory version after latest revision.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Tam
Security Advisory Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- other
Ref string[]Urls - (Array of schema.TypeString) -
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Tam
Security Advisory Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources TamSecurity Advisory Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation string
- Recommended action to resolve the security advisory.
- severities
Tam
Security Advisory Severity[] - Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state string
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - status string
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - Tam
Security Advisory Tag[] - This complex property has following sub-properties:
- tam
Security stringAdvisory Id - temporal
Score number - CVSS version 3 temporal score for the security Advisory.
- version
Contexts TamSecurity Advisory Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround string
- Workarounds available for the advisory.
- account_
moid str - (ReadOnly) The Account ID for this managed object.
- actions
Sequence[Tam
Security Advisory Action Args] - This complex property has following sub-properties:
- additional_
properties str - advisory_
id str - Cisco generated identifier for the published security advisory.
- ancestors
Sequence[Tam
Security Advisory Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api_
data_ Sequence[Tamsources Security Advisory Api Data Source Args] - This complex property has following sub-properties:
- base_
score float - CVSS version 3 base score for the security Advisory.
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- cve_
ids Sequence[str] - (Array of schema.TypeString) -
- date_
published str - Date when the security advisory was first published by Cisco.
- date_
updated str - Date when the security advisory was last updated by Cisco.
- description str
- Brief description of the advisory details.
- domain_
group_ strmoid - (ReadOnly) The DomainGroup ID for this managed object.
- environmental_
score float - CVSS version 3 environmental score for the security Advisory.
- execute_
on_ strpod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - external_
url str - A link to an external URL describing security Advisory in more details.
- mod_
time str - (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- A user defined name for the Intersight Advisory.
- nr_
version str - Cisco assigned advisory version after latest revision.
- object_
type str - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[Tam
Security Advisory Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- other_
ref_ Sequence[str]urls - (Array of schema.TypeString) -
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Tam
Security Advisory Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[TamSecurity Advisory Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation str
- Recommended action to resolve the security advisory.
- severities
Sequence[Tam
Security Advisory Severity Args] - Severity level of the Intersight Advisory. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state str
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - status str
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - Sequence[Tam
Security Advisory Tag Args] - This complex property has following sub-properties:
- tam_
security_ stradvisory_ id - temporal_
score float - CVSS version 3 temporal score for the security Advisory.
- version_
contexts Sequence[TamSecurity Advisory Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround str
- Workarounds available for the advisory.
- account
Moid String - (ReadOnly) The Account ID for this managed object.
- actions List<Property Map>
- This complex property has following sub-properties:
- additional
Properties String - advisory
Id String - Cisco generated identifier for the published security advisory.
- ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api
Data List<Property Map>Sources - This complex property has following sub-properties:
- base
Score Number - CVSS version 3 base score for the security Advisory.
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- cve
Ids List<String> - (Array of schema.TypeString) -
- date
Published String - Date when the security advisory was first published by Cisco.
- date
Updated String - Date when the security advisory was last updated by Cisco.
- description String
- Brief description of the advisory details.
- domain
Group StringMoid - (ReadOnly) The DomainGroup ID for this managed object.
- environmental
Score Number - CVSS version 3 environmental score for the security Advisory.
- execute
On StringPod - Orion pod on which this advisory should process.*
tier1
- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2
- Advisory processing will be taken care in second advisory driver of multinode cluster. - external
Url String - A link to an external URL describing security Advisory in more details.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- A user defined name for the Intersight Advisory.
- nr
Version String - Cisco assigned advisory version after latest revision.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- other
Ref List<String>Urls - (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation String
- Recommended action to resolve the security advisory.
- severities List<Property Map>
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state String
- Current state of the advisory.*
ready
- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating
- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation. - status String
- Cisco assigned status of the published advisory based on whether the investigation is complete or on-going.*
interim
- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*final
- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability. - List<Property Map>
- This complex property has following sub-properties:
- tam
Security StringAdvisory Id - temporal
Score Number - CVSS version 3 temporal score for the security Advisory.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround String
- Workarounds available for the advisory.
Supporting Types
TamSecurityAdvisoryAction, TamSecurityAdvisoryActionArgs
- Additional
Properties string - Affected
Object stringType - Type of the managed object that should be marked with an instance of the Alert (when operation type is create) or that should have an alert instance removed (when operation type is remove).
- Alert
Type string - Alert type is used to denote the category of an Intersight alert (FieldNotice, equipment Fault etc.).*
psirt
- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice
- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory
- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html). - Class
Id string - Identifiers
List<Tam
Security Advisory Action Identifier> - This complex property has following sub-properties:
- Name string
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Operation
Type string - Operation type for the alert action. An action is used to carry out the process of \ reacting\ to an alert condition. For e.g.in case of a fieldNotice alert, the intention may be to create a new alert (if the condition matches and there is no existing alert) or to remove an existing alert when the alert condition has been remedied.*
create
- Create an instance of AdvisoryInstance.*remove
- Remove an instance of AdvisoryInstance. - Queries
List<Tam
Security Advisory Action Query> - This complex property has following sub-properties:
- Type string
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.*
restApi
- Repesents the use of REST API for carrying out alert actions.
- Additional
Properties string - Affected
Object stringType - Type of the managed object that should be marked with an instance of the Alert (when operation type is create) or that should have an alert instance removed (when operation type is remove).
- Alert
Type string - Alert type is used to denote the category of an Intersight alert (FieldNotice, equipment Fault etc.).*
psirt
- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice
- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory
- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html). - Class
Id string - Identifiers
[]Tam
Security Advisory Action Identifier - This complex property has following sub-properties:
- Name string
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Operation
Type string - Operation type for the alert action. An action is used to carry out the process of \ reacting\ to an alert condition. For e.g.in case of a fieldNotice alert, the intention may be to create a new alert (if the condition matches and there is no existing alert) or to remove an existing alert when the alert condition has been remedied.*
create
- Create an instance of AdvisoryInstance.*remove
- Remove an instance of AdvisoryInstance. - Queries
[]Tam
Security Advisory Action Query - This complex property has following sub-properties:
- Type string
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.*
restApi
- Repesents the use of REST API for carrying out alert actions.
- additional
Properties String - affected
Object StringType - Type of the managed object that should be marked with an instance of the Alert (when operation type is create) or that should have an alert instance removed (when operation type is remove).
- alert
Type String - Alert type is used to denote the category of an Intersight alert (FieldNotice, equipment Fault etc.).*
psirt
- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice
- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory
- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html). - class
Id String - identifiers
List<Tam
Security Advisory Action Identifier> - This complex property has following sub-properties:
- name String
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operation
Type String - Operation type for the alert action. An action is used to carry out the process of \ reacting\ to an alert condition. For e.g.in case of a fieldNotice alert, the intention may be to create a new alert (if the condition matches and there is no existing alert) or to remove an existing alert when the alert condition has been remedied.*
create
- Create an instance of AdvisoryInstance.*remove
- Remove an instance of AdvisoryInstance. - queries
List<Tam
Security Advisory Action Query> - This complex property has following sub-properties:
- type String
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.*
restApi
- Repesents the use of REST API for carrying out alert actions.
- additional
Properties string - affected
Object stringType - Type of the managed object that should be marked with an instance of the Alert (when operation type is create) or that should have an alert instance removed (when operation type is remove).
- alert
Type string - Alert type is used to denote the category of an Intersight alert (FieldNotice, equipment Fault etc.).*
psirt
- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice
- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory
- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html). - class
Id string - identifiers
Tam
Security Advisory Action Identifier[] - This complex property has following sub-properties:
- name string
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operation
Type string - Operation type for the alert action. An action is used to carry out the process of \ reacting\ to an alert condition. For e.g.in case of a fieldNotice alert, the intention may be to create a new alert (if the condition matches and there is no existing alert) or to remove an existing alert when the alert condition has been remedied.*
create
- Create an instance of AdvisoryInstance.*remove
- Remove an instance of AdvisoryInstance. - queries
Tam
Security Advisory Action Query[] - This complex property has following sub-properties:
- type string
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.*
restApi
- Repesents the use of REST API for carrying out alert actions.
- additional_
properties str - affected_
object_ strtype - Type of the managed object that should be marked with an instance of the Alert (when operation type is create) or that should have an alert instance removed (when operation type is remove).
- alert_
type str - Alert type is used to denote the category of an Intersight alert (FieldNotice, equipment Fault etc.).*
psirt
- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice
- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory
- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html). - class_
id str - identifiers
Sequence[Tam
Security Advisory Action Identifier] - This complex property has following sub-properties:
- name str
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operation_
type str - Operation type for the alert action. An action is used to carry out the process of \ reacting\ to an alert condition. For e.g.in case of a fieldNotice alert, the intention may be to create a new alert (if the condition matches and there is no existing alert) or to remove an existing alert when the alert condition has been remedied.*
create
- Create an instance of AdvisoryInstance.*remove
- Remove an instance of AdvisoryInstance. - queries
Sequence[Tam
Security Advisory Action Query] - This complex property has following sub-properties:
- type str
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.*
restApi
- Repesents the use of REST API for carrying out alert actions.
- additional
Properties String - affected
Object StringType - Type of the managed object that should be marked with an instance of the Alert (when operation type is create) or that should have an alert instance removed (when operation type is remove).
- alert
Type String - Alert type is used to denote the category of an Intersight alert (FieldNotice, equipment Fault etc.).*
psirt
- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice
- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory
- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html). - class
Id String - identifiers List<Property Map>
- This complex property has following sub-properties:
- name String
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operation
Type String - Operation type for the alert action. An action is used to carry out the process of \ reacting\ to an alert condition. For e.g.in case of a fieldNotice alert, the intention may be to create a new alert (if the condition matches and there is no existing alert) or to remove an existing alert when the alert condition has been remedied.*
create
- Create an instance of AdvisoryInstance.*remove
- Remove an instance of AdvisoryInstance. - queries List<Property Map>
- This complex property has following sub-properties:
- type String
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.*
restApi
- Repesents the use of REST API for carrying out alert actions.
TamSecurityAdvisoryActionIdentifier, TamSecurityAdvisoryActionIdentifierArgs
- Additional
Properties string - Class
Id string - Name string
- Name of the filter paramter.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- Value of the filter paramter.
- Additional
Properties string - Class
Id string - Name string
- Name of the filter paramter.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Value string
- Value of the filter paramter.
- additional
Properties String - class
Id String - name String
- Name of the filter paramter.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- Value of the filter paramter.
- additional
Properties string - class
Id string - name string
- Name of the filter paramter.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value string
- Value of the filter paramter.
- additional_
properties str - class_
id str - name str
- Name of the filter paramter.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value str
- Value of the filter paramter.
- additional
Properties String - class
Id String - name String
- Name of the filter paramter.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value String
- Value of the filter paramter.
TamSecurityAdvisoryActionQuery, TamSecurityAdvisoryActionQueryArgs
- Additional
Properties string - Class
Id string - Name string
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Priority double
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- Query string
- A SparkSQL query to be used on a given data source.
- Additional
Properties string - Class
Id string - Name string
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Priority float64
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- Query string
- A SparkSQL query to be used on a given data source.
- additional
Properties String - class
Id String - name String
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority Double
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query String
- A SparkSQL query to be used on a given data source.
- additional
Properties string - class
Id string - name string
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority number
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query string
- A SparkSQL query to be used on a given data source.
- additional_
properties str - class_
id str - name str
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority float
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query str
- A SparkSQL query to be used on a given data source.
- additional
Properties String - class
Id String - name String
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority Number
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query String
- A SparkSQL query to be used on a given data source.
TamSecurityAdvisoryAncestor, TamSecurityAdvisoryAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
TamSecurityAdvisoryApiDataSource, TamSecurityAdvisoryApiDataSourceArgs
- Additional
Properties string - Class
Id string - Mo
Type string - Type of Intersight managed object used as data source.
- Name string
- Name is used to unique identify and refer a given data source in an alert definition.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Queries
List<Tam
Security Advisory Api Data Source Query> - This complex property has following sub-properties:
- Type string
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).*
intersightApi
- Collector type for this data collection is Intersight APIs.*nxos
- Collector type for this data collection is NXOS.*s3File
- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- Additional
Properties string - Class
Id string - Mo
Type string - Type of Intersight managed object used as data source.
- Name string
- Name is used to unique identify and refer a given data source in an alert definition.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Queries
[]Tam
Security Advisory Api Data Source Query - This complex property has following sub-properties:
- Type string
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).*
intersightApi
- Collector type for this data collection is Intersight APIs.*nxos
- Collector type for this data collection is NXOS.*s3File
- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additional
Properties String - class
Id String - mo
Type String - Type of Intersight managed object used as data source.
- name String
- Name is used to unique identify and refer a given data source in an alert definition.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- queries
List<Tam
Security Advisory Api Data Source Query> - This complex property has following sub-properties:
- type String
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).*
intersightApi
- Collector type for this data collection is Intersight APIs.*nxos
- Collector type for this data collection is NXOS.*s3File
- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additional
Properties string - class
Id string - mo
Type string - Type of Intersight managed object used as data source.
- name string
- Name is used to unique identify and refer a given data source in an alert definition.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- queries
Tam
Security Advisory Api Data Source Query[] - This complex property has following sub-properties:
- type string
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).*
intersightApi
- Collector type for this data collection is Intersight APIs.*nxos
- Collector type for this data collection is NXOS.*s3File
- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additional_
properties str - class_
id str - mo_
type str - Type of Intersight managed object used as data source.
- name str
- Name is used to unique identify and refer a given data source in an alert definition.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- queries
Sequence[Tam
Security Advisory Api Data Source Query] - This complex property has following sub-properties:
- type str
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).*
intersightApi
- Collector type for this data collection is Intersight APIs.*nxos
- Collector type for this data collection is NXOS.*s3File
- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additional
Properties String - class
Id String - mo
Type String - Type of Intersight managed object used as data source.
- name String
- Name is used to unique identify and refer a given data source in an alert definition.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- queries List<Property Map>
- This complex property has following sub-properties:
- type String
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).*
intersightApi
- Collector type for this data collection is Intersight APIs.*nxos
- Collector type for this data collection is NXOS.*s3File
- Collector type for this data collection is a file in a cloud hosted object storage bucket.
TamSecurityAdvisoryApiDataSourceQuery, TamSecurityAdvisoryApiDataSourceQueryArgs
- Additional
Properties string - Class
Id string - Name string
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Priority double
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- Query string
- A SparkSQL query to be used on a given data source.
- Additional
Properties string - Class
Id string - Name string
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Priority float64
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- Query string
- A SparkSQL query to be used on a given data source.
- additional
Properties String - class
Id String - name String
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority Double
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query String
- A SparkSQL query to be used on a given data source.
- additional
Properties string - class
Id string - name string
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority number
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query string
- A SparkSQL query to be used on a given data source.
- additional_
properties str - class_
id str - name str
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority float
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query str
- A SparkSQL query to be used on a given data source.
- additional
Properties String - class
Id String - name String
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority Number
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query String
- A SparkSQL query to be used on a given data source.
TamSecurityAdvisoryOrganization, TamSecurityAdvisoryOrganizationArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
TamSecurityAdvisoryParent, TamSecurityAdvisoryParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
TamSecurityAdvisoryPermissionResource, TamSecurityAdvisoryPermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
TamSecurityAdvisorySeverity, TamSecurityAdvisorySeverityArgs
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- Additional
Properties string - Class
Id string - Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional
Properties string - class
Id string - object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional_
properties str - class_
id str - object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additional
Properties String - class
Id String - object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
TamSecurityAdvisoryTag, TamSecurityAdvisoryTagArgs
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
TamSecurityAdvisoryVersionContext, TamSecurityAdvisoryVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<TamSecurity Advisory Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<TamSecurity Advisory Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []TamSecurity Advisory Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []TamSecurity Advisory Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<TamSecurity Advisory Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<TamSecurity Advisory Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos TamSecurity Advisory Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos TamSecurity Advisory Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[TamSecurity Advisory Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[TamSecurity Advisory Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
TamSecurityAdvisoryVersionContextInterestedMo, TamSecurityAdvisoryVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
TamSecurityAdvisoryVersionContextRefMo, TamSecurityAdvisoryVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_tam_security_advisory
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/tamSecurityAdvisory:TamSecurityAdvisory example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the
intersight
Terraform Provider.