azure-native.agfoodplatform.FarmBeatsModel

Explore with Pulumi AI

FarmBeats ARM Resource. API Version: 2020-05-12-preview.

Example Usage

FarmBeatsModels_CreateOrUpdate

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

return await Deployment.RunAsync(() => 
{
    var farmBeatsModel = new AzureNative.AgFoodPlatform.FarmBeatsModel("farmBeatsModel", new()
    {
        FarmBeatsResourceName = "examples-farmbeatsResourceName",
        Location = "eastus2",
        ResourceGroupName = "examples-rg",
        Tags = 
        {
            { "key1", "value1" },
            { "key2", "value2" },
        },
    });

});
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := agfoodplatform.NewFarmBeatsModel(ctx, "farmBeatsModel", &agfoodplatform.FarmBeatsModelArgs{
			FarmBeatsResourceName: pulumi.String("examples-farmbeatsResourceName"),
			Location:              pulumi.String("eastus2"),
			ResourceGroupName:     pulumi.String("examples-rg"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("value1"),
				"key2": pulumi.String("value2"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.agfoodplatform.FarmBeatsModel;
import com.pulumi.azurenative.agfoodplatform.FarmBeatsModelArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        var farmBeatsModel = new FarmBeatsModel("farmBeatsModel", FarmBeatsModelArgs.builder()        
            .farmBeatsResourceName("examples-farmbeatsResourceName")
            .location("eastus2")
            .resourceGroupName("examples-rg")
            .tags(Map.ofEntries(
                Map.entry("key1", "value1"),
                Map.entry("key2", "value2")
            ))
            .build());

    }
}
import pulumi
import pulumi_azure_native as azure_native

farm_beats_model = azure_native.agfoodplatform.FarmBeatsModel("farmBeatsModel",
    farm_beats_resource_name="examples-farmbeatsResourceName",
    location="eastus2",
    resource_group_name="examples-rg",
    tags={
        "key1": "value1",
        "key2": "value2",
    })
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const farmBeatsModel = new azure_native.agfoodplatform.FarmBeatsModel("farmBeatsModel", {
    farmBeatsResourceName: "examples-farmbeatsResourceName",
    location: "eastus2",
    resourceGroupName: "examples-rg",
    tags: {
        key1: "value1",
        key2: "value2",
    },
});
resources:
  farmBeatsModel:
    type: azure-native:agfoodplatform:FarmBeatsModel
    properties:
      farmBeatsResourceName: examples-farmbeatsResourceName
      location: eastus2
      resourceGroupName: examples-rg
      tags:
        key1: value1
        key2: value2

Create FarmBeatsModel Resource

new FarmBeatsModel(name: string, args: FarmBeatsModelArgs, opts?: CustomResourceOptions);
@overload
def FarmBeatsModel(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   farm_beats_resource_name: Optional[str] = None,
                   location: Optional[str] = None,
                   resource_group_name: Optional[str] = None,
                   sku: Optional[SkuArgs] = None,
                   tags: Optional[Mapping[str, str]] = None)
@overload
def FarmBeatsModel(resource_name: str,
                   args: FarmBeatsModelArgs,
                   opts: Optional[ResourceOptions] = None)
func NewFarmBeatsModel(ctx *Context, name string, args FarmBeatsModelArgs, opts ...ResourceOption) (*FarmBeatsModel, error)
public FarmBeatsModel(string name, FarmBeatsModelArgs args, CustomResourceOptions? opts = null)
public FarmBeatsModel(String name, FarmBeatsModelArgs args)
public FarmBeatsModel(String name, FarmBeatsModelArgs args, CustomResourceOptions options)
type: azure-native:agfoodplatform:FarmBeatsModel
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args FarmBeatsModelArgs
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 FarmBeatsModelArgs
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 FarmBeatsModelArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args FarmBeatsModelArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args FarmBeatsModelArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

FarmBeatsModel Resource Properties

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

Inputs

The FarmBeatsModel resource accepts the following input properties:

ResourceGroupName string

The name of the resource group. The name is case insensitive.

FarmBeatsResourceName string

FarmBeats resource name.

Location string

The geo-location where the resource lives

Sku Pulumi.AzureNative.AgFoodPlatform.Inputs.SkuArgs

The resource model definition representing SKU

Tags Dictionary<string, string>

Resource tags.

ResourceGroupName string

The name of the resource group. The name is case insensitive.

FarmBeatsResourceName string

FarmBeats resource name.

Location string

The geo-location where the resource lives

Sku SkuArgs

The resource model definition representing SKU

Tags map[string]string

Resource tags.

resourceGroupName String

The name of the resource group. The name is case insensitive.

farmBeatsResourceName String

FarmBeats resource name.

location String

The geo-location where the resource lives

sku SkuArgs

The resource model definition representing SKU

tags Map<String,String>

Resource tags.

resourceGroupName string

The name of the resource group. The name is case insensitive.

farmBeatsResourceName string

FarmBeats resource name.

location string

The geo-location where the resource lives

sku SkuArgs

The resource model definition representing SKU

tags {[key: string]: string}

Resource tags.

resource_group_name str

The name of the resource group. The name is case insensitive.

farm_beats_resource_name str

FarmBeats resource name.

location str

The geo-location where the resource lives

sku SkuArgs

The resource model definition representing SKU

tags Mapping[str, str]

Resource tags.

resourceGroupName String

The name of the resource group. The name is case insensitive.

farmBeatsResourceName String

FarmBeats resource name.

location String

The geo-location where the resource lives

sku Property Map

The resource model definition representing SKU

tags Map<String>

Resource tags.

Outputs

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

Id string

The provider-assigned unique ID for this managed resource.

InstanceUri string

Uri of the FarmBeats instance.

Name string

The name of the resource

ProvisioningState string

FarmBeats instance provisioning state.

SystemData Pulumi.AzureNative.AgFoodPlatform.Outputs.SystemDataResponse

Metadata pertaining to creation and last modification of the resource.

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.

InstanceUri string

Uri of the FarmBeats instance.

Name string

The name of the resource

ProvisioningState string

FarmBeats instance provisioning state.

SystemData SystemDataResponse

Metadata pertaining to creation and last modification of the resource.

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.

instanceUri String

Uri of the FarmBeats instance.

name String

The name of the resource

provisioningState String

FarmBeats instance provisioning state.

systemData SystemDataResponse

Metadata pertaining to creation and last modification of the resource.

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.

instanceUri string

Uri of the FarmBeats instance.

name string

The name of the resource

provisioningState string

FarmBeats instance provisioning state.

systemData SystemDataResponse

Metadata pertaining to creation and last modification of the resource.

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.

instance_uri str

Uri of the FarmBeats instance.

name str

The name of the resource

provisioning_state str

FarmBeats instance provisioning state.

system_data SystemDataResponse

Metadata pertaining to creation and last modification of the resource.

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.

instanceUri String

Uri of the FarmBeats instance.

name String

The name of the resource

provisioningState String

FarmBeats instance provisioning state.

systemData Property Map

Metadata pertaining to creation and last modification of the resource.

type String

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

Sku

Name string

The name of the SKU. Ex - 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.AgFoodPlatform.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. Ex - 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. Ex - 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. Ex - 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. Ex - 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. Ex - 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

Name string

The name of the SKU. Ex - 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. Ex - 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. Ex - 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. Ex - 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. Ex - 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. Ex - 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

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

SystemDataResponse

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string

The type of identity that created the resource.

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string

The type of identity that last modified the resource.

CreatedAt string

The timestamp of resource creation (UTC).

CreatedBy string

The identity that created the resource.

CreatedByType string

The type of identity that created the resource.

LastModifiedAt string

The timestamp of resource last modification (UTC)

LastModifiedBy string

The identity that last modified the resource.

LastModifiedByType string

The type of identity that last modified the resource.

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String

The type of identity that created the resource.

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String

The type of identity that last modified the resource.

createdAt string

The timestamp of resource creation (UTC).

createdBy string

The identity that created the resource.

createdByType string

The type of identity that created the resource.

lastModifiedAt string

The timestamp of resource last modification (UTC)

lastModifiedBy string

The identity that last modified the resource.

lastModifiedByType string

The type of identity that last modified the resource.

created_at str

The timestamp of resource creation (UTC).

created_by str

The identity that created the resource.

created_by_type str

The type of identity that created the resource.

last_modified_at str

The timestamp of resource last modification (UTC)

last_modified_by str

The identity that last modified the resource.

last_modified_by_type str

The type of identity that last modified the resource.

createdAt String

The timestamp of resource creation (UTC).

createdBy String

The identity that created the resource.

createdByType String

The type of identity that created the resource.

lastModifiedAt String

The timestamp of resource last modification (UTC)

lastModifiedBy String

The identity that last modified the resource.

lastModifiedByType String

The type of identity that last modified the resource.

Import

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

$ pulumi import azure-native:agfoodplatform:FarmBeatsModel examples-farmbeatsResourceName /subscriptions/11111111-2222-3333-4444-555555555555/resourceGroups/examples-rg/Microsoft.AgFoodPlatform/farmBeats/examples-farmbeatsResourceName 

Package Details

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