intersight.TamAdvisoryDefinition
Explore with Pulumi AI
An Intersight Advisory. An advisory represents an identification of a potential issue and may also include a recommendation for resolving the said issue. Advisories may be of different kind and severity. for e.g. It could be a security vulnerability or a performance issue or a hardware issue with different recommendations for resolving them.
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 tamAdvisoryDefinition = new intersight.TamAdvisoryDefinition("tamAdvisoryDefinition", {
state: "ready",
severities: [{
objectType: "tam.SecurityAdvisoryDetails",
}],
actions: [{
operationType: "create",
name: "tam_security_advisories1",
type: "restApi",
objectType: "tam.SecurityAdvisoryDetails",
alertType: "psirt",
}],
type: "securityAdvisory",
apiDataSources: [{
objectType: "tam.ApiDataSource",
name: "api_data_source_1",
type: "intersightApi",
}],
advisoryDetails: [{
objectType: "tam.SecurityAdvisoryDetails",
description: "tam security advisory",
classId: "tam.SecurityAdvisoryDetails",
}],
organizations: [{
objectType: "organization.Organization",
moid: organization,
}],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
organization = config.require("organization")
tam_advisory_definition = intersight.TamAdvisoryDefinition("tamAdvisoryDefinition",
state="ready",
severities=[{
"object_type": "tam.SecurityAdvisoryDetails",
}],
actions=[{
"operation_type": "create",
"name": "tam_security_advisories1",
"type": "restApi",
"object_type": "tam.SecurityAdvisoryDetails",
"alert_type": "psirt",
}],
type="securityAdvisory",
api_data_sources=[{
"object_type": "tam.ApiDataSource",
"name": "api_data_source_1",
"type": "intersightApi",
}],
advisory_details=[{
"object_type": "tam.SecurityAdvisoryDetails",
"description": "tam security advisory",
"class_id": "tam.SecurityAdvisoryDetails",
}],
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.NewTamAdvisoryDefinition(ctx, "tamAdvisoryDefinition", &intersight.TamAdvisoryDefinitionArgs{
State: pulumi.String("ready"),
Severities: intersight.TamAdvisoryDefinitionSeverityArray{
&intersight.TamAdvisoryDefinitionSeverityArgs{
ObjectType: pulumi.String("tam.SecurityAdvisoryDetails"),
},
},
Actions: intersight.TamAdvisoryDefinitionActionArray{
&intersight.TamAdvisoryDefinitionActionArgs{
OperationType: pulumi.String("create"),
Name: pulumi.String("tam_security_advisories1"),
Type: pulumi.String("restApi"),
ObjectType: pulumi.String("tam.SecurityAdvisoryDetails"),
AlertType: pulumi.String("psirt"),
},
},
Type: pulumi.String("securityAdvisory"),
ApiDataSources: intersight.TamAdvisoryDefinitionApiDataSourceArray{
&intersight.TamAdvisoryDefinitionApiDataSourceArgs{
ObjectType: pulumi.String("tam.ApiDataSource"),
Name: pulumi.String("api_data_source_1"),
Type: pulumi.String("intersightApi"),
},
},
AdvisoryDetails: intersight.TamAdvisoryDefinitionAdvisoryDetailArray{
&intersight.TamAdvisoryDefinitionAdvisoryDetailArgs{
ObjectType: pulumi.String("tam.SecurityAdvisoryDetails"),
Description: pulumi.String("tam security advisory"),
ClassId: pulumi.String("tam.SecurityAdvisoryDetails"),
},
},
Organizations: intersight.TamAdvisoryDefinitionOrganizationArray{
&intersight.TamAdvisoryDefinitionOrganizationArgs{
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 tamAdvisoryDefinition = new Intersight.TamAdvisoryDefinition("tamAdvisoryDefinition", new()
{
State = "ready",
Severities = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionSeverityArgs
{
ObjectType = "tam.SecurityAdvisoryDetails",
},
},
Actions = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionActionArgs
{
OperationType = "create",
Name = "tam_security_advisories1",
Type = "restApi",
ObjectType = "tam.SecurityAdvisoryDetails",
AlertType = "psirt",
},
},
Type = "securityAdvisory",
ApiDataSources = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionApiDataSourceArgs
{
ObjectType = "tam.ApiDataSource",
Name = "api_data_source_1",
Type = "intersightApi",
},
},
AdvisoryDetails = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionAdvisoryDetailArgs
{
ObjectType = "tam.SecurityAdvisoryDetails",
Description = "tam security advisory",
ClassId = "tam.SecurityAdvisoryDetails",
},
},
Organizations = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionOrganizationArgs
{
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.TamAdvisoryDefinition;
import com.pulumi.intersight.TamAdvisoryDefinitionArgs;
import com.pulumi.intersight.inputs.TamAdvisoryDefinitionSeverityArgs;
import com.pulumi.intersight.inputs.TamAdvisoryDefinitionActionArgs;
import com.pulumi.intersight.inputs.TamAdvisoryDefinitionApiDataSourceArgs;
import com.pulumi.intersight.inputs.TamAdvisoryDefinitionAdvisoryDetailArgs;
import com.pulumi.intersight.inputs.TamAdvisoryDefinitionOrganizationArgs;
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 tamAdvisoryDefinition = new TamAdvisoryDefinition("tamAdvisoryDefinition", TamAdvisoryDefinitionArgs.builder()
.state("ready")
.severities(TamAdvisoryDefinitionSeverityArgs.builder()
.objectType("tam.SecurityAdvisoryDetails")
.build())
.actions(TamAdvisoryDefinitionActionArgs.builder()
.operationType("create")
.name("tam_security_advisories1")
.type("restApi")
.objectType("tam.SecurityAdvisoryDetails")
.alertType("psirt")
.build())
.type("securityAdvisory")
.apiDataSources(TamAdvisoryDefinitionApiDataSourceArgs.builder()
.objectType("tam.ApiDataSource")
.name("api_data_source_1")
.type("intersightApi")
.build())
.advisoryDetails(TamAdvisoryDefinitionAdvisoryDetailArgs.builder()
.objectType("tam.SecurityAdvisoryDetails")
.description("tam security advisory")
.classId("tam.SecurityAdvisoryDetails")
.build())
.organizations(TamAdvisoryDefinitionOrganizationArgs.builder()
.objectType("organization.Organization")
.moid(organization)
.build())
.build());
}
}
configuration:
organization:
type: string
resources:
tamAdvisoryDefinition:
type: intersight:TamAdvisoryDefinition
properties:
state: ready
severities:
- objectType: tam.SecurityAdvisoryDetails
actions:
- operationType: create
name: tam_security_advisories1
type: restApi
objectType: tam.SecurityAdvisoryDetails
alertType: psirt
type: securityAdvisory
apiDataSources:
- objectType: tam.ApiDataSource
name: api_data_source_1
type: intersightApi
advisoryDetails:
- objectType: tam.SecurityAdvisoryDetails
description: tam security advisory
classId: tam.SecurityAdvisoryDetails
organizations:
- objectType: organization.Organization
moid: ${organization}
Allowed Types in AdditionalProperties
tam.EolAdvisoryDetails
Details pertaining to the milestone defined by an end-of-life (EOL) milestone advisory.
all_milestones
:(Array) This complex property has following sub-properties:date
:(string) Date when the specified end-of-life milestone advisory is reached.description
:(string) A description of the milestone defined by an end-of-life advisory.end_offset
:(int) Number of days (exclusive) relative to the milestone date when the milestone is considered to be not in effect. A nagative number indicates number of days ahead of the milestone date. The default is 2147483647 (0x7FFFFFFF) which means the milestone date range’s upper bound is omitted.label_hint
:(string) Extra hint to the type of label to be used in display in addition to severity and effective date. How to use it is at UI’s descretion.*upcoming
- This end-of-life (EOL) milestone is upcoming. The label may be changed to more urgent type such as ‘imminent’ as time progress approaching effective date.*imminent
- This end-of-life (EOL) milestone is imminent. There will be no label change before the effective date.*past
- This end-of-life (EOL) milestone has past the effective date.*info
- This end-of-life (EOL) milestone for informative purpose.milestone_type
:(string) Milestone type as defined in Cisco end-of-life (EOL) policy (https://www.cisco.com/c/en/us/products/eos-eol-policy.html) when the specified end-of-life milestone advisory is reached.*unknown
- The type of end-of-life milestone is not defined.*endOfSoftwareMaintenanceDate
- The last date that Cisco Engineering may release any final software maintenance releases or bug fixes. After this date, Cisco Engineering may no longer develop, repair, maintain, or test the product software and only critical security updates will be provided on this release train. *lastDateOfSupport
- The last date to receive service and support for the software. After this date, all support services for the software are unavailable, and the software becomes obsolete. *endOfLifeAnnouncementDate
- The date the document that announces the end-of-sale and end-of-life of a product is distributed to the general public.name
:(string) A milestone defined by an end-of-life advisory.object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.start_offset
:(int) Number of days (inclusive) relative to the milestone date when the milestone is considered to be in effect. A nagative number indicates number of days ahead of the milestone date. The default is 0 which means the milestone take effect exactly on the same date as the specified milestone date. A negative value of -2147483648 (0x80000000) indicates the milestone date range’s lower bound is omitted.
milestone
:(HashMap) - A end-of-life advisory milestone as defined in Cisco end-of-life (EOL) policy (https://www.cisco.com/c/en/us/products/eos-eol-policy.html). This complex property has following sub-properties:date
:(string) Date when the specified end-of-life milestone advisory is reached.description
:(string) A description of the milestone defined by an end-of-life advisory.end_offset
:(int) Number of days (exclusive) relative to the milestone date when the milestone is considered to be not in effect. A nagative number indicates number of days ahead of the milestone date. The default is 2147483647 (0x7FFFFFFF) which means the milestone date range’s upper bound is omitted.label_hint
:(string) Extra hint to the type of label to be used in display in addition to severity and effective date. How to use it is at UI’s descretion.*upcoming
- This end-of-life (EOL) milestone is upcoming. The label may be changed to more urgent type such as ‘imminent’ as time progress approaching effective date.*imminent
- This end-of-life (EOL) milestone is imminent. There will be no label change before the effective date.*past
- This end-of-life (EOL) milestone has past the effective date.*info
- This end-of-life (EOL) milestone for informative purpose.milestone_type
:(string) Milestone type as defined in Cisco end-of-life (EOL) policy (https://www.cisco.com/c/en/us/products/eos-eol-policy.html) when the specified end-of-life milestone advisory is reached.*unknown
- The type of end-of-life milestone is not defined.*endOfSoftwareMaintenanceDate
- The last date that Cisco Engineering may release any final software maintenance releases or bug fixes. After this date, Cisco Engineering may no longer develop, repair, maintain, or test the product software and only critical security updates will be provided on this release train. *lastDateOfSupport
- The last date to receive service and support for the software. After this date, all support services for the software are unavailable, and the software becomes obsolete. *endOfLifeAnnouncementDate
- The date the document that announces the end-of-sale and end-of-life of a product is distributed to the general public.name
:(string) A milestone defined by an end-of-life advisory.object_type
:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.start_offset
:(int) Number of days (inclusive) relative to the milestone date when the milestone is considered to be in effect. A nagative number indicates number of days ahead of the milestone date. The default is 0 which means the milestone take effect exactly on the same date as the specified milestone date. A negative value of -2147483648 (0x80000000) indicates the milestone date range’s lower bound is omitted.
release
:(string) The name of the impacted release this advisory milestone intends to address, e.g. \ 3.5 (2x)\ .
tam.SecurityAdvisoryDetails
Details pertaining to a security advisory defined by a given advisory.
base_score
:(float) CVSS version 3 base score for the security Advisory.cve_ids
: (Array of schema.TypeString) -environmental_score
:(float) CVSS version 3 environmental score for the security Advisory.status
:(string) Cisco assigned status of the published advisory. Depends 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.temporal_score
:(float) CVSS version 3 temporal score for the security Advisory.
Create TamAdvisoryDefinition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TamAdvisoryDefinition(name: string, args?: TamAdvisoryDefinitionArgs, opts?: CustomResourceOptions);
@overload
def TamAdvisoryDefinition(resource_name: str,
args: Optional[TamAdvisoryDefinitionArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def TamAdvisoryDefinition(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
actions: Optional[Sequence[TamAdvisoryDefinitionActionArgs]] = None,
additional_properties: Optional[str] = None,
advisory_details: Optional[Sequence[TamAdvisoryDefinitionAdvisoryDetailArgs]] = None,
advisory_id: Optional[str] = None,
ancestors: Optional[Sequence[TamAdvisoryDefinitionAncestorArgs]] = None,
api_data_sources: Optional[Sequence[TamAdvisoryDefinitionApiDataSourceArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
date_published: Optional[str] = None,
date_updated: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = 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[TamAdvisoryDefinitionOrganizationArgs]] = None,
other_ref_urls: Optional[Sequence[str]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[TamAdvisoryDefinitionParentArgs]] = None,
permission_resources: Optional[Sequence[TamAdvisoryDefinitionPermissionResourceArgs]] = None,
recommendation: Optional[str] = None,
s3_data_sources: Optional[Sequence[TamAdvisoryDefinitionS3DataSourceArgs]] = None,
severities: Optional[Sequence[TamAdvisoryDefinitionSeverityArgs]] = None,
shared_scope: Optional[str] = None,
state: Optional[str] = None,
tags: Optional[Sequence[TamAdvisoryDefinitionTagArgs]] = None,
tam_advisory_definition_id: Optional[str] = None,
type: Optional[str] = None,
version_contexts: Optional[Sequence[TamAdvisoryDefinitionVersionContextArgs]] = None,
workaround: Optional[str] = None)
func NewTamAdvisoryDefinition(ctx *Context, name string, args *TamAdvisoryDefinitionArgs, opts ...ResourceOption) (*TamAdvisoryDefinition, error)
public TamAdvisoryDefinition(string name, TamAdvisoryDefinitionArgs? args = null, CustomResourceOptions? opts = null)
public TamAdvisoryDefinition(String name, TamAdvisoryDefinitionArgs args)
public TamAdvisoryDefinition(String name, TamAdvisoryDefinitionArgs args, CustomResourceOptions options)
type: intersight:TamAdvisoryDefinition
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 TamAdvisoryDefinitionArgs
- 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 TamAdvisoryDefinitionArgs
- 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 TamAdvisoryDefinitionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TamAdvisoryDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TamAdvisoryDefinitionArgs
- 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 tamAdvisoryDefinitionResource = new Intersight.TamAdvisoryDefinition("tamAdvisoryDefinitionResource", new()
{
AccountMoid = "string",
Actions = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionActionArgs
{
AdditionalProperties = "string",
AffectedObjectType = "string",
AlertType = "string",
ClassId = "string",
Identifiers = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionActionIdentifierArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Value = "string",
},
},
Name = "string",
ObjectType = "string",
OperationType = "string",
Queries = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionActionQueryArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Priority = 0,
Query = "string",
},
},
Type = "string",
},
},
AdditionalProperties = "string",
AdvisoryDetails = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionAdvisoryDetailArgs
{
AdditionalProperties = "string",
ClassId = "string",
Description = "string",
ObjectType = "string",
},
},
AdvisoryId = "string",
Ancestors = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionAncestorArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
ApiDataSources = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionApiDataSourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
MoType = "string",
Name = "string",
ObjectType = "string",
Queries = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionApiDataSourceQueryArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Priority = 0,
Query = "string",
},
},
Type = "string",
},
},
ClassId = "string",
CreateTime = "string",
DatePublished = "string",
DateUpdated = "string",
Description = "string",
DomainGroupMoid = "string",
ExecuteOnPod = "string",
ExternalUrl = "string",
ModTime = "string",
Moid = "string",
Name = "string",
NrVersion = "string",
ObjectType = "string",
Organizations = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionOrganizationArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
OtherRefUrls = new[]
{
"string",
},
Owners = new[]
{
"string",
},
Parents = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionParentArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
PermissionResources = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionPermissionResourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Recommendation = "string",
S3DataSources = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionS3DataSourceArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Queries = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionS3DataSourceQueryArgs
{
AdditionalProperties = "string",
ClassId = "string",
Name = "string",
ObjectType = "string",
Priority = 0,
Query = "string",
},
},
S3Path = "string",
Type = "string",
},
},
Severities = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionSeverityArgs
{
AdditionalProperties = "string",
ClassId = "string",
ObjectType = "string",
},
},
SharedScope = "string",
State = "string",
Tags = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionTagArgs
{
AdditionalProperties = "string",
Key = "string",
Value = "string",
},
},
TamAdvisoryDefinitionId = "string",
Type = "string",
VersionContexts = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionVersionContextArgs
{
AdditionalProperties = "string",
ClassId = "string",
InterestedMos = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionVersionContextInterestedMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
MarkedForDeletion = false,
NrVersion = "string",
ObjectType = "string",
RefMos = new[]
{
new Intersight.Inputs.TamAdvisoryDefinitionVersionContextRefMoArgs
{
AdditionalProperties = "string",
ClassId = "string",
Moid = "string",
ObjectType = "string",
Selector = "string",
},
},
Timestamp = "string",
VersionType = "string",
},
},
Workaround = "string",
});
example, err := intersight.NewTamAdvisoryDefinition(ctx, "tamAdvisoryDefinitionResource", &intersight.TamAdvisoryDefinitionArgs{
AccountMoid: pulumi.String("string"),
Actions: intersight.TamAdvisoryDefinitionActionArray{
&intersight.TamAdvisoryDefinitionActionArgs{
AdditionalProperties: pulumi.String("string"),
AffectedObjectType: pulumi.String("string"),
AlertType: pulumi.String("string"),
ClassId: pulumi.String("string"),
Identifiers: intersight.TamAdvisoryDefinitionActionIdentifierArray{
&intersight.TamAdvisoryDefinitionActionIdentifierArgs{
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.TamAdvisoryDefinitionActionQueryArray{
&intersight.TamAdvisoryDefinitionActionQueryArgs{
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"),
AdvisoryDetails: intersight.TamAdvisoryDefinitionAdvisoryDetailArray{
&intersight.TamAdvisoryDefinitionAdvisoryDetailArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Description: pulumi.String("string"),
ObjectType: pulumi.String("string"),
},
},
AdvisoryId: pulumi.String("string"),
Ancestors: intersight.TamAdvisoryDefinitionAncestorArray{
&intersight.TamAdvisoryDefinitionAncestorArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
ApiDataSources: intersight.TamAdvisoryDefinitionApiDataSourceArray{
&intersight.TamAdvisoryDefinitionApiDataSourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
MoType: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Queries: intersight.TamAdvisoryDefinitionApiDataSourceQueryArray{
&intersight.TamAdvisoryDefinitionApiDataSourceQueryArgs{
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"),
},
},
ClassId: pulumi.String("string"),
CreateTime: pulumi.String("string"),
DatePublished: pulumi.String("string"),
DateUpdated: pulumi.String("string"),
Description: pulumi.String("string"),
DomainGroupMoid: pulumi.String("string"),
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.TamAdvisoryDefinitionOrganizationArray{
&intersight.TamAdvisoryDefinitionOrganizationArgs{
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.TamAdvisoryDefinitionParentArray{
&intersight.TamAdvisoryDefinitionParentArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
PermissionResources: intersight.TamAdvisoryDefinitionPermissionResourceArray{
&intersight.TamAdvisoryDefinitionPermissionResourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Moid: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Selector: pulumi.String("string"),
},
},
Recommendation: pulumi.String("string"),
S3DataSources: intersight.TamAdvisoryDefinitionS3DataSourceArray{
&intersight.TamAdvisoryDefinitionS3DataSourceArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Queries: intersight.TamAdvisoryDefinitionS3DataSourceQueryArray{
&intersight.TamAdvisoryDefinitionS3DataSourceQueryArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
Name: pulumi.String("string"),
ObjectType: pulumi.String("string"),
Priority: pulumi.Float64(0),
Query: pulumi.String("string"),
},
},
S3Path: pulumi.String("string"),
Type: pulumi.String("string"),
},
},
Severities: intersight.TamAdvisoryDefinitionSeverityArray{
&intersight.TamAdvisoryDefinitionSeverityArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
ObjectType: pulumi.String("string"),
},
},
SharedScope: pulumi.String("string"),
State: pulumi.String("string"),
Tags: intersight.TamAdvisoryDefinitionTagArray{
&intersight.TamAdvisoryDefinitionTagArgs{
AdditionalProperties: pulumi.String("string"),
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TamAdvisoryDefinitionId: pulumi.String("string"),
Type: pulumi.String("string"),
VersionContexts: intersight.TamAdvisoryDefinitionVersionContextArray{
&intersight.TamAdvisoryDefinitionVersionContextArgs{
AdditionalProperties: pulumi.String("string"),
ClassId: pulumi.String("string"),
InterestedMos: intersight.TamAdvisoryDefinitionVersionContextInterestedMoArray{
&intersight.TamAdvisoryDefinitionVersionContextInterestedMoArgs{
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.TamAdvisoryDefinitionVersionContextRefMoArray{
&intersight.TamAdvisoryDefinitionVersionContextRefMoArgs{
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 tamAdvisoryDefinitionResource = new TamAdvisoryDefinition("tamAdvisoryDefinitionResource", TamAdvisoryDefinitionArgs.builder()
.accountMoid("string")
.actions(TamAdvisoryDefinitionActionArgs.builder()
.additionalProperties("string")
.affectedObjectType("string")
.alertType("string")
.classId("string")
.identifiers(TamAdvisoryDefinitionActionIdentifierArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.value("string")
.build())
.name("string")
.objectType("string")
.operationType("string")
.queries(TamAdvisoryDefinitionActionQueryArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.priority(0)
.query("string")
.build())
.type("string")
.build())
.additionalProperties("string")
.advisoryDetails(TamAdvisoryDefinitionAdvisoryDetailArgs.builder()
.additionalProperties("string")
.classId("string")
.description("string")
.objectType("string")
.build())
.advisoryId("string")
.ancestors(TamAdvisoryDefinitionAncestorArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.apiDataSources(TamAdvisoryDefinitionApiDataSourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moType("string")
.name("string")
.objectType("string")
.queries(TamAdvisoryDefinitionApiDataSourceQueryArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.priority(0)
.query("string")
.build())
.type("string")
.build())
.classId("string")
.createTime("string")
.datePublished("string")
.dateUpdated("string")
.description("string")
.domainGroupMoid("string")
.executeOnPod("string")
.externalUrl("string")
.modTime("string")
.moid("string")
.name("string")
.nrVersion("string")
.objectType("string")
.organizations(TamAdvisoryDefinitionOrganizationArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.otherRefUrls("string")
.owners("string")
.parents(TamAdvisoryDefinitionParentArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.permissionResources(TamAdvisoryDefinitionPermissionResourceArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.recommendation("string")
.s3DataSources(TamAdvisoryDefinitionS3DataSourceArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.queries(TamAdvisoryDefinitionS3DataSourceQueryArgs.builder()
.additionalProperties("string")
.classId("string")
.name("string")
.objectType("string")
.priority(0)
.query("string")
.build())
.s3Path("string")
.type("string")
.build())
.severities(TamAdvisoryDefinitionSeverityArgs.builder()
.additionalProperties("string")
.classId("string")
.objectType("string")
.build())
.sharedScope("string")
.state("string")
.tags(TamAdvisoryDefinitionTagArgs.builder()
.additionalProperties("string")
.key("string")
.value("string")
.build())
.tamAdvisoryDefinitionId("string")
.type("string")
.versionContexts(TamAdvisoryDefinitionVersionContextArgs.builder()
.additionalProperties("string")
.classId("string")
.interestedMos(TamAdvisoryDefinitionVersionContextInterestedMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.markedForDeletion(false)
.nrVersion("string")
.objectType("string")
.refMos(TamAdvisoryDefinitionVersionContextRefMoArgs.builder()
.additionalProperties("string")
.classId("string")
.moid("string")
.objectType("string")
.selector("string")
.build())
.timestamp("string")
.versionType("string")
.build())
.workaround("string")
.build());
tam_advisory_definition_resource = intersight.TamAdvisoryDefinition("tamAdvisoryDefinitionResource",
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_details=[{
"additional_properties": "string",
"class_id": "string",
"description": "string",
"object_type": "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",
}],
class_id="string",
create_time="string",
date_published="string",
date_updated="string",
description="string",
domain_group_moid="string",
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",
s3_data_sources=[{
"additional_properties": "string",
"class_id": "string",
"name": "string",
"object_type": "string",
"queries": [{
"additional_properties": "string",
"class_id": "string",
"name": "string",
"object_type": "string",
"priority": 0,
"query": "string",
}],
"s3_path": "string",
"type": "string",
}],
severities=[{
"additional_properties": "string",
"class_id": "string",
"object_type": "string",
}],
shared_scope="string",
state="string",
tags=[{
"additional_properties": "string",
"key": "string",
"value": "string",
}],
tam_advisory_definition_id="string",
type="string",
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 tamAdvisoryDefinitionResource = new intersight.TamAdvisoryDefinition("tamAdvisoryDefinitionResource", {
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",
advisoryDetails: [{
additionalProperties: "string",
classId: "string",
description: "string",
objectType: "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",
}],
classId: "string",
createTime: "string",
datePublished: "string",
dateUpdated: "string",
description: "string",
domainGroupMoid: "string",
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",
s3DataSources: [{
additionalProperties: "string",
classId: "string",
name: "string",
objectType: "string",
queries: [{
additionalProperties: "string",
classId: "string",
name: "string",
objectType: "string",
priority: 0,
query: "string",
}],
s3Path: "string",
type: "string",
}],
severities: [{
additionalProperties: "string",
classId: "string",
objectType: "string",
}],
sharedScope: "string",
state: "string",
tags: [{
additionalProperties: "string",
key: "string",
value: "string",
}],
tamAdvisoryDefinitionId: "string",
type: "string",
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:TamAdvisoryDefinition
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
advisoryDetails:
- additionalProperties: string
classId: string
description: string
objectType: 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
classId: string
createTime: string
datePublished: string
dateUpdated: string
description: string
domainGroupMoid: string
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
s3DataSources:
- additionalProperties: string
classId: string
name: string
objectType: string
queries:
- additionalProperties: string
classId: string
name: string
objectType: string
priority: 0
query: string
s3Path: string
type: string
severities:
- additionalProperties: string
classId: string
objectType: string
sharedScope: string
state: string
tags:
- additionalProperties: string
key: string
value: string
tamAdvisoryDefinitionId: string
type: string
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
TamAdvisoryDefinition 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 TamAdvisoryDefinition resource accepts the following input properties:
- Account
Moid string - (ReadOnly) The Account ID for this managed object.
- Actions
List<Tam
Advisory Definition Action> - This complex property has following sub-properties:
- Additional
Properties string - Advisory
Details List<TamAdvisory Definition Advisory Detail> - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- Advisory
Id string - Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- Ancestors
List<Tam
Advisory Definition Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Api
Data List<TamSources Advisory Definition Api Data Source> - This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Date
Published string - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- Date
Updated string - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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
Advisory Definition 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
Advisory Definition Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<TamAdvisory Definition 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.
- S3Data
Sources List<TamAdvisory Definition S3Data Source> - This complex property has following sub-properties:
- Severities
List<Tam
Advisory Definition 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. - List<Tam
Advisory Definition Tag> - This complex property has following sub-properties:
- Tam
Advisory stringDefinition Id - Type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - Version
Contexts List<TamAdvisory Definition 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
Advisory Definition Action Args - This complex property has following sub-properties:
- Additional
Properties string - Advisory
Details []TamAdvisory Definition Advisory Detail Args - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- Advisory
Id string - Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- Ancestors
[]Tam
Advisory Definition Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Api
Data []TamSources Advisory Definition Api Data Source Args - This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Date
Published string - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- Date
Updated string - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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
Advisory Definition 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
Advisory Definition Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []TamAdvisory Definition 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.
- S3Data
Sources []TamAdvisory Definition S3Data Source Args - This complex property has following sub-properties:
- Severities
[]Tam
Advisory Definition 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. - []Tam
Advisory Definition Tag Args - This complex property has following sub-properties:
- Tam
Advisory stringDefinition Id - Type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - Version
Contexts []TamAdvisory Definition 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
Advisory Definition Action> - This complex property has following sub-properties:
- additional
Properties String - advisory
Details List<TamAdvisory Definition Advisory Detail> - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisory
Id String - Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
List<Tam
Advisory Definition Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api
Data List<TamSources Advisory Definition Api Data Source> - This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- date
Published String - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- date
Updated String - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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
Advisory Definition 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
Advisory Definition Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<TamAdvisory Definition 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.
- s3Data
Sources List<TamAdvisory Definition S3Data Source> - This complex property has following sub-properties:
- severities
List<Tam
Advisory Definition 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. - List<Tam
Advisory Definition Tag> - This complex property has following sub-properties:
- tam
Advisory StringDefinition Id - type String
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - version
Contexts List<TamAdvisory Definition 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
Advisory Definition Action[] - This complex property has following sub-properties:
- additional
Properties string - advisory
Details TamAdvisory Definition Advisory Detail[] - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisory
Id string - Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
Tam
Advisory Definition Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api
Data TamSources Advisory Definition Api Data Source[] - This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- date
Published string - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- date
Updated string - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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
Advisory Definition 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
Advisory Definition Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources TamAdvisory Definition 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.
- s3Data
Sources TamAdvisory Definition S3Data Source[] - This complex property has following sub-properties:
- severities
Tam
Advisory Definition 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. - Tam
Advisory Definition Tag[] - This complex property has following sub-properties:
- tam
Advisory stringDefinition Id - type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - version
Contexts TamAdvisory Definition 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
Advisory Definition Action Args] - This complex property has following sub-properties:
- additional_
properties str - advisory_
details Sequence[TamAdvisory Definition Advisory Detail Args] - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisory_
id str - Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
Sequence[Tam
Advisory Definition Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api_
data_ Sequence[Tamsources Advisory Definition Api Data Source Args] - This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- date_
published str - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- date_
updated str - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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
Advisory Definition 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
Advisory Definition Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[TamAdvisory Definition 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.
- s3_
data_ Sequence[Tamsources Advisory Definition S3Data Source Args] - This complex property has following sub-properties:
- severities
Sequence[Tam
Advisory Definition 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. - Sequence[Tam
Advisory Definition Tag Args] - This complex property has following sub-properties:
- tam_
advisory_ strdefinition_ id - type str
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - version_
contexts Sequence[TamAdvisory Definition 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
Details List<Property Map> - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisory
Id String - Cisco generated identifier for the published security/field-notice/end-of-life 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:
- 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.
- date
Published String - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- date
Updated String - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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.
- s3Data
Sources List<Property Map> - This complex property has following sub-properties:
- 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. - List<Property Map>
- This complex property has following sub-properties:
- tam
Advisory StringDefinition Id - type String
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - 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 TamAdvisoryDefinition 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 TamAdvisoryDefinition Resource
Get an existing TamAdvisoryDefinition 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?: TamAdvisoryDefinitionState, opts?: CustomResourceOptions): TamAdvisoryDefinition
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_moid: Optional[str] = None,
actions: Optional[Sequence[TamAdvisoryDefinitionActionArgs]] = None,
additional_properties: Optional[str] = None,
advisory_details: Optional[Sequence[TamAdvisoryDefinitionAdvisoryDetailArgs]] = None,
advisory_id: Optional[str] = None,
ancestors: Optional[Sequence[TamAdvisoryDefinitionAncestorArgs]] = None,
api_data_sources: Optional[Sequence[TamAdvisoryDefinitionApiDataSourceArgs]] = None,
class_id: Optional[str] = None,
create_time: Optional[str] = None,
date_published: Optional[str] = None,
date_updated: Optional[str] = None,
description: Optional[str] = None,
domain_group_moid: Optional[str] = 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[TamAdvisoryDefinitionOrganizationArgs]] = None,
other_ref_urls: Optional[Sequence[str]] = None,
owners: Optional[Sequence[str]] = None,
parents: Optional[Sequence[TamAdvisoryDefinitionParentArgs]] = None,
permission_resources: Optional[Sequence[TamAdvisoryDefinitionPermissionResourceArgs]] = None,
recommendation: Optional[str] = None,
s3_data_sources: Optional[Sequence[TamAdvisoryDefinitionS3DataSourceArgs]] = None,
severities: Optional[Sequence[TamAdvisoryDefinitionSeverityArgs]] = None,
shared_scope: Optional[str] = None,
state: Optional[str] = None,
tags: Optional[Sequence[TamAdvisoryDefinitionTagArgs]] = None,
tam_advisory_definition_id: Optional[str] = None,
type: Optional[str] = None,
version_contexts: Optional[Sequence[TamAdvisoryDefinitionVersionContextArgs]] = None,
workaround: Optional[str] = None) -> TamAdvisoryDefinition
func GetTamAdvisoryDefinition(ctx *Context, name string, id IDInput, state *TamAdvisoryDefinitionState, opts ...ResourceOption) (*TamAdvisoryDefinition, error)
public static TamAdvisoryDefinition Get(string name, Input<string> id, TamAdvisoryDefinitionState? state, CustomResourceOptions? opts = null)
public static TamAdvisoryDefinition get(String name, Output<String> id, TamAdvisoryDefinitionState state, CustomResourceOptions options)
resources: _: type: intersight:TamAdvisoryDefinition 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
Advisory Definition Action> - This complex property has following sub-properties:
- Additional
Properties string - Advisory
Details List<TamAdvisory Definition Advisory Detail> - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- Advisory
Id string - Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- Ancestors
List<Tam
Advisory Definition Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Api
Data List<TamSources Advisory Definition Api Data Source> - This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Date
Published string - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- Date
Updated string - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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
Advisory Definition 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
Advisory Definition Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<TamAdvisory Definition 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.
- S3Data
Sources List<TamAdvisory Definition S3Data Source> - This complex property has following sub-properties:
- Severities
List<Tam
Advisory Definition 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. - List<Tam
Advisory Definition Tag> - This complex property has following sub-properties:
- Tam
Advisory stringDefinition Id - Type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - Version
Contexts List<TamAdvisory Definition 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
Advisory Definition Action Args - This complex property has following sub-properties:
- Additional
Properties string - Advisory
Details []TamAdvisory Definition Advisory Detail Args - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- Advisory
Id string - Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- Ancestors
[]Tam
Advisory Definition Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Api
Data []TamSources Advisory Definition Api Data Source Args - This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Create
Time string - (ReadOnly) The time when this managed object was created.
- Date
Published string - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- Date
Updated string - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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
Advisory Definition 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
Advisory Definition Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []TamAdvisory Definition 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.
- S3Data
Sources []TamAdvisory Definition S3Data Source Args - This complex property has following sub-properties:
- Severities
[]Tam
Advisory Definition 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. - []Tam
Advisory Definition Tag Args - This complex property has following sub-properties:
- Tam
Advisory stringDefinition Id - Type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - Version
Contexts []TamAdvisory Definition 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
Advisory Definition Action> - This complex property has following sub-properties:
- additional
Properties String - advisory
Details List<TamAdvisory Definition Advisory Detail> - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisory
Id String - Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
List<Tam
Advisory Definition Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api
Data List<TamSources Advisory Definition Api Data Source> - This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time String - (ReadOnly) The time when this managed object was created.
- date
Published String - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- date
Updated String - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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
Advisory Definition 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
Advisory Definition Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<TamAdvisory Definition 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.
- s3Data
Sources List<TamAdvisory Definition S3Data Source> - This complex property has following sub-properties:
- severities
List<Tam
Advisory Definition 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. - List<Tam
Advisory Definition Tag> - This complex property has following sub-properties:
- tam
Advisory StringDefinition Id - type String
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - version
Contexts List<TamAdvisory Definition 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
Advisory Definition Action[] - This complex property has following sub-properties:
- additional
Properties string - advisory
Details TamAdvisory Definition Advisory Detail[] - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisory
Id string - Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
Tam
Advisory Definition Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api
Data TamSources Advisory Definition Api Data Source[] - This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create
Time string - (ReadOnly) The time when this managed object was created.
- date
Published string - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- date
Updated string - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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
Advisory Definition 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
Advisory Definition Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources TamAdvisory Definition 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.
- s3Data
Sources TamAdvisory Definition S3Data Source[] - This complex property has following sub-properties:
- severities
Tam
Advisory Definition 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. - Tam
Advisory Definition Tag[] - This complex property has following sub-properties:
- tam
Advisory stringDefinition Id - type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - version
Contexts TamAdvisory Definition 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
Advisory Definition Action Args] - This complex property has following sub-properties:
- additional_
properties str - advisory_
details Sequence[TamAdvisory Definition Advisory Detail Args] - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisory_
id str - Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
Sequence[Tam
Advisory Definition Ancestor Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api_
data_ Sequence[Tamsources Advisory Definition Api Data Source Args] - This complex property has following sub-properties:
- class_
id str - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_
time str - (ReadOnly) The time when this managed object was created.
- date_
published str - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- date_
updated str - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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
Advisory Definition 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
Advisory Definition Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[TamAdvisory Definition 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.
- s3_
data_ Sequence[Tamsources Advisory Definition S3Data Source Args] - This complex property has following sub-properties:
- severities
Sequence[Tam
Advisory Definition 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. - Sequence[Tam
Advisory Definition Tag Args] - This complex property has following sub-properties:
- tam_
advisory_ strdefinition_ id - type str
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - version_
contexts Sequence[TamAdvisory Definition 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
Details List<Property Map> - Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisory
Id String - Cisco generated identifier for the published security/field-notice/end-of-life 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:
- 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.
- date
Published String - Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- date
Updated String - Date when the security/field-notice/end-of-life 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.
- 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/field-notice/end-of-life 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.
- s3Data
Sources List<Property Map> - This complex property has following sub-properties:
- 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. - List<Property Map>
- This complex property has following sub-properties:
- tam
Advisory StringDefinition Id - type String
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.*
securityAdvisory
- 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). - 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
TamAdvisoryDefinitionAction, TamAdvisoryDefinitionActionArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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
Advisory Definition 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
Advisory Definition 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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
Advisory Definition 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
Advisory Definition 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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
Advisory Definition 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
Advisory Definition 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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
Advisory Definition 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
Advisory Definition 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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
Advisory Definition 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
Advisory Definition 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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.
TamAdvisoryDefinitionActionIdentifier, TamAdvisoryDefinitionActionIdentifierArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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.
TamAdvisoryDefinitionActionQuery, TamAdvisoryDefinitionActionQueryArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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.
TamAdvisoryDefinitionAdvisoryDetail, TamAdvisoryDefinitionAdvisoryDetailArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Description string
- Brief description of details specified for an advisory type.
- 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Description string
- Brief description of details specified for an advisory type.
- 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - description String
- Brief description of details specified for an advisory type.
- 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id string - description string
- Brief description of details specified for an advisory type.
- 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class_
id str - description str
- Brief description of details specified for an advisory type.
- 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - description String
- Brief description of details specified for an advisory type.
- 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.
TamAdvisoryDefinitionAncestor, TamAdvisoryDefinitionAncestorArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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'.
TamAdvisoryDefinitionApiDataSource, TamAdvisoryDefinitionApiDataSourceArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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
Advisory Definition 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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
Advisory Definition 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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
Advisory Definition 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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
Advisory Definition 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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
Advisory Definition 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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.
TamAdvisoryDefinitionApiDataSourceQuery, TamAdvisoryDefinitionApiDataSourceQueryArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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.
TamAdvisoryDefinitionOrganization, TamAdvisoryDefinitionOrganizationArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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'.
TamAdvisoryDefinitionParent, TamAdvisoryDefinitionParentArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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'.
TamAdvisoryDefinitionPermissionResource, TamAdvisoryDefinitionPermissionResourceArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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'.
TamAdvisoryDefinitionS3DataSource, TamAdvisoryDefinitionS3DataSourceArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - 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
Advisory Definition S3Data Source Query> - This complex property has following sub-properties:
- S3Path string
- Path used to access file in s3 containing data.
- 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - 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
Advisory Definition S3Data Source Query - This complex property has following sub-properties:
- S3Path string
- Path used to access file in s3 containing data.
- 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - 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
Advisory Definition S3Data Source Query> - This complex property has following sub-properties:
- s3Path String
- Path used to access file in s3 containing data.
- 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id string - 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
Advisory Definition S3Data Source Query[] - This complex property has following sub-properties:
- s3Path string
- Path used to access file in s3 containing data.
- 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class_
id str - 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
Advisory Definition S3Data Source Query] - This complex property has following sub-properties:
- s3_
path str - Path used to access file in s3 containing data.
- 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - 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:
- s3Path String
- Path used to access file in s3 containing data.
- 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.
TamAdvisoryDefinitionS3DataSourceQuery, TamAdvisoryDefinitionS3DataSourceQueryArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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.
TamAdvisoryDefinitionSeverity, TamAdvisoryDefinitionSeverityArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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 - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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.
TamAdvisoryDefinitionTag, TamAdvisoryDefinitionTagArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
TamAdvisoryDefinitionVersionContext, TamAdvisoryDefinitionVersionContextArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Interested
Mos List<TamAdvisory Definition Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<TamAdvisory Definition Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Interested
Mos []TamAdvisory Definition Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []TamAdvisory Definition Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - interested
Mos List<TamAdvisory Definition Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<TamAdvisory Definition Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id string - interested
Mos TamAdvisory Definition Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos TamAdvisory Definition Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class_
id str - interested_
mos Sequence[TamAdvisory Definition Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[TamAdvisory Definition Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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.
TamAdvisoryDefinitionVersionContextInterestedMo, TamAdvisoryDefinitionVersionContextInterestedMoArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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'.
TamAdvisoryDefinitionVersionContextRefMo, TamAdvisoryDefinitionVersionContextRefMoArgs
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - Additional Properties as per object type, can be added as JSON using
jsonencode()
. Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails - 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_advisory_definition
can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/tamAdvisoryDefinition:TamAdvisoryDefinition 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.