import * as pulumi from "@pulumi/pulumi"; /** * Manages an Api Management Policy Fragment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * import * as std from "@pulumi/std"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleService = new azure.apimanagement.Service("example", { * name: "example-apim", * location: example.location, * resourceGroupName: example.name, * publisherName: "pub1", * publisherEmail: "pub1@email.com", * skuName: "Developer_1", * }); * const examplePolicyFragment = new azure.apimanagement.PolicyFragment("example", { * apiManagementId: exampleService.id, * name: "example-policy-fragment", * format: "xml", * value: std.file({ * input: "policy-fragment-1.xml", * }).then(invoke => invoke.result), * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.ApiManagement` - 2022-08-01 * * ## Import * * Api Management Policy Fragments can be imported using the `resource id`, e.g. * * > **Note:** Due to the behaviour of the API, Api Management Policy Fragments can only be imported as `xml`, but can be updated to the desired format after importing. * * ```sh * $ pulumi import azure:apimanagement/policyFragment:PolicyFragment example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.ApiManagement/service/instance1/policyFragments/policyFragment1 * ``` */ export declare class PolicyFragment extends pulumi.CustomResource { /** * Get an existing PolicyFragment resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: PolicyFragmentState, opts?: pulumi.CustomResourceOptions): PolicyFragment; /** * Returns true if the given object is an instance of PolicyFragment. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is PolicyFragment; /** * The id of the API Management Service. Changing this forces a new Api Management Policy Fragment to be created. */ readonly apiManagementId: pulumi.Output; /** * The description for the Policy Fragment. */ readonly description: pulumi.Output; /** * The format of the Policy Fragment. Possible values are `xml` or `rawxml`. Default is `xml`. * * > **Note:** The `value` property will be updated to reflect the corresponding format when `format` is updated. */ readonly format: pulumi.Output; /** * The name which should be used for this Api Management Policy Fragment. Changing this forces a new Api Management Policy Fragment to be created. */ readonly name: pulumi.Output; /** * The value of the Policy Fragment. * * > **Note:** Be aware of the two format possibilities. If the `value` is not applied and continues to cause a diff the format could be wrong. */ readonly value: pulumi.Output; /** * Create a PolicyFragment resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: PolicyFragmentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering PolicyFragment resources. */ export interface PolicyFragmentState { /** * The id of the API Management Service. Changing this forces a new Api Management Policy Fragment to be created. */ apiManagementId?: pulumi.Input; /** * The description for the Policy Fragment. */ description?: pulumi.Input; /** * The format of the Policy Fragment. Possible values are `xml` or `rawxml`. Default is `xml`. * * > **Note:** The `value` property will be updated to reflect the corresponding format when `format` is updated. */ format?: pulumi.Input; /** * The name which should be used for this Api Management Policy Fragment. Changing this forces a new Api Management Policy Fragment to be created. */ name?: pulumi.Input; /** * The value of the Policy Fragment. * * > **Note:** Be aware of the two format possibilities. If the `value` is not applied and continues to cause a diff the format could be wrong. */ value?: pulumi.Input; } /** * The set of arguments for constructing a PolicyFragment resource. */ export interface PolicyFragmentArgs { /** * The id of the API Management Service. Changing this forces a new Api Management Policy Fragment to be created. */ apiManagementId: pulumi.Input; /** * The description for the Policy Fragment. */ description?: pulumi.Input; /** * The format of the Policy Fragment. Possible values are `xml` or `rawxml`. Default is `xml`. * * > **Note:** The `value` property will be updated to reflect the corresponding format when `format` is updated. */ format?: pulumi.Input; /** * The name which should be used for this Api Management Policy Fragment. Changing this forces a new Api Management Policy Fragment to be created. */ name?: pulumi.Input; /** * The value of the Policy Fragment. * * > **Note:** Be aware of the two format possibilities. If the `value` is not applied and continues to cause a diff the format could be wrong. */ value: pulumi.Input; }