intersight.TamAdvisoryDefinition
Explore with Pulumi AI
An Intersight Advisory. An advisory represents an identification of a potential issue and may also include a recommendation for resolving the said issue. Advisories may be of different kind and severity. for e.g. It could be a security vulnerability or a performance issue or a hardware issue with different recommendations for resolving them.
Usage Example
Resource Creation
import * as pulumi from "@pulumi/pulumi";
import * as intersight from "@pulumi/intersight";
const config = new pulumi.Config();
const organization = config.require("organization");
const tamAdvisoryDefinition = new intersight.TamAdvisoryDefinition("tamAdvisoryDefinition", {
    state: "ready",
    severities: [{
        objectType: "tam.SecurityAdvisoryDetails",
    }],
    actions: [{
        operationType: "create",
        name: "tam_security_advisories1",
        type: "restApi",
        objectType: "tam.SecurityAdvisoryDetails",
        alertType: "psirt",
    }],
    type: "securityAdvisory",
    apiDataSources: [{
        objectType: "tam.ApiDataSource",
        name: "api_data_source_1",
        type: "intersightApi",
    }],
    advisoryDetails: [{
        objectType: "tam.SecurityAdvisoryDetails",
        description: "tam security advisory",
        classId: "tam.SecurityAdvisoryDetails",
    }],
    organizations: [{
        objectType: "organization.Organization",
        moid: organization,
    }],
});
import pulumi
import pulumi_intersight as intersight
config = pulumi.Config()
organization = config.require("organization")
tam_advisory_definition = intersight.TamAdvisoryDefinition("tamAdvisoryDefinition",
    state="ready",
    severities=[{
        "object_type": "tam.SecurityAdvisoryDetails",
    }],
    actions=[{
        "operation_type": "create",
        "name": "tam_security_advisories1",
        "type": "restApi",
        "object_type": "tam.SecurityAdvisoryDetails",
        "alert_type": "psirt",
    }],
    type="securityAdvisory",
    api_data_sources=[{
        "object_type": "tam.ApiDataSource",
        "name": "api_data_source_1",
        "type": "intersightApi",
    }],
    advisory_details=[{
        "object_type": "tam.SecurityAdvisoryDetails",
        "description": "tam security advisory",
        "class_id": "tam.SecurityAdvisoryDetails",
    }],
    organizations=[{
        "object_type": "organization.Organization",
        "moid": organization,
    }])
package main
import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/intersight/intersight"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		cfg := config.New(ctx, "")
		organization := cfg.Require("organization")
		_, err := intersight.NewTamAdvisoryDefinition(ctx, "tamAdvisoryDefinition", &intersight.TamAdvisoryDefinitionArgs{
			State: pulumi.String("ready"),
			Severities: intersight.TamAdvisoryDefinitionSeverityArray{
				&intersight.TamAdvisoryDefinitionSeverityArgs{
					ObjectType: pulumi.String("tam.SecurityAdvisoryDetails"),
				},
			},
			Actions: intersight.TamAdvisoryDefinitionActionArray{
				&intersight.TamAdvisoryDefinitionActionArgs{
					OperationType: pulumi.String("create"),
					Name:          pulumi.String("tam_security_advisories1"),
					Type:          pulumi.String("restApi"),
					ObjectType:    pulumi.String("tam.SecurityAdvisoryDetails"),
					AlertType:     pulumi.String("psirt"),
				},
			},
			Type: pulumi.String("securityAdvisory"),
			ApiDataSources: intersight.TamAdvisoryDefinitionApiDataSourceArray{
				&intersight.TamAdvisoryDefinitionApiDataSourceArgs{
					ObjectType: pulumi.String("tam.ApiDataSource"),
					Name:       pulumi.String("api_data_source_1"),
					Type:       pulumi.String("intersightApi"),
				},
			},
			AdvisoryDetails: intersight.TamAdvisoryDefinitionAdvisoryDetailArray{
				&intersight.TamAdvisoryDefinitionAdvisoryDetailArgs{
					ObjectType:  pulumi.String("tam.SecurityAdvisoryDetails"),
					Description: pulumi.String("tam security advisory"),
					ClassId:     pulumi.String("tam.SecurityAdvisoryDetails"),
				},
			},
			Organizations: intersight.TamAdvisoryDefinitionOrganizationArray{
				&intersight.TamAdvisoryDefinitionOrganizationArgs{
					ObjectType: pulumi.String("organization.Organization"),
					Moid:       pulumi.String(organization),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Intersight = Pulumi.Intersight;
return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var organization = config.Require("organization");
    var tamAdvisoryDefinition = new Intersight.TamAdvisoryDefinition("tamAdvisoryDefinition", new()
    {
        State = "ready",
        Severities = new[]
        {
            new Intersight.Inputs.TamAdvisoryDefinitionSeverityArgs
            {
                ObjectType = "tam.SecurityAdvisoryDetails",
            },
        },
        Actions = new[]
        {
            new Intersight.Inputs.TamAdvisoryDefinitionActionArgs
            {
                OperationType = "create",
                Name = "tam_security_advisories1",
                Type = "restApi",
                ObjectType = "tam.SecurityAdvisoryDetails",
                AlertType = "psirt",
            },
        },
        Type = "securityAdvisory",
        ApiDataSources = new[]
        {
            new Intersight.Inputs.TamAdvisoryDefinitionApiDataSourceArgs
            {
                ObjectType = "tam.ApiDataSource",
                Name = "api_data_source_1",
                Type = "intersightApi",
            },
        },
        AdvisoryDetails = new[]
        {
            new Intersight.Inputs.TamAdvisoryDefinitionAdvisoryDetailArgs
            {
                ObjectType = "tam.SecurityAdvisoryDetails",
                Description = "tam security advisory",
                ClassId = "tam.SecurityAdvisoryDetails",
            },
        },
        Organizations = new[]
        {
            new Intersight.Inputs.TamAdvisoryDefinitionOrganizationArgs
            {
                ObjectType = "organization.Organization",
                Moid = organization,
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.intersight.TamAdvisoryDefinition;
import com.pulumi.intersight.TamAdvisoryDefinitionArgs;
import com.pulumi.intersight.inputs.TamAdvisoryDefinitionSeverityArgs;
import com.pulumi.intersight.inputs.TamAdvisoryDefinitionActionArgs;
import com.pulumi.intersight.inputs.TamAdvisoryDefinitionApiDataSourceArgs;
import com.pulumi.intersight.inputs.TamAdvisoryDefinitionAdvisoryDetailArgs;
import com.pulumi.intersight.inputs.TamAdvisoryDefinitionOrganizationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        final var config = ctx.config();
        final var organization = config.get("organization");
        var tamAdvisoryDefinition = new TamAdvisoryDefinition("tamAdvisoryDefinition", TamAdvisoryDefinitionArgs.builder()
            .state("ready")
            .severities(TamAdvisoryDefinitionSeverityArgs.builder()
                .objectType("tam.SecurityAdvisoryDetails")
                .build())
            .actions(TamAdvisoryDefinitionActionArgs.builder()
                .operationType("create")
                .name("tam_security_advisories1")
                .type("restApi")
                .objectType("tam.SecurityAdvisoryDetails")
                .alertType("psirt")
                .build())
            .type("securityAdvisory")
            .apiDataSources(TamAdvisoryDefinitionApiDataSourceArgs.builder()
                .objectType("tam.ApiDataSource")
                .name("api_data_source_1")
                .type("intersightApi")
                .build())
            .advisoryDetails(TamAdvisoryDefinitionAdvisoryDetailArgs.builder()
                .objectType("tam.SecurityAdvisoryDetails")
                .description("tam security advisory")
                .classId("tam.SecurityAdvisoryDetails")
                .build())
            .organizations(TamAdvisoryDefinitionOrganizationArgs.builder()
                .objectType("organization.Organization")
                .moid(organization)
                .build())
            .build());
    }
}
configuration:
  organization:
    type: string
resources:
  tamAdvisoryDefinition:
    type: intersight:TamAdvisoryDefinition
    properties:
      state: ready
      severities:
        - objectType: tam.SecurityAdvisoryDetails
      actions:
        - operationType: create
          name: tam_security_advisories1
          type: restApi
          objectType: tam.SecurityAdvisoryDetails
          alertType: psirt
      type: securityAdvisory
      apiDataSources:
        - objectType: tam.ApiDataSource
          name: api_data_source_1
          type: intersightApi
      advisoryDetails:
        - objectType: tam.SecurityAdvisoryDetails
          description: tam security advisory
          classId: tam.SecurityAdvisoryDetails
      organizations:
        - objectType: organization.Organization
          moid: ${organization}
Allowed Types in AdditionalProperties
tam.EolAdvisoryDetails
Details pertaining to the milestone defined by an end-of-life (EOL) milestone advisory.
- all_milestones:(Array) This complex property has following sub-properties:- date:(string) Date when the specified end-of-life milestone advisory is reached.
- description:(string) A description of the milestone defined by an end-of-life advisory.
- end_offset:(int) Number of days (exclusive) relative to the milestone date when the milestone is considered to be not in effect. A nagative number indicates number of days ahead of the milestone date. The default is 2147483647 (0x7FFFFFFF) which means the milestone date range’s upper bound is omitted.
- label_hint:(string) Extra hint to the type of label to be used in display in addition to severity and effective date. How to use it is at UI’s descretion.*- upcoming- This end-of-life (EOL) milestone is upcoming. The label may be changed to more urgent type such as ‘imminent’ as time progress approaching effective date.*- imminent- This end-of-life (EOL) milestone is imminent. There will be no label change before the effective date.*- past- This end-of-life (EOL) milestone has past the effective date.*- info- This end-of-life (EOL) milestone for informative purpose.
- milestone_type:(string) Milestone type as defined in Cisco end-of-life (EOL) policy (https://www.cisco.com/c/en/us/products/eos-eol-policy.html) when the specified end-of-life milestone advisory is reached.*- unknown- The type of end-of-life milestone is not defined.*- endOfSoftwareMaintenanceDate- The last date that Cisco Engineering may release any final software maintenance releases or bug fixes. After this date, Cisco Engineering may no longer develop, repair, maintain, or test the product software and only critical security updates will be provided on this release train. *- lastDateOfSupport- The last date to receive service and support for the software. After this date, all support services for the software are unavailable, and the software becomes obsolete. *- endOfLifeAnnouncementDate- The date the document that announces the end-of-sale and end-of-life of a product is distributed to the general public.
- name:(string) A milestone defined by an end-of-life advisory.
- object_type:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
- start_offset:(int) Number of days (inclusive) relative to the milestone date when the milestone is considered to be in effect. A nagative number indicates number of days ahead of the milestone date. The default is 0 which means the milestone take effect exactly on the same date as the specified milestone date. A negative value of -2147483648 (0x80000000) indicates the milestone date range’s lower bound is omitted.
 
- milestone:(HashMap) - A end-of-life advisory milestone as defined in Cisco end-of-life (EOL) policy (https://www.cisco.com/c/en/us/products/eos-eol-policy.html). This complex property has following sub-properties:- date:(string) Date when the specified end-of-life milestone advisory is reached.
- description:(string) A description of the milestone defined by an end-of-life advisory.
- end_offset:(int) Number of days (exclusive) relative to the milestone date when the milestone is considered to be not in effect. A nagative number indicates number of days ahead of the milestone date. The default is 2147483647 (0x7FFFFFFF) which means the milestone date range’s upper bound is omitted.
- label_hint:(string) Extra hint to the type of label to be used in display in addition to severity and effective date. How to use it is at UI’s descretion.*- upcoming- This end-of-life (EOL) milestone is upcoming. The label may be changed to more urgent type such as ‘imminent’ as time progress approaching effective date.*- imminent- This end-of-life (EOL) milestone is imminent. There will be no label change before the effective date.*- past- This end-of-life (EOL) milestone has past the effective date.*- info- This end-of-life (EOL) milestone for informative purpose.
- milestone_type:(string) Milestone type as defined in Cisco end-of-life (EOL) policy (https://www.cisco.com/c/en/us/products/eos-eol-policy.html) when the specified end-of-life milestone advisory is reached.*- unknown- The type of end-of-life milestone is not defined.*- endOfSoftwareMaintenanceDate- The last date that Cisco Engineering may release any final software maintenance releases or bug fixes. After this date, Cisco Engineering may no longer develop, repair, maintain, or test the product software and only critical security updates will be provided on this release train. *- lastDateOfSupport- The last date to receive service and support for the software. After this date, all support services for the software are unavailable, and the software becomes obsolete. *- endOfLifeAnnouncementDate- The date the document that announces the end-of-sale and end-of-life of a product is distributed to the general public.
- name:(string) A milestone defined by an end-of-life advisory.
- object_type:(string) The fully-qualified name of the instantiated, concrete type.The value should be the same as the ‘ClassId’ property.
- start_offset:(int) Number of days (inclusive) relative to the milestone date when the milestone is considered to be in effect. A nagative number indicates number of days ahead of the milestone date. The default is 0 which means the milestone take effect exactly on the same date as the specified milestone date. A negative value of -2147483648 (0x80000000) indicates the milestone date range’s lower bound is omitted.
 
- release:(string) The name of the impacted release this advisory milestone intends to address, e.g. \ 3.5 (2x)\ .
tam.SecurityAdvisoryDetails
Details pertaining to a security advisory defined by a given advisory.
- base_score:(float) CVSS version 3 base score for the security Advisory.
- cve_ids: (Array of schema.TypeString) -
- environmental_score:(float) CVSS version 3 environmental score for the security Advisory.
- status:(string) Cisco assigned status of the published advisory. Depends on whether the investigation is complete or on-going.*- interim- The Cisco investigation for the advisory is ongoing. Cisco will issue revisions to the advisory when additional information, including fixed software release data, becomes available.*- final- Cisco has completed its evaluation of the vulnerability described in the advisory. There will be no further updates unless there is a material change in the nature of the vulnerability.
- temporal_score:(float) CVSS version 3 temporal score for the security Advisory.
Create TamAdvisoryDefinition Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TamAdvisoryDefinition(name: string, args?: TamAdvisoryDefinitionArgs, opts?: CustomResourceOptions);@overload
def TamAdvisoryDefinition(resource_name: str,
                          args: Optional[TamAdvisoryDefinitionArgs] = None,
                          opts: Optional[ResourceOptions] = None)
@overload
def TamAdvisoryDefinition(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          account_moid: Optional[str] = None,
                          actions: Optional[Sequence[TamAdvisoryDefinitionActionArgs]] = None,
                          additional_properties: Optional[str] = None,
                          advisory_details: Optional[Sequence[TamAdvisoryDefinitionAdvisoryDetailArgs]] = None,
                          advisory_id: Optional[str] = None,
                          ancestors: Optional[Sequence[TamAdvisoryDefinitionAncestorArgs]] = None,
                          api_data_sources: Optional[Sequence[TamAdvisoryDefinitionApiDataSourceArgs]] = None,
                          class_id: Optional[str] = None,
                          create_time: Optional[str] = None,
                          date_published: Optional[str] = None,
                          date_updated: Optional[str] = None,
                          description: Optional[str] = None,
                          domain_group_moid: Optional[str] = None,
                          execute_on_pod: Optional[str] = None,
                          external_url: Optional[str] = None,
                          mod_time: Optional[str] = None,
                          moid: Optional[str] = None,
                          name: Optional[str] = None,
                          nr_version: Optional[str] = None,
                          object_type: Optional[str] = None,
                          organizations: Optional[Sequence[TamAdvisoryDefinitionOrganizationArgs]] = None,
                          other_ref_urls: Optional[Sequence[str]] = None,
                          owners: Optional[Sequence[str]] = None,
                          parents: Optional[Sequence[TamAdvisoryDefinitionParentArgs]] = None,
                          permission_resources: Optional[Sequence[TamAdvisoryDefinitionPermissionResourceArgs]] = None,
                          recommendation: Optional[str] = None,
                          s3_data_sources: Optional[Sequence[TamAdvisoryDefinitionS3DataSourceArgs]] = None,
                          severities: Optional[Sequence[TamAdvisoryDefinitionSeverityArgs]] = None,
                          shared_scope: Optional[str] = None,
                          state: Optional[str] = None,
                          tags: Optional[Sequence[TamAdvisoryDefinitionTagArgs]] = None,
                          tam_advisory_definition_id: Optional[str] = None,
                          type: Optional[str] = None,
                          version_contexts: Optional[Sequence[TamAdvisoryDefinitionVersionContextArgs]] = None,
                          workaround: Optional[str] = None)func NewTamAdvisoryDefinition(ctx *Context, name string, args *TamAdvisoryDefinitionArgs, opts ...ResourceOption) (*TamAdvisoryDefinition, error)public TamAdvisoryDefinition(string name, TamAdvisoryDefinitionArgs? args = null, CustomResourceOptions? opts = null)
public TamAdvisoryDefinition(String name, TamAdvisoryDefinitionArgs args)
public TamAdvisoryDefinition(String name, TamAdvisoryDefinitionArgs args, CustomResourceOptions options)
type: intersight:TamAdvisoryDefinition
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TamAdvisoryDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TamAdvisoryDefinitionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TamAdvisoryDefinitionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TamAdvisoryDefinitionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TamAdvisoryDefinitionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var tamAdvisoryDefinitionResource = new Intersight.TamAdvisoryDefinition("tamAdvisoryDefinitionResource", new()
{
    AccountMoid = "string",
    Actions = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionActionArgs
        {
            AdditionalProperties = "string",
            AffectedObjectType = "string",
            AlertType = "string",
            ClassId = "string",
            Identifiers = new[]
            {
                new Intersight.Inputs.TamAdvisoryDefinitionActionIdentifierArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Name = "string",
                    ObjectType = "string",
                    Value = "string",
                },
            },
            Name = "string",
            ObjectType = "string",
            OperationType = "string",
            Queries = new[]
            {
                new Intersight.Inputs.TamAdvisoryDefinitionActionQueryArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Name = "string",
                    ObjectType = "string",
                    Priority = 0,
                    Query = "string",
                },
            },
            Type = "string",
        },
    },
    AdditionalProperties = "string",
    AdvisoryDetails = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionAdvisoryDetailArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Description = "string",
            ObjectType = "string",
        },
    },
    AdvisoryId = "string",
    Ancestors = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionAncestorArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    ApiDataSources = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionApiDataSourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            MoType = "string",
            Name = "string",
            ObjectType = "string",
            Queries = new[]
            {
                new Intersight.Inputs.TamAdvisoryDefinitionApiDataSourceQueryArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Name = "string",
                    ObjectType = "string",
                    Priority = 0,
                    Query = "string",
                },
            },
            Type = "string",
        },
    },
    ClassId = "string",
    CreateTime = "string",
    DatePublished = "string",
    DateUpdated = "string",
    Description = "string",
    DomainGroupMoid = "string",
    ExecuteOnPod = "string",
    ExternalUrl = "string",
    ModTime = "string",
    Moid = "string",
    Name = "string",
    NrVersion = "string",
    ObjectType = "string",
    Organizations = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionOrganizationArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    OtherRefUrls = new[]
    {
        "string",
    },
    Owners = new[]
    {
        "string",
    },
    Parents = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionParentArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    PermissionResources = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionPermissionResourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Moid = "string",
            ObjectType = "string",
            Selector = "string",
        },
    },
    Recommendation = "string",
    S3DataSources = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionS3DataSourceArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            Name = "string",
            ObjectType = "string",
            Queries = new[]
            {
                new Intersight.Inputs.TamAdvisoryDefinitionS3DataSourceQueryArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Name = "string",
                    ObjectType = "string",
                    Priority = 0,
                    Query = "string",
                },
            },
            S3Path = "string",
            Type = "string",
        },
    },
    Severities = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionSeverityArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            ObjectType = "string",
        },
    },
    SharedScope = "string",
    State = "string",
    Tags = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionTagArgs
        {
            AdditionalProperties = "string",
            Key = "string",
            Value = "string",
        },
    },
    TamAdvisoryDefinitionId = "string",
    Type = "string",
    VersionContexts = new[]
    {
        new Intersight.Inputs.TamAdvisoryDefinitionVersionContextArgs
        {
            AdditionalProperties = "string",
            ClassId = "string",
            InterestedMos = new[]
            {
                new Intersight.Inputs.TamAdvisoryDefinitionVersionContextInterestedMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            MarkedForDeletion = false,
            NrVersion = "string",
            ObjectType = "string",
            RefMos = new[]
            {
                new Intersight.Inputs.TamAdvisoryDefinitionVersionContextRefMoArgs
                {
                    AdditionalProperties = "string",
                    ClassId = "string",
                    Moid = "string",
                    ObjectType = "string",
                    Selector = "string",
                },
            },
            Timestamp = "string",
            VersionType = "string",
        },
    },
    Workaround = "string",
});
example, err := intersight.NewTamAdvisoryDefinition(ctx, "tamAdvisoryDefinitionResource", &intersight.TamAdvisoryDefinitionArgs{
	AccountMoid: pulumi.String("string"),
	Actions: intersight.TamAdvisoryDefinitionActionArray{
		&intersight.TamAdvisoryDefinitionActionArgs{
			AdditionalProperties: pulumi.String("string"),
			AffectedObjectType:   pulumi.String("string"),
			AlertType:            pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Identifiers: intersight.TamAdvisoryDefinitionActionIdentifierArray{
				&intersight.TamAdvisoryDefinitionActionIdentifierArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Name:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Value:                pulumi.String("string"),
				},
			},
			Name:          pulumi.String("string"),
			ObjectType:    pulumi.String("string"),
			OperationType: pulumi.String("string"),
			Queries: intersight.TamAdvisoryDefinitionActionQueryArray{
				&intersight.TamAdvisoryDefinitionActionQueryArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Name:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Priority:             pulumi.Float64(0),
					Query:                pulumi.String("string"),
				},
			},
			Type: pulumi.String("string"),
		},
	},
	AdditionalProperties: pulumi.String("string"),
	AdvisoryDetails: intersight.TamAdvisoryDefinitionAdvisoryDetailArray{
		&intersight.TamAdvisoryDefinitionAdvisoryDetailArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Description:          pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
		},
	},
	AdvisoryId: pulumi.String("string"),
	Ancestors: intersight.TamAdvisoryDefinitionAncestorArray{
		&intersight.TamAdvisoryDefinitionAncestorArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	ApiDataSources: intersight.TamAdvisoryDefinitionApiDataSourceArray{
		&intersight.TamAdvisoryDefinitionApiDataSourceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			MoType:               pulumi.String("string"),
			Name:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Queries: intersight.TamAdvisoryDefinitionApiDataSourceQueryArray{
				&intersight.TamAdvisoryDefinitionApiDataSourceQueryArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Name:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Priority:             pulumi.Float64(0),
					Query:                pulumi.String("string"),
				},
			},
			Type: pulumi.String("string"),
		},
	},
	ClassId:         pulumi.String("string"),
	CreateTime:      pulumi.String("string"),
	DatePublished:   pulumi.String("string"),
	DateUpdated:     pulumi.String("string"),
	Description:     pulumi.String("string"),
	DomainGroupMoid: pulumi.String("string"),
	ExecuteOnPod:    pulumi.String("string"),
	ExternalUrl:     pulumi.String("string"),
	ModTime:         pulumi.String("string"),
	Moid:            pulumi.String("string"),
	Name:            pulumi.String("string"),
	NrVersion:       pulumi.String("string"),
	ObjectType:      pulumi.String("string"),
	Organizations: intersight.TamAdvisoryDefinitionOrganizationArray{
		&intersight.TamAdvisoryDefinitionOrganizationArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	OtherRefUrls: pulumi.StringArray{
		pulumi.String("string"),
	},
	Owners: pulumi.StringArray{
		pulumi.String("string"),
	},
	Parents: intersight.TamAdvisoryDefinitionParentArray{
		&intersight.TamAdvisoryDefinitionParentArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	PermissionResources: intersight.TamAdvisoryDefinitionPermissionResourceArray{
		&intersight.TamAdvisoryDefinitionPermissionResourceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Moid:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Selector:             pulumi.String("string"),
		},
	},
	Recommendation: pulumi.String("string"),
	S3DataSources: intersight.TamAdvisoryDefinitionS3DataSourceArray{
		&intersight.TamAdvisoryDefinitionS3DataSourceArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			Name:                 pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
			Queries: intersight.TamAdvisoryDefinitionS3DataSourceQueryArray{
				&intersight.TamAdvisoryDefinitionS3DataSourceQueryArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Name:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Priority:             pulumi.Float64(0),
					Query:                pulumi.String("string"),
				},
			},
			S3Path: pulumi.String("string"),
			Type:   pulumi.String("string"),
		},
	},
	Severities: intersight.TamAdvisoryDefinitionSeverityArray{
		&intersight.TamAdvisoryDefinitionSeverityArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			ObjectType:           pulumi.String("string"),
		},
	},
	SharedScope: pulumi.String("string"),
	State:       pulumi.String("string"),
	Tags: intersight.TamAdvisoryDefinitionTagArray{
		&intersight.TamAdvisoryDefinitionTagArgs{
			AdditionalProperties: pulumi.String("string"),
			Key:                  pulumi.String("string"),
			Value:                pulumi.String("string"),
		},
	},
	TamAdvisoryDefinitionId: pulumi.String("string"),
	Type:                    pulumi.String("string"),
	VersionContexts: intersight.TamAdvisoryDefinitionVersionContextArray{
		&intersight.TamAdvisoryDefinitionVersionContextArgs{
			AdditionalProperties: pulumi.String("string"),
			ClassId:              pulumi.String("string"),
			InterestedMos: intersight.TamAdvisoryDefinitionVersionContextInterestedMoArray{
				&intersight.TamAdvisoryDefinitionVersionContextInterestedMoArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Moid:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Selector:             pulumi.String("string"),
				},
			},
			MarkedForDeletion: pulumi.Bool(false),
			NrVersion:         pulumi.String("string"),
			ObjectType:        pulumi.String("string"),
			RefMos: intersight.TamAdvisoryDefinitionVersionContextRefMoArray{
				&intersight.TamAdvisoryDefinitionVersionContextRefMoArgs{
					AdditionalProperties: pulumi.String("string"),
					ClassId:              pulumi.String("string"),
					Moid:                 pulumi.String("string"),
					ObjectType:           pulumi.String("string"),
					Selector:             pulumi.String("string"),
				},
			},
			Timestamp:   pulumi.String("string"),
			VersionType: pulumi.String("string"),
		},
	},
	Workaround: pulumi.String("string"),
})
var tamAdvisoryDefinitionResource = new TamAdvisoryDefinition("tamAdvisoryDefinitionResource", TamAdvisoryDefinitionArgs.builder()
    .accountMoid("string")
    .actions(TamAdvisoryDefinitionActionArgs.builder()
        .additionalProperties("string")
        .affectedObjectType("string")
        .alertType("string")
        .classId("string")
        .identifiers(TamAdvisoryDefinitionActionIdentifierArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .name("string")
            .objectType("string")
            .value("string")
            .build())
        .name("string")
        .objectType("string")
        .operationType("string")
        .queries(TamAdvisoryDefinitionActionQueryArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .name("string")
            .objectType("string")
            .priority(0.0)
            .query("string")
            .build())
        .type("string")
        .build())
    .additionalProperties("string")
    .advisoryDetails(TamAdvisoryDefinitionAdvisoryDetailArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .description("string")
        .objectType("string")
        .build())
    .advisoryId("string")
    .ancestors(TamAdvisoryDefinitionAncestorArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .apiDataSources(TamAdvisoryDefinitionApiDataSourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moType("string")
        .name("string")
        .objectType("string")
        .queries(TamAdvisoryDefinitionApiDataSourceQueryArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .name("string")
            .objectType("string")
            .priority(0.0)
            .query("string")
            .build())
        .type("string")
        .build())
    .classId("string")
    .createTime("string")
    .datePublished("string")
    .dateUpdated("string")
    .description("string")
    .domainGroupMoid("string")
    .executeOnPod("string")
    .externalUrl("string")
    .modTime("string")
    .moid("string")
    .name("string")
    .nrVersion("string")
    .objectType("string")
    .organizations(TamAdvisoryDefinitionOrganizationArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .otherRefUrls("string")
    .owners("string")
    .parents(TamAdvisoryDefinitionParentArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .permissionResources(TamAdvisoryDefinitionPermissionResourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .moid("string")
        .objectType("string")
        .selector("string")
        .build())
    .recommendation("string")
    .s3DataSources(TamAdvisoryDefinitionS3DataSourceArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .name("string")
        .objectType("string")
        .queries(TamAdvisoryDefinitionS3DataSourceQueryArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .name("string")
            .objectType("string")
            .priority(0.0)
            .query("string")
            .build())
        .s3Path("string")
        .type("string")
        .build())
    .severities(TamAdvisoryDefinitionSeverityArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .objectType("string")
        .build())
    .sharedScope("string")
    .state("string")
    .tags(TamAdvisoryDefinitionTagArgs.builder()
        .additionalProperties("string")
        .key("string")
        .value("string")
        .build())
    .tamAdvisoryDefinitionId("string")
    .type("string")
    .versionContexts(TamAdvisoryDefinitionVersionContextArgs.builder()
        .additionalProperties("string")
        .classId("string")
        .interestedMos(TamAdvisoryDefinitionVersionContextInterestedMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .markedForDeletion(false)
        .nrVersion("string")
        .objectType("string")
        .refMos(TamAdvisoryDefinitionVersionContextRefMoArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .timestamp("string")
        .versionType("string")
        .build())
    .workaround("string")
    .build());
tam_advisory_definition_resource = intersight.TamAdvisoryDefinition("tamAdvisoryDefinitionResource",
    account_moid="string",
    actions=[{
        "additional_properties": "string",
        "affected_object_type": "string",
        "alert_type": "string",
        "class_id": "string",
        "identifiers": [{
            "additional_properties": "string",
            "class_id": "string",
            "name": "string",
            "object_type": "string",
            "value": "string",
        }],
        "name": "string",
        "object_type": "string",
        "operation_type": "string",
        "queries": [{
            "additional_properties": "string",
            "class_id": "string",
            "name": "string",
            "object_type": "string",
            "priority": 0,
            "query": "string",
        }],
        "type": "string",
    }],
    additional_properties="string",
    advisory_details=[{
        "additional_properties": "string",
        "class_id": "string",
        "description": "string",
        "object_type": "string",
    }],
    advisory_id="string",
    ancestors=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    api_data_sources=[{
        "additional_properties": "string",
        "class_id": "string",
        "mo_type": "string",
        "name": "string",
        "object_type": "string",
        "queries": [{
            "additional_properties": "string",
            "class_id": "string",
            "name": "string",
            "object_type": "string",
            "priority": 0,
            "query": "string",
        }],
        "type": "string",
    }],
    class_id="string",
    create_time="string",
    date_published="string",
    date_updated="string",
    description="string",
    domain_group_moid="string",
    execute_on_pod="string",
    external_url="string",
    mod_time="string",
    moid="string",
    name="string",
    nr_version="string",
    object_type="string",
    organizations=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    other_ref_urls=["string"],
    owners=["string"],
    parents=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    permission_resources=[{
        "additional_properties": "string",
        "class_id": "string",
        "moid": "string",
        "object_type": "string",
        "selector": "string",
    }],
    recommendation="string",
    s3_data_sources=[{
        "additional_properties": "string",
        "class_id": "string",
        "name": "string",
        "object_type": "string",
        "queries": [{
            "additional_properties": "string",
            "class_id": "string",
            "name": "string",
            "object_type": "string",
            "priority": 0,
            "query": "string",
        }],
        "s3_path": "string",
        "type": "string",
    }],
    severities=[{
        "additional_properties": "string",
        "class_id": "string",
        "object_type": "string",
    }],
    shared_scope="string",
    state="string",
    tags=[{
        "additional_properties": "string",
        "key": "string",
        "value": "string",
    }],
    tam_advisory_definition_id="string",
    type="string",
    version_contexts=[{
        "additional_properties": "string",
        "class_id": "string",
        "interested_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "marked_for_deletion": False,
        "nr_version": "string",
        "object_type": "string",
        "ref_mos": [{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        "timestamp": "string",
        "version_type": "string",
    }],
    workaround="string")
const tamAdvisoryDefinitionResource = new intersight.TamAdvisoryDefinition("tamAdvisoryDefinitionResource", {
    accountMoid: "string",
    actions: [{
        additionalProperties: "string",
        affectedObjectType: "string",
        alertType: "string",
        classId: "string",
        identifiers: [{
            additionalProperties: "string",
            classId: "string",
            name: "string",
            objectType: "string",
            value: "string",
        }],
        name: "string",
        objectType: "string",
        operationType: "string",
        queries: [{
            additionalProperties: "string",
            classId: "string",
            name: "string",
            objectType: "string",
            priority: 0,
            query: "string",
        }],
        type: "string",
    }],
    additionalProperties: "string",
    advisoryDetails: [{
        additionalProperties: "string",
        classId: "string",
        description: "string",
        objectType: "string",
    }],
    advisoryId: "string",
    ancestors: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    apiDataSources: [{
        additionalProperties: "string",
        classId: "string",
        moType: "string",
        name: "string",
        objectType: "string",
        queries: [{
            additionalProperties: "string",
            classId: "string",
            name: "string",
            objectType: "string",
            priority: 0,
            query: "string",
        }],
        type: "string",
    }],
    classId: "string",
    createTime: "string",
    datePublished: "string",
    dateUpdated: "string",
    description: "string",
    domainGroupMoid: "string",
    executeOnPod: "string",
    externalUrl: "string",
    modTime: "string",
    moid: "string",
    name: "string",
    nrVersion: "string",
    objectType: "string",
    organizations: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    otherRefUrls: ["string"],
    owners: ["string"],
    parents: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    permissionResources: [{
        additionalProperties: "string",
        classId: "string",
        moid: "string",
        objectType: "string",
        selector: "string",
    }],
    recommendation: "string",
    s3DataSources: [{
        additionalProperties: "string",
        classId: "string",
        name: "string",
        objectType: "string",
        queries: [{
            additionalProperties: "string",
            classId: "string",
            name: "string",
            objectType: "string",
            priority: 0,
            query: "string",
        }],
        s3Path: "string",
        type: "string",
    }],
    severities: [{
        additionalProperties: "string",
        classId: "string",
        objectType: "string",
    }],
    sharedScope: "string",
    state: "string",
    tags: [{
        additionalProperties: "string",
        key: "string",
        value: "string",
    }],
    tamAdvisoryDefinitionId: "string",
    type: "string",
    versionContexts: [{
        additionalProperties: "string",
        classId: "string",
        interestedMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        markedForDeletion: false,
        nrVersion: "string",
        objectType: "string",
        refMos: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        timestamp: "string",
        versionType: "string",
    }],
    workaround: "string",
});
type: intersight:TamAdvisoryDefinition
properties:
    accountMoid: string
    actions:
        - additionalProperties: string
          affectedObjectType: string
          alertType: string
          classId: string
          identifiers:
            - additionalProperties: string
              classId: string
              name: string
              objectType: string
              value: string
          name: string
          objectType: string
          operationType: string
          queries:
            - additionalProperties: string
              classId: string
              name: string
              objectType: string
              priority: 0
              query: string
          type: string
    additionalProperties: string
    advisoryDetails:
        - additionalProperties: string
          classId: string
          description: string
          objectType: string
    advisoryId: string
    ancestors:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    apiDataSources:
        - additionalProperties: string
          classId: string
          moType: string
          name: string
          objectType: string
          queries:
            - additionalProperties: string
              classId: string
              name: string
              objectType: string
              priority: 0
              query: string
          type: string
    classId: string
    createTime: string
    datePublished: string
    dateUpdated: string
    description: string
    domainGroupMoid: string
    executeOnPod: string
    externalUrl: string
    modTime: string
    moid: string
    name: string
    nrVersion: string
    objectType: string
    organizations:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    otherRefUrls:
        - string
    owners:
        - string
    parents:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    permissionResources:
        - additionalProperties: string
          classId: string
          moid: string
          objectType: string
          selector: string
    recommendation: string
    s3DataSources:
        - additionalProperties: string
          classId: string
          name: string
          objectType: string
          queries:
            - additionalProperties: string
              classId: string
              name: string
              objectType: string
              priority: 0
              query: string
          s3Path: string
          type: string
    severities:
        - additionalProperties: string
          classId: string
          objectType: string
    sharedScope: string
    state: string
    tags:
        - additionalProperties: string
          key: string
          value: string
    tamAdvisoryDefinitionId: string
    type: string
    versionContexts:
        - additionalProperties: string
          classId: string
          interestedMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          markedForDeletion: false
          nrVersion: string
          objectType: string
          refMos:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
          timestamp: string
          versionType: string
    workaround: string
TamAdvisoryDefinition Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The TamAdvisoryDefinition resource accepts the following input properties:
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- Actions
List<TamAdvisory Definition Action> 
- This complex property has following sub-properties:
- AdditionalProperties string
- AdvisoryDetails List<TamAdvisory Definition Advisory Detail> 
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- AdvisoryId string
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- Ancestors
List<TamAdvisory Definition Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ApiData List<TamSources Advisory Definition Api Data Source> 
- This complex property has following sub-properties:
- 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.
- DatePublished string
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- DateUpdated string
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- Description string
- Brief description of the advisory details.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- 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/field-notice/end-of-life 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<TamAdvisory Definition Organization> 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- OtherRef List<string>Urls 
- (Array of schema.TypeString) -
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<TamAdvisory Definition Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources List<TamAdvisory Definition Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Recommendation string
- Recommended action to resolve the security advisory.
- S3DataSources List<TamAdvisory Definition S3Data Source> 
- This complex property has following sub-properties:
- Severities
List<TamAdvisory Definition Severity> 
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- State string
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- 
List<TamAdvisory Definition Tag> 
- This complex property has following sub-properties:
- TamAdvisory stringDefinition Id 
- Type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- VersionContexts List<TamAdvisory Definition Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workaround string
- Workarounds available for the advisory.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- Actions
[]TamAdvisory Definition Action Args 
- This complex property has following sub-properties:
- AdditionalProperties string
- AdvisoryDetails []TamAdvisory Definition Advisory Detail Args 
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- AdvisoryId string
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- Ancestors
[]TamAdvisory Definition Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ApiData []TamSources Advisory Definition Api Data Source Args 
- This complex property has following sub-properties:
- 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.
- DatePublished string
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- DateUpdated string
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- Description string
- Brief description of the advisory details.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- 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/field-notice/end-of-life 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
[]TamAdvisory Definition Organization Args 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- OtherRef []stringUrls 
- (Array of schema.TypeString) -
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]TamAdvisory Definition Parent Args 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources []TamAdvisory Definition Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Recommendation string
- Recommended action to resolve the security advisory.
- S3DataSources []TamAdvisory Definition S3Data Source Args 
- This complex property has following sub-properties:
- Severities
[]TamAdvisory Definition Severity Args 
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- State string
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- 
[]TamAdvisory Definition Tag Args 
- This complex property has following sub-properties:
- TamAdvisory stringDefinition Id 
- Type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- VersionContexts []TamAdvisory Definition Version Context Args 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workaround string
- Workarounds available for the advisory.
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- actions
List<TamAdvisory Definition Action> 
- This complex property has following sub-properties:
- additionalProperties String
- advisoryDetails List<TamAdvisory Definition Advisory Detail> 
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisoryId String
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
List<TamAdvisory Definition Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- apiData List<TamSources Advisory Definition Api Data Source> 
- This complex property has following sub-properties:
- 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.
- datePublished String
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- dateUpdated String
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- description String
- Brief description of the advisory details.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- 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/field-notice/end-of-life 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<TamAdvisory Definition Organization> 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- otherRef List<String>Urls 
- (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<TamAdvisory Definition Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources List<TamAdvisory Definition Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation String
- Recommended action to resolve the security advisory.
- s3DataSources List<TamAdvisory Definition S3Data Source> 
- This complex property has following sub-properties:
- severities
List<TamAdvisory Definition Severity> 
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state String
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- 
List<TamAdvisory Definition Tag> 
- This complex property has following sub-properties:
- tamAdvisory StringDefinition Id 
- type String
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- versionContexts List<TamAdvisory Definition Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround String
- Workarounds available for the advisory.
- accountMoid string
- (ReadOnly) The Account ID for this managed object.
- actions
TamAdvisory Definition Action[] 
- This complex property has following sub-properties:
- additionalProperties string
- advisoryDetails TamAdvisory Definition Advisory Detail[] 
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisoryId string
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
TamAdvisory Definition Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- apiData TamSources Advisory Definition Api Data Source[] 
- This complex property has following sub-properties:
- 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.
- datePublished string
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- dateUpdated string
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- description string
- Brief description of the advisory details.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- 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/field-notice/end-of-life 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
TamAdvisory Definition Organization[] 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- otherRef string[]Urls 
- (Array of schema.TypeString) -
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
TamAdvisory Definition Parent[] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources TamAdvisory Definition Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation string
- Recommended action to resolve the security advisory.
- s3DataSources TamAdvisory Definition S3Data Source[] 
- This complex property has following sub-properties:
- severities
TamAdvisory Definition Severity[] 
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state string
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- 
TamAdvisory Definition Tag[] 
- This complex property has following sub-properties:
- tamAdvisory stringDefinition Id 
- type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- versionContexts TamAdvisory Definition Version Context[] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround string
- Workarounds available for the advisory.
- account_moid str
- (ReadOnly) The Account ID for this managed object.
- actions
Sequence[TamAdvisory Definition Action Args] 
- This complex property has following sub-properties:
- additional_properties str
- advisory_details Sequence[TamAdvisory Definition Advisory Detail Args] 
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisory_id str
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
Sequence[TamAdvisory Definition Ancestor Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api_data_ Sequence[Tamsources Advisory Definition Api Data Source Args] 
- This complex property has following sub-properties:
- class_id str
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_time str
- (ReadOnly) The time when this managed object was created.
- date_published str
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- date_updated str
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- description str
- Brief description of the advisory details.
- domain_group_ strmoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- execute_on_ strpod 
- Orion pod on which this advisory should process.* tier1- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2- Advisory processing will be taken care in second advisory driver of multinode cluster.
- external_url str
- A link to an external URL describing security Advisory in more details.
- mod_time str
- (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- A user defined name for the Intersight Advisory.
- nr_version str
- Cisco assigned advisory/field-notice/end-of-life version after latest revision.
- object_type str
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[TamAdvisory Definition Organization Args] 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- other_ref_ Sequence[str]urls 
- (Array of schema.TypeString) -
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[TamAdvisory Definition Parent Args] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_resources Sequence[TamAdvisory Definition Permission Resource Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation str
- Recommended action to resolve the security advisory.
- s3_data_ Sequence[Tamsources Advisory Definition S3Data Source Args] 
- This complex property has following sub-properties:
- severities
Sequence[TamAdvisory Definition Severity Args] 
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state str
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- 
Sequence[TamAdvisory Definition Tag Args] 
- This complex property has following sub-properties:
- tam_advisory_ strdefinition_ id 
- type str
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- version_contexts Sequence[TamAdvisory Definition Version Context Args] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround str
- Workarounds available for the advisory.
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- actions List<Property Map>
- This complex property has following sub-properties:
- additionalProperties String
- advisoryDetails List<Property Map>
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisoryId String
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- apiData List<Property Map>Sources 
- This complex property has following sub-properties:
- 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.
- datePublished String
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- dateUpdated String
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- description String
- Brief description of the advisory details.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- 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/field-notice/end-of-life 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.
- s3DataSources List<Property Map>
- This complex property has following sub-properties:
- severities List<Property Map>
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state String
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- List<Property Map>
- This complex property has following sub-properties:
- tamAdvisory StringDefinition Id 
- type String
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- 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 TamAdvisoryDefinition resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing TamAdvisoryDefinition Resource
Get an existing TamAdvisoryDefinition resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TamAdvisoryDefinitionState, opts?: CustomResourceOptions): TamAdvisoryDefinition@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        account_moid: Optional[str] = None,
        actions: Optional[Sequence[TamAdvisoryDefinitionActionArgs]] = None,
        additional_properties: Optional[str] = None,
        advisory_details: Optional[Sequence[TamAdvisoryDefinitionAdvisoryDetailArgs]] = None,
        advisory_id: Optional[str] = None,
        ancestors: Optional[Sequence[TamAdvisoryDefinitionAncestorArgs]] = None,
        api_data_sources: Optional[Sequence[TamAdvisoryDefinitionApiDataSourceArgs]] = None,
        class_id: Optional[str] = None,
        create_time: Optional[str] = None,
        date_published: Optional[str] = None,
        date_updated: Optional[str] = None,
        description: Optional[str] = None,
        domain_group_moid: Optional[str] = None,
        execute_on_pod: Optional[str] = None,
        external_url: Optional[str] = None,
        mod_time: Optional[str] = None,
        moid: Optional[str] = None,
        name: Optional[str] = None,
        nr_version: Optional[str] = None,
        object_type: Optional[str] = None,
        organizations: Optional[Sequence[TamAdvisoryDefinitionOrganizationArgs]] = None,
        other_ref_urls: Optional[Sequence[str]] = None,
        owners: Optional[Sequence[str]] = None,
        parents: Optional[Sequence[TamAdvisoryDefinitionParentArgs]] = None,
        permission_resources: Optional[Sequence[TamAdvisoryDefinitionPermissionResourceArgs]] = None,
        recommendation: Optional[str] = None,
        s3_data_sources: Optional[Sequence[TamAdvisoryDefinitionS3DataSourceArgs]] = None,
        severities: Optional[Sequence[TamAdvisoryDefinitionSeverityArgs]] = None,
        shared_scope: Optional[str] = None,
        state: Optional[str] = None,
        tags: Optional[Sequence[TamAdvisoryDefinitionTagArgs]] = None,
        tam_advisory_definition_id: Optional[str] = None,
        type: Optional[str] = None,
        version_contexts: Optional[Sequence[TamAdvisoryDefinitionVersionContextArgs]] = None,
        workaround: Optional[str] = None) -> TamAdvisoryDefinitionfunc GetTamAdvisoryDefinition(ctx *Context, name string, id IDInput, state *TamAdvisoryDefinitionState, opts ...ResourceOption) (*TamAdvisoryDefinition, error)public static TamAdvisoryDefinition Get(string name, Input<string> id, TamAdvisoryDefinitionState? state, CustomResourceOptions? opts = null)public static TamAdvisoryDefinition get(String name, Output<String> id, TamAdvisoryDefinitionState state, CustomResourceOptions options)resources:  _:    type: intersight:TamAdvisoryDefinition    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- Actions
List<TamAdvisory Definition Action> 
- This complex property has following sub-properties:
- AdditionalProperties string
- AdvisoryDetails List<TamAdvisory Definition Advisory Detail> 
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- AdvisoryId string
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- Ancestors
List<TamAdvisory Definition Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ApiData List<TamSources Advisory Definition Api Data Source> 
- This complex property has following sub-properties:
- 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.
- DatePublished string
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- DateUpdated string
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- Description string
- Brief description of the advisory details.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- 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/field-notice/end-of-life 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<TamAdvisory Definition Organization> 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- OtherRef List<string>Urls 
- (Array of schema.TypeString) -
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<TamAdvisory Definition Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources List<TamAdvisory Definition Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Recommendation string
- Recommended action to resolve the security advisory.
- S3DataSources List<TamAdvisory Definition S3Data Source> 
- This complex property has following sub-properties:
- Severities
List<TamAdvisory Definition Severity> 
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- State string
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- 
List<TamAdvisory Definition Tag> 
- This complex property has following sub-properties:
- TamAdvisory stringDefinition Id 
- Type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- VersionContexts List<TamAdvisory Definition Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workaround string
- Workarounds available for the advisory.
- AccountMoid string
- (ReadOnly) The Account ID for this managed object.
- Actions
[]TamAdvisory Definition Action Args 
- This complex property has following sub-properties:
- AdditionalProperties string
- AdvisoryDetails []TamAdvisory Definition Advisory Detail Args 
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- AdvisoryId string
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- Ancestors
[]TamAdvisory Definition Ancestor Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- ApiData []TamSources Advisory Definition Api Data Source Args 
- This complex property has following sub-properties:
- 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.
- DatePublished string
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- DateUpdated string
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- Description string
- Brief description of the advisory details.
- DomainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- 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/field-notice/end-of-life 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
[]TamAdvisory Definition Organization Args 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- OtherRef []stringUrls 
- (Array of schema.TypeString) -
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]TamAdvisory Definition Parent Args 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- PermissionResources []TamAdvisory Definition Permission Resource Args 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Recommendation string
- Recommended action to resolve the security advisory.
- S3DataSources []TamAdvisory Definition S3Data Source Args 
- This complex property has following sub-properties:
- Severities
[]TamAdvisory Definition Severity Args 
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- State string
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- 
[]TamAdvisory Definition Tag Args 
- This complex property has following sub-properties:
- TamAdvisory stringDefinition Id 
- Type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- VersionContexts []TamAdvisory Definition Version Context Args 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Workaround string
- Workarounds available for the advisory.
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- actions
List<TamAdvisory Definition Action> 
- This complex property has following sub-properties:
- additionalProperties String
- advisoryDetails List<TamAdvisory Definition Advisory Detail> 
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisoryId String
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
List<TamAdvisory Definition Ancestor> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- apiData List<TamSources Advisory Definition Api Data Source> 
- This complex property has following sub-properties:
- 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.
- datePublished String
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- dateUpdated String
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- description String
- Brief description of the advisory details.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- 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/field-notice/end-of-life 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<TamAdvisory Definition Organization> 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- otherRef List<String>Urls 
- (Array of schema.TypeString) -
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<TamAdvisory Definition Parent> 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources List<TamAdvisory Definition Permission Resource> 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation String
- Recommended action to resolve the security advisory.
- s3DataSources List<TamAdvisory Definition S3Data Source> 
- This complex property has following sub-properties:
- severities
List<TamAdvisory Definition Severity> 
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state String
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- 
List<TamAdvisory Definition Tag> 
- This complex property has following sub-properties:
- tamAdvisory StringDefinition Id 
- type String
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- versionContexts List<TamAdvisory Definition Version Context> 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround String
- Workarounds available for the advisory.
- accountMoid string
- (ReadOnly) The Account ID for this managed object.
- actions
TamAdvisory Definition Action[] 
- This complex property has following sub-properties:
- additionalProperties string
- advisoryDetails TamAdvisory Definition Advisory Detail[] 
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisoryId string
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
TamAdvisory Definition Ancestor[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- apiData TamSources Advisory Definition Api Data Source[] 
- This complex property has following sub-properties:
- 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.
- datePublished string
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- dateUpdated string
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- description string
- Brief description of the advisory details.
- domainGroup stringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- 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/field-notice/end-of-life 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
TamAdvisory Definition Organization[] 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- otherRef string[]Urls 
- (Array of schema.TypeString) -
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
TamAdvisory Definition Parent[] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permissionResources TamAdvisory Definition Permission Resource[] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation string
- Recommended action to resolve the security advisory.
- s3DataSources TamAdvisory Definition S3Data Source[] 
- This complex property has following sub-properties:
- severities
TamAdvisory Definition Severity[] 
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state string
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- 
TamAdvisory Definition Tag[] 
- This complex property has following sub-properties:
- tamAdvisory stringDefinition Id 
- type string
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- versionContexts TamAdvisory Definition Version Context[] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround string
- Workarounds available for the advisory.
- account_moid str
- (ReadOnly) The Account ID for this managed object.
- actions
Sequence[TamAdvisory Definition Action Args] 
- This complex property has following sub-properties:
- additional_properties str
- advisory_details Sequence[TamAdvisory Definition Advisory Detail Args] 
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisory_id str
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors
Sequence[TamAdvisory Definition Ancestor Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- api_data_ Sequence[Tamsources Advisory Definition Api Data Source Args] 
- This complex property has following sub-properties:
- class_id str
- The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- create_time str
- (ReadOnly) The time when this managed object was created.
- date_published str
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- date_updated str
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- description str
- Brief description of the advisory details.
- domain_group_ strmoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- execute_on_ strpod 
- Orion pod on which this advisory should process.* tier1- Advisory processing will be taken care in first advisory driver of multinode cluster.*tier2- Advisory processing will be taken care in second advisory driver of multinode cluster.
- external_url str
- A link to an external URL describing security Advisory in more details.
- mod_time str
- (ReadOnly) The time when this managed object was last modified.
- moid str
- The unique identifier of this Managed Object instance.
- name str
- A user defined name for the Intersight Advisory.
- nr_version str
- Cisco assigned advisory/field-notice/end-of-life version after latest revision.
- object_type str
- The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Sequence[TamAdvisory Definition Organization Args] 
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- other_ref_ Sequence[str]urls 
- (Array of schema.TypeString) -
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[TamAdvisory Definition Parent Args] 
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_resources Sequence[TamAdvisory Definition Permission Resource Args] 
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- recommendation str
- Recommended action to resolve the security advisory.
- s3_data_ Sequence[Tamsources Advisory Definition S3Data Source Args] 
- This complex property has following sub-properties:
- severities
Sequence[TamAdvisory Definition Severity Args] 
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state str
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- 
Sequence[TamAdvisory Definition Tag Args] 
- This complex property has following sub-properties:
- tam_advisory_ strdefinition_ id 
- type str
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- version_contexts Sequence[TamAdvisory Definition Version Context Args] 
- (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- workaround str
- Workarounds available for the advisory.
- accountMoid String
- (ReadOnly) The Account ID for this managed object.
- actions List<Property Map>
- This complex property has following sub-properties:
- additionalProperties String
- advisoryDetails List<Property Map>
- Additional details for the advisory definition. For e.g. if the definition corresponds to a security advisory, the details regarding CVE ids and CVSS score would be available here. If the definition is for an end-of-life milestone, the details about the specific milestone will be included. This complex property has following sub-properties:
- advisoryId String
- Cisco generated identifier for the published security/field-notice/end-of-life advisory.
- ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- apiData List<Property Map>Sources 
- This complex property has following sub-properties:
- 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.
- datePublished String
- Date when the security/field-notice/end-of-life advisory was first published by Cisco.
- dateUpdated String
- Date when the security/field-notice/end-of-life advisory was last updated by Cisco.
- description String
- Brief description of the advisory details.
- domainGroup StringMoid 
- (ReadOnly) The DomainGroup ID for this managed object.
- 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/field-notice/end-of-life 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.
- s3DataSources List<Property Map>
- This complex property has following sub-properties:
- severities List<Property Map>
- Severity level of the Intersight Advisory. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- state String
- Current state of the advisory.* ready- Advisory has been evaluated. The affected devices would be analyzed and corresponding advisory instances would be created.*evaluating- Advisory is currently under evaluation. The affected devices would be analyzed but no advisory instances wouldbe created. The results of the analysis would be made available to Intersight engineering for evaluation and validation.
- List<Property Map>
- This complex property has following sub-properties:
- tamAdvisory StringDefinition Id 
- type String
- The type (field notice, security advisory, end-of-life milestone advisory etc.) of Intersight advisory.* securityAdvisory- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- 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
TamAdvisoryDefinitionAction, TamAdvisoryDefinitionActionArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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<TamAdvisory Definition Action Identifier> 
- This complex property has following sub-properties:
- Name string
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- 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<TamAdvisory Definition Action Query> 
- This complex property has following sub-properties:
- Type string
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.* restApi- Repesents the use of REST API for carrying out alert actions.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
[]TamAdvisory Definition Action Identifier 
- This complex property has following sub-properties:
- Name string
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- 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
[]TamAdvisory Definition Action Query 
- This complex property has following sub-properties:
- Type string
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.* restApi- Repesents the use of REST API for carrying out alert actions.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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<TamAdvisory Definition Action Identifier> 
- This complex property has following sub-properties:
- name String
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- 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<TamAdvisory Definition Action Query> 
- This complex property has following sub-properties:
- type String
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.* restApi- Repesents the use of REST API for carrying out alert actions.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
TamAdvisory Definition Action Identifier[] 
- This complex property has following sub-properties:
- name string
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- 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
TamAdvisory Definition Action Query[] 
- This complex property has following sub-properties:
- type string
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.* restApi- Repesents the use of REST API for carrying out alert actions.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- affected_object_ strtype 
- Type of the managed object that should be marked with an instance of the Alert (when operation type is create) or that should have an alert instance removed (when operation type is remove).
- alert_type str
- Alert type is used to denote the category of an Intersight alert (FieldNotice, equipment Fault etc.).* psirt- Respresents the psirt alert type (https://tools.cisco.com/security/center/publicationListing.x).*fieldNotice- Respresents the field notice alert type (https://www.cisco.com/c/en/us/support/web/tsd-products-field-notice-summary.html).*eolAdvisory- Represents product End of Life (EOL) type (https://www.cisco.com/c/en/us/products/eos-eol-policy.html).
- class_id str
- identifiers
Sequence[TamAdvisory Definition Action Identifier] 
- This complex property has following sub-properties:
- name str
- Uniquely identifies a given action among the set of actions corresponding to an advisory. Primarily used to store and compare results of subsequent iterations corresponding to the action queries.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- operation_type str
- Operation type for the alert action. An action is used to carry out the process of \ reacting\ to an alert condition. For e.g.in case of a fieldNotice alert, the intention may be to create a new alert (if the condition matches and there is no existing alert) or to remove an existing alert when the alert condition has been remedied.* create- Create an instance of AdvisoryInstance.*remove- Remove an instance of AdvisoryInstance.
- queries
Sequence[TamAdvisory Definition Action Query] 
- This complex property has following sub-properties:
- type str
- Type of Intersight alert. An alert in Intersight could be one of several kinds (FieldNotice, PSIRT etc.). Primarily used for filtering alerts based on the type.* restApi- Repesents the use of REST API for carrying out alert actions.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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.
TamAdvisoryDefinitionActionIdentifier, TamAdvisoryDefinitionActionIdentifierArgs          
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- name str
- Name of the filter paramter.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- value str
- Value of the filter paramter.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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.
TamAdvisoryDefinitionActionQuery, TamAdvisoryDefinitionActionQueryArgs          
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- name str
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority float
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query str
- A SparkSQL query to be used on a given data source.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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.
TamAdvisoryDefinitionAdvisoryDetail, TamAdvisoryDefinitionAdvisoryDetailArgs          
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- ClassId string
- Description string
- Brief description of details specified for an advisory type.
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- ClassId string
- Description string
- Brief description of details specified for an advisory type.
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- classId String
- description String
- Brief description of details specified for an advisory type.
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- classId string
- description string
- Brief description of details specified for an advisory type.
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- description str
- Brief description of details specified for an advisory type.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- classId String
- description String
- Brief description of details specified for an advisory type.
- 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.
TamAdvisoryDefinitionAncestor, TamAdvisoryDefinitionAncestorArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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'.
TamAdvisoryDefinitionApiDataSource, TamAdvisoryDefinitionApiDataSourceArgs            
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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<TamAdvisory Definition Api Data Source Query> 
- This complex property has following sub-properties:
- Type string
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
[]TamAdvisory Definition Api Data Source Query 
- This complex property has following sub-properties:
- Type string
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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<TamAdvisory Definition Api Data Source Query> 
- This complex property has following sub-properties:
- type String
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
TamAdvisory Definition Api Data Source Query[] 
- This complex property has following sub-properties:
- type string
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- mo_type str
- Type of Intersight managed object used as data source.
- name str
- Name is used to unique identify and refer a given data source in an alert definition.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- queries
Sequence[TamAdvisory Definition Api Data Source Query] 
- This complex property has following sub-properties:
- type str
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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.
TamAdvisoryDefinitionApiDataSourceQuery, TamAdvisoryDefinitionApiDataSourceQueryArgs              
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- name str
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority float
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query str
- A SparkSQL query to be used on a given data source.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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.
TamAdvisoryDefinitionOrganization, TamAdvisoryDefinitionOrganizationArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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'.
TamAdvisoryDefinitionParent, TamAdvisoryDefinitionParentArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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'.
TamAdvisoryDefinitionPermissionResource, TamAdvisoryDefinitionPermissionResourceArgs          
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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'.
TamAdvisoryDefinitionS3DataSource, TamAdvisoryDefinitionS3DataSourceArgs          
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- ClassId string
- 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<TamAdvisory Definition S3Data Source Query> 
- This complex property has following sub-properties:
- S3Path string
- Path used to access file in s3 containing data.
- Type string
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- ClassId string
- 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
[]TamAdvisory Definition S3Data Source Query 
- This complex property has following sub-properties:
- S3Path string
- Path used to access file in s3 containing data.
- Type string
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- classId String
- 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<TamAdvisory Definition S3Data Source Query> 
- This complex property has following sub-properties:
- s3Path String
- Path used to access file in s3 containing data.
- type String
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- classId string
- 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
TamAdvisory Definition S3Data Source Query[] 
- This complex property has following sub-properties:
- s3Path string
- Path used to access file in s3 containing data.
- type string
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- name str
- Name is used to unique identify and refer a given data source in an alert definition.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- queries
Sequence[TamAdvisory Definition S3Data Source Query] 
- This complex property has following sub-properties:
- s3_path str
- Path used to access file in s3 containing data.
- type str
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- classId String
- 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:
- s3Path String
- Path used to access file in s3 containing data.
- type String
- Type of data source (for e.g. TextFsmTempalate based, Intersight API based etc.).* intersightApi- Collector type for this data collection is Intersight APIs.*nxos- Collector type for this data collection is NXOS.*s3File- Collector type for this data collection is a file in a cloud hosted object storage bucket.
TamAdvisoryDefinitionS3DataSourceQuery, TamAdvisoryDefinitionS3DataSourceQueryArgs            
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- name str
- Name is used to unique identify and result of the given query which can be used by subsequent queries as input data source.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- priority float
- An integer value depicting the priority of the query among the queries that are part of the same QueryEntry collection.
- query str
- A SparkSQL query to be used on a given data source.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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.
TamAdvisoryDefinitionSeverity, TamAdvisoryDefinitionSeverityArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.The enum values provides the list of concrete types that can be instantiated from this abstract type.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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.
TamAdvisoryDefinitionTag, TamAdvisoryDefinitionTagArgs        
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_properties str
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
TamAdvisoryDefinitionVersionContext, TamAdvisoryDefinitionVersionContextArgs          
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- ClassId string
- InterestedMos List<TamAdvisory Definition 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<TamAdvisory Definition Version Context Ref Mo> 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- ClassId string
- InterestedMos []TamAdvisory Definition 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 []TamAdvisory Definition Version Context Ref Mo 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- classId String
- interestedMos List<TamAdvisory Definition 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<TamAdvisory Definition Version Context Ref Mo> 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- classId string
- interestedMos TamAdvisory Definition 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 TamAdvisory Definition Version Context Ref Mo[] 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- interested_mos Sequence[TamAdvisory Definition Version Context Interested Mo] 
- This complex property has following sub-properties:
- marked_for_ booldeletion 
- (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_version str
- (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_type str
- The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_mos Sequence[TamAdvisory Definition Version Context Ref Mo] 
- (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_type str
- (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified- Version created every time an object is modified.*Configured- Version created every time an object is configured to the service profile.*Deployed- Version created for objects related to a service profile when it is deployed.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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.
TamAdvisoryDefinitionVersionContextInterestedMo, TamAdvisoryDefinitionVersionContextInterestedMoArgs              
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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'.
TamAdvisoryDefinitionVersionContextRefMo, TamAdvisoryDefinitionVersionContextRefMoArgs              
- AdditionalProperties string
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- class_id str
- moid str
- The Moid of the referenced REST resource.
- object_type str
- The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additionalProperties String
- Additional Properties as per object type, can be added as JSON using jsonencode(). Allowed Types are: tam.EolAdvisoryDetails tam.SecurityAdvisoryDetails
- 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_advisory_definition can be imported using the Moid of the object, e.g.
$ pulumi import intersight:index/tamAdvisoryDefinition:TamAdvisoryDefinition example 1234567890987654321abcde
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- intersight ciscodevnet/terraform-provider-intersight
- License
- Notes
- This Pulumi package is based on the intersightTerraform Provider.