1. Packages
  2. Azure Native v2
  3. API Docs
  4. storsimple
  5. ManagerExtendedInfo
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.storsimple.ManagerExtendedInfo

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

The extended info of the manager. Azure REST API version: 2017-06-01. Prior API version in Azure Native 1.x: 2017-06-01.

Example Usage

ManagersCreateExtendedInfo

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var managerExtendedInfo = new AzureNative.StorSimple.ManagerExtendedInfo("managerExtendedInfo", new()
    {
        Algorithm = "None",
        IntegrityKey = "BIl+RHqO8PZ6DRvuXTTK7g==",
        ManagerName = "ManagerForSDKTest2",
        ResourceGroupName = "ResourceGroupForSDKTest",
    });

});
Copy
package main

import (
	storsimple "github.com/pulumi/pulumi-azure-native-sdk/storsimple/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := storsimple.NewManagerExtendedInfo(ctx, "managerExtendedInfo", &storsimple.ManagerExtendedInfoArgs{
			Algorithm:         pulumi.String("None"),
			IntegrityKey:      pulumi.String("BIl+RHqO8PZ6DRvuXTTK7g=="),
			ManagerName:       pulumi.String("ManagerForSDKTest2"),
			ResourceGroupName: pulumi.String("ResourceGroupForSDKTest"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.storsimple.ManagerExtendedInfo;
import com.pulumi.azurenative.storsimple.ManagerExtendedInfoArgs;
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) {
        var managerExtendedInfo = new ManagerExtendedInfo("managerExtendedInfo", ManagerExtendedInfoArgs.builder()
            .algorithm("None")
            .integrityKey("BIl+RHqO8PZ6DRvuXTTK7g==")
            .managerName("ManagerForSDKTest2")
            .resourceGroupName("ResourceGroupForSDKTest")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const managerExtendedInfo = new azure_native.storsimple.ManagerExtendedInfo("managerExtendedInfo", {
    algorithm: "None",
    integrityKey: "BIl+RHqO8PZ6DRvuXTTK7g==",
    managerName: "ManagerForSDKTest2",
    resourceGroupName: "ResourceGroupForSDKTest",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

manager_extended_info = azure_native.storsimple.ManagerExtendedInfo("managerExtendedInfo",
    algorithm="None",
    integrity_key="BIl+RHqO8PZ6DRvuXTTK7g==",
    manager_name="ManagerForSDKTest2",
    resource_group_name="ResourceGroupForSDKTest")
Copy
resources:
  managerExtendedInfo:
    type: azure-native:storsimple:ManagerExtendedInfo
    properties:
      algorithm: None
      integrityKey: BIl+RHqO8PZ6DRvuXTTK7g==
      managerName: ManagerForSDKTest2
      resourceGroupName: ResourceGroupForSDKTest
Copy

Create ManagerExtendedInfo Resource

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

Constructor syntax

new ManagerExtendedInfo(name: string, args: ManagerExtendedInfoArgs, opts?: CustomResourceOptions);
@overload
def ManagerExtendedInfo(resource_name: str,
                        args: ManagerExtendedInfoArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def ManagerExtendedInfo(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        algorithm: Optional[str] = None,
                        integrity_key: Optional[str] = None,
                        manager_name: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        encryption_key: Optional[str] = None,
                        encryption_key_thumbprint: Optional[str] = None,
                        kind: Optional[Kind] = None,
                        portal_certificate_thumbprint: Optional[str] = None,
                        version: Optional[str] = None)
func NewManagerExtendedInfo(ctx *Context, name string, args ManagerExtendedInfoArgs, opts ...ResourceOption) (*ManagerExtendedInfo, error)
public ManagerExtendedInfo(string name, ManagerExtendedInfoArgs args, CustomResourceOptions? opts = null)
public ManagerExtendedInfo(String name, ManagerExtendedInfoArgs args)
public ManagerExtendedInfo(String name, ManagerExtendedInfoArgs args, CustomResourceOptions options)
type: azure-native:storsimple:ManagerExtendedInfo
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ManagerExtendedInfoArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ManagerExtendedInfoArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ManagerExtendedInfoArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ManagerExtendedInfoArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagerExtendedInfoArgs
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 managerExtendedInfoResource = new AzureNative.Storsimple.ManagerExtendedInfo("managerExtendedInfoResource", new()
{
    Algorithm = "string",
    IntegrityKey = "string",
    ManagerName = "string",
    ResourceGroupName = "string",
    EncryptionKey = "string",
    EncryptionKeyThumbprint = "string",
    Kind = "Series8000",
    PortalCertificateThumbprint = "string",
    Version = "string",
});
Copy
example, err := storsimple.NewManagerExtendedInfo(ctx, "managerExtendedInfoResource", &storsimple.ManagerExtendedInfoArgs{
	Algorithm:                   "string",
	IntegrityKey:                "string",
	ManagerName:                 "string",
	ResourceGroupName:           "string",
	EncryptionKey:               "string",
	EncryptionKeyThumbprint:     "string",
	Kind:                        "Series8000",
	PortalCertificateThumbprint: "string",
	Version:                     "string",
})
Copy
var managerExtendedInfoResource = new ManagerExtendedInfo("managerExtendedInfoResource", ManagerExtendedInfoArgs.builder()
    .algorithm("string")
    .integrityKey("string")
    .managerName("string")
    .resourceGroupName("string")
    .encryptionKey("string")
    .encryptionKeyThumbprint("string")
    .kind("Series8000")
    .portalCertificateThumbprint("string")
    .version("string")
    .build());
Copy
manager_extended_info_resource = azure_native.storsimple.ManagerExtendedInfo("managerExtendedInfoResource",
    algorithm=string,
    integrity_key=string,
    manager_name=string,
    resource_group_name=string,
    encryption_key=string,
    encryption_key_thumbprint=string,
    kind=Series8000,
    portal_certificate_thumbprint=string,
    version=string)
Copy
const managerExtendedInfoResource = new azure_native.storsimple.ManagerExtendedInfo("managerExtendedInfoResource", {
    algorithm: "string",
    integrityKey: "string",
    managerName: "string",
    resourceGroupName: "string",
    encryptionKey: "string",
    encryptionKeyThumbprint: "string",
    kind: "Series8000",
    portalCertificateThumbprint: "string",
    version: "string",
});
Copy
type: azure-native:storsimple:ManagerExtendedInfo
properties:
    algorithm: string
    encryptionKey: string
    encryptionKeyThumbprint: string
    integrityKey: string
    kind: Series8000
    managerName: string
    portalCertificateThumbprint: string
    resourceGroupName: string
    version: string
Copy

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

Algorithm This property is required. string
Represents the encryption algorithm used to encrypt the keys. None - if Key is saved in plain text format. Algorithm name - if key is encrypted
IntegrityKey This property is required. string
Represents the CIK of the resource.
ManagerName
This property is required.
Changes to this property will trigger replacement.
string
The manager name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name
EncryptionKey string
Represents the CEK of the resource.
EncryptionKeyThumbprint string
Represents the Cert thumbprint that was used to encrypt the CEK.
Kind Pulumi.AzureNative.StorSimple.Kind
The Kind of the object. Currently only Series8000 is supported
PortalCertificateThumbprint string
Represents the portal thumbprint which can be used optionally to encrypt the entire data before storing it.
Version string
The version of the extended info being persisted.
Algorithm This property is required. string
Represents the encryption algorithm used to encrypt the keys. None - if Key is saved in plain text format. Algorithm name - if key is encrypted
IntegrityKey This property is required. string
Represents the CIK of the resource.
ManagerName
This property is required.
Changes to this property will trigger replacement.
string
The manager name
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name
EncryptionKey string
Represents the CEK of the resource.
EncryptionKeyThumbprint string
Represents the Cert thumbprint that was used to encrypt the CEK.
Kind Kind
The Kind of the object. Currently only Series8000 is supported
PortalCertificateThumbprint string
Represents the portal thumbprint which can be used optionally to encrypt the entire data before storing it.
Version string
The version of the extended info being persisted.
algorithm This property is required. String
Represents the encryption algorithm used to encrypt the keys. None - if Key is saved in plain text format. Algorithm name - if key is encrypted
integrityKey This property is required. String
Represents the CIK of the resource.
managerName
This property is required.
Changes to this property will trigger replacement.
String
The manager name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name
encryptionKey String
Represents the CEK of the resource.
encryptionKeyThumbprint String
Represents the Cert thumbprint that was used to encrypt the CEK.
kind Kind
The Kind of the object. Currently only Series8000 is supported
portalCertificateThumbprint String
Represents the portal thumbprint which can be used optionally to encrypt the entire data before storing it.
version String
The version of the extended info being persisted.
algorithm This property is required. string
Represents the encryption algorithm used to encrypt the keys. None - if Key is saved in plain text format. Algorithm name - if key is encrypted
integrityKey This property is required. string
Represents the CIK of the resource.
managerName
This property is required.
Changes to this property will trigger replacement.
string
The manager name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The resource group name
encryptionKey string
Represents the CEK of the resource.
encryptionKeyThumbprint string
Represents the Cert thumbprint that was used to encrypt the CEK.
kind Kind
The Kind of the object. Currently only Series8000 is supported
portalCertificateThumbprint string
Represents the portal thumbprint which can be used optionally to encrypt the entire data before storing it.
version string
The version of the extended info being persisted.
algorithm This property is required. str
Represents the encryption algorithm used to encrypt the keys. None - if Key is saved in plain text format. Algorithm name - if key is encrypted
integrity_key This property is required. str
Represents the CIK of the resource.
manager_name
This property is required.
Changes to this property will trigger replacement.
str
The manager name
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The resource group name
encryption_key str
Represents the CEK of the resource.
encryption_key_thumbprint str
Represents the Cert thumbprint that was used to encrypt the CEK.
kind Kind
The Kind of the object. Currently only Series8000 is supported
portal_certificate_thumbprint str
Represents the portal thumbprint which can be used optionally to encrypt the entire data before storing it.
version str
The version of the extended info being persisted.
algorithm This property is required. String
Represents the encryption algorithm used to encrypt the keys. None - if Key is saved in plain text format. Algorithm name - if key is encrypted
integrityKey This property is required. String
Represents the CIK of the resource.
managerName
This property is required.
Changes to this property will trigger replacement.
String
The manager name
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The resource group name
encryptionKey String
Represents the CEK of the resource.
encryptionKeyThumbprint String
Represents the Cert thumbprint that was used to encrypt the CEK.
kind "Series8000"
The Kind of the object. Currently only Series8000 is supported
portalCertificateThumbprint String
Represents the portal thumbprint which can be used optionally to encrypt the entire data before storing it.
version String
The version of the extended info being persisted.

Outputs

All input properties are implicitly available as output properties. Additionally, the ManagerExtendedInfo resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the object.
Type string
The hierarchical type of the object.
Etag string
The etag of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the object.
Type string
The hierarchical type of the object.
Etag string
The etag of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the object.
type String
The hierarchical type of the object.
etag String
The etag of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the object.
type string
The hierarchical type of the object.
etag string
The etag of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the object.
type str
The hierarchical type of the object.
etag str
The etag of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the object.
type String
The hierarchical type of the object.
etag String
The etag of the resource.

Supporting Types

Kind
, KindArgs

Series8000
Series8000
KindSeries8000
Series8000
Series8000
Series8000
Series8000
Series8000
SERIES8000
Series8000
"Series8000"
Series8000

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:storsimple:ManagerExtendedInfo vaultExtendedInfo /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorSimple/managers/{managerName}/extendedInformation/vaultExtendedInfo 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi