Azure Classic v5.43.0, May 6 23
Azure Classic v5.43.0, May 6 23
azure.network.SubnetServiceEndpointStoragePolicy
Explore with Pulumi AI
Manages a Subnet Service Endpoint Storage Policy.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleAccount = new Azure.Storage.Account("exampleAccount", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountTier = "Standard",
AccountReplicationType = "GRS",
});
var exampleSubnetServiceEndpointStoragePolicy = new Azure.Network.SubnetServiceEndpointStoragePolicy("exampleSubnetServiceEndpointStoragePolicy", new()
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
Definition = new Azure.Network.Inputs.SubnetServiceEndpointStoragePolicyDefinitionArgs
{
Name = "name1",
Description = "definition1",
ServiceResources = new[]
{
exampleResourceGroup.Id,
exampleAccount.Id,
},
},
});
});
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 {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("GRS"),
})
if err != nil {
return err
}
_, err = network.NewSubnetServiceEndpointStoragePolicy(ctx, "exampleSubnetServiceEndpointStoragePolicy", &network.SubnetServiceEndpointStoragePolicyArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
Definition: &network.SubnetServiceEndpointStoragePolicyDefinitionArgs{
Name: pulumi.String("name1"),
Description: pulumi.String("definition1"),
ServiceResources: pulumi.StringArray{
exampleResourceGroup.ID(),
exampleAccount.ID(),
},
},
})
if err != nil {
return err
}
return nil
})
}
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.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.network.SubnetServiceEndpointStoragePolicy;
import com.pulumi.azure.network.SubnetServiceEndpointStoragePolicyArgs;
import com.pulumi.azure.network.inputs.SubnetServiceEndpointStoragePolicyDefinitionArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.accountTier("Standard")
.accountReplicationType("GRS")
.build());
var exampleSubnetServiceEndpointStoragePolicy = new SubnetServiceEndpointStoragePolicy("exampleSubnetServiceEndpointStoragePolicy", SubnetServiceEndpointStoragePolicyArgs.builder()
.resourceGroupName(exampleResourceGroup.name())
.location(exampleResourceGroup.location())
.definition(SubnetServiceEndpointStoragePolicyDefinitionArgs.builder()
.name("name1")
.description("definition1")
.serviceResources(
exampleResourceGroup.id(),
exampleAccount.id())
.build())
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_account = azure.storage.Account("exampleAccount",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
account_tier="Standard",
account_replication_type="GRS")
example_subnet_service_endpoint_storage_policy = azure.network.SubnetServiceEndpointStoragePolicy("exampleSubnetServiceEndpointStoragePolicy",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
definition=azure.network.SubnetServiceEndpointStoragePolicyDefinitionArgs(
name="name1",
description="definition1",
service_resources=[
example_resource_group.id,
example_account.id,
],
))
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAccount = new azure.storage.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountTier: "Standard",
accountReplicationType: "GRS",
});
const exampleSubnetServiceEndpointStoragePolicy = new azure.network.SubnetServiceEndpointStoragePolicy("exampleSubnetServiceEndpointStoragePolicy", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
definition: {
name: "name1",
description: "definition1",
serviceResources: [
exampleResourceGroup.id,
exampleAccount.id,
],
},
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleSubnetServiceEndpointStoragePolicy:
type: azure:network:SubnetServiceEndpointStoragePolicy
properties:
resourceGroupName: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
definition:
name: name1
description: definition1
serviceResources:
- ${exampleResourceGroup.id}
- ${exampleAccount.id}
exampleAccount:
type: azure:storage:Account
properties:
resourceGroupName: ${exampleResourceGroup.name}
location: ${exampleResourceGroup.location}
accountTier: Standard
accountReplicationType: GRS
Create SubnetServiceEndpointStoragePolicy Resource
new SubnetServiceEndpointStoragePolicy(name: string, args: SubnetServiceEndpointStoragePolicyArgs, opts?: CustomResourceOptions);
@overload
def SubnetServiceEndpointStoragePolicy(resource_name: 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)
@overload
def SubnetServiceEndpointStoragePolicy(resource_name: str,
args: SubnetServiceEndpointStoragePolicyArgs,
opts: Optional[ResourceOptions] = 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.
- 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.
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 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.
- 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 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 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.
- {[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 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.
- 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 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 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.
- {[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
- 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 that this Subnet Service Endpoint Storage Policy Definition applies to.
- Description string
The description of this Subnet Service Endpoint Storage Policy Definition.
- Name string
The name which should be used for this Subnet Service Endpoint Storage Policy Definition.
- Service
Resources []string Specifies a list of resources that this Subnet Service Endpoint Storage Policy Definition applies to.
- Description string
The description of this Subnet Service Endpoint Storage Policy Definition.
- 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 that this Subnet Service Endpoint Storage Policy Definition applies to.
- description String
The description of this Subnet Service Endpoint Storage Policy Definition.
- name string
The name which should be used for this Subnet Service Endpoint Storage Policy Definition.
- service
Resources string[] Specifies a list of resources that this Subnet Service Endpoint Storage Policy Definition applies to.
- description string
The description of this Subnet Service Endpoint Storage Policy Definition.
- 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 that this Subnet Service Endpoint Storage Policy Definition applies to.
- description str
The description of this Subnet Service Endpoint Storage Policy Definition.
- 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 that this Subnet Service Endpoint Storage Policy Definition applies to.
- description String
The description of this Subnet Service Endpoint Storage Policy Definition.
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
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.