AnalyticsSolution
Manages a Log Analytics (formally Operational Insights) Solution.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
using Random = Pulumi.Random;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "westeurope",
});
var workspace = new Random.RandomId("workspace", new Random.RandomIdArgs
{
Keepers =
{
{ "group_name", exampleResourceGroup.Name },
},
ByteLength = 8,
});
var exampleAnalyticsWorkspace = new Azure.OperationalInsights.AnalyticsWorkspace("exampleAnalyticsWorkspace", new Azure.OperationalInsights.AnalyticsWorkspaceArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
Sku = "PerGB2018",
});
var exampleAnalyticsSolution = new Azure.OperationalInsights.AnalyticsSolution("exampleAnalyticsSolution", new Azure.OperationalInsights.AnalyticsSolutionArgs
{
SolutionName = "ContainerInsights",
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
WorkspaceResourceId = exampleAnalyticsWorkspace.Id,
WorkspaceName = exampleAnalyticsWorkspace.Name,
Plan = new Azure.OperationalInsights.Inputs.AnalyticsSolutionPlanArgs
{
Publisher = "Microsoft",
Product = "OMSGallery/ContainerInsights",
},
});
}
}
Coming soon!
import pulumi
import pulumi_azure as azure
import pulumi_random as random
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="westeurope")
workspace = random.RandomId("workspace",
keepers={
"group_name": example_resource_group.name,
},
byte_length=8)
example_analytics_workspace = azure.operationalinsights.AnalyticsWorkspace("exampleAnalyticsWorkspace",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku="PerGB2018")
example_analytics_solution = azure.operationalinsights.AnalyticsSolution("exampleAnalyticsSolution",
solution_name="ContainerInsights",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
workspace_resource_id=example_analytics_workspace.id,
workspace_name=example_analytics_workspace.name,
plan={
"publisher": "Microsoft",
"product": "OMSGallery/ContainerInsights",
})import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
import * as random from "@pulumi/random";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "westeurope"});
const workspace = new random.RandomId("workspace", {
keepers: {
group_name: exampleResourceGroup.name,
},
byteLength: 8,
});
const exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("exampleAnalyticsWorkspace", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
sku: "PerGB2018",
});
const exampleAnalyticsSolution = new azure.operationalinsights.AnalyticsSolution("exampleAnalyticsSolution", {
solutionName: "ContainerInsights",
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
workspaceResourceId: exampleAnalyticsWorkspace.id,
workspaceName: exampleAnalyticsWorkspace.name,
plan: {
publisher: "Microsoft",
product: "OMSGallery/ContainerInsights",
},
});Create a AnalyticsSolution Resource
new AnalyticsSolution(name: string, args: AnalyticsSolutionArgs, opts?: CustomResourceOptions);def AnalyticsSolution(resource_name, opts=None, location=None, plan=None, resource_group_name=None, solution_name=None, workspace_name=None, workspace_resource_id=None, __props__=None);func NewAnalyticsSolution(ctx *Context, name string, args AnalyticsSolutionArgs, opts ...ResourceOption) (*AnalyticsSolution, error)public AnalyticsSolution(string name, AnalyticsSolutionArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args AnalyticsSolutionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AnalyticsSolutionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AnalyticsSolutionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
AnalyticsSolution Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The AnalyticsSolution resource accepts the following input properties:
- Plan
Analytics
Solution Plan Args A
planblock as documented below.- Resource
Group stringName The name of the resource group in which the Log Analytics solution is created. Changing this forces a new resource to be created. Note: The solution and it’s related workspace can only exist in the same resource group.
- Solution
Name string Specifies the name of the solution to be deployed. See here for options.Changing this forces a new resource to be created.
- Workspace
Name string The full name of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- Workspace
Resource stringId The full resource ID of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Plan
Analytics
Solution Plan A
planblock as documented below.- Resource
Group stringName The name of the resource group in which the Log Analytics solution is created. Changing this forces a new resource to be created. Note: The solution and it’s related workspace can only exist in the same resource group.
- Solution
Name string Specifies the name of the solution to be deployed. See here for options.Changing this forces a new resource to be created.
- Workspace
Name string The full name of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- Workspace
Resource stringId The full resource ID of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- plan
Analytics
Solution Plan A
planblock as documented below.- resource
Group stringName The name of the resource group in which the Log Analytics solution is created. Changing this forces a new resource to be created. Note: The solution and it’s related workspace can only exist in the same resource group.
- solution
Name string Specifies the name of the solution to be deployed. See here for options.Changing this forces a new resource to be created.
- workspace
Name string The full name of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- workspace
Resource stringId The full resource ID of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- plan
Dict[Analytics
Solution Plan] A
planblock as documented below.- resource_
group_ strname The name of the resource group in which the Log Analytics solution is created. Changing this forces a new resource to be created. Note: The solution and it’s related workspace can only exist in the same resource group.
- solution_
name str Specifies the name of the solution to be deployed. See here for options.Changing this forces a new resource to be created.
- workspace_
name str The full name of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- workspace_
resource_ strid The full resource ID of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- location str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the AnalyticsSolution resource produces the following output properties:
Look up an Existing AnalyticsSolution Resource
Get an existing AnalyticsSolution resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AnalyticsSolutionState, opts?: CustomResourceOptions): AnalyticsSolutionstatic get(resource_name, id, opts=None, location=None, plan=None, resource_group_name=None, solution_name=None, workspace_name=None, workspace_resource_id=None, __props__=None);func GetAnalyticsSolution(ctx *Context, name string, id IDInput, state *AnalyticsSolutionState, opts ...ResourceOption) (*AnalyticsSolution, error)public static AnalyticsSolution Get(string name, Input<string> id, AnalyticsSolutionState? state, CustomResourceOptions? opts = null)- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
The following state arguments are supported:
- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Plan
Analytics
Solution Plan Args A
planblock as documented below.- Resource
Group stringName The name of the resource group in which the Log Analytics solution is created. Changing this forces a new resource to be created. Note: The solution and it’s related workspace can only exist in the same resource group.
- Solution
Name string Specifies the name of the solution to be deployed. See here for options.Changing this forces a new resource to be created.
- Workspace
Name string The full name of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- Workspace
Resource stringId The full resource ID of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Plan
Analytics
Solution Plan A
planblock as documented below.- Resource
Group stringName The name of the resource group in which the Log Analytics solution is created. Changing this forces a new resource to be created. Note: The solution and it’s related workspace can only exist in the same resource group.
- Solution
Name string Specifies the name of the solution to be deployed. See here for options.Changing this forces a new resource to be created.
- Workspace
Name string The full name of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- Workspace
Resource stringId The full resource ID of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- plan
Analytics
Solution Plan A
planblock as documented below.- resource
Group stringName The name of the resource group in which the Log Analytics solution is created. Changing this forces a new resource to be created. Note: The solution and it’s related workspace can only exist in the same resource group.
- solution
Name string Specifies the name of the solution to be deployed. See here for options.Changing this forces a new resource to be created.
- workspace
Name string The full name of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- workspace
Resource stringId The full resource ID of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- location str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- plan
Dict[Analytics
Solution Plan] A
planblock as documented below.- resource_
group_ strname The name of the resource group in which the Log Analytics solution is created. Changing this forces a new resource to be created. Note: The solution and it’s related workspace can only exist in the same resource group.
- solution_
name str Specifies the name of the solution to be deployed. See here for options.Changing this forces a new resource to be created.
- workspace_
name str The full name of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
- workspace_
resource_ strid The full resource ID of the Log Analytics workspace with which the solution will be linked. Changing this forces a new resource to be created.
Supporting Types
AnalyticsSolutionPlan
- Product string
The product name of the solution. For example
OMSGallery/Containers. Changing this forces a new resource to be created.- Publisher string
The publisher of the solution. For example
Microsoft. Changing this forces a new resource to be created.- Name string
- Promotion
Code string A promotion code to be used with the solution.
- Product string
The product name of the solution. For example
OMSGallery/Containers. Changing this forces a new resource to be created.- Publisher string
The publisher of the solution. For example
Microsoft. Changing this forces a new resource to be created.- Name string
- Promotion
Code string A promotion code to be used with the solution.
- product string
The product name of the solution. For example
OMSGallery/Containers. Changing this forces a new resource to be created.- publisher string
The publisher of the solution. For example
Microsoft. Changing this forces a new resource to be created.- name string
- promotion
Code string A promotion code to be used with the solution.
- product str
The product name of the solution. For example
OMSGallery/Containers. Changing this forces a new resource to be created.- publisher str
The publisher of the solution. For example
Microsoft. Changing this forces a new resource to be created.- name str
- promotion
Code str A promotion code to be used with the solution.
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.