1. Packages
  2. OpenStack
  3. API Docs
  4. sharedfilesystem
  5. ShareNetwork
OpenStack v3.15.2 published on Friday, Mar 29, 2024 by Pulumi

openstack.sharedfilesystem.ShareNetwork

Explore with Pulumi AI

openstack logo
OpenStack v3.15.2 published on Friday, Mar 29, 2024 by Pulumi

    Use this resource to configure a share network.

    A share network stores network information that share servers can use when shares are created.

    Example Usage

    Basic share network

    import * as pulumi from "@pulumi/pulumi";
    import * as openstack from "@pulumi/openstack";
    
    const network1 = new openstack.networking.Network("network1", {adminStateUp: true});
    const subnet1 = new openstack.networking.Subnet("subnet1", {
        cidr: "192.168.199.0/24",
        ipVersion: 4,
        networkId: network1.id,
    });
    const sharenetwork1 = new openstack.sharedfilesystem.ShareNetwork("sharenetwork1", {
        description: "test share network",
        neutronNetId: network1.id,
        neutronSubnetId: subnet1.id,
    });
    
    import pulumi
    import pulumi_openstack as openstack
    
    network1 = openstack.networking.Network("network1", admin_state_up=True)
    subnet1 = openstack.networking.Subnet("subnet1",
        cidr="192.168.199.0/24",
        ip_version=4,
        network_id=network1.id)
    sharenetwork1 = openstack.sharedfilesystem.ShareNetwork("sharenetwork1",
        description="test share network",
        neutron_net_id=network1.id,
        neutron_subnet_id=subnet1.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-openstack/sdk/v3/go/openstack/networking"
    	"github.com/pulumi/pulumi-openstack/sdk/v3/go/openstack/sharedfilesystem"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		network1, err := networking.NewNetwork(ctx, "network1", &networking.NetworkArgs{
    			AdminStateUp: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		subnet1, err := networking.NewSubnet(ctx, "subnet1", &networking.SubnetArgs{
    			Cidr:      pulumi.String("192.168.199.0/24"),
    			IpVersion: pulumi.Int(4),
    			NetworkId: network1.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = sharedfilesystem.NewShareNetwork(ctx, "sharenetwork1", &sharedfilesystem.ShareNetworkArgs{
    			Description:     pulumi.String("test share network"),
    			NeutronNetId:    network1.ID(),
    			NeutronSubnetId: subnet1.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using OpenStack = Pulumi.OpenStack;
    
    return await Deployment.RunAsync(() => 
    {
        var network1 = new OpenStack.Networking.Network("network1", new()
        {
            AdminStateUp = true,
        });
    
        var subnet1 = new OpenStack.Networking.Subnet("subnet1", new()
        {
            Cidr = "192.168.199.0/24",
            IpVersion = 4,
            NetworkId = network1.Id,
        });
    
        var sharenetwork1 = new OpenStack.SharedFileSystem.ShareNetwork("sharenetwork1", new()
        {
            Description = "test share network",
            NeutronNetId = network1.Id,
            NeutronSubnetId = subnet1.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.openstack.networking.Network;
    import com.pulumi.openstack.networking.NetworkArgs;
    import com.pulumi.openstack.networking.Subnet;
    import com.pulumi.openstack.networking.SubnetArgs;
    import com.pulumi.openstack.sharedfilesystem.ShareNetwork;
    import com.pulumi.openstack.sharedfilesystem.ShareNetworkArgs;
    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 network1 = new Network("network1", NetworkArgs.builder()        
                .adminStateUp("true")
                .build());
    
            var subnet1 = new Subnet("subnet1", SubnetArgs.builder()        
                .cidr("192.168.199.0/24")
                .ipVersion(4)
                .networkId(network1.id())
                .build());
    
            var sharenetwork1 = new ShareNetwork("sharenetwork1", ShareNetworkArgs.builder()        
                .description("test share network")
                .neutronNetId(network1.id())
                .neutronSubnetId(subnet1.id())
                .build());
    
        }
    }
    
    resources:
      network1:
        type: openstack:networking:Network
        properties:
          adminStateUp: 'true'
      subnet1:
        type: openstack:networking:Subnet
        properties:
          cidr: 192.168.199.0/24
          ipVersion: 4
          networkId: ${network1.id}
      sharenetwork1:
        type: openstack:sharedfilesystem:ShareNetwork
        properties:
          description: test share network
          neutronNetId: ${network1.id}
          neutronSubnetId: ${subnet1.id}
    

    Share network with associated security services

    import * as pulumi from "@pulumi/pulumi";
    import * as openstack from "@pulumi/openstack";
    
    const network1 = new openstack.networking.Network("network1", {adminStateUp: true});
    const subnet1 = new openstack.networking.Subnet("subnet1", {
        cidr: "192.168.199.0/24",
        ipVersion: 4,
        networkId: network1.id,
    });
    const securityservice1 = new openstack.sharedfilesystem.SecurityService("securityservice1", {
        description: "created by terraform",
        type: "active_directory",
        server: "192.168.199.10",
        dnsIp: "192.168.199.10",
        domain: "example.com",
        ou: "CN=Computers,DC=example,DC=com",
        user: "joinDomainUser",
        password: "s8cret",
    });
    const sharenetwork1 = new openstack.sharedfilesystem.ShareNetwork("sharenetwork1", {
        description: "test share network with security services",
        neutronNetId: network1.id,
        neutronSubnetId: subnet1.id,
        securityServiceIds: [securityservice1.id],
    });
    
    import pulumi
    import pulumi_openstack as openstack
    
    network1 = openstack.networking.Network("network1", admin_state_up=True)
    subnet1 = openstack.networking.Subnet("subnet1",
        cidr="192.168.199.0/24",
        ip_version=4,
        network_id=network1.id)
    securityservice1 = openstack.sharedfilesystem.SecurityService("securityservice1",
        description="created by terraform",
        type="active_directory",
        server="192.168.199.10",
        dns_ip="192.168.199.10",
        domain="example.com",
        ou="CN=Computers,DC=example,DC=com",
        user="joinDomainUser",
        password="s8cret")
    sharenetwork1 = openstack.sharedfilesystem.ShareNetwork("sharenetwork1",
        description="test share network with security services",
        neutron_net_id=network1.id,
        neutron_subnet_id=subnet1.id,
        security_service_ids=[securityservice1.id])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-openstack/sdk/v3/go/openstack/networking"
    	"github.com/pulumi/pulumi-openstack/sdk/v3/go/openstack/sharedfilesystem"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		network1, err := networking.NewNetwork(ctx, "network1", &networking.NetworkArgs{
    			AdminStateUp: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		subnet1, err := networking.NewSubnet(ctx, "subnet1", &networking.SubnetArgs{
    			Cidr:      pulumi.String("192.168.199.0/24"),
    			IpVersion: pulumi.Int(4),
    			NetworkId: network1.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		securityservice1, err := sharedfilesystem.NewSecurityService(ctx, "securityservice1", &sharedfilesystem.SecurityServiceArgs{
    			Description: pulumi.String("created by terraform"),
    			Type:        pulumi.String("active_directory"),
    			Server:      pulumi.String("192.168.199.10"),
    			DnsIp:       pulumi.String("192.168.199.10"),
    			Domain:      pulumi.String("example.com"),
    			Ou:          pulumi.String("CN=Computers,DC=example,DC=com"),
    			User:        pulumi.String("joinDomainUser"),
    			Password:    pulumi.String("s8cret"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = sharedfilesystem.NewShareNetwork(ctx, "sharenetwork1", &sharedfilesystem.ShareNetworkArgs{
    			Description:     pulumi.String("test share network with security services"),
    			NeutronNetId:    network1.ID(),
    			NeutronSubnetId: subnet1.ID(),
    			SecurityServiceIds: pulumi.StringArray{
    				securityservice1.ID(),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using OpenStack = Pulumi.OpenStack;
    
    return await Deployment.RunAsync(() => 
    {
        var network1 = new OpenStack.Networking.Network("network1", new()
        {
            AdminStateUp = true,
        });
    
        var subnet1 = new OpenStack.Networking.Subnet("subnet1", new()
        {
            Cidr = "192.168.199.0/24",
            IpVersion = 4,
            NetworkId = network1.Id,
        });
    
        var securityservice1 = new OpenStack.SharedFileSystem.SecurityService("securityservice1", new()
        {
            Description = "created by terraform",
            Type = "active_directory",
            Server = "192.168.199.10",
            DnsIp = "192.168.199.10",
            Domain = "example.com",
            Ou = "CN=Computers,DC=example,DC=com",
            User = "joinDomainUser",
            Password = "s8cret",
        });
    
        var sharenetwork1 = new OpenStack.SharedFileSystem.ShareNetwork("sharenetwork1", new()
        {
            Description = "test share network with security services",
            NeutronNetId = network1.Id,
            NeutronSubnetId = subnet1.Id,
            SecurityServiceIds = new[]
            {
                securityservice1.Id,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.openstack.networking.Network;
    import com.pulumi.openstack.networking.NetworkArgs;
    import com.pulumi.openstack.networking.Subnet;
    import com.pulumi.openstack.networking.SubnetArgs;
    import com.pulumi.openstack.sharedfilesystem.SecurityService;
    import com.pulumi.openstack.sharedfilesystem.SecurityServiceArgs;
    import com.pulumi.openstack.sharedfilesystem.ShareNetwork;
    import com.pulumi.openstack.sharedfilesystem.ShareNetworkArgs;
    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 network1 = new Network("network1", NetworkArgs.builder()        
                .adminStateUp("true")
                .build());
    
            var subnet1 = new Subnet("subnet1", SubnetArgs.builder()        
                .cidr("192.168.199.0/24")
                .ipVersion(4)
                .networkId(network1.id())
                .build());
    
            var securityservice1 = new SecurityService("securityservice1", SecurityServiceArgs.builder()        
                .description("created by terraform")
                .type("active_directory")
                .server("192.168.199.10")
                .dnsIp("192.168.199.10")
                .domain("example.com")
                .ou("CN=Computers,DC=example,DC=com")
                .user("joinDomainUser")
                .password("s8cret")
                .build());
    
            var sharenetwork1 = new ShareNetwork("sharenetwork1", ShareNetworkArgs.builder()        
                .description("test share network with security services")
                .neutronNetId(network1.id())
                .neutronSubnetId(subnet1.id())
                .securityServiceIds(securityservice1.id())
                .build());
    
        }
    }
    
    resources:
      network1:
        type: openstack:networking:Network
        properties:
          adminStateUp: 'true'
      subnet1:
        type: openstack:networking:Subnet
        properties:
          cidr: 192.168.199.0/24
          ipVersion: 4
          networkId: ${network1.id}
      securityservice1:
        type: openstack:sharedfilesystem:SecurityService
        properties:
          description: created by terraform
          type: active_directory
          server: 192.168.199.10
          dnsIp: 192.168.199.10
          domain: example.com
          ou: CN=Computers,DC=example,DC=com
          user: joinDomainUser
          password: s8cret
      sharenetwork1:
        type: openstack:sharedfilesystem:ShareNetwork
        properties:
          description: test share network with security services
          neutronNetId: ${network1.id}
          neutronSubnetId: ${subnet1.id}
          securityServiceIds:
            - ${securityservice1.id}
    

    Create ShareNetwork Resource

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

    Constructor syntax

    new ShareNetwork(name: string, args: ShareNetworkArgs, opts?: CustomResourceOptions);
    @overload
    def ShareNetwork(resource_name: str,
                     args: ShareNetworkArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def ShareNetwork(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     neutron_net_id: Optional[str] = None,
                     neutron_subnet_id: Optional[str] = None,
                     description: Optional[str] = None,
                     name: Optional[str] = None,
                     region: Optional[str] = None,
                     security_service_ids: Optional[Sequence[str]] = None)
    func NewShareNetwork(ctx *Context, name string, args ShareNetworkArgs, opts ...ResourceOption) (*ShareNetwork, error)
    public ShareNetwork(string name, ShareNetworkArgs args, CustomResourceOptions? opts = null)
    public ShareNetwork(String name, ShareNetworkArgs args)
    public ShareNetwork(String name, ShareNetworkArgs args, CustomResourceOptions options)
    
    type: openstack:sharedfilesystem:ShareNetwork
    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 ShareNetworkArgs
    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 ShareNetworkArgs
    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 ShareNetworkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ShareNetworkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ShareNetworkArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var shareNetworkResource = new OpenStack.SharedFileSystem.ShareNetwork("shareNetworkResource", new()
    {
        NeutronNetId = "string",
        NeutronSubnetId = "string",
        Description = "string",
        Name = "string",
        Region = "string",
        SecurityServiceIds = new[]
        {
            "string",
        },
    });
    
    example, err := sharedfilesystem.NewShareNetwork(ctx, "shareNetworkResource", &sharedfilesystem.ShareNetworkArgs{
    	NeutronNetId:    pulumi.String("string"),
    	NeutronSubnetId: pulumi.String("string"),
    	Description:     pulumi.String("string"),
    	Name:            pulumi.String("string"),
    	Region:          pulumi.String("string"),
    	SecurityServiceIds: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var shareNetworkResource = new ShareNetwork("shareNetworkResource", ShareNetworkArgs.builder()        
        .neutronNetId("string")
        .neutronSubnetId("string")
        .description("string")
        .name("string")
        .region("string")
        .securityServiceIds("string")
        .build());
    
    share_network_resource = openstack.sharedfilesystem.ShareNetwork("shareNetworkResource",
        neutron_net_id="string",
        neutron_subnet_id="string",
        description="string",
        name="string",
        region="string",
        security_service_ids=["string"])
    
    const shareNetworkResource = new openstack.sharedfilesystem.ShareNetwork("shareNetworkResource", {
        neutronNetId: "string",
        neutronSubnetId: "string",
        description: "string",
        name: "string",
        region: "string",
        securityServiceIds: ["string"],
    });
    
    type: openstack:sharedfilesystem:ShareNetwork
    properties:
        description: string
        name: string
        neutronNetId: string
        neutronSubnetId: string
        region: string
        securityServiceIds:
            - string
    

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

    NeutronNetId string
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    NeutronSubnetId string
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    Description string
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    Name string
    The name for the share network. Changing this updates the name of the existing share network.
    Region string
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    SecurityServiceIds List<string>
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    NeutronNetId string
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    NeutronSubnetId string
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    Description string
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    Name string
    The name for the share network. Changing this updates the name of the existing share network.
    Region string
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    SecurityServiceIds []string
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    neutronNetId String
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    neutronSubnetId String
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    description String
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    name String
    The name for the share network. Changing this updates the name of the existing share network.
    region String
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    securityServiceIds List<String>
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    neutronNetId string
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    neutronSubnetId string
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    description string
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    name string
    The name for the share network. Changing this updates the name of the existing share network.
    region string
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    securityServiceIds string[]
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    neutron_net_id str
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    neutron_subnet_id str
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    description str
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    name str
    The name for the share network. Changing this updates the name of the existing share network.
    region str
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    security_service_ids Sequence[str]
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    neutronNetId String
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    neutronSubnetId String
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    description String
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    name String
    The name for the share network. Changing this updates the name of the existing share network.
    region String
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    securityServiceIds List<String>
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.

    Outputs

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

    Cidr string
    The share network CIDR.
    Id string
    The provider-assigned unique ID for this managed resource.
    IpVersion int
    The IP version of the share network. Can either be 4 or 6.
    NetworkType string
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    ProjectId string
    The owner of the Share Network.
    SegmentationId int
    The share network segmentation ID.
    Cidr string
    The share network CIDR.
    Id string
    The provider-assigned unique ID for this managed resource.
    IpVersion int
    The IP version of the share network. Can either be 4 or 6.
    NetworkType string
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    ProjectId string
    The owner of the Share Network.
    SegmentationId int
    The share network segmentation ID.
    cidr String
    The share network CIDR.
    id String
    The provider-assigned unique ID for this managed resource.
    ipVersion Integer
    The IP version of the share network. Can either be 4 or 6.
    networkType String
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    projectId String
    The owner of the Share Network.
    segmentationId Integer
    The share network segmentation ID.
    cidr string
    The share network CIDR.
    id string
    The provider-assigned unique ID for this managed resource.
    ipVersion number
    The IP version of the share network. Can either be 4 or 6.
    networkType string
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    projectId string
    The owner of the Share Network.
    segmentationId number
    The share network segmentation ID.
    cidr str
    The share network CIDR.
    id str
    The provider-assigned unique ID for this managed resource.
    ip_version int
    The IP version of the share network. Can either be 4 or 6.
    network_type str
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    project_id str
    The owner of the Share Network.
    segmentation_id int
    The share network segmentation ID.
    cidr String
    The share network CIDR.
    id String
    The provider-assigned unique ID for this managed resource.
    ipVersion Number
    The IP version of the share network. Can either be 4 or 6.
    networkType String
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    projectId String
    The owner of the Share Network.
    segmentationId Number
    The share network segmentation ID.

    Look up Existing ShareNetwork Resource

    Get an existing ShareNetwork 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?: ShareNetworkState, opts?: CustomResourceOptions): ShareNetwork
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cidr: Optional[str] = None,
            description: Optional[str] = None,
            ip_version: Optional[int] = None,
            name: Optional[str] = None,
            network_type: Optional[str] = None,
            neutron_net_id: Optional[str] = None,
            neutron_subnet_id: Optional[str] = None,
            project_id: Optional[str] = None,
            region: Optional[str] = None,
            security_service_ids: Optional[Sequence[str]] = None,
            segmentation_id: Optional[int] = None) -> ShareNetwork
    func GetShareNetwork(ctx *Context, name string, id IDInput, state *ShareNetworkState, opts ...ResourceOption) (*ShareNetwork, error)
    public static ShareNetwork Get(string name, Input<string> id, ShareNetworkState? state, CustomResourceOptions? opts = null)
    public static ShareNetwork get(String name, Output<String> id, ShareNetworkState 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.
    The following state arguments are supported:
    Cidr string
    The share network CIDR.
    Description string
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    IpVersion int
    The IP version of the share network. Can either be 4 or 6.
    Name string
    The name for the share network. Changing this updates the name of the existing share network.
    NetworkType string
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    NeutronNetId string
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    NeutronSubnetId string
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    ProjectId string
    The owner of the Share Network.
    Region string
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    SecurityServiceIds List<string>
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    SegmentationId int
    The share network segmentation ID.
    Cidr string
    The share network CIDR.
    Description string
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    IpVersion int
    The IP version of the share network. Can either be 4 or 6.
    Name string
    The name for the share network. Changing this updates the name of the existing share network.
    NetworkType string
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    NeutronNetId string
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    NeutronSubnetId string
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    ProjectId string
    The owner of the Share Network.
    Region string
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    SecurityServiceIds []string
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    SegmentationId int
    The share network segmentation ID.
    cidr String
    The share network CIDR.
    description String
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    ipVersion Integer
    The IP version of the share network. Can either be 4 or 6.
    name String
    The name for the share network. Changing this updates the name of the existing share network.
    networkType String
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    neutronNetId String
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    neutronSubnetId String
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    projectId String
    The owner of the Share Network.
    region String
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    securityServiceIds List<String>
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    segmentationId Integer
    The share network segmentation ID.
    cidr string
    The share network CIDR.
    description string
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    ipVersion number
    The IP version of the share network. Can either be 4 or 6.
    name string
    The name for the share network. Changing this updates the name of the existing share network.
    networkType string
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    neutronNetId string
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    neutronSubnetId string
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    projectId string
    The owner of the Share Network.
    region string
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    securityServiceIds string[]
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    segmentationId number
    The share network segmentation ID.
    cidr str
    The share network CIDR.
    description str
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    ip_version int
    The IP version of the share network. Can either be 4 or 6.
    name str
    The name for the share network. Changing this updates the name of the existing share network.
    network_type str
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    neutron_net_id str
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    neutron_subnet_id str
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    project_id str
    The owner of the Share Network.
    region str
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    security_service_ids Sequence[str]
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    segmentation_id int
    The share network segmentation ID.
    cidr String
    The share network CIDR.
    description String
    The human-readable description for the share network. Changing this updates the description of the existing share network.
    ipVersion Number
    The IP version of the share network. Can either be 4 or 6.
    name String
    The name for the share network. Changing this updates the name of the existing share network.
    networkType String
    The share network type. Can either be VLAN, VXLAN, GRE, or flat.
    neutronNetId String
    The UUID of a neutron network when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    neutronSubnetId String
    The UUID of the neutron subnet when setting up or updating a share network. Changing this updates the existing share network if it's not used by shares.
    projectId String
    The owner of the Share Network.
    region String
    The region in which to obtain the V2 Shared File System client. A Shared File System client is needed to create a share network. If omitted, the region argument of the provider is used. Changing this creates a new share network.
    securityServiceIds List<String>
    The list of security service IDs to associate with the share network. The security service must be specified by ID and not name.
    segmentationId Number
    The share network segmentation ID.

    Import

    This resource can be imported by specifying the ID of the share network:

    $ pulumi import openstack:sharedfilesystem/shareNetwork:ShareNetwork sharenetwork_1 id
    

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

    Package Details

    Repository
    OpenStack pulumi/pulumi-openstack
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the openstack Terraform Provider.
    openstack logo
    OpenStack v3.15.2 published on Friday, Mar 29, 2024 by Pulumi