azure-native.datashare.Share
Explore with Pulumi AI
A share data transfer object. Azure REST API version: 2021-08-01. Prior API version in Azure Native 1.x: 2020-09-01.
Example Usage
Shares_Create
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var share = new AzureNative.DataShare.Share("share", new()
{
AccountName = "Account1",
Description = "share description",
ResourceGroupName = "SampleResourceGroup",
ShareKind = AzureNative.DataShare.ShareKind.CopyBased,
ShareName = "Share1",
Terms = "Confidential",
});
});
package main
import (
datashare "github.com/pulumi/pulumi-azure-native-sdk/datashare/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := datashare.NewShare(ctx, "share", &datashare.ShareArgs{
AccountName: pulumi.String("Account1"),
Description: pulumi.String("share description"),
ResourceGroupName: pulumi.String("SampleResourceGroup"),
ShareKind: pulumi.String(datashare.ShareKindCopyBased),
ShareName: pulumi.String("Share1"),
Terms: pulumi.String("Confidential"),
})
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.azurenative.datashare.Share;
import com.pulumi.azurenative.datashare.ShareArgs;
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 share = new Share("share", ShareArgs.builder()
.accountName("Account1")
.description("share description")
.resourceGroupName("SampleResourceGroup")
.shareKind("CopyBased")
.shareName("Share1")
.terms("Confidential")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
share = azure_native.datashare.Share("share",
account_name="Account1",
description="share description",
resource_group_name="SampleResourceGroup",
share_kind=azure_native.datashare.ShareKind.COPY_BASED,
share_name="Share1",
terms="Confidential")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const share = new azure_native.datashare.Share("share", {
accountName: "Account1",
description: "share description",
resourceGroupName: "SampleResourceGroup",
shareKind: azure_native.datashare.ShareKind.CopyBased,
shareName: "Share1",
terms: "Confidential",
});
resources:
share:
type: azure-native:datashare:Share
properties:
accountName: Account1
description: share description
resourceGroupName: SampleResourceGroup
shareKind: CopyBased
shareName: Share1
terms: Confidential
Create Share Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Share(name: string, args: ShareArgs, opts?: CustomResourceOptions);
@overload
def Share(resource_name: str,
args: ShareArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Share(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
description: Optional[str] = None,
share_kind: Optional[Union[str, ShareKind]] = None,
share_name: Optional[str] = None,
terms: Optional[str] = None)
func NewShare(ctx *Context, name string, args ShareArgs, opts ...ResourceOption) (*Share, error)
public Share(string name, ShareArgs args, CustomResourceOptions? opts = null)
type: azure-native:datashare:Share
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 ShareArgs
- 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 ShareArgs
- 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 ShareArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ShareArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ShareArgs
- 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 azure_nativeShareResource = new AzureNative.DataShare.Share("azure-nativeShareResource", new()
{
AccountName = "string",
ResourceGroupName = "string",
Description = "string",
ShareKind = "string",
ShareName = "string",
Terms = "string",
});
example, err := datashare.NewShare(ctx, "azure-nativeShareResource", &datashare.ShareArgs{
AccountName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
Description: pulumi.String("string"),
ShareKind: pulumi.String("string"),
ShareName: pulumi.String("string"),
Terms: pulumi.String("string"),
})
var azure_nativeShareResource = new Share("azure-nativeShareResource", ShareArgs.builder()
.accountName("string")
.resourceGroupName("string")
.description("string")
.shareKind("string")
.shareName("string")
.terms("string")
.build());
azure_native_share_resource = azure_native.datashare.Share("azure-nativeShareResource",
account_name="string",
resource_group_name="string",
description="string",
share_kind="string",
share_name="string",
terms="string")
const azure_nativeShareResource = new azure_native.datashare.Share("azure-nativeShareResource", {
accountName: "string",
resourceGroupName: "string",
description: "string",
shareKind: "string",
shareName: "string",
terms: "string",
});
type: azure-native:datashare:Share
properties:
accountName: string
description: string
resourceGroupName: string
shareKind: string
shareName: string
terms: string
Share 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 Share resource accepts the following input properties:
- Account
Name string - The name of the share account.
- Resource
Group stringName - The resource group name.
- Description string
- Share description.
- string | Pulumi.
Azure Native. Data Share. Share Kind - Share kind.
- string
- The name of the share.
- Terms string
- Share terms.
- Account
Name string - The name of the share account.
- Resource
Group stringName - The resource group name.
- Description string
- Share description.
- string | Share
Kind - Share kind.
- string
- The name of the share.
- Terms string
- Share terms.
- account
Name String - The name of the share account.
- resource
Group StringName - The resource group name.
- description String
- Share description.
- String | Share
Kind - Share kind.
- String
- The name of the share.
- terms String
- Share terms.
- account
Name string - The name of the share account.
- resource
Group stringName - The resource group name.
- description string
- Share description.
- string | Share
Kind - Share kind.
- string
- The name of the share.
- terms string
- Share terms.
- account_
name str - The name of the share account.
- resource_
group_ strname - The resource group name.
- description str
- Share description.
- str | Share
Kind - Share kind.
- str
- The name of the share.
- terms str
- Share terms.
- account
Name String - The name of the share account.
- resource
Group StringName - The resource group name.
- description String
- Share description.
- String | "Copy
Based" | "In Place" - Share kind.
- String
- The name of the share.
- terms String
- Share terms.
Outputs
All input properties are implicitly available as output properties. Additionally, the Share resource produces the following output properties:
- Created
At string - Time at which the share was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the azure resource
- Provisioning
State string - Gets or sets the provisioning state
- System
Data Pulumi.Azure Native. Data Share. Outputs. System Data Response - System Data of the Azure resource.
- Type string
- Type of the azure resource
- User
Email string - Email of the user who created the resource
- User
Name string - Name of the user who created the resource
- Created
At string - Time at which the share was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- Name of the azure resource
- Provisioning
State string - Gets or sets the provisioning state
- System
Data SystemData Response - System Data of the Azure resource.
- Type string
- Type of the azure resource
- User
Email string - Email of the user who created the resource
- User
Name string - Name of the user who created the resource
- created
At String - Time at which the share was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the azure resource
- provisioning
State String - Gets or sets the provisioning state
- system
Data SystemData Response - System Data of the Azure resource.
- type String
- Type of the azure resource
- user
Email String - Email of the user who created the resource
- user
Name String - Name of the user who created the resource
- created
At string - Time at which the share was created.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- Name of the azure resource
- provisioning
State string - Gets or sets the provisioning state
- system
Data SystemData Response - System Data of the Azure resource.
- type string
- Type of the azure resource
- user
Email string - Email of the user who created the resource
- user
Name string - Name of the user who created the resource
- created_
at str - Time at which the share was created.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- Name of the azure resource
- provisioning_
state str - Gets or sets the provisioning state
- system_
data SystemData Response - System Data of the Azure resource.
- type str
- Type of the azure resource
- user_
email str - Email of the user who created the resource
- user_
name str - Name of the user who created the resource
- created
At String - Time at which the share was created.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- Name of the azure resource
- provisioning
State String - Gets or sets the provisioning state
- system
Data Property Map - System Data of the Azure resource.
- type String
- Type of the azure resource
- user
Email String - Email of the user who created the resource
- user
Name String - Name of the user who created the resource
Supporting Types
ShareKind, ShareKindArgs
- Copy
Based - CopyBased
- In
Place - InPlace
- Share
Kind Copy Based - CopyBased
- Share
Kind In Place - InPlace
- Copy
Based - CopyBased
- In
Place - InPlace
- Copy
Based - CopyBased
- In
Place - InPlace
- COPY_BASED
- CopyBased
- IN_PLACE
- InPlace
- "Copy
Based" - CopyBased
- "In
Place" - InPlace
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The type of identity that last modified the resource.
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The type of identity that last modified the resource.
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The type of identity that last modified the resource.
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The type of identity that last modified the resource.
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The type of identity that last modified the resource.
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The type of identity that last modified the resource.
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:datashare:Share Share1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0