All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.apimanagement.Policy Maven / Gradle / Ivy

// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azure.apimanagement;

import com.pulumi.azure.Utilities;
import com.pulumi.azure.apimanagement.PolicyArgs;
import com.pulumi.azure.apimanagement.inputs.PolicyState;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Manages a API Management service Policy.
 * 
 * > **NOTE:** This resource will, upon creation, **overwrite any existing policy in the API Management service**, as there is no feasible way to test whether the policy has been modified from the default. Similarly, when this resource is destroyed, the API Management service will revert to its default policy.
 * 
 * ## Example Usage
 * 
 * <!--Start PulumiCodeChooser -->
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azure.core.ResourceGroup;
 * import com.pulumi.azure.core.ResourceGroupArgs;
 * import com.pulumi.azure.apimanagement.Service;
 * import com.pulumi.azure.apimanagement.ServiceArgs;
 * import com.pulumi.azure.apimanagement.NamedValue;
 * import com.pulumi.azure.apimanagement.NamedValueArgs;
 * import com.pulumi.azure.apimanagement.Policy;
 * import com.pulumi.azure.apimanagement.PolicyArgs;
 * 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 }{{@code
 *     public static void main(String[] args) }{{@code
 *         Pulumi.run(App::stack);
 *     }}{@code
 * 
 *     public static void stack(Context ctx) }{{@code
 *         var example = new ResourceGroup("example", ResourceGroupArgs.builder()
 *             .name("example-resources")
 *             .location("West Europe")
 *             .build());
 * 
 *         var exampleService = new Service("exampleService", ServiceArgs.builder()
 *             .name("example-apim")
 *             .location(example.location())
 *             .resourceGroupName(example.name())
 *             .publisherName("pub1")
 *             .publisherEmail("pub1}{@literal @}{@code email.com")
 *             .skuName("Developer_1")
 *             .build());
 * 
 *         var exampleNamedValue = new NamedValue("exampleNamedValue", NamedValueArgs.builder()
 *             .name("example-apimg")
 *             .resourceGroupName(example.name())
 *             .apiManagementName(exampleService.name())
 *             .displayName("ExampleProperty")
 *             .value("Example Value")
 *             .build());
 * 
 *         var examplePolicy = new Policy("examplePolicy", PolicyArgs.builder()
 *             .apiManagementId(exampleService.id())
 *             .xmlContent(StdFunctions.file(FileArgs.builder()
 *                 .input("example.xml")
 *                 .build()).result())
 *             .build());
 * 
 *     }}{@code
 * }}{@code
 * }
 * 
* <!--End PulumiCodeChooser --> * * ## Import * * API Management service Policys can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:apimanagement/policy:Policy example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.ApiManagement/service/service1 * ``` * */ @ResourceType(type="azure:apimanagement/policy:Policy") public class Policy extends com.pulumi.resources.CustomResource { /** * The ID of the API Management service. Changing this forces a new API Management service Policy to be created. * */ @Export(name="apiManagementId", refs={String.class}, tree="[0]") private Output apiManagementId; /** * @return The ID of the API Management service. Changing this forces a new API Management service Policy to be created. * */ public Output apiManagementId() { return this.apiManagementId; } /** * The XML Content for this Policy as a string. * */ @Export(name="xmlContent", refs={String.class}, tree="[0]") private Output xmlContent; /** * @return The XML Content for this Policy as a string. * */ public Output xmlContent() { return this.xmlContent; } /** * A link to a Policy XML Document, which must be publicly available. * */ @Export(name="xmlLink", refs={String.class}, tree="[0]") private Output xmlLink; /** * @return A link to a Policy XML Document, which must be publicly available. * */ public Output> xmlLink() { return Codegen.optional(this.xmlLink); } /** * * @param name The _unique_ name of the resulting resource. */ public Policy(java.lang.String name) { this(name, PolicyArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public Policy(java.lang.String name, PolicyArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public Policy(java.lang.String name, PolicyArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure:apimanagement/policy:Policy", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private Policy(java.lang.String name, Output id, @Nullable PolicyState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure:apimanagement/policy:Policy", name, state, makeResourceOptions(options, id), false); } private static PolicyArgs makeArgs(PolicyArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? PolicyArgs.Empty : args; } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host 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 * @param options Optional settings to control the behavior of the CustomResource. */ public static Policy get(java.lang.String name, Output id, @Nullable PolicyState state, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new Policy(name, id, state, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy