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

azure-native.cosmosdb.SqlResourceSqlUserDefinedFunction

Explore with Pulumi AI

An Azure Cosmos DB userDefinedFunction.

Uses Azure REST API version 2024-11-15.

Other available API versions: 2019-08-01, 2019-12-12, 2020-03-01, 2020-04-01, 2020-06-01-preview, 2020-09-01, 2021-01-15, 2021-03-01-preview, 2021-03-15, 2021-04-01-preview, 2021-04-15, 2021-05-15, 2021-06-15, 2021-07-01-preview, 2021-10-15, 2021-10-15-preview, 2021-11-15-preview, 2022-02-15-preview, 2022-05-15, 2022-05-15-preview, 2022-08-15, 2022-08-15-preview, 2022-11-15, 2022-11-15-preview, 2023-03-01-preview, 2023-03-15, 2023-03-15-preview, 2023-04-15, 2023-09-15, 2023-09-15-preview, 2023-11-15, 2023-11-15-preview, 2024-02-15-preview, 2024-05-15, 2024-05-15-preview, 2024-08-15, 2024-09-01-preview, 2024-12-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native cosmosdb [ApiVersion]. See the version guide for details.

Example Usage

CosmosDBSqlUserDefinedFunctionCreateUpdate

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

return await Deployment.RunAsync(() => 
{
    var sqlResourceSqlUserDefinedFunction = new AzureNative.CosmosDB.SqlResourceSqlUserDefinedFunction("sqlResourceSqlUserDefinedFunction", new()
    {
        AccountName = "ddb1",
        ContainerName = "containerName",
        DatabaseName = "databaseName",
        Options = null,
        Resource = new AzureNative.CosmosDB.Inputs.SqlUserDefinedFunctionResourceArgs
        {
            Body = "body",
            Id = "userDefinedFunctionName",
        },
        ResourceGroupName = "rg1",
        UserDefinedFunctionName = "userDefinedFunctionName",
    });

});
Copy
package main

import (
	cosmosdb "github.com/pulumi/pulumi-azure-native-sdk/cosmosdb/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cosmosdb.NewSqlResourceSqlUserDefinedFunction(ctx, "sqlResourceSqlUserDefinedFunction", &cosmosdb.SqlResourceSqlUserDefinedFunctionArgs{
			AccountName:   pulumi.String("ddb1"),
			ContainerName: pulumi.String("containerName"),
			DatabaseName:  pulumi.String("databaseName"),
			Options:       &cosmosdb.CreateUpdateOptionsArgs{},
			Resource: &cosmosdb.SqlUserDefinedFunctionResourceArgs{
				Body: pulumi.String("body"),
				Id:   pulumi.String("userDefinedFunctionName"),
			},
			ResourceGroupName:       pulumi.String("rg1"),
			UserDefinedFunctionName: pulumi.String("userDefinedFunctionName"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cosmosdb.SqlResourceSqlUserDefinedFunction;
import com.pulumi.azurenative.cosmosdb.SqlResourceSqlUserDefinedFunctionArgs;
import com.pulumi.azurenative.cosmosdb.inputs.CreateUpdateOptionsArgs;
import com.pulumi.azurenative.cosmosdb.inputs.SqlUserDefinedFunctionResourceArgs;
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 sqlResourceSqlUserDefinedFunction = new SqlResourceSqlUserDefinedFunction("sqlResourceSqlUserDefinedFunction", SqlResourceSqlUserDefinedFunctionArgs.builder()
            .accountName("ddb1")
            .containerName("containerName")
            .databaseName("databaseName")
            .options()
            .resource(SqlUserDefinedFunctionResourceArgs.builder()
                .body("body")
                .id("userDefinedFunctionName")
                .build())
            .resourceGroupName("rg1")
            .userDefinedFunctionName("userDefinedFunctionName")
            .build());

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

const sqlResourceSqlUserDefinedFunction = new azure_native.cosmosdb.SqlResourceSqlUserDefinedFunction("sqlResourceSqlUserDefinedFunction", {
    accountName: "ddb1",
    containerName: "containerName",
    databaseName: "databaseName",
    options: {},
    resource: {
        body: "body",
        id: "userDefinedFunctionName",
    },
    resourceGroupName: "rg1",
    userDefinedFunctionName: "userDefinedFunctionName",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

sql_resource_sql_user_defined_function = azure_native.cosmosdb.SqlResourceSqlUserDefinedFunction("sqlResourceSqlUserDefinedFunction",
    account_name="ddb1",
    container_name="containerName",
    database_name="databaseName",
    options={},
    resource={
        "body": "body",
        "id": "userDefinedFunctionName",
    },
    resource_group_name="rg1",
    user_defined_function_name="userDefinedFunctionName")
Copy
resources:
  sqlResourceSqlUserDefinedFunction:
    type: azure-native:cosmosdb:SqlResourceSqlUserDefinedFunction
    properties:
      accountName: ddb1
      containerName: containerName
      databaseName: databaseName
      options: {}
      resource:
        body: body
        id: userDefinedFunctionName
      resourceGroupName: rg1
      userDefinedFunctionName: userDefinedFunctionName
Copy

Create SqlResourceSqlUserDefinedFunction Resource

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

Constructor syntax

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

@overload
def SqlResourceSqlUserDefinedFunction(resource_name: str,
                                      opts: Optional[ResourceOptions] = None,
                                      account_name: Optional[str] = None,
                                      container_name: Optional[str] = None,
                                      database_name: Optional[str] = None,
                                      resource: Optional[SqlUserDefinedFunctionResourceArgs] = None,
                                      resource_group_name: Optional[str] = None,
                                      location: Optional[str] = None,
                                      options: Optional[CreateUpdateOptionsArgs] = None,
                                      tags: Optional[Mapping[str, str]] = None,
                                      user_defined_function_name: Optional[str] = None)
func NewSqlResourceSqlUserDefinedFunction(ctx *Context, name string, args SqlResourceSqlUserDefinedFunctionArgs, opts ...ResourceOption) (*SqlResourceSqlUserDefinedFunction, error)
public SqlResourceSqlUserDefinedFunction(string name, SqlResourceSqlUserDefinedFunctionArgs args, CustomResourceOptions? opts = null)
public SqlResourceSqlUserDefinedFunction(String name, SqlResourceSqlUserDefinedFunctionArgs args)
public SqlResourceSqlUserDefinedFunction(String name, SqlResourceSqlUserDefinedFunctionArgs args, CustomResourceOptions options)
type: azure-native:cosmosdb:SqlResourceSqlUserDefinedFunction
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SqlResourceSqlUserDefinedFunctionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SqlResourceSqlUserDefinedFunctionArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SqlResourceSqlUserDefinedFunctionArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SqlResourceSqlUserDefinedFunctionArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SqlResourceSqlUserDefinedFunctionArgs
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 sqlResourceSqlUserDefinedFunctionResource = new AzureNative.CosmosDB.SqlResourceSqlUserDefinedFunction("sqlResourceSqlUserDefinedFunctionResource", new()
{
    AccountName = "string",
    ContainerName = "string",
    DatabaseName = "string",
    Resource = new AzureNative.CosmosDB.Inputs.SqlUserDefinedFunctionResourceArgs
    {
        Id = "string",
        Body = "string",
    },
    ResourceGroupName = "string",
    Location = "string",
    Options = new AzureNative.CosmosDB.Inputs.CreateUpdateOptionsArgs
    {
        AutoscaleSettings = new AzureNative.CosmosDB.Inputs.AutoscaleSettingsArgs
        {
            MaxThroughput = 0,
        },
        Throughput = 0,
    },
    Tags = 
    {
        { "string", "string" },
    },
    UserDefinedFunctionName = "string",
});
Copy
example, err := cosmosdb.NewSqlResourceSqlUserDefinedFunction(ctx, "sqlResourceSqlUserDefinedFunctionResource", &cosmosdb.SqlResourceSqlUserDefinedFunctionArgs{
	AccountName:   pulumi.String("string"),
	ContainerName: pulumi.String("string"),
	DatabaseName:  pulumi.String("string"),
	Resource: &cosmosdb.SqlUserDefinedFunctionResourceArgs{
		Id:   pulumi.String("string"),
		Body: pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	Location:          pulumi.String("string"),
	Options: &cosmosdb.CreateUpdateOptionsArgs{
		AutoscaleSettings: &cosmosdb.AutoscaleSettingsArgs{
			MaxThroughput: pulumi.Int(0),
		},
		Throughput: pulumi.Int(0),
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	UserDefinedFunctionName: pulumi.String("string"),
})
Copy
var sqlResourceSqlUserDefinedFunctionResource = new SqlResourceSqlUserDefinedFunction("sqlResourceSqlUserDefinedFunctionResource", SqlResourceSqlUserDefinedFunctionArgs.builder()
    .accountName("string")
    .containerName("string")
    .databaseName("string")
    .resource(SqlUserDefinedFunctionResourceArgs.builder()
        .id("string")
        .body("string")
        .build())
    .resourceGroupName("string")
    .location("string")
    .options(CreateUpdateOptionsArgs.builder()
        .autoscaleSettings(AutoscaleSettingsArgs.builder()
            .maxThroughput(0)
            .build())
        .throughput(0)
        .build())
    .tags(Map.of("string", "string"))
    .userDefinedFunctionName("string")
    .build());
Copy
sql_resource_sql_user_defined_function_resource = azure_native.cosmosdb.SqlResourceSqlUserDefinedFunction("sqlResourceSqlUserDefinedFunctionResource",
    account_name="string",
    container_name="string",
    database_name="string",
    resource={
        "id": "string",
        "body": "string",
    },
    resource_group_name="string",
    location="string",
    options={
        "autoscale_settings": {
            "max_throughput": 0,
        },
        "throughput": 0,
    },
    tags={
        "string": "string",
    },
    user_defined_function_name="string")
Copy
const sqlResourceSqlUserDefinedFunctionResource = new azure_native.cosmosdb.SqlResourceSqlUserDefinedFunction("sqlResourceSqlUserDefinedFunctionResource", {
    accountName: "string",
    containerName: "string",
    databaseName: "string",
    resource: {
        id: "string",
        body: "string",
    },
    resourceGroupName: "string",
    location: "string",
    options: {
        autoscaleSettings: {
            maxThroughput: 0,
        },
        throughput: 0,
    },
    tags: {
        string: "string",
    },
    userDefinedFunctionName: "string",
});
Copy
type: azure-native:cosmosdb:SqlResourceSqlUserDefinedFunction
properties:
    accountName: string
    containerName: string
    databaseName: string
    location: string
    options:
        autoscaleSettings:
            maxThroughput: 0
        throughput: 0
    resource:
        body: string
        id: string
    resourceGroupName: string
    tags:
        string: string
    userDefinedFunctionName: string
Copy

SqlResourceSqlUserDefinedFunction Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The SqlResourceSqlUserDefinedFunction resource accepts the following input properties:

AccountName
This property is required.
Changes to this property will trigger replacement.
string
Cosmos DB database account name.
ContainerName
This property is required.
Changes to this property will trigger replacement.
string
Cosmos DB container name.
DatabaseName
This property is required.
Changes to this property will trigger replacement.
string
Cosmos DB database name.
Resource This property is required. Pulumi.AzureNative.CosmosDB.Inputs.SqlUserDefinedFunctionResource
The standard JSON format of a userDefinedFunction
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Location string
The location of the resource group to which the resource belongs.
Options Pulumi.AzureNative.CosmosDB.Inputs.CreateUpdateOptions
A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
Tags Dictionary<string, string>
Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
UserDefinedFunctionName Changes to this property will trigger replacement. string
Cosmos DB userDefinedFunction name.
AccountName
This property is required.
Changes to this property will trigger replacement.
string
Cosmos DB database account name.
ContainerName
This property is required.
Changes to this property will trigger replacement.
string
Cosmos DB container name.
DatabaseName
This property is required.
Changes to this property will trigger replacement.
string
Cosmos DB database name.
Resource This property is required. SqlUserDefinedFunctionResourceArgs
The standard JSON format of a userDefinedFunction
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Location string
The location of the resource group to which the resource belongs.
Options CreateUpdateOptionsArgs
A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
Tags map[string]string
Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
UserDefinedFunctionName Changes to this property will trigger replacement. string
Cosmos DB userDefinedFunction name.
accountName
This property is required.
Changes to this property will trigger replacement.
String
Cosmos DB database account name.
containerName
This property is required.
Changes to this property will trigger replacement.
String
Cosmos DB container name.
databaseName
This property is required.
Changes to this property will trigger replacement.
String
Cosmos DB database name.
resource This property is required. SqlUserDefinedFunctionResource
The standard JSON format of a userDefinedFunction
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
location String
The location of the resource group to which the resource belongs.
options CreateUpdateOptions
A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
tags Map<String,String>
Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
userDefinedFunctionName Changes to this property will trigger replacement. String
Cosmos DB userDefinedFunction name.
accountName
This property is required.
Changes to this property will trigger replacement.
string
Cosmos DB database account name.
containerName
This property is required.
Changes to this property will trigger replacement.
string
Cosmos DB container name.
databaseName
This property is required.
Changes to this property will trigger replacement.
string
Cosmos DB database name.
resource This property is required. SqlUserDefinedFunctionResource
The standard JSON format of a userDefinedFunction
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
location string
The location of the resource group to which the resource belongs.
options CreateUpdateOptions
A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
tags {[key: string]: string}
Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
userDefinedFunctionName Changes to this property will trigger replacement. string
Cosmos DB userDefinedFunction name.
account_name
This property is required.
Changes to this property will trigger replacement.
str
Cosmos DB database account name.
container_name
This property is required.
Changes to this property will trigger replacement.
str
Cosmos DB container name.
database_name
This property is required.
Changes to this property will trigger replacement.
str
Cosmos DB database name.
resource This property is required. SqlUserDefinedFunctionResourceArgs
The standard JSON format of a userDefinedFunction
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
location str
The location of the resource group to which the resource belongs.
options CreateUpdateOptionsArgs
A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
tags Mapping[str, str]
Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
user_defined_function_name Changes to this property will trigger replacement. str
Cosmos DB userDefinedFunction name.
accountName
This property is required.
Changes to this property will trigger replacement.
String
Cosmos DB database account name.
containerName
This property is required.
Changes to this property will trigger replacement.
String
Cosmos DB container name.
databaseName
This property is required.
Changes to this property will trigger replacement.
String
Cosmos DB database name.
resource This property is required. Property Map
The standard JSON format of a userDefinedFunction
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
location String
The location of the resource group to which the resource belongs.
options Property Map
A key-value pair of options to be applied for the request. This corresponds to the headers sent with the request.
tags Map<String>
Tags are a list of key-value pairs that describe the resource. These tags can be used in viewing and grouping this resource (across resource groups). A maximum of 15 tags can be provided for a resource. Each tag must have a key no greater than 128 characters and value no greater than 256 characters. For example, the default experience for a template type is set with "defaultExperience": "Cassandra". Current "defaultExperience" values also include "Table", "Graph", "DocumentDB", and "MongoDB".
userDefinedFunctionName Changes to this property will trigger replacement. String
Cosmos DB userDefinedFunction name.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the ARM resource.
Type string
The type of Azure resource.
AzureApiVersion string
The Azure API version of the resource.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the ARM resource.
Type string
The type of Azure resource.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the ARM resource.
type String
The type of Azure resource.
azureApiVersion string
The Azure API version of the resource.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the ARM resource.
type string
The type of Azure resource.
azure_api_version str
The Azure API version of the resource.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the ARM resource.
type str
The type of Azure resource.
azureApiVersion String
The Azure API version of the resource.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the ARM resource.
type String
The type of Azure resource.

Supporting Types

AutoscaleSettings
, AutoscaleSettingsArgs

MaxThroughput int
Represents maximum throughput, the resource can scale up to.
MaxThroughput int
Represents maximum throughput, the resource can scale up to.
maxThroughput Integer
Represents maximum throughput, the resource can scale up to.
maxThroughput number
Represents maximum throughput, the resource can scale up to.
max_throughput int
Represents maximum throughput, the resource can scale up to.
maxThroughput Number
Represents maximum throughput, the resource can scale up to.

CreateUpdateOptions
, CreateUpdateOptionsArgs

AutoscaleSettings Pulumi.AzureNative.CosmosDB.Inputs.AutoscaleSettings
Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
Throughput int
Request Units per second. For example, "throughput": 10000.
AutoscaleSettings AutoscaleSettings
Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
Throughput int
Request Units per second. For example, "throughput": 10000.
autoscaleSettings AutoscaleSettings
Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
throughput Integer
Request Units per second. For example, "throughput": 10000.
autoscaleSettings AutoscaleSettings
Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
throughput number
Request Units per second. For example, "throughput": 10000.
autoscale_settings AutoscaleSettings
Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
throughput int
Request Units per second. For example, "throughput": 10000.
autoscaleSettings Property Map
Specifies the Autoscale settings. Note: Either throughput or autoscaleSettings is required, but not both.
throughput Number
Request Units per second. For example, "throughput": 10000.

SqlUserDefinedFunctionGetPropertiesResponseResource
, SqlUserDefinedFunctionGetPropertiesResponseResourceArgs

Etag This property is required. string
A system generated property representing the resource etag required for optimistic concurrency control.
Id This property is required. string
Name of the Cosmos DB SQL userDefinedFunction
Rid This property is required. string
A system generated property. A unique identifier.
Ts This property is required. double
A system generated property that denotes the last updated timestamp of the resource.
Body string
Body of the User Defined Function
Etag This property is required. string
A system generated property representing the resource etag required for optimistic concurrency control.
Id This property is required. string
Name of the Cosmos DB SQL userDefinedFunction
Rid This property is required. string
A system generated property. A unique identifier.
Ts This property is required. float64
A system generated property that denotes the last updated timestamp of the resource.
Body string
Body of the User Defined Function
etag This property is required. String
A system generated property representing the resource etag required for optimistic concurrency control.
id This property is required. String
Name of the Cosmos DB SQL userDefinedFunction
rid This property is required. String
A system generated property. A unique identifier.
ts This property is required. Double
A system generated property that denotes the last updated timestamp of the resource.
body String
Body of the User Defined Function
etag This property is required. string
A system generated property representing the resource etag required for optimistic concurrency control.
id This property is required. string
Name of the Cosmos DB SQL userDefinedFunction
rid This property is required. string
A system generated property. A unique identifier.
ts This property is required. number
A system generated property that denotes the last updated timestamp of the resource.
body string
Body of the User Defined Function
etag This property is required. str
A system generated property representing the resource etag required for optimistic concurrency control.
id This property is required. str
Name of the Cosmos DB SQL userDefinedFunction
rid This property is required. str
A system generated property. A unique identifier.
ts This property is required. float
A system generated property that denotes the last updated timestamp of the resource.
body str
Body of the User Defined Function
etag This property is required. String
A system generated property representing the resource etag required for optimistic concurrency control.
id This property is required. String
Name of the Cosmos DB SQL userDefinedFunction
rid This property is required. String
A system generated property. A unique identifier.
ts This property is required. Number
A system generated property that denotes the last updated timestamp of the resource.
body String
Body of the User Defined Function

SqlUserDefinedFunctionResource
, SqlUserDefinedFunctionResourceArgs

Id This property is required. string
Name of the Cosmos DB SQL userDefinedFunction
Body string
Body of the User Defined Function
Id This property is required. string
Name of the Cosmos DB SQL userDefinedFunction
Body string
Body of the User Defined Function
id This property is required. String
Name of the Cosmos DB SQL userDefinedFunction
body String
Body of the User Defined Function
id This property is required. string
Name of the Cosmos DB SQL userDefinedFunction
body string
Body of the User Defined Function
id This property is required. str
Name of the Cosmos DB SQL userDefinedFunction
body str
Body of the User Defined Function
id This property is required. String
Name of the Cosmos DB SQL userDefinedFunction
body String
Body of the User Defined Function

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:cosmosdb:SqlResourceSqlUserDefinedFunction userDefinedFunctionName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DocumentDB/databaseAccounts/{accountName}/sqlDatabases/{databaseName}/containers/{containerName}/userDefinedFunctions/{userDefinedFunctionName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0