powerflex.ResourceCredential
Explore with Pulumi AI
Import
/*
Copyright (c) 2025 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.
*/
import resource credential by its id
$ pulumi import powerflex:index/resourceCredential:ResourceCredential example "<id>"
This will import the resource instance with specified ID into your Terraform state.
After successful import, you can run terraform state list to ensure the resource has been imported successfully.
Now, you can fill in the resource block with the appropriate arguments and settings that match the imported resource’s real-world configuration.
Execute pulumi preview to see if your configuration and the imported resource are in sync. Make adjustments if needed.
Finally, execute pulumi up to bring the resource fully under Terraform’s management.
Now, the resource which was not part of terraform became part of Terraform managed infrastructure.
Create ResourceCredential Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ResourceCredential(name: string, args: ResourceCredentialArgs, opts?: CustomResourceOptions);
@overload
def ResourceCredential(resource_name: str,
args: ResourceCredentialArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ResourceCredential(resource_name: str,
opts: Optional[ResourceOptions] = None,
password: Optional[str] = None,
username: Optional[str] = None,
type: Optional[str] = None,
snmp_v2_community_string: Optional[str] = None,
os_username: Optional[str] = None,
os_password: Optional[str] = None,
domain: Optional[str] = None,
snmp_v3_des_authentication_password: Optional[str] = None,
snmp_v3_md5_authentication_password: Optional[str] = None,
snmp_v3_security_level: Optional[str] = None,
snmp_v3_security_name: Optional[str] = None,
ssh_private_key: Optional[str] = None,
name: Optional[str] = None,
key_pair_name: Optional[str] = None)
func NewResourceCredential(ctx *Context, name string, args ResourceCredentialArgs, opts ...ResourceOption) (*ResourceCredential, error)
public ResourceCredential(string name, ResourceCredentialArgs args, CustomResourceOptions? opts = null)
public ResourceCredential(String name, ResourceCredentialArgs args)
public ResourceCredential(String name, ResourceCredentialArgs args, CustomResourceOptions options)
type: powerflex:ResourceCredential
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 ResourceCredentialArgs
- 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 ResourceCredentialArgs
- 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 ResourceCredentialArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ResourceCredentialArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ResourceCredentialArgs
- 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 resourceCredentialResource = new Powerflex.ResourceCredential("resourceCredentialResource", new()
{
Password = "string",
Username = "string",
Type = "string",
SnmpV2CommunityString = "string",
OsUsername = "string",
OsPassword = "string",
Domain = "string",
SnmpV3DesAuthenticationPassword = "string",
SnmpV3Md5AuthenticationPassword = "string",
SnmpV3SecurityLevel = "string",
SnmpV3SecurityName = "string",
SshPrivateKey = "string",
Name = "string",
KeyPairName = "string",
});
example, err := powerflex.NewResourceCredential(ctx, "resourceCredentialResource", &powerflex.ResourceCredentialArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
Type: pulumi.String("string"),
SnmpV2CommunityString: pulumi.String("string"),
OsUsername: pulumi.String("string"),
OsPassword: pulumi.String("string"),
Domain: pulumi.String("string"),
SnmpV3DesAuthenticationPassword: pulumi.String("string"),
SnmpV3Md5AuthenticationPassword: pulumi.String("string"),
SnmpV3SecurityLevel: pulumi.String("string"),
SnmpV3SecurityName: pulumi.String("string"),
SshPrivateKey: pulumi.String("string"),
Name: pulumi.String("string"),
KeyPairName: pulumi.String("string"),
})
var resourceCredentialResource = new ResourceCredential("resourceCredentialResource", ResourceCredentialArgs.builder()
.password("string")
.username("string")
.type("string")
.snmpV2CommunityString("string")
.osUsername("string")
.osPassword("string")
.domain("string")
.snmpV3DesAuthenticationPassword("string")
.snmpV3Md5AuthenticationPassword("string")
.snmpV3SecurityLevel("string")
.snmpV3SecurityName("string")
.sshPrivateKey("string")
.name("string")
.keyPairName("string")
.build());
resource_credential_resource = powerflex.ResourceCredential("resourceCredentialResource",
password="string",
username="string",
type="string",
snmp_v2_community_string="string",
os_username="string",
os_password="string",
domain="string",
snmp_v3_des_authentication_password="string",
snmp_v3_md5_authentication_password="string",
snmp_v3_security_level="string",
snmp_v3_security_name="string",
ssh_private_key="string",
name="string",
key_pair_name="string")
const resourceCredentialResource = new powerflex.ResourceCredential("resourceCredentialResource", {
password: "string",
username: "string",
type: "string",
snmpV2CommunityString: "string",
osUsername: "string",
osPassword: "string",
domain: "string",
snmpV3DesAuthenticationPassword: "string",
snmpV3Md5AuthenticationPassword: "string",
snmpV3SecurityLevel: "string",
snmpV3SecurityName: "string",
sshPrivateKey: "string",
name: "string",
keyPairName: "string",
});
type: powerflex:ResourceCredential
properties:
domain: string
keyPairName: string
name: string
osPassword: string
osUsername: string
password: string
snmpV2CommunityString: string
snmpV3DesAuthenticationPassword: string
snmpV3Md5AuthenticationPassword: string
snmpV3SecurityLevel: string
snmpV3SecurityName: string
sshPrivateKey: string
type: string
username: string
ResourceCredential 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 ResourceCredential resource accepts the following input properties:
- Password string
- Resource Credential password
- Type string
- Resource Credential type
- Username string
- Resource Credential username
- Domain string
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- Key
Pair stringName - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- Name string
- Resource Credential name
- Os
Password string - Resource Credential os_password, used by types PowerflexGateway
- Os
Username string - Resource Credential os_username, used by types PowerflexGateway
- Snmp
V2Community stringString - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- Snmp
V3Des stringAuthentication Password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- Snmp
V3Md5Authentication stringPassword - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- Snmp
V3Security stringLevel - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- Snmp
V3Security stringName - Resource Credential snmpv3security_name, used by types Node
- Ssh
Private stringKey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- Password string
- Resource Credential password
- Type string
- Resource Credential type
- Username string
- Resource Credential username
- Domain string
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- Key
Pair stringName - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- Name string
- Resource Credential name
- Os
Password string - Resource Credential os_password, used by types PowerflexGateway
- Os
Username string - Resource Credential os_username, used by types PowerflexGateway
- Snmp
V2Community stringString - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- Snmp
V3Des stringAuthentication Password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- Snmp
V3Md5Authentication stringPassword - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- Snmp
V3Security stringLevel - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- Snmp
V3Security stringName - Resource Credential snmpv3security_name, used by types Node
- Ssh
Private stringKey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- password String
- Resource Credential password
- type String
- Resource Credential type
- username String
- Resource Credential username
- domain String
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- key
Pair StringName - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- name String
- Resource Credential name
- os
Password String - Resource Credential os_password, used by types PowerflexGateway
- os
Username String - Resource Credential os_username, used by types PowerflexGateway
- snmp
V2Community StringString - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- snmp
V3Des StringAuthentication Password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- snmp
V3Md5Authentication StringPassword - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- snmp
V3Security StringLevel - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- snmp
V3Security StringName - Resource Credential snmpv3security_name, used by types Node
- ssh
Private StringKey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- password string
- Resource Credential password
- type string
- Resource Credential type
- username string
- Resource Credential username
- domain string
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- key
Pair stringName - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- name string
- Resource Credential name
- os
Password string - Resource Credential os_password, used by types PowerflexGateway
- os
Username string - Resource Credential os_username, used by types PowerflexGateway
- snmp
V2Community stringString - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- snmp
V3Des stringAuthentication Password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- snmp
V3Md5Authentication stringPassword - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- snmp
V3Security stringLevel - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- snmp
V3Security stringName - Resource Credential snmpv3security_name, used by types Node
- ssh
Private stringKey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- password str
- Resource Credential password
- type str
- Resource Credential type
- username str
- Resource Credential username
- domain str
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- key_
pair_ strname - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- name str
- Resource Credential name
- os_
password str - Resource Credential os_password, used by types PowerflexGateway
- os_
username str - Resource Credential os_username, used by types PowerflexGateway
- snmp_
v2_ strcommunity_ string - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- snmp_
v3_ strdes_ authentication_ password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- snmp_
v3_ strmd5_ authentication_ password - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- snmp_
v3_ strsecurity_ level - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- snmp_
v3_ strsecurity_ name - Resource Credential snmpv3security_name, used by types Node
- ssh_
private_ strkey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- password String
- Resource Credential password
- type String
- Resource Credential type
- username String
- Resource Credential username
- domain String
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- key
Pair StringName - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- name String
- Resource Credential name
- os
Password String - Resource Credential os_password, used by types PowerflexGateway
- os
Username String - Resource Credential os_username, used by types PowerflexGateway
- snmp
V2Community StringString - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- snmp
V3Des StringAuthentication Password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- snmp
V3Md5Authentication StringPassword - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- snmp
V3Security StringLevel - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- snmp
V3Security StringName - Resource Credential snmpv3security_name, used by types Node
- ssh
Private StringKey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
Outputs
All input properties are implicitly available as output properties. Additionally, the ResourceCredential resource produces the following output properties:
- Created
By string - Resource Credential created_by
- Created
Date string - Resource Credential created_date
- Id string
- The provider-assigned unique ID for this managed resource.
- Updated
By string - Resource Credential updated_by
- Updated
Date string - Resource Credential updated_date
- Created
By string - Resource Credential created_by
- Created
Date string - Resource Credential created_date
- Id string
- The provider-assigned unique ID for this managed resource.
- Updated
By string - Resource Credential updated_by
- Updated
Date string - Resource Credential updated_date
- created
By String - Resource Credential created_by
- created
Date String - Resource Credential created_date
- id String
- The provider-assigned unique ID for this managed resource.
- updated
By String - Resource Credential updated_by
- updated
Date String - Resource Credential updated_date
- created
By string - Resource Credential created_by
- created
Date string - Resource Credential created_date
- id string
- The provider-assigned unique ID for this managed resource.
- updated
By string - Resource Credential updated_by
- updated
Date string - Resource Credential updated_date
- created_
by str - Resource Credential created_by
- created_
date str - Resource Credential created_date
- id str
- The provider-assigned unique ID for this managed resource.
- updated_
by str - Resource Credential updated_by
- updated_
date str - Resource Credential updated_date
- created
By String - Resource Credential created_by
- created
Date String - Resource Credential created_date
- id String
- The provider-assigned unique ID for this managed resource.
- updated
By String - Resource Credential updated_by
- updated
Date String - Resource Credential updated_date
Look up Existing ResourceCredential Resource
Get an existing ResourceCredential 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?: ResourceCredentialState, opts?: CustomResourceOptions): ResourceCredential
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_by: Optional[str] = None,
created_date: Optional[str] = None,
domain: Optional[str] = None,
key_pair_name: Optional[str] = None,
name: Optional[str] = None,
os_password: Optional[str] = None,
os_username: Optional[str] = None,
password: Optional[str] = None,
snmp_v2_community_string: Optional[str] = None,
snmp_v3_des_authentication_password: Optional[str] = None,
snmp_v3_md5_authentication_password: Optional[str] = None,
snmp_v3_security_level: Optional[str] = None,
snmp_v3_security_name: Optional[str] = None,
ssh_private_key: Optional[str] = None,
type: Optional[str] = None,
updated_by: Optional[str] = None,
updated_date: Optional[str] = None,
username: Optional[str] = None) -> ResourceCredential
func GetResourceCredential(ctx *Context, name string, id IDInput, state *ResourceCredentialState, opts ...ResourceOption) (*ResourceCredential, error)
public static ResourceCredential Get(string name, Input<string> id, ResourceCredentialState? state, CustomResourceOptions? opts = null)
public static ResourceCredential get(String name, Output<String> id, ResourceCredentialState state, CustomResourceOptions options)
resources: _: type: powerflex:ResourceCredential 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.
- Created
By string - Resource Credential created_by
- Created
Date string - Resource Credential created_date
- Domain string
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- Key
Pair stringName - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- Name string
- Resource Credential name
- Os
Password string - Resource Credential os_password, used by types PowerflexGateway
- Os
Username string - Resource Credential os_username, used by types PowerflexGateway
- Password string
- Resource Credential password
- Snmp
V2Community stringString - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- Snmp
V3Des stringAuthentication Password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- Snmp
V3Md5Authentication stringPassword - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- Snmp
V3Security stringLevel - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- Snmp
V3Security stringName - Resource Credential snmpv3security_name, used by types Node
- Ssh
Private stringKey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- Type string
- Resource Credential type
- Updated
By string - Resource Credential updated_by
- Updated
Date string - Resource Credential updated_date
- Username string
- Resource Credential username
- Created
By string - Resource Credential created_by
- Created
Date string - Resource Credential created_date
- Domain string
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- Key
Pair stringName - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- Name string
- Resource Credential name
- Os
Password string - Resource Credential os_password, used by types PowerflexGateway
- Os
Username string - Resource Credential os_username, used by types PowerflexGateway
- Password string
- Resource Credential password
- Snmp
V2Community stringString - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- Snmp
V3Des stringAuthentication Password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- Snmp
V3Md5Authentication stringPassword - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- Snmp
V3Security stringLevel - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- Snmp
V3Security stringName - Resource Credential snmpv3security_name, used by types Node
- Ssh
Private stringKey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- Type string
- Resource Credential type
- Updated
By string - Resource Credential updated_by
- Updated
Date string - Resource Credential updated_date
- Username string
- Resource Credential username
- created
By String - Resource Credential created_by
- created
Date String - Resource Credential created_date
- domain String
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- key
Pair StringName - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- name String
- Resource Credential name
- os
Password String - Resource Credential os_password, used by types PowerflexGateway
- os
Username String - Resource Credential os_username, used by types PowerflexGateway
- password String
- Resource Credential password
- snmp
V2Community StringString - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- snmp
V3Des StringAuthentication Password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- snmp
V3Md5Authentication StringPassword - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- snmp
V3Security StringLevel - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- snmp
V3Security StringName - Resource Credential snmpv3security_name, used by types Node
- ssh
Private StringKey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- type String
- Resource Credential type
- updated
By String - Resource Credential updated_by
- updated
Date String - Resource Credential updated_date
- username String
- Resource Credential username
- created
By string - Resource Credential created_by
- created
Date string - Resource Credential created_date
- domain string
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- key
Pair stringName - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- name string
- Resource Credential name
- os
Password string - Resource Credential os_password, used by types PowerflexGateway
- os
Username string - Resource Credential os_username, used by types PowerflexGateway
- password string
- Resource Credential password
- snmp
V2Community stringString - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- snmp
V3Des stringAuthentication Password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- snmp
V3Md5Authentication stringPassword - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- snmp
V3Security stringLevel - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- snmp
V3Security stringName - Resource Credential snmpv3security_name, used by types Node
- ssh
Private stringKey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- type string
- Resource Credential type
- updated
By string - Resource Credential updated_by
- updated
Date string - Resource Credential updated_date
- username string
- Resource Credential username
- created_
by str - Resource Credential created_by
- created_
date str - Resource Credential created_date
- domain str
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- key_
pair_ strname - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- name str
- Resource Credential name
- os_
password str - Resource Credential os_password, used by types PowerflexGateway
- os_
username str - Resource Credential os_username, used by types PowerflexGateway
- password str
- Resource Credential password
- snmp_
v2_ strcommunity_ string - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- snmp_
v3_ strdes_ authentication_ password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- snmp_
v3_ strmd5_ authentication_ password - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- snmp_
v3_ strsecurity_ level - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- snmp_
v3_ strsecurity_ name - Resource Credential snmpv3security_name, used by types Node
- ssh_
private_ strkey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- type str
- Resource Credential type
- updated_
by str - Resource Credential updated_by
- updated_
date str - Resource Credential updated_date
- username str
- Resource Credential username
- created
By String - Resource Credential created_by
- created
Date String - Resource Credential created_date
- domain String
- Resource Credential domain, used by types OSUser, ElementManager and vCenterCredential
- key
Pair StringName - Resource Credential keypairname, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential. Is Required if sshprivatekey is set
- name String
- Resource Credential name
- os
Password String - Resource Credential os_password, used by types PowerflexGateway
- os
Username String - Resource Credential os_username, used by types PowerflexGateway
- password String
- Resource Credential password
- snmp
V2Community StringString - Resource Credential snmpv2community_string, used by types Node, Switch and ElementManager. If unset it will default to public
- snmp
V3Des StringAuthentication Password - Resource Credential snmpv3desauthenticationpassword, used by types Node when snmpv3security_level is set to Maximal
- snmp
V3Md5Authentication StringPassword - Resource Credential snmpv3md5authenticationpassword, used by types Node when snmpv3security_level is set to Moderate
- snmp
V3Security StringLevel - Resource Credential snmpv3securitylevel, used by types Node. Minimal requires only snmpv3securityname, Moderate requires snmpv3securityname and snmpv3md5authenticationpassword, Maximal requires snmpv3securityname, snmpv3md5authenticationpassword and snmpv3desauthenticationpassword
- snmp
V3Security StringName - Resource Credential snmpv3security_name, used by types Node
- ssh
Private StringKey - Resource Credential sshprivatekey, can be used by types Node, Switch, OSAdminCrednetial and OSUserCredential
- type String
- Resource Credential type
- updated
By String - Resource Credential updated_by
- updated
Date String - Resource Credential updated_date
- username String
- Resource Credential username
Package Details
- Repository
- powerflex dell/terraform-provider-powerflex
- License
- Notes
- This Pulumi package is based on the
powerflex
Terraform Provider.