1. Packages
  2. Azure Native
  3. API Docs
  4. agricultureplatform
  5. AgriService
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.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.agricultureplatform.AgriService

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.2.0 published on Monday, Apr 14, 2025 by Pulumi

Schema of the AgriService resource from Microsoft.AgriculturePlatform resource provider.

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

Import

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

$ pulumi import azure-native:agricultureplatform:AgriService mnvxvlitiwbndijhbmgiejz /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AgriculturePlatform/agriServices/{agriServiceResourceName} 
Copy

Create AgriService Resource

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

Constructor syntax

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

@overload
def AgriService(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                resource_group_name: Optional[str] = None,
                agri_service_resource_name: Optional[str] = None,
                identity: Optional[ManagedServiceIdentityArgs] = None,
                location: Optional[str] = None,
                properties: Optional[AgriServiceResourcePropertiesArgs] = None,
                sku: Optional[SkuArgs] = None,
                tags: Optional[Mapping[str, str]] = None)
func NewAgriService(ctx *Context, name string, args AgriServiceArgs, opts ...ResourceOption) (*AgriService, error)
public AgriService(string name, AgriServiceArgs args, CustomResourceOptions? opts = null)
public AgriService(String name, AgriServiceArgs args)
public AgriService(String name, AgriServiceArgs args, CustomResourceOptions options)
type: azure-native:agricultureplatform:AgriService
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. AgriServiceArgs
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. AgriServiceArgs
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. AgriServiceArgs
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. AgriServiceArgs
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. AgriServiceArgs
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 agriServiceResource = new AzureNative.AgriculturePlatform.AgriService("agriServiceResource", new()
{
    ResourceGroupName = "string",
    AgriServiceResourceName = "string",
    Identity = new AzureNative.AgriculturePlatform.Inputs.ManagedServiceIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    Location = "string",
    Properties = new AzureNative.AgriculturePlatform.Inputs.AgriServiceResourcePropertiesArgs
    {
        DataConnectorCredentials = new[]
        {
            new AzureNative.AgriculturePlatform.Inputs.DataConnectorCredentialMapArgs
            {
                Key = "string",
                Value = new AzureNative.AgriculturePlatform.Inputs.DataConnectorCredentialsArgs
                {
                    ClientId = "string",
                    KeyName = "string",
                    KeyVaultUri = "string",
                    KeyVersion = "string",
                    Kind = "string",
                },
            },
        },
        InstalledSolutions = new[]
        {
            new AzureNative.AgriculturePlatform.Inputs.InstalledSolutionMapArgs
            {
                Key = "string",
                Value = new AzureNative.AgriculturePlatform.Inputs.SolutionArgs
                {
                    ApplicationName = "string",
                    MarketPlacePublisherId = "string",
                    PartnerId = "string",
                    PlanId = "string",
                    SaasSubscriptionId = "string",
                    SaasSubscriptionName = "string",
                },
            },
        },
    },
    Sku = new AzureNative.AgriculturePlatform.Inputs.SkuArgs
    {
        Name = "string",
        Capacity = 0,
        Family = "string",
        Size = "string",
        Tier = AzureNative.AgriculturePlatform.SkuTier.Free,
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := agricultureplatform.NewAgriService(ctx, "agriServiceResource", &agricultureplatform.AgriServiceArgs{
	ResourceGroupName:       pulumi.String("string"),
	AgriServiceResourceName: pulumi.String("string"),
	Identity: &agricultureplatform.ManagedServiceIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	Location: pulumi.String("string"),
	Properties: &agricultureplatform.AgriServiceResourcePropertiesArgs{
		DataConnectorCredentials: agricultureplatform.DataConnectorCredentialMapArray{
			&agricultureplatform.DataConnectorCredentialMapArgs{
				Key: pulumi.String("string"),
				Value: &agricultureplatform.DataConnectorCredentialsArgs{
					ClientId:    pulumi.String("string"),
					KeyName:     pulumi.String("string"),
					KeyVaultUri: pulumi.String("string"),
					KeyVersion:  pulumi.String("string"),
					Kind:        pulumi.String("string"),
				},
			},
		},
		InstalledSolutions: agricultureplatform.InstalledSolutionMapArray{
			&agricultureplatform.InstalledSolutionMapArgs{
				Key: pulumi.String("string"),
				Value: &agricultureplatform.SolutionArgs{
					ApplicationName:        pulumi.String("string"),
					MarketPlacePublisherId: pulumi.String("string"),
					PartnerId:              pulumi.String("string"),
					PlanId:                 pulumi.String("string"),
					SaasSubscriptionId:     pulumi.String("string"),
					SaasSubscriptionName:   pulumi.String("string"),
				},
			},
		},
	},
	Sku: &agricultureplatform.SkuArgs{
		Name:     pulumi.String("string"),
		Capacity: pulumi.Int(0),
		Family:   pulumi.String("string"),
		Size:     pulumi.String("string"),
		Tier:     agricultureplatform.SkuTierFree,
	},
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var agriServiceResource = new AgriService("agriServiceResource", AgriServiceArgs.builder()
    .resourceGroupName("string")
    .agriServiceResourceName("string")
    .identity(ManagedServiceIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .location("string")
    .properties(AgriServiceResourcePropertiesArgs.builder()
        .dataConnectorCredentials(DataConnectorCredentialMapArgs.builder()
            .key("string")
            .value(DataConnectorCredentialsArgs.builder()
                .clientId("string")
                .keyName("string")
                .keyVaultUri("string")
                .keyVersion("string")
                .kind("string")
                .build())
            .build())
        .installedSolutions(InstalledSolutionMapArgs.builder()
            .key("string")
            .value(SolutionArgs.builder()
                .applicationName("string")
                .marketPlacePublisherId("string")
                .partnerId("string")
                .planId("string")
                .saasSubscriptionId("string")
                .saasSubscriptionName("string")
                .build())
            .build())
        .build())
    .sku(SkuArgs.builder()
        .name("string")
        .capacity(0)
        .family("string")
        .size("string")
        .tier("Free")
        .build())
    .tags(Map.of("string", "string"))
    .build());
Copy
agri_service_resource = azure_native.agricultureplatform.AgriService("agriServiceResource",
    resource_group_name="string",
    agri_service_resource_name="string",
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    location="string",
    properties={
        "data_connector_credentials": [{
            "key": "string",
            "value": {
                "client_id": "string",
                "key_name": "string",
                "key_vault_uri": "string",
                "key_version": "string",
                "kind": "string",
            },
        }],
        "installed_solutions": [{
            "key": "string",
            "value": {
                "application_name": "string",
                "market_place_publisher_id": "string",
                "partner_id": "string",
                "plan_id": "string",
                "saas_subscription_id": "string",
                "saas_subscription_name": "string",
            },
        }],
    },
    sku={
        "name": "string",
        "capacity": 0,
        "family": "string",
        "size": "string",
        "tier": azure_native.agricultureplatform.SkuTier.FREE,
    },
    tags={
        "string": "string",
    })
Copy
const agriServiceResource = new azure_native.agricultureplatform.AgriService("agriServiceResource", {
    resourceGroupName: "string",
    agriServiceResourceName: "string",
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    location: "string",
    properties: {
        dataConnectorCredentials: [{
            key: "string",
            value: {
                clientId: "string",
                keyName: "string",
                keyVaultUri: "string",
                keyVersion: "string",
                kind: "string",
            },
        }],
        installedSolutions: [{
            key: "string",
            value: {
                applicationName: "string",
                marketPlacePublisherId: "string",
                partnerId: "string",
                planId: "string",
                saasSubscriptionId: "string",
                saasSubscriptionName: "string",
            },
        }],
    },
    sku: {
        name: "string",
        capacity: 0,
        family: "string",
        size: "string",
        tier: azure_native.agricultureplatform.SkuTier.Free,
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:agricultureplatform:AgriService
properties:
    agriServiceResourceName: string
    identity:
        type: string
        userAssignedIdentities:
            - string
    location: string
    properties:
        dataConnectorCredentials:
            - key: string
              value:
                clientId: string
                keyName: string
                keyVaultUri: string
                keyVersion: string
                kind: string
        installedSolutions:
            - key: string
              value:
                applicationName: string
                marketPlacePublisherId: string
                partnerId: string
                planId: string
                saasSubscriptionId: string
                saasSubscriptionName: string
    resourceGroupName: string
    sku:
        capacity: 0
        family: string
        name: string
        size: string
        tier: Free
    tags:
        string: string
Copy

AgriService 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 AgriService resource accepts the following input 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.
AgriServiceResourceName Changes to this property will trigger replacement. string
The name of the AgriService resource.
Identity Pulumi.AzureNative.AgriculturePlatform.Inputs.ManagedServiceIdentity
The managed service identities assigned to this resource.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties Pulumi.AzureNative.AgriculturePlatform.Inputs.AgriServiceResourceProperties
The resource-specific properties for this resource.
Sku Pulumi.AzureNative.AgriculturePlatform.Inputs.Sku
The SKU (Stock Keeping Unit) assigned to this resource.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AgriServiceResourceName Changes to this property will trigger replacement. string
The name of the AgriService resource.
Identity ManagedServiceIdentityArgs
The managed service identities assigned to this resource.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Properties AgriServiceResourcePropertiesArgs
The resource-specific properties for this resource.
Sku SkuArgs
The SKU (Stock Keeping Unit) assigned to this resource.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
agriServiceResourceName Changes to this property will trigger replacement. String
The name of the AgriService resource.
identity ManagedServiceIdentity
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties AgriServiceResourceProperties
The resource-specific properties for this resource.
sku Sku
The SKU (Stock Keeping Unit) assigned to this resource.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
agriServiceResourceName Changes to this property will trigger replacement. string
The name of the AgriService resource.
identity ManagedServiceIdentity
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
properties AgriServiceResourceProperties
The resource-specific properties for this resource.
sku Sku
The SKU (Stock Keeping Unit) assigned to this resource.
tags {[key: string]: string}
Resource tags.
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.
agri_service_resource_name Changes to this property will trigger replacement. str
The name of the AgriService resource.
identity ManagedServiceIdentityArgs
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
properties AgriServiceResourcePropertiesArgs
The resource-specific properties for this resource.
sku SkuArgs
The SKU (Stock Keeping Unit) assigned to this resource.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
agriServiceResourceName Changes to this property will trigger replacement. String
The name of the AgriService resource.
identity Property Map
The managed service identities assigned to this resource.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
properties Property Map
The resource-specific properties for this resource.
sku Property Map
The SKU (Stock Keeping Unit) assigned to this resource.
tags Map<String>
Resource tags.

Outputs

All input properties are implicitly available as output properties. Additionally, the AgriService 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 resource
SystemData Pulumi.AzureNative.AgriculturePlatform.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.
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.
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.
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.
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.
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

AgriServiceConfigResponse
, AgriServiceConfigResponseArgs

AppServiceResourceId This property is required. string
App service resource Id.
CosmosDbResourceId This property is required. string
Cosmos Db resource Id.
InstanceUri This property is required. string
Instance URI of the AgriService instance.
KeyVaultResourceId This property is required. string
Key vault resource Id.
RedisCacheResourceId This property is required. string
Redis cache resource Id.
StorageAccountResourceId This property is required. string
Storage account resource Id.
Version This property is required. string
Version of AgriService instance.
AppServiceResourceId This property is required. string
App service resource Id.
CosmosDbResourceId This property is required. string
Cosmos Db resource Id.
InstanceUri This property is required. string
Instance URI of the AgriService instance.
KeyVaultResourceId This property is required. string
Key vault resource Id.
RedisCacheResourceId This property is required. string
Redis cache resource Id.
StorageAccountResourceId This property is required. string
Storage account resource Id.
Version This property is required. string
Version of AgriService instance.
appServiceResourceId This property is required. String
App service resource Id.
cosmosDbResourceId This property is required. String
Cosmos Db resource Id.
instanceUri This property is required. String
Instance URI of the AgriService instance.
keyVaultResourceId This property is required. String
Key vault resource Id.
redisCacheResourceId This property is required. String
Redis cache resource Id.
storageAccountResourceId This property is required. String
Storage account resource Id.
version This property is required. String
Version of AgriService instance.
appServiceResourceId This property is required. string
App service resource Id.
cosmosDbResourceId This property is required. string
Cosmos Db resource Id.
instanceUri This property is required. string
Instance URI of the AgriService instance.
keyVaultResourceId This property is required. string
Key vault resource Id.
redisCacheResourceId This property is required. string
Redis cache resource Id.
storageAccountResourceId This property is required. string
Storage account resource Id.
version This property is required. string
Version of AgriService instance.
app_service_resource_id This property is required. str
App service resource Id.
cosmos_db_resource_id This property is required. str
Cosmos Db resource Id.
instance_uri This property is required. str
Instance URI of the AgriService instance.
key_vault_resource_id This property is required. str
Key vault resource Id.
redis_cache_resource_id This property is required. str
Redis cache resource Id.
storage_account_resource_id This property is required. str
Storage account resource Id.
version This property is required. str
Version of AgriService instance.
appServiceResourceId This property is required. String
App service resource Id.
cosmosDbResourceId This property is required. String
Cosmos Db resource Id.
instanceUri This property is required. String
Instance URI of the AgriService instance.
keyVaultResourceId This property is required. String
Key vault resource Id.
redisCacheResourceId This property is required. String
Redis cache resource Id.
storageAccountResourceId This property is required. String
Storage account resource Id.
version This property is required. String
Version of AgriService instance.

AgriServiceResourceProperties
, AgriServiceResourcePropertiesArgs

DataConnectorCredentials []DataConnectorCredentialMap
Data connector credentials of AgriService instance.
InstalledSolutions []InstalledSolutionMap
AgriService installed solutions.
dataConnectorCredentials List<DataConnectorCredentialMap>
Data connector credentials of AgriService instance.
installedSolutions List<InstalledSolutionMap>
AgriService installed solutions.
dataConnectorCredentials DataConnectorCredentialMap[]
Data connector credentials of AgriService instance.
installedSolutions InstalledSolutionMap[]
AgriService installed solutions.
data_connector_credentials Sequence[DataConnectorCredentialMap]
Data connector credentials of AgriService instance.
installed_solutions Sequence[InstalledSolutionMap]
AgriService installed solutions.
dataConnectorCredentials List<Property Map>
Data connector credentials of AgriService instance.
installedSolutions List<Property Map>
AgriService installed solutions.

AgriServiceResourcePropertiesResponse
, AgriServiceResourcePropertiesResponseArgs

ManagedOnBehalfOfConfiguration This property is required. ManagedOnBehalfOfConfigurationResponse
Managed On Behalf Of Configuration.
ProvisioningState This property is required. string
The status of the last operation.
Config AgriServiceConfigResponse
Config of the AgriService instance.
DataConnectorCredentials []DataConnectorCredentialMapResponse
Data connector credentials of AgriService instance.
InstalledSolutions []InstalledSolutionMapResponse
AgriService installed solutions.
managedOnBehalfOfConfiguration This property is required. ManagedOnBehalfOfConfigurationResponse
Managed On Behalf Of Configuration.
provisioningState This property is required. String
The status of the last operation.
config AgriServiceConfigResponse
Config of the AgriService instance.
dataConnectorCredentials List<DataConnectorCredentialMapResponse>
Data connector credentials of AgriService instance.
installedSolutions List<InstalledSolutionMapResponse>
AgriService installed solutions.
managedOnBehalfOfConfiguration This property is required. ManagedOnBehalfOfConfigurationResponse
Managed On Behalf Of Configuration.
provisioningState This property is required. string
The status of the last operation.
config AgriServiceConfigResponse
Config of the AgriService instance.
dataConnectorCredentials DataConnectorCredentialMapResponse[]
Data connector credentials of AgriService instance.
installedSolutions InstalledSolutionMapResponse[]
AgriService installed solutions.
managed_on_behalf_of_configuration This property is required. ManagedOnBehalfOfConfigurationResponse
Managed On Behalf Of Configuration.
provisioning_state This property is required. str
The status of the last operation.
config AgriServiceConfigResponse
Config of the AgriService instance.
data_connector_credentials Sequence[DataConnectorCredentialMapResponse]
Data connector credentials of AgriService instance.
installed_solutions Sequence[InstalledSolutionMapResponse]
AgriService installed solutions.
managedOnBehalfOfConfiguration This property is required. Property Map
Managed On Behalf Of Configuration.
provisioningState This property is required. String
The status of the last operation.
config Property Map
Config of the AgriService instance.
dataConnectorCredentials List<Property Map>
Data connector credentials of AgriService instance.
installedSolutions List<Property Map>
AgriService installed solutions.

AuthCredentialsKind
, AuthCredentialsKindArgs

OAuthClientCredentials
OAuthClientCredentialsOAuth Client Credential type
ApiKeyAuthCredentials
ApiKeyAuthCredentialsAPI Key Auth Credential type
AuthCredentialsKindOAuthClientCredentials
OAuthClientCredentialsOAuth Client Credential type
AuthCredentialsKindApiKeyAuthCredentials
ApiKeyAuthCredentialsAPI Key Auth Credential type
OAuthClientCredentials
OAuthClientCredentialsOAuth Client Credential type
ApiKeyAuthCredentials
ApiKeyAuthCredentialsAPI Key Auth Credential type
OAuthClientCredentials
OAuthClientCredentialsOAuth Client Credential type
ApiKeyAuthCredentials
ApiKeyAuthCredentialsAPI Key Auth Credential type
O_AUTH_CLIENT_CREDENTIALS
OAuthClientCredentialsOAuth Client Credential type
API_KEY_AUTH_CREDENTIALS
ApiKeyAuthCredentialsAPI Key Auth Credential type
"OAuthClientCredentials"
OAuthClientCredentialsOAuth Client Credential type
"ApiKeyAuthCredentials"
ApiKeyAuthCredentialsAPI Key Auth Credential type

DataConnectorCredentialMap
, DataConnectorCredentialMapArgs

Key This property is required. string
The key representing the credential.
Value This property is required. Pulumi.AzureNative.AgriculturePlatform.Inputs.DataConnectorCredentials
The data connector credential value.
Key This property is required. string
The key representing the credential.
Value This property is required. DataConnectorCredentials
The data connector credential value.
key This property is required. String
The key representing the credential.
value This property is required. DataConnectorCredentials
The data connector credential value.
key This property is required. string
The key representing the credential.
value This property is required. DataConnectorCredentials
The data connector credential value.
key This property is required. str
The key representing the credential.
value This property is required. DataConnectorCredentials
The data connector credential value.
key This property is required. String
The key representing the credential.
value This property is required. Property Map
The data connector credential value.

DataConnectorCredentialMapResponse
, DataConnectorCredentialMapResponseArgs

Key This property is required. string
The key representing the credential.
Value This property is required. Pulumi.AzureNative.AgriculturePlatform.Inputs.DataConnectorCredentialsResponse
The data connector credential value.
Key This property is required. string
The key representing the credential.
Value This property is required. DataConnectorCredentialsResponse
The data connector credential value.
key This property is required. String
The key representing the credential.
value This property is required. DataConnectorCredentialsResponse
The data connector credential value.
key This property is required. string
The key representing the credential.
value This property is required. DataConnectorCredentialsResponse
The data connector credential value.
key This property is required. str
The key representing the credential.
value This property is required. DataConnectorCredentialsResponse
The data connector credential value.
key This property is required. String
The key representing the credential.
value This property is required. Property Map
The data connector credential value.

DataConnectorCredentials
, DataConnectorCredentialsArgs

ClientId string
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
KeyName string
Name of the key vault key.
KeyVaultUri string
Uri of the key vault
KeyVersion string
Version of the key vault key.
Kind string | Pulumi.AzureNative.AgriculturePlatform.AuthCredentialsKind
Type of credential.
ClientId string
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
KeyName string
Name of the key vault key.
KeyVaultUri string
Uri of the key vault
KeyVersion string
Version of the key vault key.
Kind string | AuthCredentialsKind
Type of credential.
clientId String
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
keyName String
Name of the key vault key.
keyVaultUri String
Uri of the key vault
keyVersion String
Version of the key vault key.
kind String | AuthCredentialsKind
Type of credential.
clientId string
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
keyName string
Name of the key vault key.
keyVaultUri string
Uri of the key vault
keyVersion string
Version of the key vault key.
kind string | AuthCredentialsKind
Type of credential.
client_id str
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
key_name str
Name of the key vault key.
key_vault_uri str
Uri of the key vault
key_version str
Version of the key vault key.
kind str | AuthCredentialsKind
Type of credential.
clientId String
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
keyName String
Name of the key vault key.
keyVaultUri String
Uri of the key vault
keyVersion String
Version of the key vault key.
kind String | "OAuthClientCredentials" | "ApiKeyAuthCredentials"
Type of credential.

DataConnectorCredentialsResponse
, DataConnectorCredentialsResponseArgs

ClientId string
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
KeyName string
Name of the key vault key.
KeyVaultUri string
Uri of the key vault
KeyVersion string
Version of the key vault key.
Kind string
Type of credential.
ClientId string
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
KeyName string
Name of the key vault key.
KeyVaultUri string
Uri of the key vault
KeyVersion string
Version of the key vault key.
Kind string
Type of credential.
clientId String
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
keyName String
Name of the key vault key.
keyVaultUri String
Uri of the key vault
keyVersion String
Version of the key vault key.
kind String
Type of credential.
clientId string
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
keyName string
Name of the key vault key.
keyVaultUri string
Uri of the key vault
keyVersion string
Version of the key vault key.
kind string
Type of credential.
client_id str
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
key_name str
Name of the key vault key.
key_vault_uri str
Uri of the key vault
key_version str
Version of the key vault key.
kind str
Type of credential.
clientId String
Client Id associated with the provider, if type of credentials is OAuthClientCredentials.
keyName String
Name of the key vault key.
keyVaultUri String
Uri of the key vault
keyVersion String
Version of the key vault key.
kind String
Type of credential.

InstalledSolutionMap
, InstalledSolutionMapArgs

Key This property is required. string
The key representing the installed solution.
Value This property is required. Pulumi.AzureNative.AgriculturePlatform.Inputs.Solution
The installed solution value.
Key This property is required. string
The key representing the installed solution.
Value This property is required. Solution
The installed solution value.
key This property is required. String
The key representing the installed solution.
value This property is required. Solution
The installed solution value.
key This property is required. string
The key representing the installed solution.
value This property is required. Solution
The installed solution value.
key This property is required. str
The key representing the installed solution.
value This property is required. Solution
The installed solution value.
key This property is required. String
The key representing the installed solution.
value This property is required. Property Map
The installed solution value.

InstalledSolutionMapResponse
, InstalledSolutionMapResponseArgs

Key This property is required. string
The key representing the installed solution.
Value This property is required. Pulumi.AzureNative.AgriculturePlatform.Inputs.SolutionResponse
The installed solution value.
Key This property is required. string
The key representing the installed solution.
Value This property is required. SolutionResponse
The installed solution value.
key This property is required. String
The key representing the installed solution.
value This property is required. SolutionResponse
The installed solution value.
key This property is required. string
The key representing the installed solution.
value This property is required. SolutionResponse
The installed solution value.
key This property is required. str
The key representing the installed solution.
value This property is required. SolutionResponse
The installed solution value.
key This property is required. String
The key representing the installed solution.
value This property is required. Property Map
The installed solution value.

ManagedOnBehalfOfConfigurationResponse
, ManagedOnBehalfOfConfigurationResponseArgs

MoboBrokerResources This property is required. []MoboBrokerResourceResponse
Associated MoboBrokerResources.
moboBrokerResources This property is required. List<MoboBrokerResourceResponse>
Associated MoboBrokerResources.
moboBrokerResources This property is required. MoboBrokerResourceResponse[]
Associated MoboBrokerResources.
mobo_broker_resources This property is required. Sequence[MoboBrokerResourceResponse]
Associated MoboBrokerResources.
moboBrokerResources This property is required. List<Property Map>
Associated MoboBrokerResources.

ManagedServiceIdentity
, ManagedServiceIdentityArgs

Type This property is required. string | Pulumi.AzureNative.AgriculturePlatform.ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities List<string>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
Type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities []string
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. string | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities string[]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. str | ManagedServiceIdentityType
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Sequence[str]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
type This property is required. String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned,UserAssigned"
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities List<String>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityResponse
, ManagedServiceIdentityResponseArgs

PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.AgriculturePlatform.Inputs.UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
PrincipalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
TenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
Type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
UserAssignedIdentities map[string]UserAssignedIdentityResponse
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<String,UserAssignedIdentityResponse>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. string
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. string
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. string
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principal_id This property is required. str
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenant_id This property is required. str
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. str
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
principalId This property is required. String
The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
tenantId This property is required. String
The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
type This property is required. String
Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
userAssignedIdentities Map<Property Map>
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

ManagedServiceIdentityType
, ManagedServiceIdentityTypeArgs

None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
ManagedServiceIdentityTypeNone
None
ManagedServiceIdentityTypeSystemAssigned
SystemAssigned
ManagedServiceIdentityTypeUserAssigned
UserAssigned
ManagedServiceIdentityType_SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
None
None
SystemAssigned
SystemAssigned
UserAssigned
UserAssigned
SystemAssigned_UserAssigned
SystemAssigned,UserAssigned
NONE
None
SYSTEM_ASSIGNED
SystemAssigned
USER_ASSIGNED
UserAssigned
SYSTEM_ASSIGNED_USER_ASSIGNED
SystemAssigned,UserAssigned
"None"
None
"SystemAssigned"
SystemAssigned
"UserAssigned"
UserAssigned
"SystemAssigned,UserAssigned"
SystemAssigned,UserAssigned

MoboBrokerResourceResponse
, MoboBrokerResourceResponseArgs

Id This property is required. string
The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
Id This property is required. string
The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
id This property is required. String
The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
id This property is required. string
The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
id This property is required. str
The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
id This property is required. String
The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

Sku
, SkuArgs

Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier Pulumi.AzureNative.AgriculturePlatform.SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Integer
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. str
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family str
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size str
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier SkuTier
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier "Free" | "Basic" | "Standard" | "Premium"
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.

SkuResponse
, SkuResponseArgs

Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier string
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
Name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
Capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
Family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
Size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
Tier string
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Integer
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier String
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. string
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family string
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size string
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier string
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. str
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity int
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family str
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size str
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier str
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.
name This property is required. String
The name of the SKU. E.g. P3. It is typically a letter+number code
capacity Number
If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.
family String
If the service has different generations of hardware, for the same SKU, then that can be captured here.
size String
The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.
tier String
This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.

SkuTier
, SkuTierArgs

Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
SkuTierFree
Free
SkuTierBasic
Basic
SkuTierStandard
Standard
SkuTierPremium
Premium
Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
Free
Free
Basic
Basic
Standard
Standard
Premium
Premium
FREE
Free
BASIC
Basic
STANDARD
Standard
PREMIUM
Premium
"Free"
Free
"Basic"
Basic
"Standard"
Standard
"Premium"
Premium

Solution
, SolutionArgs

ApplicationName string
Application name of the solution.
MarketPlacePublisherId string
Marketplace publisher Id.
PartnerId string
Partner Id.
PlanId string
Plan Id.
SaasSubscriptionId string
Saas subscription Id.
SaasSubscriptionName string
Saas subscription name.
ApplicationName string
Application name of the solution.
MarketPlacePublisherId string
Marketplace publisher Id.
PartnerId string
Partner Id.
PlanId string
Plan Id.
SaasSubscriptionId string
Saas subscription Id.
SaasSubscriptionName string
Saas subscription name.
applicationName String
Application name of the solution.
marketPlacePublisherId String
Marketplace publisher Id.
partnerId String
Partner Id.
planId String
Plan Id.
saasSubscriptionId String
Saas subscription Id.
saasSubscriptionName String
Saas subscription name.
applicationName string
Application name of the solution.
marketPlacePublisherId string
Marketplace publisher Id.
partnerId string
Partner Id.
planId string
Plan Id.
saasSubscriptionId string
Saas subscription Id.
saasSubscriptionName string
Saas subscription name.
application_name str
Application name of the solution.
market_place_publisher_id str
Marketplace publisher Id.
partner_id str
Partner Id.
plan_id str
Plan Id.
saas_subscription_id str
Saas subscription Id.
saas_subscription_name str
Saas subscription name.
applicationName String
Application name of the solution.
marketPlacePublisherId String
Marketplace publisher Id.
partnerId String
Partner Id.
planId String
Plan Id.
saasSubscriptionId String
Saas subscription Id.
saasSubscriptionName String
Saas subscription name.

SolutionResponse
, SolutionResponseArgs

ApplicationName string
Application name of the solution.
MarketPlacePublisherId string
Marketplace publisher Id.
PartnerId string
Partner Id.
PlanId string
Plan Id.
SaasSubscriptionId string
Saas subscription Id.
SaasSubscriptionName string
Saas subscription name.
ApplicationName string
Application name of the solution.
MarketPlacePublisherId string
Marketplace publisher Id.
PartnerId string
Partner Id.
PlanId string
Plan Id.
SaasSubscriptionId string
Saas subscription Id.
SaasSubscriptionName string
Saas subscription name.
applicationName String
Application name of the solution.
marketPlacePublisherId String
Marketplace publisher Id.
partnerId String
Partner Id.
planId String
Plan Id.
saasSubscriptionId String
Saas subscription Id.
saasSubscriptionName String
Saas subscription name.
applicationName string
Application name of the solution.
marketPlacePublisherId string
Marketplace publisher Id.
partnerId string
Partner Id.
planId string
Plan Id.
saasSubscriptionId string
Saas subscription Id.
saasSubscriptionName string
Saas subscription name.
application_name str
Application name of the solution.
market_place_publisher_id str
Marketplace publisher Id.
partner_id str
Partner Id.
plan_id str
Plan Id.
saas_subscription_id str
Saas subscription Id.
saas_subscription_name str
Saas subscription name.
applicationName String
Application name of the solution.
marketPlacePublisherId String
Marketplace publisher Id.
partnerId String
Partner Id.
planId String
Plan Id.
saasSubscriptionId String
Saas subscription Id.
saasSubscriptionName String
Saas subscription name.

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.

UserAssignedIdentityResponse
, UserAssignedIdentityResponseArgs

ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
ClientId This property is required. string
The client ID of the assigned identity.
PrincipalId This property is required. string
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.
clientId This property is required. string
The client ID of the assigned identity.
principalId This property is required. string
The principal ID of the assigned identity.
client_id This property is required. str
The client ID of the assigned identity.
principal_id This property is required. str
The principal ID of the assigned identity.
clientId This property is required. String
The client ID of the assigned identity.
principalId This property is required. String
The principal ID of the assigned identity.

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.2.0 published on Monday, Apr 14, 2025 by Pulumi