1. Packages
  2. Intersight Provider
  3. API Docs
  4. SnmpPolicy
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

intersight.SnmpPolicy

Explore with Pulumi AI

intersight logo
intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet

    Policy to configure SNMP settings on endpoint.

    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 profile = config.require("profile");
    const snmp1 = new intersight.SnmpPolicy("snmp1", {
        description: "testing smtp policy",
        enabled: true,
        snmpPort: 1983,
        accessCommunityString: "dummy123",
        communityAccess: "Disabled",
        trapCommunity: "TrapCommunity",
        sysContact: "aanimish",
        sysLocation: "Karnataka",
        engineId: "vvb",
        snmpUsers: [{
            name: "demouser",
            privacyType: "AES",
            securityLevel: "AuthPriv",
            authType: "SHA",
            objectType: "snmp.User",
        }],
        snmpTraps: [{
            destination: "10.10.10.1",
            enabled: false,
            port: 660,
            type: "Trap",
            user: "demouser",
            nrVersion: "V3",
            objectType: "snmp.Trap",
        }],
        profiles: [{
            moid: profile,
            objectType: "server.Profile",
        }],
        organizations: [{
            objectType: "organization.Organization",
            moid: organization,
        }],
    });
    const authPassword = config.require("authPassword");
    const privacyPassword = config.require("privacyPassword");
    
    import pulumi
    import pulumi_intersight as intersight
    
    config = pulumi.Config()
    organization = config.require("organization")
    profile = config.require("profile")
    snmp1 = intersight.SnmpPolicy("snmp1",
        description="testing smtp policy",
        enabled=True,
        snmp_port=1983,
        access_community_string="dummy123",
        community_access="Disabled",
        trap_community="TrapCommunity",
        sys_contact="aanimish",
        sys_location="Karnataka",
        engine_id="vvb",
        snmp_users=[{
            "name": "demouser",
            "privacy_type": "AES",
            "security_level": "AuthPriv",
            "auth_type": "SHA",
            "object_type": "snmp.User",
        }],
        snmp_traps=[{
            "destination": "10.10.10.1",
            "enabled": False,
            "port": 660,
            "type": "Trap",
            "user": "demouser",
            "nr_version": "V3",
            "object_type": "snmp.Trap",
        }],
        profiles=[{
            "moid": profile,
            "object_type": "server.Profile",
        }],
        organizations=[{
            "object_type": "organization.Organization",
            "moid": organization,
        }])
    auth_password = config.require("authPassword")
    privacy_password = config.require("privacyPassword")
    
    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")
    		profile := cfg.Require("profile")
    		_, err := intersight.NewSnmpPolicy(ctx, "snmp1", &intersight.SnmpPolicyArgs{
    			Description:           pulumi.String("testing smtp policy"),
    			Enabled:               pulumi.Bool(true),
    			SnmpPort:              pulumi.Float64(1983),
    			AccessCommunityString: pulumi.String("dummy123"),
    			CommunityAccess:       pulumi.String("Disabled"),
    			TrapCommunity:         pulumi.String("TrapCommunity"),
    			SysContact:            pulumi.String("aanimish"),
    			SysLocation:           pulumi.String("Karnataka"),
    			EngineId:              pulumi.String("vvb"),
    			SnmpUsers: intersight.SnmpPolicySnmpUserArray{
    				&intersight.SnmpPolicySnmpUserArgs{
    					Name:          pulumi.String("demouser"),
    					PrivacyType:   pulumi.String("AES"),
    					SecurityLevel: pulumi.String("AuthPriv"),
    					AuthType:      pulumi.String("SHA"),
    					ObjectType:    pulumi.String("snmp.User"),
    				},
    			},
    			SnmpTraps: intersight.SnmpPolicySnmpTrapArray{
    				&intersight.SnmpPolicySnmpTrapArgs{
    					Destination: pulumi.String("10.10.10.1"),
    					Enabled:     pulumi.Bool(false),
    					Port:        pulumi.Float64(660),
    					Type:        pulumi.String("Trap"),
    					User:        pulumi.String("demouser"),
    					NrVersion:   pulumi.String("V3"),
    					ObjectType:  pulumi.String("snmp.Trap"),
    				},
    			},
    			Profiles: intersight.SnmpPolicyProfileArray{
    				&intersight.SnmpPolicyProfileArgs{
    					Moid:       pulumi.String(profile),
    					ObjectType: pulumi.String("server.Profile"),
    				},
    			},
    			Organizations: intersight.SnmpPolicyOrganizationArray{
    				&intersight.SnmpPolicyOrganizationArgs{
    					ObjectType: pulumi.String("organization.Organization"),
    					Moid:       pulumi.String(organization),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		authPassword := cfg.Require("authPassword")
    		privacyPassword := cfg.Require("privacyPassword")
    		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 profile = config.Require("profile");
        var snmp1 = new Intersight.SnmpPolicy("snmp1", new()
        {
            Description = "testing smtp policy",
            Enabled = true,
            SnmpPort = 1983,
            AccessCommunityString = "dummy123",
            CommunityAccess = "Disabled",
            TrapCommunity = "TrapCommunity",
            SysContact = "aanimish",
            SysLocation = "Karnataka",
            EngineId = "vvb",
            SnmpUsers = new[]
            {
                new Intersight.Inputs.SnmpPolicySnmpUserArgs
                {
                    Name = "demouser",
                    PrivacyType = "AES",
                    SecurityLevel = "AuthPriv",
                    AuthType = "SHA",
                    ObjectType = "snmp.User",
                },
            },
            SnmpTraps = new[]
            {
                new Intersight.Inputs.SnmpPolicySnmpTrapArgs
                {
                    Destination = "10.10.10.1",
                    Enabled = false,
                    Port = 660,
                    Type = "Trap",
                    User = "demouser",
                    NrVersion = "V3",
                    ObjectType = "snmp.Trap",
                },
            },
            Profiles = new[]
            {
                new Intersight.Inputs.SnmpPolicyProfileArgs
                {
                    Moid = profile,
                    ObjectType = "server.Profile",
                },
            },
            Organizations = new[]
            {
                new Intersight.Inputs.SnmpPolicyOrganizationArgs
                {
                    ObjectType = "organization.Organization",
                    Moid = organization,
                },
            },
        });
    
        var authPassword = config.Require("authPassword");
        var privacyPassword = config.Require("privacyPassword");
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.intersight.SnmpPolicy;
    import com.pulumi.intersight.SnmpPolicyArgs;
    import com.pulumi.intersight.inputs.SnmpPolicySnmpUserArgs;
    import com.pulumi.intersight.inputs.SnmpPolicySnmpTrapArgs;
    import com.pulumi.intersight.inputs.SnmpPolicyProfileArgs;
    import com.pulumi.intersight.inputs.SnmpPolicyOrganizationArgs;
    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");
            final var profile = config.get("profile");
            var snmp1 = new SnmpPolicy("snmp1", SnmpPolicyArgs.builder()
                .description("testing smtp policy")
                .enabled(true)
                .snmpPort(1983)
                .accessCommunityString("dummy123")
                .communityAccess("Disabled")
                .trapCommunity("TrapCommunity")
                .sysContact("aanimish")
                .sysLocation("Karnataka")
                .engineId("vvb")
                .snmpUsers(SnmpPolicySnmpUserArgs.builder()
                    .name("demouser")
                    .privacyType("AES")
                    .securityLevel("AuthPriv")
                    .authType("SHA")
                    .objectType("snmp.User")
                    .build())
                .snmpTraps(SnmpPolicySnmpTrapArgs.builder()
                    .destination("10.10.10.1")
                    .enabled(false)
                    .port(660)
                    .type("Trap")
                    .user("demouser")
                    .nrVersion("V3")
                    .objectType("snmp.Trap")
                    .build())
                .profiles(SnmpPolicyProfileArgs.builder()
                    .moid(profile)
                    .objectType("server.Profile")
                    .build())
                .organizations(SnmpPolicyOrganizationArgs.builder()
                    .objectType("organization.Organization")
                    .moid(organization)
                    .build())
                .build());
    
            final var authPassword = config.get("authPassword");
            final var privacyPassword = config.get("privacyPassword");
        }
    }
    
    configuration:
      authPassword:
        type: string
      privacyPassword:
        type: string
      organization:
        type: string
      profile:
        type: string
    resources:
      snmp1:
        type: intersight:SnmpPolicy
        properties:
          description: testing smtp policy
          enabled: true
          snmpPort: 1983
          accessCommunityString: dummy123
          communityAccess: Disabled
          trapCommunity: TrapCommunity
          sysContact: aanimish
          sysLocation: Karnataka
          engineId: vvb
          snmpUsers:
            - name: demouser
              privacyType: AES
              securityLevel: AuthPriv
              authType: SHA
              objectType: snmp.User
          snmpTraps:
            - destination: 10.10.10.1
              enabled: false
              port: 660
              type: Trap
              user: demouser
              nrVersion: V3
              objectType: snmp.Trap
          profiles:
            - moid: ${profile}
              objectType: server.Profile
          organizations:
            - objectType: organization.Organization
              moid: ${organization}
    

    Create SnmpPolicy Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SnmpPolicy(name: string, args?: SnmpPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def SnmpPolicy(resource_name: str,
                   args: Optional[SnmpPolicyArgs] = None,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def SnmpPolicy(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   access_community_string: Optional[str] = None,
                   account_moid: Optional[str] = None,
                   additional_properties: Optional[str] = None,
                   ancestors: Optional[Sequence[SnmpPolicyAncestorArgs]] = None,
                   class_id: Optional[str] = None,
                   community_access: Optional[str] = None,
                   create_time: Optional[str] = None,
                   description: Optional[str] = None,
                   domain_group_moid: Optional[str] = None,
                   enabled: Optional[bool] = None,
                   engine_id: Optional[str] = None,
                   mod_time: Optional[str] = None,
                   moid: Optional[str] = None,
                   name: Optional[str] = None,
                   object_type: Optional[str] = None,
                   organizations: Optional[Sequence[SnmpPolicyOrganizationArgs]] = None,
                   owners: Optional[Sequence[str]] = None,
                   parents: Optional[Sequence[SnmpPolicyParentArgs]] = None,
                   permission_resources: Optional[Sequence[SnmpPolicyPermissionResourceArgs]] = None,
                   profiles: Optional[Sequence[SnmpPolicyProfileArgs]] = None,
                   shared_scope: Optional[str] = None,
                   snmp_policy_id: Optional[str] = None,
                   snmp_port: Optional[float] = None,
                   snmp_traps: Optional[Sequence[SnmpPolicySnmpTrapArgs]] = None,
                   snmp_users: Optional[Sequence[SnmpPolicySnmpUserArgs]] = None,
                   sys_contact: Optional[str] = None,
                   sys_location: Optional[str] = None,
                   tags: Optional[Sequence[SnmpPolicyTagArgs]] = None,
                   trap_community: Optional[str] = None,
                   v2_enabled: Optional[bool] = None,
                   v3_enabled: Optional[bool] = None,
                   version_contexts: Optional[Sequence[SnmpPolicyVersionContextArgs]] = None)
    func NewSnmpPolicy(ctx *Context, name string, args *SnmpPolicyArgs, opts ...ResourceOption) (*SnmpPolicy, error)
    public SnmpPolicy(string name, SnmpPolicyArgs? args = null, CustomResourceOptions? opts = null)
    public SnmpPolicy(String name, SnmpPolicyArgs args)
    public SnmpPolicy(String name, SnmpPolicyArgs args, CustomResourceOptions options)
    
    type: intersight:SnmpPolicy
    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 SnmpPolicyArgs
    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 SnmpPolicyArgs
    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 SnmpPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SnmpPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SnmpPolicyArgs
    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 snmpPolicyResource = new Intersight.SnmpPolicy("snmpPolicyResource", new()
    {
        AccessCommunityString = "string",
        AccountMoid = "string",
        AdditionalProperties = "string",
        Ancestors = new[]
        {
            new Intersight.Inputs.SnmpPolicyAncestorArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        ClassId = "string",
        CommunityAccess = "string",
        CreateTime = "string",
        Description = "string",
        DomainGroupMoid = "string",
        Enabled = false,
        EngineId = "string",
        ModTime = "string",
        Moid = "string",
        Name = "string",
        ObjectType = "string",
        Organizations = new[]
        {
            new Intersight.Inputs.SnmpPolicyOrganizationArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Owners = new[]
        {
            "string",
        },
        Parents = new[]
        {
            new Intersight.Inputs.SnmpPolicyParentArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        PermissionResources = new[]
        {
            new Intersight.Inputs.SnmpPolicyPermissionResourceArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        Profiles = new[]
        {
            new Intersight.Inputs.SnmpPolicyProfileArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Moid = "string",
                ObjectType = "string",
                Selector = "string",
            },
        },
        SharedScope = "string",
        SnmpPolicyId = "string",
        SnmpPort = 0,
        SnmpTraps = new[]
        {
            new Intersight.Inputs.SnmpPolicySnmpTrapArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                Community = "string",
                Destination = "string",
                Enabled = false,
                NrVersion = "string",
                ObjectType = "string",
                Port = 0,
                SecurityLevel = "string",
                Type = "string",
                User = "string",
                VrfName = "string",
            },
        },
        SnmpUsers = new[]
        {
            new Intersight.Inputs.SnmpPolicySnmpUserArgs
            {
                AdditionalProperties = "string",
                AuthPassword = "string",
                AuthType = "string",
                ClassId = "string",
                IsAuthPasswordSet = false,
                IsPrivacyPasswordSet = false,
                Name = "string",
                ObjectType = "string",
                PrivacyPassword = "string",
                PrivacyType = "string",
                SecurityLevel = "string",
            },
        },
        SysContact = "string",
        SysLocation = "string",
        Tags = new[]
        {
            new Intersight.Inputs.SnmpPolicyTagArgs
            {
                AdditionalProperties = "string",
                Key = "string",
                Value = "string",
            },
        },
        TrapCommunity = "string",
        V2Enabled = false,
        V3Enabled = false,
        VersionContexts = new[]
        {
            new Intersight.Inputs.SnmpPolicyVersionContextArgs
            {
                AdditionalProperties = "string",
                ClassId = "string",
                InterestedMos = new[]
                {
                    new Intersight.Inputs.SnmpPolicyVersionContextInterestedMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                MarkedForDeletion = false,
                NrVersion = "string",
                ObjectType = "string",
                RefMos = new[]
                {
                    new Intersight.Inputs.SnmpPolicyVersionContextRefMoArgs
                    {
                        AdditionalProperties = "string",
                        ClassId = "string",
                        Moid = "string",
                        ObjectType = "string",
                        Selector = "string",
                    },
                },
                Timestamp = "string",
                VersionType = "string",
            },
        },
    });
    
    example, err := intersight.NewSnmpPolicy(ctx, "snmpPolicyResource", &intersight.SnmpPolicyArgs{
    	AccessCommunityString: pulumi.String("string"),
    	AccountMoid:           pulumi.String("string"),
    	AdditionalProperties:  pulumi.String("string"),
    	Ancestors: intersight.SnmpPolicyAncestorArray{
    		&intersight.SnmpPolicyAncestorArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	ClassId:         pulumi.String("string"),
    	CommunityAccess: pulumi.String("string"),
    	CreateTime:      pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	DomainGroupMoid: pulumi.String("string"),
    	Enabled:         pulumi.Bool(false),
    	EngineId:        pulumi.String("string"),
    	ModTime:         pulumi.String("string"),
    	Moid:            pulumi.String("string"),
    	Name:            pulumi.String("string"),
    	ObjectType:      pulumi.String("string"),
    	Organizations: intersight.SnmpPolicyOrganizationArray{
    		&intersight.SnmpPolicyOrganizationArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Owners: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Parents: intersight.SnmpPolicyParentArray{
    		&intersight.SnmpPolicyParentArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	PermissionResources: intersight.SnmpPolicyPermissionResourceArray{
    		&intersight.SnmpPolicyPermissionResourceArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	Profiles: intersight.SnmpPolicyProfileArray{
    		&intersight.SnmpPolicyProfileArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Moid:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Selector:             pulumi.String("string"),
    		},
    	},
    	SharedScope:  pulumi.String("string"),
    	SnmpPolicyId: pulumi.String("string"),
    	SnmpPort:     pulumi.Float64(0),
    	SnmpTraps: intersight.SnmpPolicySnmpTrapArray{
    		&intersight.SnmpPolicySnmpTrapArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			Community:            pulumi.String("string"),
    			Destination:          pulumi.String("string"),
    			Enabled:              pulumi.Bool(false),
    			NrVersion:            pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			Port:                 pulumi.Float64(0),
    			SecurityLevel:        pulumi.String("string"),
    			Type:                 pulumi.String("string"),
    			User:                 pulumi.String("string"),
    			VrfName:              pulumi.String("string"),
    		},
    	},
    	SnmpUsers: intersight.SnmpPolicySnmpUserArray{
    		&intersight.SnmpPolicySnmpUserArgs{
    			AdditionalProperties: pulumi.String("string"),
    			AuthPassword:         pulumi.String("string"),
    			AuthType:             pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			IsAuthPasswordSet:    pulumi.Bool(false),
    			IsPrivacyPasswordSet: pulumi.Bool(false),
    			Name:                 pulumi.String("string"),
    			ObjectType:           pulumi.String("string"),
    			PrivacyPassword:      pulumi.String("string"),
    			PrivacyType:          pulumi.String("string"),
    			SecurityLevel:        pulumi.String("string"),
    		},
    	},
    	SysContact:  pulumi.String("string"),
    	SysLocation: pulumi.String("string"),
    	Tags: intersight.SnmpPolicyTagArray{
    		&intersight.SnmpPolicyTagArgs{
    			AdditionalProperties: pulumi.String("string"),
    			Key:                  pulumi.String("string"),
    			Value:                pulumi.String("string"),
    		},
    	},
    	TrapCommunity: pulumi.String("string"),
    	V2Enabled:     pulumi.Bool(false),
    	V3Enabled:     pulumi.Bool(false),
    	VersionContexts: intersight.SnmpPolicyVersionContextArray{
    		&intersight.SnmpPolicyVersionContextArgs{
    			AdditionalProperties: pulumi.String("string"),
    			ClassId:              pulumi.String("string"),
    			InterestedMos: intersight.SnmpPolicyVersionContextInterestedMoArray{
    				&intersight.SnmpPolicyVersionContextInterestedMoArgs{
    					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.SnmpPolicyVersionContextRefMoArray{
    				&intersight.SnmpPolicyVersionContextRefMoArgs{
    					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"),
    		},
    	},
    })
    
    var snmpPolicyResource = new SnmpPolicy("snmpPolicyResource", SnmpPolicyArgs.builder()
        .accessCommunityString("string")
        .accountMoid("string")
        .additionalProperties("string")
        .ancestors(SnmpPolicyAncestorArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .classId("string")
        .communityAccess("string")
        .createTime("string")
        .description("string")
        .domainGroupMoid("string")
        .enabled(false)
        .engineId("string")
        .modTime("string")
        .moid("string")
        .name("string")
        .objectType("string")
        .organizations(SnmpPolicyOrganizationArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .owners("string")
        .parents(SnmpPolicyParentArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .permissionResources(SnmpPolicyPermissionResourceArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .profiles(SnmpPolicyProfileArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .moid("string")
            .objectType("string")
            .selector("string")
            .build())
        .sharedScope("string")
        .snmpPolicyId("string")
        .snmpPort(0)
        .snmpTraps(SnmpPolicySnmpTrapArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .community("string")
            .destination("string")
            .enabled(false)
            .nrVersion("string")
            .objectType("string")
            .port(0)
            .securityLevel("string")
            .type("string")
            .user("string")
            .vrfName("string")
            .build())
        .snmpUsers(SnmpPolicySnmpUserArgs.builder()
            .additionalProperties("string")
            .authPassword("string")
            .authType("string")
            .classId("string")
            .isAuthPasswordSet(false)
            .isPrivacyPasswordSet(false)
            .name("string")
            .objectType("string")
            .privacyPassword("string")
            .privacyType("string")
            .securityLevel("string")
            .build())
        .sysContact("string")
        .sysLocation("string")
        .tags(SnmpPolicyTagArgs.builder()
            .additionalProperties("string")
            .key("string")
            .value("string")
            .build())
        .trapCommunity("string")
        .v2Enabled(false)
        .v3Enabled(false)
        .versionContexts(SnmpPolicyVersionContextArgs.builder()
            .additionalProperties("string")
            .classId("string")
            .interestedMos(SnmpPolicyVersionContextInterestedMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .markedForDeletion(false)
            .nrVersion("string")
            .objectType("string")
            .refMos(SnmpPolicyVersionContextRefMoArgs.builder()
                .additionalProperties("string")
                .classId("string")
                .moid("string")
                .objectType("string")
                .selector("string")
                .build())
            .timestamp("string")
            .versionType("string")
            .build())
        .build());
    
    snmp_policy_resource = intersight.SnmpPolicy("snmpPolicyResource",
        access_community_string="string",
        account_moid="string",
        additional_properties="string",
        ancestors=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        class_id="string",
        community_access="string",
        create_time="string",
        description="string",
        domain_group_moid="string",
        enabled=False,
        engine_id="string",
        mod_time="string",
        moid="string",
        name="string",
        object_type="string",
        organizations=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "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",
        }],
        profiles=[{
            "additional_properties": "string",
            "class_id": "string",
            "moid": "string",
            "object_type": "string",
            "selector": "string",
        }],
        shared_scope="string",
        snmp_policy_id="string",
        snmp_port=0,
        snmp_traps=[{
            "additional_properties": "string",
            "class_id": "string",
            "community": "string",
            "destination": "string",
            "enabled": False,
            "nr_version": "string",
            "object_type": "string",
            "port": 0,
            "security_level": "string",
            "type": "string",
            "user": "string",
            "vrf_name": "string",
        }],
        snmp_users=[{
            "additional_properties": "string",
            "auth_password": "string",
            "auth_type": "string",
            "class_id": "string",
            "is_auth_password_set": False,
            "is_privacy_password_set": False,
            "name": "string",
            "object_type": "string",
            "privacy_password": "string",
            "privacy_type": "string",
            "security_level": "string",
        }],
        sys_contact="string",
        sys_location="string",
        tags=[{
            "additional_properties": "string",
            "key": "string",
            "value": "string",
        }],
        trap_community="string",
        v2_enabled=False,
        v3_enabled=False,
        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",
        }])
    
    const snmpPolicyResource = new intersight.SnmpPolicy("snmpPolicyResource", {
        accessCommunityString: "string",
        accountMoid: "string",
        additionalProperties: "string",
        ancestors: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        classId: "string",
        communityAccess: "string",
        createTime: "string",
        description: "string",
        domainGroupMoid: "string",
        enabled: false,
        engineId: "string",
        modTime: "string",
        moid: "string",
        name: "string",
        objectType: "string",
        organizations: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "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",
        }],
        profiles: [{
            additionalProperties: "string",
            classId: "string",
            moid: "string",
            objectType: "string",
            selector: "string",
        }],
        sharedScope: "string",
        snmpPolicyId: "string",
        snmpPort: 0,
        snmpTraps: [{
            additionalProperties: "string",
            classId: "string",
            community: "string",
            destination: "string",
            enabled: false,
            nrVersion: "string",
            objectType: "string",
            port: 0,
            securityLevel: "string",
            type: "string",
            user: "string",
            vrfName: "string",
        }],
        snmpUsers: [{
            additionalProperties: "string",
            authPassword: "string",
            authType: "string",
            classId: "string",
            isAuthPasswordSet: false,
            isPrivacyPasswordSet: false,
            name: "string",
            objectType: "string",
            privacyPassword: "string",
            privacyType: "string",
            securityLevel: "string",
        }],
        sysContact: "string",
        sysLocation: "string",
        tags: [{
            additionalProperties: "string",
            key: "string",
            value: "string",
        }],
        trapCommunity: "string",
        v2Enabled: false,
        v3Enabled: false,
        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",
        }],
    });
    
    type: intersight:SnmpPolicy
    properties:
        accessCommunityString: string
        accountMoid: string
        additionalProperties: string
        ancestors:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        classId: string
        communityAccess: string
        createTime: string
        description: string
        domainGroupMoid: string
        enabled: false
        engineId: string
        modTime: string
        moid: string
        name: string
        objectType: string
        organizations:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: 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
        profiles:
            - additionalProperties: string
              classId: string
              moid: string
              objectType: string
              selector: string
        sharedScope: string
        snmpPolicyId: string
        snmpPort: 0
        snmpTraps:
            - additionalProperties: string
              classId: string
              community: string
              destination: string
              enabled: false
              nrVersion: string
              objectType: string
              port: 0
              securityLevel: string
              type: string
              user: string
              vrfName: string
        snmpUsers:
            - additionalProperties: string
              authPassword: string
              authType: string
              classId: string
              isAuthPasswordSet: false
              isPrivacyPasswordSet: false
              name: string
              objectType: string
              privacyPassword: string
              privacyType: string
              securityLevel: string
        sysContact: string
        sysLocation: string
        tags:
            - additionalProperties: string
              key: string
              value: string
        trapCommunity: string
        v2Enabled: false
        v3Enabled: false
        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
    

    SnmpPolicy 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 SnmpPolicy resource accepts the following input properties:

    AccessCommunityString string
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<SnmpPolicyAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    CommunityAccess string
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    Description string
    Description of the policy.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    Enabled bool
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    EngineId string
    User-defined unique identification of the static engine.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the concrete policy.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations List<SnmpPolicyOrganization>
    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:
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<SnmpPolicyParent>
    (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<SnmpPolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles List<SnmpPolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    SharedScope 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.
    SnmpPolicyId string
    SnmpPort double
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    SnmpTraps List<SnmpPolicySnmpTrap>
    This complex property has following sub-properties:
    SnmpUsers List<SnmpPolicySnmpUser>
    This complex property has following sub-properties:
    SysContact string
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    SysLocation string
    Location of host on which the SNMP agent (server) runs.
    Tags List<SnmpPolicyTag>
    This complex property has following sub-properties:
    TrapCommunity string
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    V2Enabled bool
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    V3Enabled bool
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    VersionContexts List<SnmpPolicyVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    AccessCommunityString string
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []SnmpPolicyAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    CommunityAccess string
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    Description string
    Description of the policy.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    Enabled bool
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    EngineId string
    User-defined unique identification of the static engine.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the concrete policy.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations []SnmpPolicyOrganizationArgs
    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:
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []SnmpPolicyParentArgs
    (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 []SnmpPolicyPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles []SnmpPolicyProfileArgs
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    SharedScope 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.
    SnmpPolicyId string
    SnmpPort float64
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    SnmpTraps []SnmpPolicySnmpTrapArgs
    This complex property has following sub-properties:
    SnmpUsers []SnmpPolicySnmpUserArgs
    This complex property has following sub-properties:
    SysContact string
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    SysLocation string
    Location of host on which the SNMP agent (server) runs.
    Tags []SnmpPolicyTagArgs
    This complex property has following sub-properties:
    TrapCommunity string
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    V2Enabled bool
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    V3Enabled bool
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    VersionContexts []SnmpPolicyVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accessCommunityString String
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<SnmpPolicyAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    communityAccess String
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    createTime String
    (ReadOnly) The time when this managed object was created.
    description String
    Description of the policy.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    enabled Boolean
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    engineId String
    User-defined unique identification of the static engine.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the concrete policy.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<SnmpPolicyOrganization>
    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:
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<SnmpPolicyParent>
    (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<SnmpPolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles List<SnmpPolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    sharedScope 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.
    snmpPolicyId String
    snmpPort Double
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    snmpTraps List<SnmpPolicySnmpTrap>
    This complex property has following sub-properties:
    snmpUsers List<SnmpPolicySnmpUser>
    This complex property has following sub-properties:
    sysContact String
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    sysLocation String
    Location of host on which the SNMP agent (server) runs.
    tags List<SnmpPolicyTag>
    This complex property has following sub-properties:
    trapCommunity String
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    v2Enabled Boolean
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    v3Enabled Boolean
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    versionContexts List<SnmpPolicyVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accessCommunityString string
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors SnmpPolicyAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    communityAccess string
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    createTime string
    (ReadOnly) The time when this managed object was created.
    description string
    Description of the policy.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    enabled boolean
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    engineId string
    User-defined unique identification of the static engine.
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    Name of the concrete policy.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations SnmpPolicyOrganization[]
    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:
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents SnmpPolicyParent[]
    (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 SnmpPolicyPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles SnmpPolicyProfile[]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    sharedScope 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.
    snmpPolicyId string
    snmpPort number
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    snmpTraps SnmpPolicySnmpTrap[]
    This complex property has following sub-properties:
    snmpUsers SnmpPolicySnmpUser[]
    This complex property has following sub-properties:
    sysContact string
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    sysLocation string
    Location of host on which the SNMP agent (server) runs.
    tags SnmpPolicyTag[]
    This complex property has following sub-properties:
    trapCommunity string
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    v2Enabled boolean
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    v3Enabled boolean
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    versionContexts SnmpPolicyVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    access_community_string str
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    additional_properties str
    ancestors Sequence[SnmpPolicyAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    community_access str
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    create_time str
    (ReadOnly) The time when this managed object was created.
    description str
    Description of the policy.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    enabled bool
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    engine_id str
    User-defined unique identification of the static engine.
    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
    Name of the concrete policy.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations Sequence[SnmpPolicyOrganizationArgs]
    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:
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[SnmpPolicyParentArgs]
    (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[SnmpPolicyPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles Sequence[SnmpPolicyProfileArgs]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    shared_scope 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.
    snmp_policy_id str
    snmp_port float
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    snmp_traps Sequence[SnmpPolicySnmpTrapArgs]
    This complex property has following sub-properties:
    snmp_users Sequence[SnmpPolicySnmpUserArgs]
    This complex property has following sub-properties:
    sys_contact str
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    sys_location str
    Location of host on which the SNMP agent (server) runs.
    tags Sequence[SnmpPolicyTagArgs]
    This complex property has following sub-properties:
    trap_community str
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    v2_enabled bool
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    v3_enabled bool
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    version_contexts Sequence[SnmpPolicyVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accessCommunityString String
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    communityAccess String
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    createTime String
    (ReadOnly) The time when this managed object was created.
    description String
    Description of the policy.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    enabled Boolean
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    engineId String
    User-defined unique identification of the static engine.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the concrete policy.
    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:
    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:
    profiles List<Property Map>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    sharedScope 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.
    snmpPolicyId String
    snmpPort Number
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    snmpTraps List<Property Map>
    This complex property has following sub-properties:
    snmpUsers List<Property Map>
    This complex property has following sub-properties:
    sysContact String
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    sysLocation String
    Location of host on which the SNMP agent (server) runs.
    tags List<Property Map>
    This complex property has following sub-properties:
    trapCommunity String
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    v2Enabled Boolean
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    v3Enabled Boolean
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SnmpPolicy 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 SnmpPolicy Resource

    Get an existing SnmpPolicy 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?: SnmpPolicyState, opts?: CustomResourceOptions): SnmpPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_community_string: Optional[str] = None,
            account_moid: Optional[str] = None,
            additional_properties: Optional[str] = None,
            ancestors: Optional[Sequence[SnmpPolicyAncestorArgs]] = None,
            class_id: Optional[str] = None,
            community_access: Optional[str] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            domain_group_moid: Optional[str] = None,
            enabled: Optional[bool] = None,
            engine_id: Optional[str] = None,
            mod_time: Optional[str] = None,
            moid: Optional[str] = None,
            name: Optional[str] = None,
            object_type: Optional[str] = None,
            organizations: Optional[Sequence[SnmpPolicyOrganizationArgs]] = None,
            owners: Optional[Sequence[str]] = None,
            parents: Optional[Sequence[SnmpPolicyParentArgs]] = None,
            permission_resources: Optional[Sequence[SnmpPolicyPermissionResourceArgs]] = None,
            profiles: Optional[Sequence[SnmpPolicyProfileArgs]] = None,
            shared_scope: Optional[str] = None,
            snmp_policy_id: Optional[str] = None,
            snmp_port: Optional[float] = None,
            snmp_traps: Optional[Sequence[SnmpPolicySnmpTrapArgs]] = None,
            snmp_users: Optional[Sequence[SnmpPolicySnmpUserArgs]] = None,
            sys_contact: Optional[str] = None,
            sys_location: Optional[str] = None,
            tags: Optional[Sequence[SnmpPolicyTagArgs]] = None,
            trap_community: Optional[str] = None,
            v2_enabled: Optional[bool] = None,
            v3_enabled: Optional[bool] = None,
            version_contexts: Optional[Sequence[SnmpPolicyVersionContextArgs]] = None) -> SnmpPolicy
    func GetSnmpPolicy(ctx *Context, name string, id IDInput, state *SnmpPolicyState, opts ...ResourceOption) (*SnmpPolicy, error)
    public static SnmpPolicy Get(string name, Input<string> id, SnmpPolicyState? state, CustomResourceOptions? opts = null)
    public static SnmpPolicy get(String name, Output<String> id, SnmpPolicyState state, CustomResourceOptions options)
    resources:  _:    type: intersight:SnmpPolicy    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.
    The following state arguments are supported:
    AccessCommunityString string
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors List<SnmpPolicyAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    CommunityAccess string
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    Description string
    Description of the policy.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    Enabled bool
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    EngineId string
    User-defined unique identification of the static engine.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the concrete policy.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations List<SnmpPolicyOrganization>
    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:
    Owners List<string>
    (Array of schema.TypeString) -(ReadOnly)
    Parents List<SnmpPolicyParent>
    (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<SnmpPolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles List<SnmpPolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    SharedScope 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.
    SnmpPolicyId string
    SnmpPort double
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    SnmpTraps List<SnmpPolicySnmpTrap>
    This complex property has following sub-properties:
    SnmpUsers List<SnmpPolicySnmpUser>
    This complex property has following sub-properties:
    SysContact string
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    SysLocation string
    Location of host on which the SNMP agent (server) runs.
    Tags List<SnmpPolicyTag>
    This complex property has following sub-properties:
    TrapCommunity string
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    V2Enabled bool
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    V3Enabled bool
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    VersionContexts List<SnmpPolicyVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    AccessCommunityString string
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    AccountMoid string
    (ReadOnly) The Account ID for this managed object.
    AdditionalProperties string
    Ancestors []SnmpPolicyAncestorArgs
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    CommunityAccess string
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    CreateTime string
    (ReadOnly) The time when this managed object was created.
    Description string
    Description of the policy.
    DomainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    Enabled bool
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    EngineId string
    User-defined unique identification of the static engine.
    ModTime string
    (ReadOnly) The time when this managed object was last modified.
    Moid string
    The unique identifier of this Managed Object instance.
    Name string
    Name of the concrete policy.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    Organizations []SnmpPolicyOrganizationArgs
    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:
    Owners []string
    (Array of schema.TypeString) -(ReadOnly)
    Parents []SnmpPolicyParentArgs
    (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 []SnmpPolicyPermissionResourceArgs
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    Profiles []SnmpPolicyProfileArgs
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    SharedScope 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.
    SnmpPolicyId string
    SnmpPort float64
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    SnmpTraps []SnmpPolicySnmpTrapArgs
    This complex property has following sub-properties:
    SnmpUsers []SnmpPolicySnmpUserArgs
    This complex property has following sub-properties:
    SysContact string
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    SysLocation string
    Location of host on which the SNMP agent (server) runs.
    Tags []SnmpPolicyTagArgs
    This complex property has following sub-properties:
    TrapCommunity string
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    V2Enabled bool
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    V3Enabled bool
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    VersionContexts []SnmpPolicyVersionContextArgs
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accessCommunityString String
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<SnmpPolicyAncestor>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    communityAccess String
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    createTime String
    (ReadOnly) The time when this managed object was created.
    description String
    Description of the policy.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    enabled Boolean
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    engineId String
    User-defined unique identification of the static engine.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the concrete policy.
    objectType String
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations List<SnmpPolicyOrganization>
    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:
    owners List<String>
    (Array of schema.TypeString) -(ReadOnly)
    parents List<SnmpPolicyParent>
    (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<SnmpPolicyPermissionResource>
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles List<SnmpPolicyProfile>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    sharedScope 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.
    snmpPolicyId String
    snmpPort Double
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    snmpTraps List<SnmpPolicySnmpTrap>
    This complex property has following sub-properties:
    snmpUsers List<SnmpPolicySnmpUser>
    This complex property has following sub-properties:
    sysContact String
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    sysLocation String
    Location of host on which the SNMP agent (server) runs.
    tags List<SnmpPolicyTag>
    This complex property has following sub-properties:
    trapCommunity String
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    v2Enabled Boolean
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    v3Enabled Boolean
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    versionContexts List<SnmpPolicyVersionContext>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accessCommunityString string
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    accountMoid string
    (ReadOnly) The Account ID for this managed object.
    additionalProperties string
    ancestors SnmpPolicyAncestor[]
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    communityAccess string
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    createTime string
    (ReadOnly) The time when this managed object was created.
    description string
    Description of the policy.
    domainGroupMoid string
    (ReadOnly) The DomainGroup ID for this managed object.
    enabled boolean
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    engineId string
    User-defined unique identification of the static engine.
    modTime string
    (ReadOnly) The time when this managed object was last modified.
    moid string
    The unique identifier of this Managed Object instance.
    name string
    Name of the concrete policy.
    objectType string
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations SnmpPolicyOrganization[]
    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:
    owners string[]
    (Array of schema.TypeString) -(ReadOnly)
    parents SnmpPolicyParent[]
    (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 SnmpPolicyPermissionResource[]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles SnmpPolicyProfile[]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    sharedScope 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.
    snmpPolicyId string
    snmpPort number
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    snmpTraps SnmpPolicySnmpTrap[]
    This complex property has following sub-properties:
    snmpUsers SnmpPolicySnmpUser[]
    This complex property has following sub-properties:
    sysContact string
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    sysLocation string
    Location of host on which the SNMP agent (server) runs.
    tags SnmpPolicyTag[]
    This complex property has following sub-properties:
    trapCommunity string
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    v2Enabled boolean
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    v3Enabled boolean
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    versionContexts SnmpPolicyVersionContext[]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    access_community_string str
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    account_moid str
    (ReadOnly) The Account ID for this managed object.
    additional_properties str
    ancestors Sequence[SnmpPolicyAncestorArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    community_access str
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    create_time str
    (ReadOnly) The time when this managed object was created.
    description str
    Description of the policy.
    domain_group_moid str
    (ReadOnly) The DomainGroup ID for this managed object.
    enabled bool
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    engine_id str
    User-defined unique identification of the static engine.
    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
    Name of the concrete policy.
    object_type str
    The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
    organizations Sequence[SnmpPolicyOrganizationArgs]
    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:
    owners Sequence[str]
    (Array of schema.TypeString) -(ReadOnly)
    parents Sequence[SnmpPolicyParentArgs]
    (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[SnmpPolicyPermissionResourceArgs]
    (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
    profiles Sequence[SnmpPolicyProfileArgs]
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    shared_scope 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.
    snmp_policy_id str
    snmp_port float
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    snmp_traps Sequence[SnmpPolicySnmpTrapArgs]
    This complex property has following sub-properties:
    snmp_users Sequence[SnmpPolicySnmpUserArgs]
    This complex property has following sub-properties:
    sys_contact str
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    sys_location str
    Location of host on which the SNMP agent (server) runs.
    tags Sequence[SnmpPolicyTagArgs]
    This complex property has following sub-properties:
    trap_community str
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    v2_enabled bool
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    v3_enabled bool
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    version_contexts Sequence[SnmpPolicyVersionContextArgs]
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
    accessCommunityString String
    The default SNMPv1, SNMPv2c community name or SNMPv3 username to include on any trap messages sent to the SNMP host. The name can be 32 characters long.
    accountMoid String
    (ReadOnly) The Account ID for this managed object.
    additionalProperties String
    ancestors List<Property Map>
    (ReadOnly) An array of relationships to moBaseMo resources. 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.
    communityAccess String
    Controls access to the information in the inventory tables. Applicable only for SNMPv1 and SNMPv2c users.* Disabled - Blocks access to the information in the inventory tables.* Limited - Partial access to read the information in the inventory tables.* Full - Full access to read the information in the inventory tables.
    createTime String
    (ReadOnly) The time when this managed object was created.
    description String
    Description of the policy.
    domainGroupMoid String
    (ReadOnly) The DomainGroup ID for this managed object.
    enabled Boolean
    State of the SNMP Policy on the endpoint. If enabled, the endpoint sends SNMP traps to the designated host.
    engineId String
    User-defined unique identification of the static engine.
    modTime String
    (ReadOnly) The time when this managed object was last modified.
    moid String
    The unique identifier of this Managed Object instance.
    name String
    Name of the concrete policy.
    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:
    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:
    profiles List<Property Map>
    An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
    sharedScope 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.
    snmpPolicyId String
    snmpPort Number
    Port on which Cisco IMC SNMP agent runs. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    snmpTraps List<Property Map>
    This complex property has following sub-properties:
    snmpUsers List<Property Map>
    This complex property has following sub-properties:
    sysContact String
    Contact person responsible for the SNMP implementation. Enter a string up to 64 characters, such as an email address or a name and telephone number.
    sysLocation String
    Location of host on which the SNMP agent (server) runs.
    tags List<Property Map>
    This complex property has following sub-properties:
    trapCommunity String
    SNMP community group used for sending SNMP trap to other devices. Valid only for SNMPv2c users.
    v2Enabled Boolean
    State of the SNMP v2c on the endpoint. If enabled, the endpoint sends SNMP v2c properties to the designated host.
    v3Enabled Boolean
    State of the SNMP v3 on the endpoint. If enabled, the endpoint sends SNMP v3 properties to the designated host.
    versionContexts List<Property Map>
    (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:

    Supporting Types

    SnmpPolicyAncestor, SnmpPolicyAncestorArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    SnmpPolicyOrganization, SnmpPolicyOrganizationArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    SnmpPolicyParent, SnmpPolicyParentArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    SnmpPolicyPermissionResource, SnmpPolicyPermissionResourceArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    SnmpPolicyProfile, SnmpPolicyProfileArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    SnmpPolicySnmpTrap, SnmpPolicySnmpTrapArgs

    AdditionalProperties string
    ClassId string
    Community string
    SNMP community group used for sending SNMP trap to other devices. Applicable only for SNMP v2c.
    Destination string
    Address to which the SNMP trap information is sent.
    Enabled bool
    Enables/disables the trap on the server If enabled, trap is active on the server.
    NrVersion string
    SNMP version used for the trap.* V3 - SNMP v3 trap version notifications.* V1 - SNMP v1 trap version notifications.* V2 - SNMP v2 trap version notifications.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    Port double
    Port used by the server to communicate with the trap destination. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    SecurityLevel string
    (ReadOnly) Security level of the trap receiver used for communication.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    Type string
    Type of trap which decides whether to receive a notification when a trap is received at the destination.* Trap - Do not receive notifications when trap is sent to the destination.* Inform - Receive notifications when trap is sent to the destination. This option is valid only for V2 users.
    User string
    SNMP user for the trap. Applicable only to SNMPv3.
    VrfName string
    (ReadOnly) VRF name of the SNMP server.
    AdditionalProperties string
    ClassId string
    Community string
    SNMP community group used for sending SNMP trap to other devices. Applicable only for SNMP v2c.
    Destination string
    Address to which the SNMP trap information is sent.
    Enabled bool
    Enables/disables the trap on the server If enabled, trap is active on the server.
    NrVersion string
    SNMP version used for the trap.* V3 - SNMP v3 trap version notifications.* V1 - SNMP v1 trap version notifications.* V2 - SNMP v2 trap version notifications.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    Port float64
    Port used by the server to communicate with the trap destination. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    SecurityLevel string
    (ReadOnly) Security level of the trap receiver used for communication.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    Type string
    Type of trap which decides whether to receive a notification when a trap is received at the destination.* Trap - Do not receive notifications when trap is sent to the destination.* Inform - Receive notifications when trap is sent to the destination. This option is valid only for V2 users.
    User string
    SNMP user for the trap. Applicable only to SNMPv3.
    VrfName string
    (ReadOnly) VRF name of the SNMP server.
    additionalProperties String
    classId String
    community String
    SNMP community group used for sending SNMP trap to other devices. Applicable only for SNMP v2c.
    destination String
    Address to which the SNMP trap information is sent.
    enabled Boolean
    Enables/disables the trap on the server If enabled, trap is active on the server.
    nrVersion String
    SNMP version used for the trap.* V3 - SNMP v3 trap version notifications.* V1 - SNMP v1 trap version notifications.* V2 - SNMP v2 trap version notifications.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    port Double
    Port used by the server to communicate with the trap destination. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    securityLevel String
    (ReadOnly) Security level of the trap receiver used for communication.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    type String
    Type of trap which decides whether to receive a notification when a trap is received at the destination.* Trap - Do not receive notifications when trap is sent to the destination.* Inform - Receive notifications when trap is sent to the destination. This option is valid only for V2 users.
    user String
    SNMP user for the trap. Applicable only to SNMPv3.
    vrfName String
    (ReadOnly) VRF name of the SNMP server.
    additionalProperties string
    classId string
    community string
    SNMP community group used for sending SNMP trap to other devices. Applicable only for SNMP v2c.
    destination string
    Address to which the SNMP trap information is sent.
    enabled boolean
    Enables/disables the trap on the server If enabled, trap is active on the server.
    nrVersion string
    SNMP version used for the trap.* V3 - SNMP v3 trap version notifications.* V1 - SNMP v1 trap version notifications.* V2 - SNMP v2 trap version notifications.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    port number
    Port used by the server to communicate with the trap destination. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    securityLevel string
    (ReadOnly) Security level of the trap receiver used for communication.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    type string
    Type of trap which decides whether to receive a notification when a trap is received at the destination.* Trap - Do not receive notifications when trap is sent to the destination.* Inform - Receive notifications when trap is sent to the destination. This option is valid only for V2 users.
    user string
    SNMP user for the trap. Applicable only to SNMPv3.
    vrfName string
    (ReadOnly) VRF name of the SNMP server.
    additional_properties str
    class_id str
    community str
    SNMP community group used for sending SNMP trap to other devices. Applicable only for SNMP v2c.
    destination str
    Address to which the SNMP trap information is sent.
    enabled bool
    Enables/disables the trap on the server If enabled, trap is active on the server.
    nr_version str
    SNMP version used for the trap.* V3 - SNMP v3 trap version notifications.* V1 - SNMP v1 trap version notifications.* V2 - SNMP v2 trap version notifications.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    port float
    Port used by the server to communicate with the trap destination. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    security_level str
    (ReadOnly) Security level of the trap receiver used for communication.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    type str
    Type of trap which decides whether to receive a notification when a trap is received at the destination.* Trap - Do not receive notifications when trap is sent to the destination.* Inform - Receive notifications when trap is sent to the destination. This option is valid only for V2 users.
    user str
    SNMP user for the trap. Applicable only to SNMPv3.
    vrf_name str
    (ReadOnly) VRF name of the SNMP server.
    additionalProperties String
    classId String
    community String
    SNMP community group used for sending SNMP trap to other devices. Applicable only for SNMP v2c.
    destination String
    Address to which the SNMP trap information is sent.
    enabled Boolean
    Enables/disables the trap on the server If enabled, trap is active on the server.
    nrVersion String
    SNMP version used for the trap.* V3 - SNMP v3 trap version notifications.* V1 - SNMP v1 trap version notifications.* V2 - SNMP v2 trap version notifications.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    port Number
    Port used by the server to communicate with the trap destination. Enter a value between 1-65535. Reserved ports not allowed (22, 23, 80, 123, 389, 443, 623, 636, 2068, 3268, 3269).
    securityLevel String
    (ReadOnly) Security level of the trap receiver used for communication.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    type String
    Type of trap which decides whether to receive a notification when a trap is received at the destination.* Trap - Do not receive notifications when trap is sent to the destination.* Inform - Receive notifications when trap is sent to the destination. This option is valid only for V2 users.
    user String
    SNMP user for the trap. Applicable only to SNMPv3.
    vrfName String
    (ReadOnly) VRF name of the SNMP server.

    SnmpPolicySnmpUser, SnmpPolicySnmpUserArgs

    AdditionalProperties string
    AuthPassword string
    Authorization password for the user.
    AuthType string
    Authorization protocol for authenticating the user.* NA - Authentication protocol is not applicable.* MD5 - MD5 protocol is used to authenticate SNMP user.* SHA - SHA protocol is used to authenticate SNMP user.* SHA-224 - SHA-224 protocol is used to authenticate SNMP user.* SHA-256 - SHA-256 protocol is used to authenticate SNMP user.* SHA-384 - SHA-384 protocol is used to authenticate SNMP user.* SHA-512 - SHA-512 protocol is used to authenticate SNMP user.
    ClassId string
    IsAuthPasswordSet bool
    (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
    IsPrivacyPasswordSet bool
    (ReadOnly) Indicates whether the value of the 'privacyPassword' property has been set.
    Name string
    SNMP username. Must have a minimum of 1 and and a maximum of 31 characters.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    PrivacyPassword string
    Privacy password for the user.
    PrivacyType string
    Privacy protocol for the user.* NA - Privacy protocol is not applicable.* DES - DES privacy protocol is used for SNMP user.* AES - AES privacy protocol is used for SNMP user.
    SecurityLevel string
    Security mechanism used for communication between agent and manager.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    AdditionalProperties string
    AuthPassword string
    Authorization password for the user.
    AuthType string
    Authorization protocol for authenticating the user.* NA - Authentication protocol is not applicable.* MD5 - MD5 protocol is used to authenticate SNMP user.* SHA - SHA protocol is used to authenticate SNMP user.* SHA-224 - SHA-224 protocol is used to authenticate SNMP user.* SHA-256 - SHA-256 protocol is used to authenticate SNMP user.* SHA-384 - SHA-384 protocol is used to authenticate SNMP user.* SHA-512 - SHA-512 protocol is used to authenticate SNMP user.
    ClassId string
    IsAuthPasswordSet bool
    (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
    IsPrivacyPasswordSet bool
    (ReadOnly) Indicates whether the value of the 'privacyPassword' property has been set.
    Name string
    SNMP username. Must have a minimum of 1 and and a maximum of 31 characters.
    ObjectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    PrivacyPassword string
    Privacy password for the user.
    PrivacyType string
    Privacy protocol for the user.* NA - Privacy protocol is not applicable.* DES - DES privacy protocol is used for SNMP user.* AES - AES privacy protocol is used for SNMP user.
    SecurityLevel string
    Security mechanism used for communication between agent and manager.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    additionalProperties String
    authPassword String
    Authorization password for the user.
    authType String
    Authorization protocol for authenticating the user.* NA - Authentication protocol is not applicable.* MD5 - MD5 protocol is used to authenticate SNMP user.* SHA - SHA protocol is used to authenticate SNMP user.* SHA-224 - SHA-224 protocol is used to authenticate SNMP user.* SHA-256 - SHA-256 protocol is used to authenticate SNMP user.* SHA-384 - SHA-384 protocol is used to authenticate SNMP user.* SHA-512 - SHA-512 protocol is used to authenticate SNMP user.
    classId String
    isAuthPasswordSet Boolean
    (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
    isPrivacyPasswordSet Boolean
    (ReadOnly) Indicates whether the value of the 'privacyPassword' property has been set.
    name String
    SNMP username. Must have a minimum of 1 and and a maximum of 31 characters.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    privacyPassword String
    Privacy password for the user.
    privacyType String
    Privacy protocol for the user.* NA - Privacy protocol is not applicable.* DES - DES privacy protocol is used for SNMP user.* AES - AES privacy protocol is used for SNMP user.
    securityLevel String
    Security mechanism used for communication between agent and manager.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    additionalProperties string
    authPassword string
    Authorization password for the user.
    authType string
    Authorization protocol for authenticating the user.* NA - Authentication protocol is not applicable.* MD5 - MD5 protocol is used to authenticate SNMP user.* SHA - SHA protocol is used to authenticate SNMP user.* SHA-224 - SHA-224 protocol is used to authenticate SNMP user.* SHA-256 - SHA-256 protocol is used to authenticate SNMP user.* SHA-384 - SHA-384 protocol is used to authenticate SNMP user.* SHA-512 - SHA-512 protocol is used to authenticate SNMP user.
    classId string
    isAuthPasswordSet boolean
    (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
    isPrivacyPasswordSet boolean
    (ReadOnly) Indicates whether the value of the 'privacyPassword' property has been set.
    name string
    SNMP username. Must have a minimum of 1 and and a maximum of 31 characters.
    objectType string
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    privacyPassword string
    Privacy password for the user.
    privacyType string
    Privacy protocol for the user.* NA - Privacy protocol is not applicable.* DES - DES privacy protocol is used for SNMP user.* AES - AES privacy protocol is used for SNMP user.
    securityLevel string
    Security mechanism used for communication between agent and manager.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    additional_properties str
    auth_password str
    Authorization password for the user.
    auth_type str
    Authorization protocol for authenticating the user.* NA - Authentication protocol is not applicable.* MD5 - MD5 protocol is used to authenticate SNMP user.* SHA - SHA protocol is used to authenticate SNMP user.* SHA-224 - SHA-224 protocol is used to authenticate SNMP user.* SHA-256 - SHA-256 protocol is used to authenticate SNMP user.* SHA-384 - SHA-384 protocol is used to authenticate SNMP user.* SHA-512 - SHA-512 protocol is used to authenticate SNMP user.
    class_id str
    is_auth_password_set bool
    (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
    is_privacy_password_set bool
    (ReadOnly) Indicates whether the value of the 'privacyPassword' property has been set.
    name str
    SNMP username. Must have a minimum of 1 and and a maximum of 31 characters.
    object_type str
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    privacy_password str
    Privacy password for the user.
    privacy_type str
    Privacy protocol for the user.* NA - Privacy protocol is not applicable.* DES - DES privacy protocol is used for SNMP user.* AES - AES privacy protocol is used for SNMP user.
    security_level str
    Security mechanism used for communication between agent and manager.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.
    additionalProperties String
    authPassword String
    Authorization password for the user.
    authType String
    Authorization protocol for authenticating the user.* NA - Authentication protocol is not applicable.* MD5 - MD5 protocol is used to authenticate SNMP user.* SHA - SHA protocol is used to authenticate SNMP user.* SHA-224 - SHA-224 protocol is used to authenticate SNMP user.* SHA-256 - SHA-256 protocol is used to authenticate SNMP user.* SHA-384 - SHA-384 protocol is used to authenticate SNMP user.* SHA-512 - SHA-512 protocol is used to authenticate SNMP user.
    classId String
    isAuthPasswordSet Boolean
    (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
    isPrivacyPasswordSet Boolean
    (ReadOnly) Indicates whether the value of the 'privacyPassword' property has been set.
    name String
    SNMP username. Must have a minimum of 1 and and a maximum of 31 characters.
    objectType String
    The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
    privacyPassword String
    Privacy password for the user.
    privacyType String
    Privacy protocol for the user.* NA - Privacy protocol is not applicable.* DES - DES privacy protocol is used for SNMP user.* AES - AES privacy protocol is used for SNMP user.
    securityLevel String
    Security mechanism used for communication between agent and manager.* AuthPriv - The user requires both an authorization password and a privacy password.* NoAuthNoPriv - The user does not require an authorization or privacy password.* AuthNoPriv - The user requires an authorization password but not a privacy password.

    SnmpPolicyTag, SnmpPolicyTagArgs

    AdditionalProperties string
    Key string
    The string representation of a tag key.
    Value string
    The string representation of a tag value.
    AdditionalProperties string
    Key string
    The string representation of a tag key.
    Value string
    The string representation of a tag value.
    additionalProperties String
    key String
    The string representation of a tag key.
    value String
    The string representation of a tag value.
    additionalProperties string
    key string
    The string representation of a tag key.
    value string
    The string representation of a tag value.
    additional_properties str
    key str
    The string representation of a tag key.
    value str
    The string representation of a tag value.
    additionalProperties String
    key String
    The string representation of a tag key.
    value String
    The string representation of a tag value.

    SnmpPolicyVersionContext, SnmpPolicyVersionContextArgs

    AdditionalProperties string
    ClassId string
    InterestedMos List<SnmpPolicyVersionContextInterestedMo>
    This complex property has following sub-properties:
    MarkedForDeletion bool
    (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<SnmpPolicyVersionContextRefMo>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    Timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    VersionType string
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
    AdditionalProperties string
    ClassId string
    InterestedMos []SnmpPolicyVersionContextInterestedMo
    This complex property has following sub-properties:
    MarkedForDeletion bool
    (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 []SnmpPolicyVersionContextRefMo
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    Timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    VersionType string
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
    additionalProperties String
    classId String
    interestedMos List<SnmpPolicyVersionContextInterestedMo>
    This complex property has following sub-properties:
    markedForDeletion Boolean
    (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<SnmpPolicyVersionContextRefMo>
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp String
    (ReadOnly) The time this versioned Managed Object was created.
    versionType String
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
    additionalProperties string
    classId string
    interestedMos SnmpPolicyVersionContextInterestedMo[]
    This complex property has following sub-properties:
    markedForDeletion boolean
    (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 SnmpPolicyVersionContextRefMo[]
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp string
    (ReadOnly) The time this versioned Managed Object was created.
    versionType string
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
    additional_properties str
    class_id str
    interested_mos Sequence[SnmpPolicyVersionContextInterestedMo]
    This complex property has following sub-properties:
    marked_for_deletion bool
    (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[SnmpPolicyVersionContextRefMo]
    (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
    timestamp str
    (ReadOnly) The time this versioned Managed Object was created.
    version_type str
    (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.* Modified - Version created every time an object is modified.* Configured - Version created every time an object is configured to the service profile.* Deployed - Version created for objects related to a service profile when it is deployed.
    additionalProperties String
    classId String
    interestedMos List<Property Map>
    This complex property has following sub-properties:
    markedForDeletion Boolean
    (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.

    SnmpPolicyVersionContextInterestedMo, SnmpPolicyVersionContextInterestedMoArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    SnmpPolicyVersionContextRefMo, SnmpPolicyVersionContextRefMoArgs

    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    AdditionalProperties string
    ClassId string
    Moid string
    The Moid of the referenced REST resource.
    ObjectType string
    The fully-qualified name of the remote type referred by this relationship.
    Selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties string
    classId string
    moid string
    The Moid of the referenced REST resource.
    objectType string
    The fully-qualified name of the remote type referred by this relationship.
    selector string
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additional_properties str
    class_id str
    moid str
    The Moid of the referenced REST resource.
    object_type str
    The fully-qualified name of the remote type referred by this relationship.
    selector str
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
    additionalProperties String
    classId String
    moid String
    The Moid of the referenced REST resource.
    objectType String
    The fully-qualified name of the remote type referred by this relationship.
    selector String
    An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.

    Import

    intersight_snmp_policy can be imported using the Moid of the object, e.g.

    $ pulumi import intersight:index/snmpPolicy:SnmpPolicy example 1234567890987654321abcde
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    intersight ciscodevnet/terraform-provider-intersight
    License
    Notes
    This Pulumi package is based on the intersight Terraform Provider.
    intersight logo
    intersight 1.0.64 published on Wednesday, Apr 30, 2025 by ciscodevnet