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