GetRecommendations
Use this data source to access information about an existing Advisor Recommendations.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var example = Output.Create(Azure.Advisor.GetRecommendations.InvokeAsync(new Azure.Advisor.GetRecommendationsArgs
{
FilterByCategories =
{
"security",
"cost",
},
FilterByResourceGroups =
{
"example-resgroups",
},
}));
this.Recommendations = example.Apply(example => example.Recommendations);
}
[Output("recommendations")]
public Output<string> Recommendations { get; set; }
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v3/go/azure/advisor"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := advisor.GetRecommendations(ctx, &advisor.GetRecommendationsArgs{
FilterByCategories: []string{
"security",
"cost",
},
FilterByResourceGroups: []string{
"example-resgroups",
},
}, nil)
if err != nil {
return err
}
ctx.Export("recommendations", example.Recommendations)
return nil
})
}import pulumi
import pulumi_azure as azure
example = azure.advisor.get_recommendations(filter_by_categories=[
"security",
"cost",
],
filter_by_resource_groups=["example-resgroups"])
pulumi.export("recommendations", example.recommendations)import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = azure.advisor.getRecommendations({
filterByCategories: [
"security",
"cost",
],
filterByResourceGroups: ["example-resgroups"],
});
export const recommendations = example.then(example => example.recommendations);Using GetRecommendations
function getRecommendations(args: GetRecommendationsArgs, opts?: InvokeOptions): Promise<GetRecommendationsResult>function get_recommendations(filter_by_categories=None, filter_by_resource_groups=None, opts=None)func GetRecommendations(ctx *Context, args *GetRecommendationsArgs, opts ...InvokeOption) (*GetRecommendationsResult, error)public static class GetRecommendations {
public static Task<GetRecommendationsResult> InvokeAsync(GetRecommendationsArgs args, InvokeOptions? opts = null)
}The following arguments are supported:
- Filter
By List<string>Categories Specifies a list of categories in which the Advisor Recommendations will be listed. Possible values are
HighAvailability,Security,Performance,CostandOperationalExcellence.- Filter
By List<string>Resource Groups Specifies a list of resource groups about which the Advisor Recommendations will be listed.
- Filter
By []stringCategories Specifies a list of categories in which the Advisor Recommendations will be listed. Possible values are
HighAvailability,Security,Performance,CostandOperationalExcellence.- Filter
By []stringResource Groups Specifies a list of resource groups about which the Advisor Recommendations will be listed.
- filter
By string[]Categories Specifies a list of categories in which the Advisor Recommendations will be listed. Possible values are
HighAvailability,Security,Performance,CostandOperationalExcellence.- filter
By string[]Resource Groups Specifies a list of resource groups about which the Advisor Recommendations will be listed.
- filter_
by_ List[str]categories Specifies a list of categories in which the Advisor Recommendations will be listed. Possible values are
HighAvailability,Security,Performance,CostandOperationalExcellence.- filter_
by_ List[str]resource_ groups Specifies a list of resource groups about which the Advisor Recommendations will be listed.
GetRecommendations Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Recommendations
List<Get
Recommendations Recommendation> One or more
recommendationsblocks as defined below.- Filter
By List<string>Categories - Filter
By List<string>Resource Groups
- Id string
The provider-assigned unique ID for this managed resource.
- Recommendations
[]Get
Recommendations Recommendation One or more
recommendationsblocks as defined below.- Filter
By []stringCategories - Filter
By []stringResource Groups
- id string
The provider-assigned unique ID for this managed resource.
- recommendations
Get
Recommendations Recommendation[] One or more
recommendationsblocks as defined below.- filter
By string[]Categories - filter
By string[]Resource Groups
- id str
The provider-assigned unique ID for this managed resource.
- recommendations
List[Get
Recommendations Recommendation] One or more
recommendationsblocks as defined below.- filter_
by_ List[str]categories - filter_
by_ List[str]resource_ groups
Supporting Types
GetRecommendationsRecommendation
See the output API doc for this type.
See the output API doc for this type.
See the output API doc for this type.
- Category string
The category of the recommendation.
- Description string
The description of the issue or the opportunity identified by the recommendation.
- Impact string
The business impact of the recommendation.
- Recommendation
Name string The name of the Advisor Recommendation.
- Recommendation
Type stringId The recommendation type id of the Advisor Recommendation.
- Resource
Name string The name of the identified resource of the Advisor Recommendation.
- Resource
Type string The type of the identified resource of the Advisor Recommendation.
- Suppression
Names List<string> A list of Advisor Suppression names of the Advisor Recommendation.
- Updated
Time string The most recent time that Advisor checked the validity of the recommendation..
- Category string
The category of the recommendation.
- Description string
The description of the issue or the opportunity identified by the recommendation.
- Impact string
The business impact of the recommendation.
- Recommendation
Name string The name of the Advisor Recommendation.
- Recommendation
Type stringId The recommendation type id of the Advisor Recommendation.
- Resource
Name string The name of the identified resource of the Advisor Recommendation.
- Resource
Type string The type of the identified resource of the Advisor Recommendation.
- Suppression
Names []string A list of Advisor Suppression names of the Advisor Recommendation.
- Updated
Time string The most recent time that Advisor checked the validity of the recommendation..
- category string
The category of the recommendation.
- description string
The description of the issue or the opportunity identified by the recommendation.
- impact string
The business impact of the recommendation.
- recommendation
Name string The name of the Advisor Recommendation.
- recommendation
Type stringId The recommendation type id of the Advisor Recommendation.
- resource
Name string The name of the identified resource of the Advisor Recommendation.
- resource
Type string The type of the identified resource of the Advisor Recommendation.
- suppression
Names string[] A list of Advisor Suppression names of the Advisor Recommendation.
- updated
Time string The most recent time that Advisor checked the validity of the recommendation..
- category str
The category of the recommendation.
- description str
The description of the issue or the opportunity identified by the recommendation.
- impact str
The business impact of the recommendation.
- recommendation
Name str The name of the Advisor Recommendation.
- recommendation
Type strId The recommendation type id of the Advisor Recommendation.
- resource
Name str The name of the identified resource of the Advisor Recommendation.
- resource
Type str The type of the identified resource of the Advisor Recommendation.
- suppression
Names List[str] A list of Advisor Suppression names of the Advisor Recommendation.
- updated
Time str The most recent time that Advisor checked the validity of the recommendation..
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.