azure-native.apimanagement.PolicyFragment
Explore with Pulumi AI
Policy fragment contract details. API Version: 2021-12-01-preview.
Example Usage
ApiManagementCreatePolicy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var policyFragment = new AzureNative.ApiManagement.PolicyFragment("policyFragment", new()
{
Description = "A policy fragment example",
Format = "xml",
Id = "policyFragment1",
ResourceGroupName = "rg1",
ServiceName = "apimService1",
Value = "<fragment><json-to-xml apply=\"always\" consider-accept-header=\"false\" /></fragment>",
});
});
package main
import (
apimanagement "github.com/pulumi/pulumi-azure-native-sdk/apimanagement"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := apimanagement.NewPolicyFragment(ctx, "policyFragment", &apimanagement.PolicyFragmentArgs{
Description: pulumi.String("A policy fragment example"),
Format: pulumi.String("xml"),
Id: pulumi.String("policyFragment1"),
ResourceGroupName: pulumi.String("rg1"),
ServiceName: pulumi.String("apimService1"),
Value: pulumi.String("<fragment><json-to-xml apply=\"always\" consider-accept-header=\"false\" /></fragment>"),
})
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.apimanagement.PolicyFragment;
import com.pulumi.azurenative.apimanagement.PolicyFragmentArgs;
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 policyFragment = new PolicyFragment("policyFragment", PolicyFragmentArgs.builder()
.description("A policy fragment example")
.format("xml")
.id("policyFragment1")
.resourceGroupName("rg1")
.serviceName("apimService1")
.value("<fragment><json-to-xml apply=\"always\" consider-accept-header=\"false\" /></fragment>")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
policy_fragment = azure_native.apimanagement.PolicyFragment("policyFragment",
description="A policy fragment example",
format="xml",
id="policyFragment1",
resource_group_name="rg1",
service_name="apimService1",
value="<fragment><json-to-xml apply=\"always\" consider-accept-header=\"false\" /></fragment>")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const policyFragment = new azure_native.apimanagement.PolicyFragment("policyFragment", {
description: "A policy fragment example",
format: "xml",
id: "policyFragment1",
resourceGroupName: "rg1",
serviceName: "apimService1",
value: "<fragment><json-to-xml apply=\"always\" consider-accept-header=\"false\" /></fragment>",
});
resources:
policyFragment:
type: azure-native:apimanagement:PolicyFragment
properties:
description: A policy fragment example
format: xml
id: policyFragment1
resourceGroupName: rg1
serviceName: apimService1
value: <fragment><json-to-xml apply="always" consider-accept-header="false" /></fragment>
Create PolicyFragment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PolicyFragment(name: string, args: PolicyFragmentArgs, opts?: CustomResourceOptions);
@overload
def PolicyFragment(resource_name: str,
args: PolicyFragmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PolicyFragment(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
service_name: Optional[str] = None,
value: Optional[str] = None,
description: Optional[str] = None,
format: Optional[Union[str, PolicyFragmentContentFormat]] = None,
id: Optional[str] = None)
func NewPolicyFragment(ctx *Context, name string, args PolicyFragmentArgs, opts ...ResourceOption) (*PolicyFragment, error)
public PolicyFragment(string name, PolicyFragmentArgs args, CustomResourceOptions? opts = null)
public PolicyFragment(String name, PolicyFragmentArgs args)
public PolicyFragment(String name, PolicyFragmentArgs args, CustomResourceOptions options)
type: azure-native:apimanagement:PolicyFragment
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 PolicyFragmentArgs
- 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 PolicyFragmentArgs
- 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 PolicyFragmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PolicyFragmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PolicyFragmentArgs
- 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 policyFragmentResource = new AzureNative.Apimanagement.PolicyFragment("policyFragmentResource", new()
{
ResourceGroupName = "string",
ServiceName = "string",
Value = "string",
Description = "string",
Format = "string",
Id = "string",
});
example, err := apimanagement.NewPolicyFragment(ctx, "policyFragmentResource", &apimanagement.PolicyFragmentArgs{
ResourceGroupName: "string",
ServiceName: "string",
Value: "string",
Description: "string",
Format: "string",
Id: "string",
})
var policyFragmentResource = new PolicyFragment("policyFragmentResource", PolicyFragmentArgs.builder()
.resourceGroupName("string")
.serviceName("string")
.value("string")
.description("string")
.format("string")
.id("string")
.build());
policy_fragment_resource = azure_native.apimanagement.PolicyFragment("policyFragmentResource",
resource_group_name=string,
service_name=string,
value=string,
description=string,
format=string,
id=string)
const policyFragmentResource = new azure_native.apimanagement.PolicyFragment("policyFragmentResource", {
resourceGroupName: "string",
serviceName: "string",
value: "string",
description: "string",
format: "string",
id: "string",
});
type: azure-native:apimanagement:PolicyFragment
properties:
description: string
format: string
id: string
resourceGroupName: string
serviceName: string
value: string
PolicyFragment 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 PolicyFragment resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group.
- Service
Name string - The name of the API Management service.
- Value string
- Contents of the policy fragment.
- Description string
- Policy fragment description.
- Format
string | Pulumi.
Azure Native. Api Management. Policy Fragment Content Format - Format of the policy fragment content.
- Id string
- A resource identifier.
- Resource
Group stringName - The name of the resource group.
- Service
Name string - The name of the API Management service.
- Value string
- Contents of the policy fragment.
- Description string
- Policy fragment description.
- Format
string | Policy
Fragment Content Format - Format of the policy fragment content.
- Id string
- A resource identifier.
- resource
Group StringName - The name of the resource group.
- service
Name String - The name of the API Management service.
- value String
- Contents of the policy fragment.
- description String
- Policy fragment description.
- format
String | Policy
Fragment Content Format - Format of the policy fragment content.
- id String
- A resource identifier.
- resource
Group stringName - The name of the resource group.
- service
Name string - The name of the API Management service.
- value string
- Contents of the policy fragment.
- description string
- Policy fragment description.
- format
string | Policy
Fragment Content Format - Format of the policy fragment content.
- id string
- A resource identifier.
- resource_
group_ strname - The name of the resource group.
- service_
name str - The name of the API Management service.
- value str
- Contents of the policy fragment.
- description str
- Policy fragment description.
- format
str | Policy
Fragment Content Format - Format of the policy fragment content.
- id str
- A resource identifier.
- resource
Group StringName - The name of the resource group.
- service
Name String - The name of the API Management service.
- value String
- Contents of the policy fragment.
- description String
- Policy fragment description.
- format String | "xml" | "rawxml"
- Format of the policy fragment content.
- id String
- A resource identifier.
Outputs
All input properties are implicitly available as output properties. Additionally, the PolicyFragment resource produces the following output properties:
Supporting Types
PolicyFragmentContentFormat, PolicyFragmentContentFormatArgs
- Xml
- xmlThe contents are inline and Content type is an XML document.
- Rawxml
- rawxmlThe contents are inline and Content type is a non XML encoded policy document.
- Policy
Fragment Content Format Xml - xmlThe contents are inline and Content type is an XML document.
- Policy
Fragment Content Format Rawxml - rawxmlThe contents are inline and Content type is a non XML encoded policy document.
- Xml
- xmlThe contents are inline and Content type is an XML document.
- Rawxml
- rawxmlThe contents are inline and Content type is a non XML encoded policy document.
- Xml
- xmlThe contents are inline and Content type is an XML document.
- Rawxml
- rawxmlThe contents are inline and Content type is a non XML encoded policy document.
- XML
- xmlThe contents are inline and Content type is an XML document.
- RAWXML
- rawxmlThe contents are inline and Content type is a non XML encoded policy document.
- "xml"
- xmlThe contents are inline and Content type is an XML document.
- "rawxml"
- rawxmlThe contents are inline and Content type is a non XML encoded policy document.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:apimanagement:PolicyFragment policyFragment1 /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/policyFragments/policyFragment1
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