action vmware_get_juniper_switch_snmp_config { label: "Show snmp config for juniper switch data source" description: "Show snmp config for juniper switch data source" provider: vmware method: GET path: "/data-sources/juniper-switches/{id}/snmp-config" encoding: json output: { type: "object" properties: { config_snmp_2c: { type: "object" properties: { community_string: { type: "string" } } } config_snmp_3: { type: "object" properties: { authentication_password: { type: "string" } authentication_type: { type: "string" enum: ["NO_AUTH", "MD5", "SHA"] } context_name: { type: "string" } privacy_password: { type: "string" } privacy_type: { type: "string" enum: ["AES", "DES", "AES128", "AES192", "AES256", "3DES", "NO_PRIV"] } username: { type: "string" } } } snmp_enabled: { type: "boolean" } snmp_version: { type: "string" enum: ["v2c", "v3"] } } } }