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 System.Linq;
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/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
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FarmBeatsModel(name: string, args: FarmBeatsModelArgs, opts?: CustomResourceOptions);
@overload
def FarmBeatsModel(resource_name: str,
args: FarmBeatsModelArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FarmBeatsModel(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
farm_beats_resource_name: Optional[str] = None,
location: Optional[str] = None,
sku: Optional[SkuArgs] = None,
tags: Optional[Mapping[str, str]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var farmBeatsModelResource = new AzureNative.Agfoodplatform.FarmBeatsModel("farmBeatsModelResource", new()
{
ResourceGroupName = "string",
FarmBeatsResourceName = "string",
Location = "string",
Sku =
{
{ "name", "string" },
{ "capacity", 0 },
{ "family", "string" },
{ "size", "string" },
{ "tier", "Free" },
},
Tags =
{
{ "string", "string" },
},
});
example, err := agfoodplatform.NewFarmBeatsModel(ctx, "farmBeatsModelResource", &agfoodplatform.FarmBeatsModelArgs{
ResourceGroupName: "string",
FarmBeatsResourceName: "string",
Location: "string",
Sku: map[string]interface{}{
"name": "string",
"capacity": 0,
"family": "string",
"size": "string",
"tier": "Free",
},
Tags: map[string]interface{}{
"string": "string",
},
})
var farmBeatsModelResource = new FarmBeatsModel("farmBeatsModelResource", FarmBeatsModelArgs.builder()
.resourceGroupName("string")
.farmBeatsResourceName("string")
.location("string")
.sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
farm_beats_model_resource = azure_native.agfoodplatform.FarmBeatsModel("farmBeatsModelResource",
resource_group_name=string,
farm_beats_resource_name=string,
location=string,
sku={
name: string,
capacity: 0,
family: string,
size: string,
tier: Free,
},
tags={
string: string,
})
const farmBeatsModelResource = new azure_native.agfoodplatform.FarmBeatsModel("farmBeatsModelResource", {
resourceGroupName: "string",
farmBeatsResourceName: "string",
location: "string",
sku: {
name: "string",
capacity: 0,
family: "string",
size: "string",
tier: "Free",
},
tags: {
string: "string",
},
});
type: azure-native:agfoodplatform:FarmBeatsModel
properties:
farmBeatsResourceName: string
location: string
resourceGroupName: string
sku:
capacity: 0
family: string
name: string
size: string
tier: Free
tags:
string: string
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Farm
Beats stringResource Name - FarmBeats resource name.
- Location string
- The geo-location where the resource lives
- Sku
Pulumi.
Azure Native. Ag Food Platform. Inputs. Sku - The resource model definition representing SKU
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Farm
Beats stringResource Name - FarmBeats resource name.
- Location string
- The geo-location where the resource lives
- Sku
Sku
Args - The resource model definition representing SKU
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- farm
Beats StringResource Name - FarmBeats resource name.
- location String
- The geo-location where the resource lives
- sku Sku
- The resource model definition representing SKU
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- farm
Beats stringResource Name - FarmBeats resource name.
- location string
- The geo-location where the resource lives
- sku Sku
- The resource model definition representing SKU
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- farm_
beats_ strresource_ name - FarmBeats resource name.
- location str
- The geo-location where the resource lives
- sku
Sku
Args - The resource model definition representing SKU
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- farm
Beats StringResource Name - FarmBeats resource name.
- location String
- The geo-location where the resource lives
- sku Property Map
- The resource model definition representing SKU
- 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.
- Instance
Uri string - Uri of the FarmBeats instance.
- Name string
- The name of the resource
- Provisioning
State string - FarmBeats instance provisioning state.
- System
Data Pulumi.Azure Native. Ag Food Platform. Outputs. System Data Response - 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.
- Instance
Uri string - Uri of the FarmBeats instance.
- Name string
- The name of the resource
- Provisioning
State string - FarmBeats instance provisioning state.
- System
Data SystemData Response - 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.
- instance
Uri String - Uri of the FarmBeats instance.
- name String
- The name of the resource
- provisioning
State String - FarmBeats instance provisioning state.
- system
Data SystemData Response - 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.
- instance
Uri string - Uri of the FarmBeats instance.
- name string
- The name of the resource
- provisioning
State string - FarmBeats instance provisioning state.
- system
Data SystemData Response - 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 SystemData Response - 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.
- instance
Uri String - Uri of the FarmBeats instance.
- name String
- The name of the resource
- provisioning
State String - FarmBeats instance provisioning state.
- system
Data 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, SkuArgs
- 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.
Azure Native. Ag Food Platform. Sku Tier - 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
Sku
Tier - 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
Sku
Tier - 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
Sku
Tier - 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
Sku
Tier - 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, SkuResponseArgs
- 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, SkuTierArgs
- Free
- Free
- Basic
- Basic
- Standard
- Standard
- Premium
- Premium
- Sku
Tier Free - Free
- Sku
Tier Basic - Basic
- Sku
Tier Standard - Standard
- Sku
Tier 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
- "Free"
- Free
- "Basic"
- Basic
- "Standard"
- Standard
- "Premium"
- Premium
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0