1. Packages
  2. Azure Native
  3. API Docs
  4. agricultureplatform
  5. AgriService
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native.agricultureplatform.AgriService

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

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

    Uses Azure REST 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} 
    

    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 string
    The unique name of the resource.
    args AgriServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args AgriServiceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AgriServiceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args 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" },
        },
    });
    
    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"),
    	},
    })
    
    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());
    
    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",
        })
    
    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",
        },
    });
    
    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
    

    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 string
    The name of the resource group. The name is case insensitive.
    AgriServiceResourceName string
    The name of the AgriService resource.
    Identity Pulumi.AzureNative.AgriculturePlatform.Inputs.ManagedServiceIdentity
    The managed service identities assigned to this resource.
    Location 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 string
    The name of the resource group. The name is case insensitive.
    AgriServiceResourceName string
    The name of the AgriService resource.
    Identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    Location 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 String
    The name of the resource group. The name is case insensitive.
    agriServiceResourceName String
    The name of the AgriService resource.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location 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 string
    The name of the resource group. The name is case insensitive.
    agriServiceResourceName string
    The name of the AgriService resource.
    identity ManagedServiceIdentity
    The managed service identities assigned to this resource.
    location 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 str
    The name of the resource group. The name is case insensitive.
    agri_service_resource_name str
    The name of the AgriService resource.
    identity ManagedServiceIdentityArgs
    The managed service identities assigned to this resource.
    location 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 String
    The name of the resource group. The name is case insensitive.
    agriServiceResourceName String
    The name of the AgriService resource.
    identity Property Map
    The managed service identities assigned to this resource.
    location 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:

    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"
    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"
    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"
    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"
    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"
    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 string
    App service resource Id.
    CosmosDbResourceId string
    Cosmos Db resource Id.
    InstanceUri string
    Instance URI of the AgriService instance.
    KeyVaultResourceId string
    Key vault resource Id.
    RedisCacheResourceId string
    Redis cache resource Id.
    StorageAccountResourceId string
    Storage account resource Id.
    Version string
    Version of AgriService instance.
    AppServiceResourceId string
    App service resource Id.
    CosmosDbResourceId string
    Cosmos Db resource Id.
    InstanceUri string
    Instance URI of the AgriService instance.
    KeyVaultResourceId string
    Key vault resource Id.
    RedisCacheResourceId string
    Redis cache resource Id.
    StorageAccountResourceId string
    Storage account resource Id.
    Version string
    Version of AgriService instance.
    appServiceResourceId String
    App service resource Id.
    cosmosDbResourceId String
    Cosmos Db resource Id.
    instanceUri String
    Instance URI of the AgriService instance.
    keyVaultResourceId String
    Key vault resource Id.
    redisCacheResourceId String
    Redis cache resource Id.
    storageAccountResourceId String
    Storage account resource Id.
    version String
    Version of AgriService instance.
    appServiceResourceId string
    App service resource Id.
    cosmosDbResourceId string
    Cosmos Db resource Id.
    instanceUri string
    Instance URI of the AgriService instance.
    keyVaultResourceId string
    Key vault resource Id.
    redisCacheResourceId string
    Redis cache resource Id.
    storageAccountResourceId string
    Storage account resource Id.
    version string
    Version of AgriService instance.
    app_service_resource_id str
    App service resource Id.
    cosmos_db_resource_id str
    Cosmos Db resource Id.
    instance_uri str
    Instance URI of the AgriService instance.
    key_vault_resource_id str
    Key vault resource Id.
    redis_cache_resource_id str
    Redis cache resource Id.
    storage_account_resource_id str
    Storage account resource Id.
    version str
    Version of AgriService instance.
    appServiceResourceId String
    App service resource Id.
    cosmosDbResourceId String
    Cosmos Db resource Id.
    instanceUri String
    Instance URI of the AgriService instance.
    keyVaultResourceId String
    Key vault resource Id.
    redisCacheResourceId String
    Redis cache resource Id.
    storageAccountResourceId String
    Storage account resource Id.
    version 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 ManagedOnBehalfOfConfigurationResponse
    Managed On Behalf Of Configuration.
    ProvisioningState 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 ManagedOnBehalfOfConfigurationResponse
    Managed On Behalf Of Configuration.
    provisioningState 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 ManagedOnBehalfOfConfigurationResponse
    Managed On Behalf Of Configuration.
    provisioningState 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 ManagedOnBehalfOfConfigurationResponse
    Managed On Behalf Of Configuration.
    provisioning_state 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 Property Map
    Managed On Behalf Of Configuration.
    provisioningState 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 string
    The key representing the credential.
    Value Pulumi.AzureNative.AgriculturePlatform.Inputs.DataConnectorCredentials
    The data connector credential value.
    Key string
    The key representing the credential.
    Value DataConnectorCredentials
    The data connector credential value.
    key String
    The key representing the credential.
    value DataConnectorCredentials
    The data connector credential value.
    key string
    The key representing the credential.
    value DataConnectorCredentials
    The data connector credential value.
    key str
    The key representing the credential.
    value DataConnectorCredentials
    The data connector credential value.
    key String
    The key representing the credential.
    value Property Map
    The data connector credential value.

    DataConnectorCredentialMapResponse, DataConnectorCredentialMapResponseArgs

    Key string
    The key representing the credential.
    Value Pulumi.AzureNative.AgriculturePlatform.Inputs.DataConnectorCredentialsResponse
    The data connector credential value.
    Key string
    The key representing the credential.
    Value DataConnectorCredentialsResponse
    The data connector credential value.
    key String
    The key representing the credential.
    value DataConnectorCredentialsResponse
    The data connector credential value.
    key string
    The key representing the credential.
    value DataConnectorCredentialsResponse
    The data connector credential value.
    key str
    The key representing the credential.
    value DataConnectorCredentialsResponse
    The data connector credential value.
    key String
    The key representing the credential.
    value 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 string
    The key representing the installed solution.
    Value Pulumi.AzureNative.AgriculturePlatform.Inputs.Solution
    The installed solution value.
    Key string
    The key representing the installed solution.
    Value Solution
    The installed solution value.
    key String
    The key representing the installed solution.
    value Solution
    The installed solution value.
    key string
    The key representing the installed solution.
    value Solution
    The installed solution value.
    key str
    The key representing the installed solution.
    value Solution
    The installed solution value.
    key String
    The key representing the installed solution.
    value Property Map
    The installed solution value.

    InstalledSolutionMapResponse, InstalledSolutionMapResponseArgs

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

    ManagedOnBehalfOfConfigurationResponse, ManagedOnBehalfOfConfigurationResponseArgs

    MoboBrokerResources []MoboBrokerResourceResponse
    Associated MoboBrokerResources.
    moboBrokerResources MoboBrokerResourceResponse[]
    Associated MoboBrokerResources.
    moboBrokerResources List<Property Map>
    Associated MoboBrokerResources.

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Type 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 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 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 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 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 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 string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type 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 string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type 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 String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type 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 string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type 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 str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type 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 String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type 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 string
    The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    Id string
    The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    id String
    The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    id string
    The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    id str
    The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    id String
    The fully qualified resource ID of the MoboBroker resource. Example: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}

    Sku, SkuArgs

    Name 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 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 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 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 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 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 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 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 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 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 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 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 string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi