powerscale.ClusterSnmp
Explore with Pulumi AI
This resource is used to manage the Cluster SNMP settings of PowerScale Array. We can Create, Update and Delete the Cluster SNMP using this resource. We can also import the existing Cluster SNMP settings from PowerScale array.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as powerscale from "@pulumi/powerscale";
// PowerScale Cluster SNMP Settings allow you to change the settings of SNMP
const exampleSnmpSettings = new powerscale.ClusterSnmp("exampleSnmpSettings", {enabled: true});
//enables/disables cluster SNMP Settings
import pulumi
import pulumi_powerscale as powerscale
# PowerScale Cluster SNMP Settings allow you to change the settings of SNMP
example_snmp_settings = powerscale.ClusterSnmp("exampleSnmpSettings", enabled=True)
#enables/disables cluster SNMP Settings
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/powerscale/powerscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// PowerScale Cluster SNMP Settings allow you to change the settings of SNMP
_, err := powerscale.NewClusterSnmp(ctx, "exampleSnmpSettings", &powerscale.ClusterSnmpArgs{
Enabled: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Powerscale = Pulumi.Powerscale;
return await Deployment.RunAsync(() =>
{
// PowerScale Cluster SNMP Settings allow you to change the settings of SNMP
var exampleSnmpSettings = new Powerscale.ClusterSnmp("exampleSnmpSettings", new()
{
Enabled = true,
});
//enables/disables cluster SNMP Settings
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.powerscale.ClusterSnmp;
import com.pulumi.powerscale.ClusterSnmpArgs;
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) {
// PowerScale Cluster SNMP Settings allow you to change the settings of SNMP
var exampleSnmpSettings = new ClusterSnmp("exampleSnmpSettings", ClusterSnmpArgs.builder()
.enabled(true)
.build());
//enables/disables cluster SNMP Settings
}
}
resources:
# PowerScale Cluster SNMP Settings allow you to change the settings of SNMP
exampleSnmpSettings:
type: powerscale:ClusterSnmp
properties:
# Required field
enabled: true
Create ClusterSnmp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ClusterSnmp(name: string, args: ClusterSnmpArgs, opts?: CustomResourceOptions);
@overload
def ClusterSnmp(resource_name: str,
args: ClusterSnmpArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ClusterSnmp(resource_name: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
read_only_community: Optional[str] = None,
snmp_v1_v2c_access: Optional[bool] = None,
snmp_v3_access: Optional[bool] = None,
snmp_v3_auth_protocol: Optional[str] = None,
snmp_v3_password: Optional[str] = None,
snmp_v3_priv_password: Optional[str] = None,
snmp_v3_priv_protocol: Optional[str] = None,
snmp_v3_read_only_user: Optional[str] = None,
snmp_v3_security_level: Optional[str] = None,
system_contact: Optional[str] = None,
system_location: Optional[str] = None)
func NewClusterSnmp(ctx *Context, name string, args ClusterSnmpArgs, opts ...ResourceOption) (*ClusterSnmp, error)
public ClusterSnmp(string name, ClusterSnmpArgs args, CustomResourceOptions? opts = null)
public ClusterSnmp(String name, ClusterSnmpArgs args)
public ClusterSnmp(String name, ClusterSnmpArgs args, CustomResourceOptions options)
type: powerscale:ClusterSnmp
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 ClusterSnmpArgs
- 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 ClusterSnmpArgs
- 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 ClusterSnmpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ClusterSnmpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ClusterSnmpArgs
- 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 clusterSnmpResource = new Powerscale.ClusterSnmp("clusterSnmpResource", new()
{
Enabled = false,
ReadOnlyCommunity = "string",
SnmpV1V2cAccess = false,
SnmpV3Access = false,
SnmpV3AuthProtocol = "string",
SnmpV3Password = "string",
SnmpV3PrivPassword = "string",
SnmpV3PrivProtocol = "string",
SnmpV3ReadOnlyUser = "string",
SnmpV3SecurityLevel = "string",
SystemContact = "string",
SystemLocation = "string",
});
example, err := powerscale.NewClusterSnmp(ctx, "clusterSnmpResource", &powerscale.ClusterSnmpArgs{
Enabled: pulumi.Bool(false),
ReadOnlyCommunity: pulumi.String("string"),
SnmpV1V2cAccess: pulumi.Bool(false),
SnmpV3Access: pulumi.Bool(false),
SnmpV3AuthProtocol: pulumi.String("string"),
SnmpV3Password: pulumi.String("string"),
SnmpV3PrivPassword: pulumi.String("string"),
SnmpV3PrivProtocol: pulumi.String("string"),
SnmpV3ReadOnlyUser: pulumi.String("string"),
SnmpV3SecurityLevel: pulumi.String("string"),
SystemContact: pulumi.String("string"),
SystemLocation: pulumi.String("string"),
})
var clusterSnmpResource = new ClusterSnmp("clusterSnmpResource", ClusterSnmpArgs.builder()
.enabled(false)
.readOnlyCommunity("string")
.snmpV1V2cAccess(false)
.snmpV3Access(false)
.snmpV3AuthProtocol("string")
.snmpV3Password("string")
.snmpV3PrivPassword("string")
.snmpV3PrivProtocol("string")
.snmpV3ReadOnlyUser("string")
.snmpV3SecurityLevel("string")
.systemContact("string")
.systemLocation("string")
.build());
cluster_snmp_resource = powerscale.ClusterSnmp("clusterSnmpResource",
enabled=False,
read_only_community="string",
snmp_v1_v2c_access=False,
snmp_v3_access=False,
snmp_v3_auth_protocol="string",
snmp_v3_password="string",
snmp_v3_priv_password="string",
snmp_v3_priv_protocol="string",
snmp_v3_read_only_user="string",
snmp_v3_security_level="string",
system_contact="string",
system_location="string")
const clusterSnmpResource = new powerscale.ClusterSnmp("clusterSnmpResource", {
enabled: false,
readOnlyCommunity: "string",
snmpV1V2cAccess: false,
snmpV3Access: false,
snmpV3AuthProtocol: "string",
snmpV3Password: "string",
snmpV3PrivPassword: "string",
snmpV3PrivProtocol: "string",
snmpV3ReadOnlyUser: "string",
snmpV3SecurityLevel: "string",
systemContact: "string",
systemLocation: "string",
});
type: powerscale:ClusterSnmp
properties:
enabled: false
readOnlyCommunity: string
snmpV1V2cAccess: false
snmpV3Access: false
snmpV3AuthProtocol: string
snmpV3Password: string
snmpV3PrivPassword: string
snmpV3PrivProtocol: string
snmpV3ReadOnlyUser: string
snmpV3SecurityLevel: string
systemContact: string
systemLocation: string
ClusterSnmp 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 ClusterSnmp resource accepts the following input properties:
- Enabled bool
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - Read
Only stringCommunity - The read-only community string for the Cluster SNMP.
- Snmp
V1V2c boolAccess - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - Snmp
V3Access bool - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- Snmp
V3Auth stringProtocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - Snmp
V3Password string - The SNMPv3 authentication password for the Cluster SNMP.
- Snmp
V3Priv stringPassword - The SNMPv3 privacy protocol password for the Cluster SNMP.
- Snmp
V3Priv stringProtocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- Snmp
V3Read stringOnly User - The SNMPv3 read-only user for the Cluster SNMP.
- Snmp
V3Security stringLevel - The SNMPv3 security level for the Cluster SNMP.
- System
Contact string - The system contact for the Cluster SNMP.
- System
Location string - The system location for the Cluster SNMP.
- Enabled bool
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - Read
Only stringCommunity - The read-only community string for the Cluster SNMP.
- Snmp
V1V2c boolAccess - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - Snmp
V3Access bool - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- Snmp
V3Auth stringProtocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - Snmp
V3Password string - The SNMPv3 authentication password for the Cluster SNMP.
- Snmp
V3Priv stringPassword - The SNMPv3 privacy protocol password for the Cluster SNMP.
- Snmp
V3Priv stringProtocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- Snmp
V3Read stringOnly User - The SNMPv3 read-only user for the Cluster SNMP.
- Snmp
V3Security stringLevel - The SNMPv3 security level for the Cluster SNMP.
- System
Contact string - The system contact for the Cluster SNMP.
- System
Location string - The system location for the Cluster SNMP.
- enabled Boolean
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - read
Only StringCommunity - The read-only community string for the Cluster SNMP.
- snmp
V1V2c BooleanAccess - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - snmp
V3Access Boolean - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- snmp
V3Auth StringProtocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - snmp
V3Password String - The SNMPv3 authentication password for the Cluster SNMP.
- snmp
V3Priv StringPassword - The SNMPv3 privacy protocol password for the Cluster SNMP.
- snmp
V3Priv StringProtocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- snmp
V3Read StringOnly User - The SNMPv3 read-only user for the Cluster SNMP.
- snmp
V3Security StringLevel - The SNMPv3 security level for the Cluster SNMP.
- system
Contact String - The system contact for the Cluster SNMP.
- system
Location String - The system location for the Cluster SNMP.
- enabled boolean
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - read
Only stringCommunity - The read-only community string for the Cluster SNMP.
- snmp
V1V2c booleanAccess - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - snmp
V3Access boolean - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- snmp
V3Auth stringProtocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - snmp
V3Password string - The SNMPv3 authentication password for the Cluster SNMP.
- snmp
V3Priv stringPassword - The SNMPv3 privacy protocol password for the Cluster SNMP.
- snmp
V3Priv stringProtocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- snmp
V3Read stringOnly User - The SNMPv3 read-only user for the Cluster SNMP.
- snmp
V3Security stringLevel - The SNMPv3 security level for the Cluster SNMP.
- system
Contact string - The system contact for the Cluster SNMP.
- system
Location string - The system location for the Cluster SNMP.
- enabled bool
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - read_
only_ strcommunity - The read-only community string for the Cluster SNMP.
- snmp_
v1_ boolv2c_ access - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - snmp_
v3_ boolaccess - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- snmp_
v3_ strauth_ protocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - snmp_
v3_ strpassword - The SNMPv3 authentication password for the Cluster SNMP.
- snmp_
v3_ strpriv_ password - The SNMPv3 privacy protocol password for the Cluster SNMP.
- snmp_
v3_ strpriv_ protocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- snmp_
v3_ strread_ only_ user - The SNMPv3 read-only user for the Cluster SNMP.
- snmp_
v3_ strsecurity_ level - The SNMPv3 security level for the Cluster SNMP.
- system_
contact str - The system contact for the Cluster SNMP.
- system_
location str - The system location for the Cluster SNMP.
- enabled Boolean
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - read
Only StringCommunity - The read-only community string for the Cluster SNMP.
- snmp
V1V2c BooleanAccess - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - snmp
V3Access Boolean - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- snmp
V3Auth StringProtocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - snmp
V3Password String - The SNMPv3 authentication password for the Cluster SNMP.
- snmp
V3Priv StringPassword - The SNMPv3 privacy protocol password for the Cluster SNMP.
- snmp
V3Priv StringProtocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- snmp
V3Read StringOnly User - The SNMPv3 read-only user for the Cluster SNMP.
- snmp
V3Security StringLevel - The SNMPv3 security level for the Cluster SNMP.
- system
Contact String - The system contact for the Cluster SNMP.
- system
Location String - The system location for the Cluster SNMP.
Outputs
All input properties are implicitly available as output properties. Additionally, the ClusterSnmp 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 ClusterSnmp Resource
Get an existing ClusterSnmp 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?: ClusterSnmpState, opts?: CustomResourceOptions): ClusterSnmp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
read_only_community: Optional[str] = None,
snmp_v1_v2c_access: Optional[bool] = None,
snmp_v3_access: Optional[bool] = None,
snmp_v3_auth_protocol: Optional[str] = None,
snmp_v3_password: Optional[str] = None,
snmp_v3_priv_password: Optional[str] = None,
snmp_v3_priv_protocol: Optional[str] = None,
snmp_v3_read_only_user: Optional[str] = None,
snmp_v3_security_level: Optional[str] = None,
system_contact: Optional[str] = None,
system_location: Optional[str] = None) -> ClusterSnmp
func GetClusterSnmp(ctx *Context, name string, id IDInput, state *ClusterSnmpState, opts ...ResourceOption) (*ClusterSnmp, error)
public static ClusterSnmp Get(string name, Input<string> id, ClusterSnmpState? state, CustomResourceOptions? opts = null)
public static ClusterSnmp get(String name, Output<String> id, ClusterSnmpState state, CustomResourceOptions options)
resources: _: type: powerscale:ClusterSnmp 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.
- Enabled bool
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - Read
Only stringCommunity - The read-only community string for the Cluster SNMP.
- Snmp
V1V2c boolAccess - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - Snmp
V3Access bool - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- Snmp
V3Auth stringProtocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - Snmp
V3Password string - The SNMPv3 authentication password for the Cluster SNMP.
- Snmp
V3Priv stringPassword - The SNMPv3 privacy protocol password for the Cluster SNMP.
- Snmp
V3Priv stringProtocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- Snmp
V3Read stringOnly User - The SNMPv3 read-only user for the Cluster SNMP.
- Snmp
V3Security stringLevel - The SNMPv3 security level for the Cluster SNMP.
- System
Contact string - The system contact for the Cluster SNMP.
- System
Location string - The system location for the Cluster SNMP.
- Enabled bool
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - Read
Only stringCommunity - The read-only community string for the Cluster SNMP.
- Snmp
V1V2c boolAccess - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - Snmp
V3Access bool - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- Snmp
V3Auth stringProtocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - Snmp
V3Password string - The SNMPv3 authentication password for the Cluster SNMP.
- Snmp
V3Priv stringPassword - The SNMPv3 privacy protocol password for the Cluster SNMP.
- Snmp
V3Priv stringProtocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- Snmp
V3Read stringOnly User - The SNMPv3 read-only user for the Cluster SNMP.
- Snmp
V3Security stringLevel - The SNMPv3 security level for the Cluster SNMP.
- System
Contact string - The system contact for the Cluster SNMP.
- System
Location string - The system location for the Cluster SNMP.
- enabled Boolean
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - read
Only StringCommunity - The read-only community string for the Cluster SNMP.
- snmp
V1V2c BooleanAccess - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - snmp
V3Access Boolean - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- snmp
V3Auth StringProtocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - snmp
V3Password String - The SNMPv3 authentication password for the Cluster SNMP.
- snmp
V3Priv StringPassword - The SNMPv3 privacy protocol password for the Cluster SNMP.
- snmp
V3Priv StringProtocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- snmp
V3Read StringOnly User - The SNMPv3 read-only user for the Cluster SNMP.
- snmp
V3Security StringLevel - The SNMPv3 security level for the Cluster SNMP.
- system
Contact String - The system contact for the Cluster SNMP.
- system
Location String - The system location for the Cluster SNMP.
- enabled boolean
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - read
Only stringCommunity - The read-only community string for the Cluster SNMP.
- snmp
V1V2c booleanAccess - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - snmp
V3Access boolean - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- snmp
V3Auth stringProtocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - snmp
V3Password string - The SNMPv3 authentication password for the Cluster SNMP.
- snmp
V3Priv stringPassword - The SNMPv3 privacy protocol password for the Cluster SNMP.
- snmp
V3Priv stringProtocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- snmp
V3Read stringOnly User - The SNMPv3 read-only user for the Cluster SNMP.
- snmp
V3Security stringLevel - The SNMPv3 security level for the Cluster SNMP.
- system
Contact string - The system contact for the Cluster SNMP.
- system
Location string - The system location for the Cluster SNMP.
- enabled bool
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - read_
only_ strcommunity - The read-only community string for the Cluster SNMP.
- snmp_
v1_ boolv2c_ access - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - snmp_
v3_ boolaccess - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- snmp_
v3_ strauth_ protocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - snmp_
v3_ strpassword - The SNMPv3 authentication password for the Cluster SNMP.
- snmp_
v3_ strpriv_ password - The SNMPv3 privacy protocol password for the Cluster SNMP.
- snmp_
v3_ strpriv_ protocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- snmp_
v3_ strread_ only_ user - The SNMPv3 read-only user for the Cluster SNMP.
- snmp_
v3_ strsecurity_ level - The SNMPv3 security level for the Cluster SNMP.
- system_
contact str - The system contact for the Cluster SNMP.
- system_
location str - The system location for the Cluster SNMP.
- enabled Boolean
- True if the Cluster SNMP is enabled. If true, either
snmp_v1v2_access
orsnmp_v3_access
is required. - read
Only StringCommunity - The read-only community string for the Cluster SNMP.
- snmp
V1V2c BooleanAccess - The SNMPv1/v2c access for the Cluster SNMP. Also requires
read_only_community
. - snmp
V3Access Boolean - The SNMPv3 access for the Cluster SNMP. Also requires snmpv3password.
- snmp
V3Auth StringProtocol - The SNMPv3 authentication protocol for the Cluster SNMP. Accepted values are
MD5
andSHA
. - snmp
V3Password String - The SNMPv3 authentication password for the Cluster SNMP.
- snmp
V3Priv StringPassword - The SNMPv3 privacy protocol password for the Cluster SNMP.
- snmp
V3Priv StringProtocol - The SNMPv3 privacy protocol for the Cluster SNMP.
- snmp
V3Read StringOnly User - The SNMPv3 read-only user for the Cluster SNMP.
- snmp
V3Security StringLevel - The SNMPv3 security level for the Cluster SNMP.
- system
Contact String - The system contact for the Cluster SNMP.
- system
Location String - The system location for the Cluster SNMP.
Import
Copyright (c) 2024 Dell Inc., or its subsidiaries. All Rights Reserved.
Licensed under the Mozilla Public License Version 2.0 (the “License”);
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://mozilla.org/MPL/2.0/
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an “AS IS” BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
The command is
$ pulumi import powerscale:index/clusterSnmp:ClusterSnmp example_snmp_settings <anyString>
Example:
$ pulumi import powerscale:index/clusterSnmp:ClusterSnmp example_snmp_settings "cluster_snmp"
after running this command, populate the enabled field and other required parameters in the config file to start managing this resource.
Note: running “terraform show” after importing shows the current config/state of the resource. You can copy/paste that config to make it easier to manage the resource.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- powerscale dell/terraform-provider-powerscale
- License
- Notes
- This Pulumi package is based on the
powerscale
Terraform Provider.