intersight.SnmpPolicy
Explore with Pulumi AI
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:
- Access
Community stringString - 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 string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Snmp
Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Community
Access 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. - Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (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 string - User-defined unique identification of the static engine.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Snmp
Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Snmp
Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<SnmpPolicy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<Snmp
Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Snmp
Policy stringId - Snmp
Port 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).
- Snmp
Traps List<SnmpPolicy Snmp Trap> - This complex property has following sub-properties:
- Snmp
Users List<SnmpPolicy Snmp User> - This complex property has following sub-properties:
- Sys
Contact 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.
- Sys
Location string - Location of host on which the SNMP agent (server) runs.
- List<Snmp
Policy Tag> - This complex property has following sub-properties:
- Trap
Community 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.
- Version
Contexts List<SnmpPolicy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Access
Community stringString - 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 string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Snmp
Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Community
Access 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. - Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (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 string - User-defined unique identification of the static engine.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Snmp
Policy Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Snmp
Policy Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []SnmpPolicy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]Snmp
Policy Profile Args - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Snmp
Policy stringId - Snmp
Port 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).
- Snmp
Traps []SnmpPolicy Snmp Trap Args - This complex property has following sub-properties:
- Snmp
Users []SnmpPolicy Snmp User Args - This complex property has following sub-properties:
- Sys
Contact 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.
- Sys
Location string - Location of host on which the SNMP agent (server) runs.
- []Snmp
Policy Tag Args - This complex property has following sub-properties:
- Trap
Community 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.
- Version
Contexts []SnmpPolicy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Community StringString - 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 String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Snmp
Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- community
Access 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. - create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (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.
- engine
Id String - User-defined unique identification of the static engine.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Snmp
Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Snmp
Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<SnmpPolicy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<Snmp
Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- snmp
Policy StringId - snmp
Port 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).
- snmp
Traps List<SnmpPolicy Snmp Trap> - This complex property has following sub-properties:
- snmp
Users List<SnmpPolicy Snmp User> - This complex property has following sub-properties:
- sys
Contact 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.
- sys
Location String - Location of host on which the SNMP agent (server) runs.
- List<Snmp
Policy Tag> - This complex property has following sub-properties:
- trap
Community 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.
- version
Contexts List<SnmpPolicy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Community stringString - 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 string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Snmp
Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- community
Access 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. - create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- domain
Group stringMoid - (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.
- engine
Id string - User-defined unique identification of the static engine.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Snmp
Policy Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Snmp
Policy Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources SnmpPolicy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Snmp
Policy Profile[] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- snmp
Policy stringId - snmp
Port 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).
- snmp
Traps SnmpPolicy Snmp Trap[] - This complex property has following sub-properties:
- snmp
Users SnmpPolicy Snmp User[] - This complex property has following sub-properties:
- sys
Contact 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.
- sys
Location string - Location of host on which the SNMP agent (server) runs.
- Snmp
Policy Tag[] - This complex property has following sub-properties:
- trap
Community 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.
- version
Contexts SnmpPolicy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access_
community_ strstring - 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[Snmp
Policy Ancestor Args] - (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_ strmoid - (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[Snmp
Policy Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Snmp
Policy Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[SnmpPolicy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[Snmp
Policy Profile Args] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- snmp_
policy_ strid - 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[SnmpPolicy Snmp Trap Args] - This complex property has following sub-properties:
- snmp_
users Sequence[SnmpPolicy Snmp User Args] - 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.
- Sequence[Snmp
Policy Tag Args] - 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[SnmpPolicy Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Community StringString - 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 String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- community
Access 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. - create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (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.
- engine
Id String - User-defined unique identification of the static engine.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles List<Property Map>
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- snmp
Policy StringId - snmp
Port 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).
- snmp
Traps List<Property Map> - This complex property has following sub-properties:
- snmp
Users List<Property Map> - This complex property has following sub-properties:
- sys
Contact 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.
- sys
Location String - Location of host on which the SNMP agent (server) runs.
- List<Property Map>
- This complex property has following sub-properties:
- trap
Community 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.
- version
Contexts 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.
- Access
Community stringString - 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 string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
List<Snmp
Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Community
Access 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. - Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (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 string - User-defined unique identification of the static engine.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
List<Snmp
Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners List<string>
- (Array of schema.TypeString) -(ReadOnly)
- Parents
List<Snmp
Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources List<SnmpPolicy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
List<Snmp
Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Snmp
Policy stringId - Snmp
Port 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).
- Snmp
Traps List<SnmpPolicy Snmp Trap> - This complex property has following sub-properties:
- Snmp
Users List<SnmpPolicy Snmp User> - This complex property has following sub-properties:
- Sys
Contact 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.
- Sys
Location string - Location of host on which the SNMP agent (server) runs.
- List<Snmp
Policy Tag> - This complex property has following sub-properties:
- Trap
Community 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.
- Version
Contexts List<SnmpPolicy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- Access
Community stringString - 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 string - (ReadOnly) The Account ID for this managed object.
- Additional
Properties string - Ancestors
[]Snmp
Policy Ancestor Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- Community
Access 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. - Create
Time string - (ReadOnly) The time when this managed object was created.
- Description string
- Description of the policy.
- Domain
Group stringMoid - (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 string - User-defined unique identification of the static engine.
- Mod
Time string - (ReadOnly) The time when this managed object was last modified.
- Moid string
- The unique identifier of this Managed Object instance.
- Name string
- Name of the concrete policy.
- Object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- Organizations
[]Snmp
Policy Organization Args - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Owners []string
- (Array of schema.TypeString) -(ReadOnly)
- Parents
[]Snmp
Policy Parent Args - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- Permission
Resources []SnmpPolicy Permission Resource Args - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- Profiles
[]Snmp
Policy Profile Args - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- Snmp
Policy stringId - Snmp
Port 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).
- Snmp
Traps []SnmpPolicy Snmp Trap Args - This complex property has following sub-properties:
- Snmp
Users []SnmpPolicy Snmp User Args - This complex property has following sub-properties:
- Sys
Contact 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.
- Sys
Location string - Location of host on which the SNMP agent (server) runs.
- []Snmp
Policy Tag Args - This complex property has following sub-properties:
- Trap
Community 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.
- Version
Contexts []SnmpPolicy Version Context Args - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Community StringString - 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 String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors
List<Snmp
Policy Ancestor> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- community
Access 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. - create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (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.
- engine
Id String - User-defined unique identification of the static engine.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
List<Snmp
Policy Organization> - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents
List<Snmp
Policy Parent> - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<SnmpPolicy Permission Resource> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
List<Snmp
Policy Profile> - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- snmp
Policy StringId - snmp
Port 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).
- snmp
Traps List<SnmpPolicy Snmp Trap> - This complex property has following sub-properties:
- snmp
Users List<SnmpPolicy Snmp User> - This complex property has following sub-properties:
- sys
Contact 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.
- sys
Location String - Location of host on which the SNMP agent (server) runs.
- List<Snmp
Policy Tag> - This complex property has following sub-properties:
- trap
Community 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.
- version
Contexts List<SnmpPolicy Version Context> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Community stringString - 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 string - (ReadOnly) The Account ID for this managed object.
- additional
Properties string - ancestors
Snmp
Policy Ancestor[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id string - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- community
Access 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. - create
Time string - (ReadOnly) The time when this managed object was created.
- description string
- Description of the policy.
- domain
Group stringMoid - (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.
- engine
Id string - User-defined unique identification of the static engine.
- mod
Time string - (ReadOnly) The time when this managed object was last modified.
- moid string
- The unique identifier of this Managed Object instance.
- name string
- Name of the concrete policy.
- object
Type string - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations
Snmp
Policy Organization[] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners string[]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Snmp
Policy Parent[] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources SnmpPolicy Permission Resource[] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Snmp
Policy Profile[] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- string
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- snmp
Policy stringId - snmp
Port 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).
- snmp
Traps SnmpPolicy Snmp Trap[] - This complex property has following sub-properties:
- snmp
Users SnmpPolicy Snmp User[] - This complex property has following sub-properties:
- sys
Contact 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.
- sys
Location string - Location of host on which the SNMP agent (server) runs.
- Snmp
Policy Tag[] - This complex property has following sub-properties:
- trap
Community 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.
- version
Contexts SnmpPolicy Version Context[] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access_
community_ strstring - 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[Snmp
Policy Ancestor Args] - (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_ strmoid - (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[Snmp
Policy Organization Args] - A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners Sequence[str]
- (Array of schema.TypeString) -(ReadOnly)
- parents
Sequence[Snmp
Policy Parent Args] - (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission_
resources Sequence[SnmpPolicy Permission Resource Args] - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles
Sequence[Snmp
Policy Profile Args] - An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- str
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- snmp_
policy_ strid - 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[SnmpPolicy Snmp Trap Args] - This complex property has following sub-properties:
- snmp_
users Sequence[SnmpPolicy Snmp User Args] - 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.
- Sequence[Snmp
Policy Tag Args] - 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[SnmpPolicy Version Context Args] - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
- access
Community StringString - 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 String - (ReadOnly) The Account ID for this managed object.
- additional
Properties String - ancestors List<Property Map>
- (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- class
Id String - The fully-qualified name of the instantiated, concrete type. This property is used as a discriminator to identify the type of the payload when marshaling and unmarshaling data.
- community
Access 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. - create
Time String - (ReadOnly) The time when this managed object was created.
- description String
- Description of the policy.
- domain
Group StringMoid - (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.
- engine
Id String - User-defined unique identification of the static engine.
- mod
Time String - (ReadOnly) The time when this managed object was last modified.
- moid String
- The unique identifier of this Managed Object instance.
- name String
- Name of the concrete policy.
- object
Type String - The fully-qualified name of the instantiated, concrete type. The value should be the same as the 'ClassId' property.
- organizations List<Property Map>
- A reference to a organizationOrganization resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- owners List<String>
- (Array of schema.TypeString) -(ReadOnly)
- parents List<Property Map>
- (ReadOnly) A reference to a moBaseMo resource.When the $expand query parameter is specified, the referenced resource is returned inline. This complex property has following sub-properties:
- permission
Resources List<Property Map> - (ReadOnly) An array of relationships to moBaseMo resources. This complex property has following sub-properties:
- profiles List<Property Map>
- An array of relationships to policyAbstractConfigProfile resources. This complex property has following sub-properties:
- String
- (ReadOnly) Intersight provides pre-built workflows, tasks and policies to end users through global catalogs.Objects that are made available through global catalogs are said to have a 'shared' ownership. Shared objects are either made globally available to all end users or restricted to end users based on their license entitlement. Users can use this property to differentiate the scope (global or a specific license tier) to which a shared MO belongs.
- snmp
Policy StringId - snmp
Port 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).
- snmp
Traps List<Property Map> - This complex property has following sub-properties:
- snmp
Users List<Property Map> - This complex property has following sub-properties:
- sys
Contact 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.
- sys
Location String - Location of host on which the SNMP agent (server) runs.
- List<Property Map>
- This complex property has following sub-properties:
- trap
Community 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.
- version
Contexts List<Property Map> - (ReadOnly) The versioning info for this managed object. This complex property has following sub-properties:
Supporting Types
SnmpPolicyAncestor, SnmpPolicyAncestorArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SnmpPolicyOrganization, SnmpPolicyOrganizationArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SnmpPolicyParent, SnmpPolicyParentArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SnmpPolicyPermissionResource, SnmpPolicyPermissionResourceArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SnmpPolicyProfile, SnmpPolicyProfileArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SnmpPolicySnmpTrap, SnmpPolicySnmpTrapArgs
- Additional
Properties string - Class
Id 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.
- Nr
Version 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. - Object
Type 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).
- Security
Level 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.
- Vrf
Name string - (ReadOnly) VRF name of the SNMP server.
- Additional
Properties string - Class
Id 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.
- Nr
Version 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. - Object
Type 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).
- Security
Level 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.
- Vrf
Name string - (ReadOnly) VRF name of the SNMP server.
- additional
Properties String - class
Id 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.
- nr
Version 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. - object
Type 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).
- security
Level 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.
- vrf
Name String - (ReadOnly) VRF name of the SNMP server.
- additional
Properties string - class
Id 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.
- nr
Version 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. - object
Type 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).
- security
Level 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.
- vrf
Name 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.
- additional
Properties String - class
Id 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.
- nr
Version 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. - object
Type 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).
- security
Level 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.
- vrf
Name String - (ReadOnly) VRF name of the SNMP server.
SnmpPolicySnmpUser, SnmpPolicySnmpUserArgs
- Additional
Properties string - Auth
Password string - Authorization password for the user.
- Auth
Type 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. - Class
Id string - Is
Auth boolPassword Set - (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
- Is
Privacy boolPassword Set - (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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Privacy
Password string - Privacy password for the user.
- Privacy
Type 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. - Security
Level 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 string - Auth
Password string - Authorization password for the user.
- Auth
Type 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. - Class
Id string - Is
Auth boolPassword Set - (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
- Is
Privacy boolPassword Set - (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.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Privacy
Password string - Privacy password for the user.
- Privacy
Type 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. - Security
Level 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 String - auth
Password String - Authorization password for the user.
- auth
Type 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. - class
Id String - is
Auth BooleanPassword Set - (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
- is
Privacy BooleanPassword Set - (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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- privacy
Password String - Privacy password for the user.
- privacy
Type 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. - security
Level 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 string - auth
Password string - Authorization password for the user.
- auth
Type 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. - class
Id string - is
Auth booleanPassword Set - (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
- is
Privacy booleanPassword Set - (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.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- privacy
Password string - Privacy password for the user.
- privacy
Type 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. - security
Level 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_ boolpassword_ set - (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
- is_
privacy_ boolpassword_ set - (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.
- additional
Properties String - auth
Password String - Authorization password for the user.
- auth
Type 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. - class
Id String - is
Auth BooleanPassword Set - (ReadOnly) Indicates whether the value of the 'authPassword' property has been set.
- is
Privacy BooleanPassword Set - (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.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- privacy
Password String - Privacy password for the user.
- privacy
Type 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. - security
Level 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
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- Additional
Properties string - Key string
- The string representation of a tag key.
- Value string
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
- additional
Properties string - key string
- The string representation of a tag key.
- value string
- The string representation of a tag value.
- additional_
properties str - key str
- The string representation of a tag key.
- value str
- The string representation of a tag value.
- additional
Properties String - key String
- The string representation of a tag key.
- value String
- The string representation of a tag value.
SnmpPolicyVersionContext, SnmpPolicyVersionContextArgs
- Additional
Properties string - Class
Id string - Interested
Mos List<SnmpPolicy Version Context Interested Mo> - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos List<SnmpPolicy Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- Additional
Properties string - Class
Id string - Interested
Mos []SnmpPolicy Version Context Interested Mo - This complex property has following sub-properties:
- Marked
For boolDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- Nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- Object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- Ref
Mos []SnmpPolicy Version Context Ref Mo - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- Timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- Version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<SnmpPolicy Version Context Interested Mo> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<SnmpPolicy Version Context Ref Mo> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties string - class
Id string - interested
Mos SnmpPolicy Version Context Interested Mo[] - This complex property has following sub-properties:
- marked
For booleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version string - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type string - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos SnmpPolicy Version Context Ref Mo[] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp string
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type string - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional_
properties str - class_
id str - interested_
mos Sequence[SnmpPolicy Version Context Interested Mo] - This complex property has following sub-properties:
- marked_
for_ booldeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr_
version str - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object_
type str - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref_
mos Sequence[SnmpPolicy Version Context Ref Mo] - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp str
- (ReadOnly) The time this versioned Managed Object was created.
- version_
type str - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
- additional
Properties String - class
Id String - interested
Mos List<Property Map> - This complex property has following sub-properties:
- marked
For BooleanDeletion - (ReadOnly) The flag to indicate if snapshot is marked for deletion or not. If flag is set then snapshot will be removed after the successful deployment of the policy.
- nr
Version String - (ReadOnly) The version of the Managed Object, e.g. an incrementing number or a hash id.
- object
Type String - The fully-qualified name of the instantiated, concrete type.The value should be the same as the 'ClassId' property.
- ref
Mos List<Property Map> - (ReadOnly) A reference to the original Managed Object. This complex property has following sub-properties:
- timestamp String
- (ReadOnly) The time this versioned Managed Object was created.
- version
Type String - (ReadOnly) Specifies type of version. Currently the only supported value is \ Configured\ that is used to keep track of snapshots of policies and profiles that are intendedto be configured to target endpoints.*
Modified
- Version created every time an object is modified.*Configured
- Version created every time an object is configured to the service profile.*Deployed
- Version created for objects related to a service profile when it is deployed.
SnmpPolicyVersionContextInterestedMo, SnmpPolicyVersionContextInterestedMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
SnmpPolicyVersionContextRefMo, SnmpPolicyVersionContextRefMoArgs
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- Additional
Properties string - Class
Id string - Moid string
- The Moid of the referenced REST resource.
- Object
Type string - The fully-qualified name of the remote type referred by this relationship.
- Selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties string - class
Id string - moid string
- The Moid of the referenced REST resource.
- object
Type string - The fully-qualified name of the remote type referred by this relationship.
- selector string
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional_
properties str - class_
id str - moid str
- The Moid of the referenced REST resource.
- object_
type str - The fully-qualified name of the remote type referred by this relationship.
- selector str
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
- additional
Properties String - class
Id String - moid String
- The Moid of the referenced REST resource.
- object
Type String - The fully-qualified name of the remote type referred by this relationship.
- selector String
- An OData $filter expression which describes the REST resource to be referenced. This field maybe set instead of 'moid' by clients.1. If 'moid' is set this field is ignored.1. If 'selector' is set and 'moid' is empty/absent from the request, Intersight determines the Moid of theresource matching the filter expression and populates it in the MoRef that is part of the objectinstance being inserted/updated to fulfill the REST request.An error is returned if the filter matches zero or more than one REST resource.An example filter string is: Serial eq '3AA8B7T11'.
Import
intersight_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.