1. Packages
  2. Azure Native
  3. API Docs
  4. storsimple
  5. AccessControlRecord
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

azure-native.storsimple.AccessControlRecord

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi

The access control record.

Uses Azure REST API version 2017-06-01. In version 2.x of the Azure Native provider, it used API version 2017-06-01.

Example Usage

AccessControlRecordsCreateOrUpdate

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

return await Deployment.RunAsync(() => 
{
    var accessControlRecord = new AzureNative.StorSimple.AccessControlRecord("accessControlRecord", new()
    {
        AccessControlRecordName = "ACRForTest",
        InitiatorName = "iqn.2017-06.com.contoso:ForTest",
        ManagerName = "ManagerForSDKTest1",
        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.NewAccessControlRecord(ctx, "accessControlRecord", &storsimple.AccessControlRecordArgs{
			AccessControlRecordName: pulumi.String("ACRForTest"),
			InitiatorName:           pulumi.String("iqn.2017-06.com.contoso:ForTest"),
			ManagerName:             pulumi.String("ManagerForSDKTest1"),
			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.AccessControlRecord;
import com.pulumi.azurenative.storsimple.AccessControlRecordArgs;
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 accessControlRecord = new AccessControlRecord("accessControlRecord", AccessControlRecordArgs.builder()
            .accessControlRecordName("ACRForTest")
            .initiatorName("iqn.2017-06.com.contoso:ForTest")
            .managerName("ManagerForSDKTest1")
            .resourceGroupName("ResourceGroupForSDKTest")
            .build());

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

const accessControlRecord = new azure_native.storsimple.AccessControlRecord("accessControlRecord", {
    accessControlRecordName: "ACRForTest",
    initiatorName: "iqn.2017-06.com.contoso:ForTest",
    managerName: "ManagerForSDKTest1",
    resourceGroupName: "ResourceGroupForSDKTest",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

access_control_record = azure_native.storsimple.AccessControlRecord("accessControlRecord",
    access_control_record_name="ACRForTest",
    initiator_name="iqn.2017-06.com.contoso:ForTest",
    manager_name="ManagerForSDKTest1",
    resource_group_name="ResourceGroupForSDKTest")
Copy
resources:
  accessControlRecord:
    type: azure-native:storsimple:AccessControlRecord
    properties:
      accessControlRecordName: ACRForTest
      initiatorName: iqn.2017-06.com.contoso:ForTest
      managerName: ManagerForSDKTest1
      resourceGroupName: ResourceGroupForSDKTest
Copy

Create AccessControlRecord Resource

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

Constructor syntax

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

@overload
def AccessControlRecord(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        initiator_name: Optional[str] = None,
                        manager_name: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        access_control_record_name: Optional[str] = None,
                        kind: Optional[Kind] = None)
func NewAccessControlRecord(ctx *Context, name string, args AccessControlRecordArgs, opts ...ResourceOption) (*AccessControlRecord, error)
public AccessControlRecord(string name, AccessControlRecordArgs args, CustomResourceOptions? opts = null)
public AccessControlRecord(String name, AccessControlRecordArgs args)
public AccessControlRecord(String name, AccessControlRecordArgs args, CustomResourceOptions options)
type: azure-native:storsimple:AccessControlRecord
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. AccessControlRecordArgs
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. AccessControlRecordArgs
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. AccessControlRecordArgs
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. AccessControlRecordArgs
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. AccessControlRecordArgs
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 accessControlRecordResource = new AzureNative.StorSimple.AccessControlRecord("accessControlRecordResource", new()
{
    InitiatorName = "string",
    ManagerName = "string",
    ResourceGroupName = "string",
    AccessControlRecordName = "string",
    Kind = AzureNative.StorSimple.Kind.Series8000,
});
Copy
example, err := storsimple.NewAccessControlRecord(ctx, "accessControlRecordResource", &storsimple.AccessControlRecordArgs{
	InitiatorName:           pulumi.String("string"),
	ManagerName:             pulumi.String("string"),
	ResourceGroupName:       pulumi.String("string"),
	AccessControlRecordName: pulumi.String("string"),
	Kind:                    storsimple.KindSeries8000,
})
Copy
var accessControlRecordResource = new AccessControlRecord("accessControlRecordResource", AccessControlRecordArgs.builder()
    .initiatorName("string")
    .managerName("string")
    .resourceGroupName("string")
    .accessControlRecordName("string")
    .kind("Series8000")
    .build());
Copy
access_control_record_resource = azure_native.storsimple.AccessControlRecord("accessControlRecordResource",
    initiator_name="string",
    manager_name="string",
    resource_group_name="string",
    access_control_record_name="string",
    kind=azure_native.storsimple.Kind.SERIES8000)
Copy
const accessControlRecordResource = new azure_native.storsimple.AccessControlRecord("accessControlRecordResource", {
    initiatorName: "string",
    managerName: "string",
    resourceGroupName: "string",
    accessControlRecordName: "string",
    kind: azure_native.storsimple.Kind.Series8000,
});
Copy
type: azure-native:storsimple:AccessControlRecord
properties:
    accessControlRecordName: string
    initiatorName: string
    kind: Series8000
    managerName: string
    resourceGroupName: string
Copy

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

InitiatorName This property is required. string
The iSCSI initiator name (IQN).
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
AccessControlRecordName Changes to this property will trigger replacement. string
The name of the access control record.
Kind Pulumi.AzureNative.StorSimple.Kind
The Kind of the object. Currently only Series8000 is supported
InitiatorName This property is required. string
The iSCSI initiator name (IQN).
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
AccessControlRecordName Changes to this property will trigger replacement. string
The name of the access control record.
Kind Kind
The Kind of the object. Currently only Series8000 is supported
initiatorName This property is required. String
The iSCSI initiator name (IQN).
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
accessControlRecordName Changes to this property will trigger replacement. String
The name of the access control record.
kind Kind
The Kind of the object. Currently only Series8000 is supported
initiatorName This property is required. string
The iSCSI initiator name (IQN).
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
accessControlRecordName Changes to this property will trigger replacement. string
The name of the access control record.
kind Kind
The Kind of the object. Currently only Series8000 is supported
initiator_name This property is required. str
The iSCSI initiator name (IQN).
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
access_control_record_name Changes to this property will trigger replacement. str
The name of the access control record.
kind Kind
The Kind of the object. Currently only Series8000 is supported
initiatorName This property is required. String
The iSCSI initiator name (IQN).
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
accessControlRecordName Changes to this property will trigger replacement. String
The name of the access control record.
kind "Series8000"
The Kind of the object. Currently only Series8000 is supported

Outputs

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

AzureApiVersion string
The Azure API version 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.
VolumeCount int
The number of volumes using the access control record.
AzureApiVersion string
The Azure API version 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.
VolumeCount int
The number of volumes using the access control record.
azureApiVersion String
The Azure API version 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.
volumeCount Integer
The number of volumes using the access control record.
azureApiVersion string
The Azure API version 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.
volumeCount number
The number of volumes using the access control record.
azure_api_version str
The Azure API version 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.
volume_count int
The number of volumes using the access control record.
azureApiVersion String
The Azure API version 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.
volumeCount Number
The number of volumes using the access control record.

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:AccessControlRecord ACRForTest /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StorSimple/managers/{managerName}/accessControlRecords/{accessControlRecordName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.0.1 published on Monday, Apr 7, 2025 by Pulumi