We recommend using Azure Native.
azure.network.SubnetServiceEndpointStoragePolicy
Explore with Pulumi AI
Manages a Subnet Service Endpoint Storage Policy.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-rg",
location: "West Europe",
});
const exampleSubnetServiceEndpointStoragePolicy = new azure.network.SubnetServiceEndpointStoragePolicy("example", {
name: "example-policy",
resourceGroupName: example.name,
location: example.location,
definition: {
name: "name2",
description: "definition2",
service: "Global",
serviceResources: [
"/services/Azure",
"/services/Azure/Batch",
"/services/Azure/DataFactory",
"/services/Azure/MachineLearning",
"/services/Azure/ManagedInstance",
"/services/Azure/WebPI",
],
},
});
const exampleAccount = new azure.storage.Account("example", {
name: "examplestorageacct",
resourceGroupName: example.name,
location: example.location,
accountTier: "Standard",
accountReplicationType: "GRS",
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-rg",
location="West Europe")
example_subnet_service_endpoint_storage_policy = azure.network.SubnetServiceEndpointStoragePolicy("example",
name="example-policy",
resource_group_name=example.name,
location=example.location,
definition=azure.network.SubnetServiceEndpointStoragePolicyDefinitionArgs(
name="name2",
description="definition2",
service="Global",
service_resources=[
"/services/Azure",
"/services/Azure/Batch",
"/services/Azure/DataFactory",
"/services/Azure/MachineLearning",
"/services/Azure/ManagedInstance",
"/services/Azure/WebPI",
],
))
example_account = azure.storage.Account("example",
name="examplestorageacct",
resource_group_name=example.name,
location=example.location,
account_tier="Standard",
account_replication_type="GRS")
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-rg"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
_, err = network.NewSubnetServiceEndpointStoragePolicy(ctx, "example", &network.SubnetServiceEndpointStoragePolicyArgs{
Name: pulumi.String("example-policy"),
ResourceGroupName: example.Name,
Location: example.Location,
Definition: &network.SubnetServiceEndpointStoragePolicyDefinitionArgs{
Name: pulumi.String("name2"),
Description: pulumi.String("definition2"),
Service: pulumi.String("Global"),
ServiceResources: pulumi.StringArray{
pulumi.String("/services/Azure"),
pulumi.String("/services/Azure/Batch"),
pulumi.String("/services/Azure/DataFactory"),
pulumi.String("/services/Azure/MachineLearning"),
pulumi.String("/services/Azure/ManagedInstance"),
pulumi.String("/services/Azure/WebPI"),
},
},
})
if err != nil {
return err
}
_, err = storage.NewAccount(ctx, "example", &storage.AccountArgs{
Name: pulumi.String("examplestorageacct"),
ResourceGroupName: example.Name,
Location: example.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("GRS"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-rg",
Location = "West Europe",
});
var exampleSubnetServiceEndpointStoragePolicy = new Azure.Network.SubnetServiceEndpointStoragePolicy("example", new()
{
Name = "example-policy",
ResourceGroupName = example.Name,
Location = example.Location,
Definition = new Azure.Network.Inputs.SubnetServiceEndpointStoragePolicyDefinitionArgs
{
Name = "name2",
Description = "definition2",
Service = "Global",
ServiceResources = new[]
{
"/services/Azure",
"/services/Azure/Batch",
"/services/Azure/DataFactory",
"/services/Azure/MachineLearning",
"/services/Azure/ManagedInstance",
"/services/Azure/WebPI",
},
},
});
var exampleAccount = new Azure.Storage.Account("example", new()
{
Name = "examplestorageacct",
ResourceGroupName = example.Name,
Location = example.Location,
AccountTier = "Standard",
AccountReplicationType = "GRS",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.network.SubnetServiceEndpointStoragePolicy;
import com.pulumi.azure.network.SubnetServiceEndpointStoragePolicyArgs;
import com.pulumi.azure.network.inputs.SubnetServiceEndpointStoragePolicyDefinitionArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-rg")
.location("West Europe")
.build());
var exampleSubnetServiceEndpointStoragePolicy = new SubnetServiceEndpointStoragePolicy("exampleSubnetServiceEndpointStoragePolicy", SubnetServiceEndpointStoragePolicyArgs.builder()
.name("example-policy")
.resourceGroupName(example.name())
.location(example.location())
.definition(SubnetServiceEndpointStoragePolicyDefinitionArgs.builder()
.name("name2")
.description("definition2")
.service("Global")
.serviceResources(
"/services/Azure",
"/services/Azure/Batch",
"/services/Azure/DataFactory",
"/services/Azure/MachineLearning",
"/services/Azure/ManagedInstance",
"/services/Azure/WebPI")
.build())
.build());
var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.name("examplestorageacct")
.resourceGroupName(example.name())
.location(example.location())
.accountTier("Standard")
.accountReplicationType("GRS")
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-rg
location: West Europe
exampleSubnetServiceEndpointStoragePolicy:
type: azure:network:SubnetServiceEndpointStoragePolicy
name: example
properties:
name: example-policy
resourceGroupName: ${example.name}
location: ${example.location}
definition:
name: name2
description: definition2
service: Global
serviceResources:
- /services/Azure
- /services/Azure/Batch
- /services/Azure/DataFactory
- /services/Azure/MachineLearning
- /services/Azure/ManagedInstance
- /services/Azure/WebPI
exampleAccount:
type: azure:storage:Account
name: example
properties:
name: examplestorageacct
resourceGroupName: ${example.name}
location: ${example.location}
accountTier: Standard
accountReplicationType: GRS
Create SubnetServiceEndpointStoragePolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SubnetServiceEndpointStoragePolicy(name: string, args: SubnetServiceEndpointStoragePolicyArgs, opts?: CustomResourceOptions);
@overload
def SubnetServiceEndpointStoragePolicy(resource_name: str,
args: SubnetServiceEndpointStoragePolicyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SubnetServiceEndpointStoragePolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
definition: Optional[SubnetServiceEndpointStoragePolicyDefinitionArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewSubnetServiceEndpointStoragePolicy(ctx *Context, name string, args SubnetServiceEndpointStoragePolicyArgs, opts ...ResourceOption) (*SubnetServiceEndpointStoragePolicy, error)
public SubnetServiceEndpointStoragePolicy(string name, SubnetServiceEndpointStoragePolicyArgs args, CustomResourceOptions? opts = null)
public SubnetServiceEndpointStoragePolicy(String name, SubnetServiceEndpointStoragePolicyArgs args)
public SubnetServiceEndpointStoragePolicy(String name, SubnetServiceEndpointStoragePolicyArgs args, CustomResourceOptions options)
type: azure:network:SubnetServiceEndpointStoragePolicy
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 SubnetServiceEndpointStoragePolicyArgs
- 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 SubnetServiceEndpointStoragePolicyArgs
- 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 SubnetServiceEndpointStoragePolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SubnetServiceEndpointStoragePolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SubnetServiceEndpointStoragePolicyArgs
- 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 subnetServiceEndpointStoragePolicyResource = new Azure.Network.SubnetServiceEndpointStoragePolicy("subnetServiceEndpointStoragePolicyResource", new()
{
ResourceGroupName = "string",
Definition = new Azure.Network.Inputs.SubnetServiceEndpointStoragePolicyDefinitionArgs
{
Name = "string",
ServiceResources = new[]
{
"string",
},
Description = "string",
Service = "string",
},
Location = "string",
Name = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := network.NewSubnetServiceEndpointStoragePolicy(ctx, "subnetServiceEndpointStoragePolicyResource", &network.SubnetServiceEndpointStoragePolicyArgs{
ResourceGroupName: pulumi.String("string"),
Definition: &network.SubnetServiceEndpointStoragePolicyDefinitionArgs{
Name: pulumi.String("string"),
ServiceResources: pulumi.StringArray{
pulumi.String("string"),
},
Description: pulumi.String("string"),
Service: pulumi.String("string"),
},
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var subnetServiceEndpointStoragePolicyResource = new SubnetServiceEndpointStoragePolicy("subnetServiceEndpointStoragePolicyResource", SubnetServiceEndpointStoragePolicyArgs.builder()
.resourceGroupName("string")
.definition(SubnetServiceEndpointStoragePolicyDefinitionArgs.builder()
.name("string")
.serviceResources("string")
.description("string")
.service("string")
.build())
.location("string")
.name("string")
.tags(Map.of("string", "string"))
.build());
subnet_service_endpoint_storage_policy_resource = azure.network.SubnetServiceEndpointStoragePolicy("subnetServiceEndpointStoragePolicyResource",
resource_group_name="string",
definition=azure.network.SubnetServiceEndpointStoragePolicyDefinitionArgs(
name="string",
service_resources=["string"],
description="string",
service="string",
),
location="string",
name="string",
tags={
"string": "string",
})
const subnetServiceEndpointStoragePolicyResource = new azure.network.SubnetServiceEndpointStoragePolicy("subnetServiceEndpointStoragePolicyResource", {
resourceGroupName: "string",
definition: {
name: "string",
serviceResources: ["string"],
description: "string",
service: "string",
},
location: "string",
name: "string",
tags: {
string: "string",
},
});
type: azure:network:SubnetServiceEndpointStoragePolicy
properties:
definition:
description: string
name: string
service: string
serviceResources:
- string
location: string
name: string
resourceGroupName: string
tags:
string: string
SubnetServiceEndpointStoragePolicy Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SubnetServiceEndpointStoragePolicy resource accepts the following input properties:
- Resource
Group stringName - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Definition
Subnet
Service Endpoint Storage Policy Definition - A
definition
block as defined below - Location string
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Name string
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
- Resource
Group stringName - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Definition
Subnet
Service Endpoint Storage Policy Definition Args - A
definition
block as defined below - Location string
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Name string
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- map[string]string
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
- resource
Group StringName - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- definition
Subnet
Service Endpoint Storage Policy Definition - A
definition
block as defined below - location String
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- name String
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
- resource
Group stringName - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- definition
Subnet
Service Endpoint Storage Policy Definition - A
definition
block as defined below - location string
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- name string
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
- resource_
group_ strname - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- definition
Subnet
Service Endpoint Storage Policy Definition Args - A
definition
block as defined below - location str
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- name str
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
- resource
Group StringName - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- definition Property Map
- A
definition
block as defined below - location String
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- name String
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Map<String>
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
Outputs
All input properties are implicitly available as output properties. Additionally, the SubnetServiceEndpointStoragePolicy 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 SubnetServiceEndpointStoragePolicy Resource
Get an existing SubnetServiceEndpointStoragePolicy 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?: SubnetServiceEndpointStoragePolicyState, opts?: CustomResourceOptions): SubnetServiceEndpointStoragePolicy
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
definition: Optional[SubnetServiceEndpointStoragePolicyDefinitionArgs] = None,
location: Optional[str] = None,
name: Optional[str] = None,
resource_group_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None) -> SubnetServiceEndpointStoragePolicy
func GetSubnetServiceEndpointStoragePolicy(ctx *Context, name string, id IDInput, state *SubnetServiceEndpointStoragePolicyState, opts ...ResourceOption) (*SubnetServiceEndpointStoragePolicy, error)
public static SubnetServiceEndpointStoragePolicy Get(string name, Input<string> id, SubnetServiceEndpointStoragePolicyState? state, CustomResourceOptions? opts = null)
public static SubnetServiceEndpointStoragePolicy get(String name, Output<String> id, SubnetServiceEndpointStoragePolicyState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Definition
Subnet
Service Endpoint Storage Policy Definition - A
definition
block as defined below - Location string
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Name string
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Resource
Group stringName - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
- Definition
Subnet
Service Endpoint Storage Policy Definition Args - A
definition
block as defined below - Location string
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Name string
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Resource
Group stringName - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- map[string]string
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
- definition
Subnet
Service Endpoint Storage Policy Definition - A
definition
block as defined below - location String
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- name String
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- resource
Group StringName - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Map<String,String>
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
- definition
Subnet
Service Endpoint Storage Policy Definition - A
definition
block as defined below - location string
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- name string
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- resource
Group stringName - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
- definition
Subnet
Service Endpoint Storage Policy Definition Args - A
definition
block as defined below - location str
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- name str
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- resource_
group_ strname - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
- definition Property Map
- A
definition
block as defined below - location String
- The Azure Region where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- name String
- The name which should be used for this Subnet Service Endpoint Storage Policy. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- resource
Group StringName - The name of the Resource Group where the Subnet Service Endpoint Storage Policy should exist. Changing this forces a new Subnet Service Endpoint Storage Policy to be created.
- Map<String>
- A mapping of tags which should be assigned to the Subnet Service Endpoint Storage Policy.
Supporting Types
SubnetServiceEndpointStoragePolicyDefinition, SubnetServiceEndpointStoragePolicyDefinitionArgs
- Name string
- The name which should be used for this Subnet Service Endpoint Storage Policy Definition.
- Service
Resources List<string> Specifies a list of resources or aliases that this Subnet Service Endpoint Storage Policy Definition applies to.
NOTE The
service_resources
property must contain either Aliases or Resource IDs, but not both.- Description string
- The description of this Subnet Service Endpoint Storage Policy Definition.
- Service string
- The type of service resources. Valid values are
Microsoft.Storage
orGlobal
. When theservice_resources
property contains resource IDs, this property must beMicrosoft.Storage
. When theservice_resources
property contains Aliases, this property must beGlobal
. Defaults toMicrosoft.Storage
.
- Name string
- The name which should be used for this Subnet Service Endpoint Storage Policy Definition.
- Service
Resources []string Specifies a list of resources or aliases that this Subnet Service Endpoint Storage Policy Definition applies to.
NOTE The
service_resources
property must contain either Aliases or Resource IDs, but not both.- Description string
- The description of this Subnet Service Endpoint Storage Policy Definition.
- Service string
- The type of service resources. Valid values are
Microsoft.Storage
orGlobal
. When theservice_resources
property contains resource IDs, this property must beMicrosoft.Storage
. When theservice_resources
property contains Aliases, this property must beGlobal
. Defaults toMicrosoft.Storage
.
- name String
- The name which should be used for this Subnet Service Endpoint Storage Policy Definition.
- service
Resources List<String> Specifies a list of resources or aliases that this Subnet Service Endpoint Storage Policy Definition applies to.
NOTE The
service_resources
property must contain either Aliases or Resource IDs, but not both.- description String
- The description of this Subnet Service Endpoint Storage Policy Definition.
- service String
- The type of service resources. Valid values are
Microsoft.Storage
orGlobal
. When theservice_resources
property contains resource IDs, this property must beMicrosoft.Storage
. When theservice_resources
property contains Aliases, this property must beGlobal
. Defaults toMicrosoft.Storage
.
- name string
- The name which should be used for this Subnet Service Endpoint Storage Policy Definition.
- service
Resources string[] Specifies a list of resources or aliases that this Subnet Service Endpoint Storage Policy Definition applies to.
NOTE The
service_resources
property must contain either Aliases or Resource IDs, but not both.- description string
- The description of this Subnet Service Endpoint Storage Policy Definition.
- service string
- The type of service resources. Valid values are
Microsoft.Storage
orGlobal
. When theservice_resources
property contains resource IDs, this property must beMicrosoft.Storage
. When theservice_resources
property contains Aliases, this property must beGlobal
. Defaults toMicrosoft.Storage
.
- name str
- The name which should be used for this Subnet Service Endpoint Storage Policy Definition.
- service_
resources Sequence[str] Specifies a list of resources or aliases that this Subnet Service Endpoint Storage Policy Definition applies to.
NOTE The
service_resources
property must contain either Aliases or Resource IDs, but not both.- description str
- The description of this Subnet Service Endpoint Storage Policy Definition.
- service str
- The type of service resources. Valid values are
Microsoft.Storage
orGlobal
. When theservice_resources
property contains resource IDs, this property must beMicrosoft.Storage
. When theservice_resources
property contains Aliases, this property must beGlobal
. Defaults toMicrosoft.Storage
.
- name String
- The name which should be used for this Subnet Service Endpoint Storage Policy Definition.
- service
Resources List<String> Specifies a list of resources or aliases that this Subnet Service Endpoint Storage Policy Definition applies to.
NOTE The
service_resources
property must contain either Aliases or Resource IDs, but not both.- description String
- The description of this Subnet Service Endpoint Storage Policy Definition.
- service String
- The type of service resources. Valid values are
Microsoft.Storage
orGlobal
. When theservice_resources
property contains resource IDs, this property must beMicrosoft.Storage
. When theservice_resources
property contains Aliases, this property must beGlobal
. Defaults toMicrosoft.Storage
.
Import
Subnet Service Endpoint Policies can be imported using the resource id
, e.g.
$ pulumi import azure:network/subnetServiceEndpointStoragePolicy:SubnetServiceEndpointStoragePolicy example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/serviceEndpointPolicies/policy1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.