1. Packages
  2. Azure Native
  3. API Docs
  4. agfoodplatform
  5. DataConnector
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.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.agfoodplatform.DataConnector

Explore with Pulumi AI

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.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

DataConnector Model.

Uses Azure REST API version 2023-06-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-06-01-preview.

Example Usage

DataConnectors_CreateOrUpdate

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

return await Deployment.RunAsync(() => 
{
    var dataConnector = new AzureNative.AgFoodPlatform.DataConnector("dataConnector", new()
    {
        DataConnectorName = "WeatherIBM",
        DataManagerForAgricultureResourceName = "examples-dataManagerForAgricultureResourceName",
        Properties = new AzureNative.AgFoodPlatform.Inputs.DataConnectorPropertiesArgs
        {
            Credentials = new AzureNative.AgFoodPlatform.Inputs.ApiKeyAuthCredentialsArgs
            {
                ApiKey = new AzureNative.AgFoodPlatform.Inputs.KeyVaultPropertiesArgs
                {
                    KeyName = "abcApiKey",
                    KeyVaultUri = "https://testKeyVault.vault.azure.net/",
                    KeyVersion = "239c0475c7d44f20b0fc27d3fe90a41d",
                },
                Kind = "ApiKeyAuthCredentials",
            },
        },
        ResourceGroupName = "examples-rg",
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := agfoodplatform.NewDataConnector(ctx, "dataConnector", &agfoodplatform.DataConnectorArgs{
			DataConnectorName:                     pulumi.String("WeatherIBM"),
			DataManagerForAgricultureResourceName: pulumi.String("examples-dataManagerForAgricultureResourceName"),
			Properties: &agfoodplatform.DataConnectorPropertiesArgs{
				Credentials: agfoodplatform.ApiKeyAuthCredentials{
					ApiKey: agfoodplatform.KeyVaultProperties{
						KeyName:     "abcApiKey",
						KeyVaultUri: "https://testKeyVault.vault.azure.net/",
						KeyVersion:  "239c0475c7d44f20b0fc27d3fe90a41d",
					},
					Kind: "ApiKeyAuthCredentials",
				},
			},
			ResourceGroupName: pulumi.String("examples-rg"),
		})
		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.agfoodplatform.DataConnector;
import com.pulumi.azurenative.agfoodplatform.DataConnectorArgs;
import com.pulumi.azurenative.agfoodplatform.inputs.DataConnectorPropertiesArgs;
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 dataConnector = new DataConnector("dataConnector", DataConnectorArgs.builder()
            .dataConnectorName("WeatherIBM")
            .dataManagerForAgricultureResourceName("examples-dataManagerForAgricultureResourceName")
            .properties(DataConnectorPropertiesArgs.builder()
                .credentials(ApiKeyAuthCredentialsArgs.builder()
                    .apiKey(KeyVaultPropertiesArgs.builder()
                        .keyName("abcApiKey")
                        .keyVaultUri("https://testKeyVault.vault.azure.net/")
                        .keyVersion("239c0475c7d44f20b0fc27d3fe90a41d")
                        .build())
                    .kind("ApiKeyAuthCredentials")
                    .build())
                .build())
            .resourceGroupName("examples-rg")
            .build());

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

const dataConnector = new azure_native.agfoodplatform.DataConnector("dataConnector", {
    dataConnectorName: "WeatherIBM",
    dataManagerForAgricultureResourceName: "examples-dataManagerForAgricultureResourceName",
    properties: {
        credentials: {
            apiKey: {
                keyName: "abcApiKey",
                keyVaultUri: "https://testKeyVault.vault.azure.net/",
                keyVersion: "239c0475c7d44f20b0fc27d3fe90a41d",
            },
            kind: "ApiKeyAuthCredentials",
        },
    },
    resourceGroupName: "examples-rg",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

data_connector = azure_native.agfoodplatform.DataConnector("dataConnector",
    data_connector_name="WeatherIBM",
    data_manager_for_agriculture_resource_name="examples-dataManagerForAgricultureResourceName",
    properties={
        "credentials": {
            "api_key": {
                "key_name": "abcApiKey",
                "key_vault_uri": "https://testKeyVault.vault.azure.net/",
                "key_version": "239c0475c7d44f20b0fc27d3fe90a41d",
            },
            "kind": "ApiKeyAuthCredentials",
        },
    },
    resource_group_name="examples-rg")
Copy
resources:
  dataConnector:
    type: azure-native:agfoodplatform:DataConnector
    properties:
      dataConnectorName: WeatherIBM
      dataManagerForAgricultureResourceName: examples-dataManagerForAgricultureResourceName
      properties:
        credentials:
          apiKey:
            keyName: abcApiKey
            keyVaultUri: https://testKeyVault.vault.azure.net/
            keyVersion: 239c0475c7d44f20b0fc27d3fe90a41d
          kind: ApiKeyAuthCredentials
      resourceGroupName: examples-rg
Copy

Create DataConnector Resource

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

Constructor syntax

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

@overload
def DataConnector(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  data_manager_for_agriculture_resource_name: Optional[str] = None,
                  properties: Optional[DataConnectorPropertiesArgs] = None,
                  resource_group_name: Optional[str] = None,
                  data_connector_name: Optional[str] = None)
func NewDataConnector(ctx *Context, name string, args DataConnectorArgs, opts ...ResourceOption) (*DataConnector, error)
public DataConnector(string name, DataConnectorArgs args, CustomResourceOptions? opts = null)
public DataConnector(String name, DataConnectorArgs args)
public DataConnector(String name, DataConnectorArgs args, CustomResourceOptions options)
type: azure-native:agfoodplatform:DataConnector
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. DataConnectorArgs
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. DataConnectorArgs
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. DataConnectorArgs
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. DataConnectorArgs
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. DataConnectorArgs
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 dataConnectorResource = new AzureNative.AgFoodPlatform.DataConnector("dataConnectorResource", new()
{
    DataManagerForAgricultureResourceName = "string",
    Properties = new AzureNative.AgFoodPlatform.Inputs.DataConnectorPropertiesArgs
    {
        Credentials = new AzureNative.AgFoodPlatform.Inputs.ApiKeyAuthCredentialsArgs
        {
            ApiKey = new AzureNative.AgFoodPlatform.Inputs.KeyVaultPropertiesArgs
            {
                KeyName = "string",
                KeyVaultUri = "string",
                KeyVersion = "string",
            },
            Kind = "ApiKeyAuthCredentials",
        },
    },
    ResourceGroupName = "string",
    DataConnectorName = "string",
});
Copy
example, err := agfoodplatform.NewDataConnector(ctx, "dataConnectorResource", &agfoodplatform.DataConnectorArgs{
	DataManagerForAgricultureResourceName: pulumi.String("string"),
	Properties: &agfoodplatform.DataConnectorPropertiesArgs{
		Credentials: agfoodplatform.ApiKeyAuthCredentials{
			ApiKey: agfoodplatform.KeyVaultProperties{
				KeyName:     "string",
				KeyVaultUri: "string",
				KeyVersion:  "string",
			},
			Kind: "ApiKeyAuthCredentials",
		},
	},
	ResourceGroupName: pulumi.String("string"),
	DataConnectorName: pulumi.String("string"),
})
Copy
var dataConnectorResource = new DataConnector("dataConnectorResource", DataConnectorArgs.builder()
    .dataManagerForAgricultureResourceName("string")
    .properties(DataConnectorPropertiesArgs.builder()
        .credentials(ApiKeyAuthCredentialsArgs.builder()
            .apiKey(KeyVaultPropertiesArgs.builder()
                .keyName("string")
                .keyVaultUri("string")
                .keyVersion("string")
                .build())
            .kind("ApiKeyAuthCredentials")
            .build())
        .build())
    .resourceGroupName("string")
    .dataConnectorName("string")
    .build());
Copy
data_connector_resource = azure_native.agfoodplatform.DataConnector("dataConnectorResource",
    data_manager_for_agriculture_resource_name="string",
    properties={
        "credentials": {
            "api_key": {
                "key_name": "string",
                "key_vault_uri": "string",
                "key_version": "string",
            },
            "kind": "ApiKeyAuthCredentials",
        },
    },
    resource_group_name="string",
    data_connector_name="string")
Copy
const dataConnectorResource = new azure_native.agfoodplatform.DataConnector("dataConnectorResource", {
    dataManagerForAgricultureResourceName: "string",
    properties: {
        credentials: {
            apiKey: {
                keyName: "string",
                keyVaultUri: "string",
                keyVersion: "string",
            },
            kind: "ApiKeyAuthCredentials",
        },
    },
    resourceGroupName: "string",
    dataConnectorName: "string",
});
Copy
type: azure-native:agfoodplatform:DataConnector
properties:
    dataConnectorName: string
    dataManagerForAgricultureResourceName: string
    properties:
        credentials:
            apiKey:
                keyName: string
                keyVaultUri: string
                keyVersion: string
            kind: ApiKeyAuthCredentials
    resourceGroupName: string
Copy

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

DataManagerForAgricultureResourceName
This property is required.
Changes to this property will trigger replacement.
string
DataManagerForAgriculture resource name.
Properties This property is required. Pulumi.AzureNative.AgFoodPlatform.Inputs.DataConnectorProperties
DataConnector Properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DataConnectorName Changes to this property will trigger replacement. string
Connector name.
DataManagerForAgricultureResourceName
This property is required.
Changes to this property will trigger replacement.
string
DataManagerForAgriculture resource name.
Properties This property is required. DataConnectorPropertiesArgs
DataConnector Properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
DataConnectorName Changes to this property will trigger replacement. string
Connector name.
dataManagerForAgricultureResourceName
This property is required.
Changes to this property will trigger replacement.
String
DataManagerForAgriculture resource name.
properties This property is required. DataConnectorProperties
DataConnector Properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
dataConnectorName Changes to this property will trigger replacement. String
Connector name.
dataManagerForAgricultureResourceName
This property is required.
Changes to this property will trigger replacement.
string
DataManagerForAgriculture resource name.
properties This property is required. DataConnectorProperties
DataConnector Properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
dataConnectorName Changes to this property will trigger replacement. string
Connector name.
data_manager_for_agriculture_resource_name
This property is required.
Changes to this property will trigger replacement.
str
DataManagerForAgriculture resource name.
properties This property is required. DataConnectorPropertiesArgs
DataConnector Properties.
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.
data_connector_name Changes to this property will trigger replacement. str
Connector name.
dataManagerForAgricultureResourceName
This property is required.
Changes to this property will trigger replacement.
String
DataManagerForAgriculture resource name.
properties This property is required. Property Map
DataConnector Properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
dataConnectorName Changes to this property will trigger replacement. String
Connector name.

Outputs

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

AzureApiVersion string
The Azure API version of the resource.
ETag string
The ETag value to implement optimistic concurrency.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.AgFoodPlatform.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
AzureApiVersion string
The Azure API version of the resource.
ETag string
The ETag value to implement optimistic concurrency.
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
eTag String
The ETag value to implement optimistic concurrency.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion string
The Azure API version of the resource.
eTag string
The ETag value to implement optimistic concurrency.
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azure_api_version str
The Azure API version of the resource.
e_tag str
The ETag value to implement optimistic concurrency.
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
azureApiVersion String
The Azure API version of the resource.
eTag String
The ETag value to implement optimistic concurrency.
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

ApiKeyAuthCredentials
, ApiKeyAuthCredentialsArgs

ApiKey This property is required. Pulumi.AzureNative.AgFoodPlatform.Inputs.KeyVaultProperties
Properties of the key vault.
ApiKey This property is required. KeyVaultProperties
Properties of the key vault.
apiKey This property is required. KeyVaultProperties
Properties of the key vault.
apiKey This property is required. KeyVaultProperties
Properties of the key vault.
api_key This property is required. KeyVaultProperties
Properties of the key vault.
apiKey This property is required. Property Map
Properties of the key vault.

ApiKeyAuthCredentialsResponse
, ApiKeyAuthCredentialsResponseArgs

ApiKey This property is required. Pulumi.AzureNative.AgFoodPlatform.Inputs.KeyVaultPropertiesResponse
Properties of the key vault.
ApiKey This property is required. KeyVaultPropertiesResponse
Properties of the key vault.
apiKey This property is required. KeyVaultPropertiesResponse
Properties of the key vault.
apiKey This property is required. KeyVaultPropertiesResponse
Properties of the key vault.
api_key This property is required. KeyVaultPropertiesResponse
Properties of the key vault.
apiKey This property is required. Property Map
Properties of the key vault.

DataConnectorProperties
, DataConnectorPropertiesArgs

Credentials This property is required. ApiKeyAuthCredentials | OAuthClientCredentials
AuthCredentials abstract base class for Auth Purpose.
credentials This property is required. ApiKeyAuthCredentials | OAuthClientCredentials
AuthCredentials abstract base class for Auth Purpose.
credentials This property is required. ApiKeyAuthCredentials | OAuthClientCredentials
AuthCredentials abstract base class for Auth Purpose.
credentials This property is required. ApiKeyAuthCredentials | OAuthClientCredentials
AuthCredentials abstract base class for Auth Purpose.
credentials This property is required. Property Map | Property Map
AuthCredentials abstract base class for Auth Purpose.

DataConnectorPropertiesResponse
, DataConnectorPropertiesResponseArgs

Credentials This property is required. ApiKeyAuthCredentialsResponse | OAuthClientCredentialsResponse
AuthCredentials abstract base class for Auth Purpose.
credentials This property is required. ApiKeyAuthCredentialsResponse | OAuthClientCredentialsResponse
AuthCredentials abstract base class for Auth Purpose.
credentials This property is required. ApiKeyAuthCredentialsResponse | OAuthClientCredentialsResponse
AuthCredentials abstract base class for Auth Purpose.
credentials This property is required. ApiKeyAuthCredentialsResponse | OAuthClientCredentialsResponse
AuthCredentials abstract base class for Auth Purpose.
credentials This property is required. Property Map | Property Map
AuthCredentials abstract base class for Auth Purpose.

KeyVaultProperties
, KeyVaultPropertiesArgs

KeyName This property is required. string
Name of Key Vault key.
KeyVaultUri This property is required. string
Uri of the key vault.
KeyVersion This property is required. string
Version of Key Vault key.
KeyName This property is required. string
Name of Key Vault key.
KeyVaultUri This property is required. string
Uri of the key vault.
KeyVersion This property is required. string
Version of Key Vault key.
keyName This property is required. String
Name of Key Vault key.
keyVaultUri This property is required. String
Uri of the key vault.
keyVersion This property is required. String
Version of Key Vault key.
keyName This property is required. string
Name of Key Vault key.
keyVaultUri This property is required. string
Uri of the key vault.
keyVersion This property is required. string
Version of Key Vault key.
key_name This property is required. str
Name of Key Vault key.
key_vault_uri This property is required. str
Uri of the key vault.
key_version This property is required. str
Version of Key Vault key.
keyName This property is required. String
Name of Key Vault key.
keyVaultUri This property is required. String
Uri of the key vault.
keyVersion This property is required. String
Version of Key Vault key.

KeyVaultPropertiesResponse
, KeyVaultPropertiesResponseArgs

KeyName This property is required. string
Name of Key Vault key.
KeyVaultUri This property is required. string
Uri of the key vault.
KeyVersion This property is required. string
Version of Key Vault key.
KeyName This property is required. string
Name of Key Vault key.
KeyVaultUri This property is required. string
Uri of the key vault.
KeyVersion This property is required. string
Version of Key Vault key.
keyName This property is required. String
Name of Key Vault key.
keyVaultUri This property is required. String
Uri of the key vault.
keyVersion This property is required. String
Version of Key Vault key.
keyName This property is required. string
Name of Key Vault key.
keyVaultUri This property is required. string
Uri of the key vault.
keyVersion This property is required. string
Version of Key Vault key.
key_name This property is required. str
Name of Key Vault key.
key_vault_uri This property is required. str
Uri of the key vault.
key_version This property is required. str
Version of Key Vault key.
keyName This property is required. String
Name of Key Vault key.
keyVaultUri This property is required. String
Uri of the key vault.
keyVersion This property is required. String
Version of Key Vault key.

OAuthClientCredentials
, OAuthClientCredentialsArgs

ClientId This property is required. string
ClientId associated with the provider.
ClientSecret This property is required. Pulumi.AzureNative.AgFoodPlatform.Inputs.KeyVaultProperties
Properties of the key vault.
ClientId This property is required. string
ClientId associated with the provider.
ClientSecret This property is required. KeyVaultProperties
Properties of the key vault.
clientId This property is required. String
ClientId associated with the provider.
clientSecret This property is required. KeyVaultProperties
Properties of the key vault.
clientId This property is required. string
ClientId associated with the provider.
clientSecret This property is required. KeyVaultProperties
Properties of the key vault.
client_id This property is required. str
ClientId associated with the provider.
client_secret This property is required. KeyVaultProperties
Properties of the key vault.
clientId This property is required. String
ClientId associated with the provider.
clientSecret This property is required. Property Map
Properties of the key vault.

OAuthClientCredentialsResponse
, OAuthClientCredentialsResponseArgs

ClientId This property is required. string
ClientId associated with the provider.
ClientSecret This property is required. Pulumi.AzureNative.AgFoodPlatform.Inputs.KeyVaultPropertiesResponse
Properties of the key vault.
ClientId This property is required. string
ClientId associated with the provider.
ClientSecret This property is required. KeyVaultPropertiesResponse
Properties of the key vault.
clientId This property is required. String
ClientId associated with the provider.
clientSecret This property is required. KeyVaultPropertiesResponse
Properties of the key vault.
clientId This property is required. string
ClientId associated with the provider.
clientSecret This property is required. KeyVaultPropertiesResponse
Properties of the key vault.
client_id This property is required. str
ClientId associated with the provider.
client_secret This property is required. KeyVaultPropertiesResponse
Properties of the key vault.
clientId This property is required. String
ClientId associated with the provider.
clientSecret This property is required. Property Map
Properties of the key vault.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
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_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
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:agfoodplatform:DataConnector SatelliteSentinelHub /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AgFoodPlatform/farmBeats/{dataManagerForAgricultureResourceName}/dataConnectors/{dataConnectorName} 
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
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.1.0 published on Tuesday, Apr 8, 2025 by Pulumi