azure-native.apimanagement.WorkspacePolicyFragment
Explore with Pulumi AI
Policy fragment contract details. Azure REST API version: 2022-09-01-preview.
Other available API versions: 2023-03-01-preview, 2023-05-01-preview, 2023-09-01-preview, 2024-05-01.
Example Usage
ApiManagementCreateWorkspacePolicyFragment
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var workspacePolicyFragment = new AzureNative.ApiManagement.WorkspacePolicyFragment("workspacePolicyFragment", new()
{
Description = "A policy fragment example",
Format = AzureNative.ApiManagement.PolicyFragmentContentFormat.Xml,
Id = "policyFragment1",
ResourceGroupName = "rg1",
ServiceName = "apimService1",
Value = "<fragment><json-to-xml apply=\"always\" consider-accept-header=\"false\" /></fragment>",
WorkspaceId = "wks1",
});
});
package main
import (
apimanagement "github.com/pulumi/pulumi-azure-native-sdk/apimanagement/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := apimanagement.NewWorkspacePolicyFragment(ctx, "workspacePolicyFragment", &apimanagement.WorkspacePolicyFragmentArgs{
Description: pulumi.String("A policy fragment example"),
Format: pulumi.String(apimanagement.PolicyFragmentContentFormatXml),
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>"),
WorkspaceId: pulumi.String("wks1"),
})
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.WorkspacePolicyFragment;
import com.pulumi.azurenative.apimanagement.WorkspacePolicyFragmentArgs;
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 workspacePolicyFragment = new WorkspacePolicyFragment("workspacePolicyFragment", WorkspacePolicyFragmentArgs.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>")
.workspaceId("wks1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
workspace_policy_fragment = azure_native.apimanagement.WorkspacePolicyFragment("workspacePolicyFragment",
description="A policy fragment example",
format=azure_native.apimanagement.PolicyFragmentContentFormat.XML,
id="policyFragment1",
resource_group_name="rg1",
service_name="apimService1",
value="<fragment><json-to-xml apply=\"always\" consider-accept-header=\"false\" /></fragment>",
workspace_id="wks1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workspacePolicyFragment = new azure_native.apimanagement.WorkspacePolicyFragment("workspacePolicyFragment", {
description: "A policy fragment example",
format: azure_native.apimanagement.PolicyFragmentContentFormat.Xml,
id: "policyFragment1",
resourceGroupName: "rg1",
serviceName: "apimService1",
value: "<fragment><json-to-xml apply=\"always\" consider-accept-header=\"false\" /></fragment>",
workspaceId: "wks1",
});
resources:
workspacePolicyFragment:
type: azure-native:apimanagement:WorkspacePolicyFragment
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>
workspaceId: wks1
Create WorkspacePolicyFragment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkspacePolicyFragment(name: string, args: WorkspacePolicyFragmentArgs, opts?: CustomResourceOptions);
@overload
def WorkspacePolicyFragment(resource_name: str,
args: WorkspacePolicyFragmentArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkspacePolicyFragment(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
service_name: Optional[str] = None,
value: Optional[str] = None,
workspace_id: Optional[str] = None,
description: Optional[str] = None,
format: Optional[Union[str, PolicyFragmentContentFormat]] = None,
id: Optional[str] = None)
func NewWorkspacePolicyFragment(ctx *Context, name string, args WorkspacePolicyFragmentArgs, opts ...ResourceOption) (*WorkspacePolicyFragment, error)
public WorkspacePolicyFragment(string name, WorkspacePolicyFragmentArgs args, CustomResourceOptions? opts = null)
public WorkspacePolicyFragment(String name, WorkspacePolicyFragmentArgs args)
public WorkspacePolicyFragment(String name, WorkspacePolicyFragmentArgs args, CustomResourceOptions options)
type: azure-native:apimanagement:WorkspacePolicyFragment
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 WorkspacePolicyFragmentArgs
- 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 WorkspacePolicyFragmentArgs
- 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 WorkspacePolicyFragmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspacePolicyFragmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspacePolicyFragmentArgs
- 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 workspacePolicyFragmentResource = new AzureNative.ApiManagement.WorkspacePolicyFragment("workspacePolicyFragmentResource", new()
{
ResourceGroupName = "string",
ServiceName = "string",
Value = "string",
WorkspaceId = "string",
Description = "string",
Format = "string",
Id = "string",
});
example, err := apimanagement.NewWorkspacePolicyFragment(ctx, "workspacePolicyFragmentResource", &apimanagement.WorkspacePolicyFragmentArgs{
ResourceGroupName: pulumi.String("string"),
ServiceName: pulumi.String("string"),
Value: pulumi.String("string"),
WorkspaceId: pulumi.String("string"),
Description: pulumi.String("string"),
Format: pulumi.String("string"),
Id: pulumi.String("string"),
})
var workspacePolicyFragmentResource = new WorkspacePolicyFragment("workspacePolicyFragmentResource", WorkspacePolicyFragmentArgs.builder()
.resourceGroupName("string")
.serviceName("string")
.value("string")
.workspaceId("string")
.description("string")
.format("string")
.id("string")
.build());
workspace_policy_fragment_resource = azure_native.apimanagement.WorkspacePolicyFragment("workspacePolicyFragmentResource",
resource_group_name="string",
service_name="string",
value="string",
workspace_id="string",
description="string",
format="string",
id="string")
const workspacePolicyFragmentResource = new azure_native.apimanagement.WorkspacePolicyFragment("workspacePolicyFragmentResource", {
resourceGroupName: "string",
serviceName: "string",
value: "string",
workspaceId: "string",
description: "string",
format: "string",
id: "string",
});
type: azure-native:apimanagement:WorkspacePolicyFragment
properties:
description: string
format: string
id: string
resourceGroupName: string
serviceName: string
value: string
workspaceId: string
WorkspacePolicyFragment 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 WorkspacePolicyFragment resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Service
Name string - The name of the API Management service.
- Value string
- Contents of the policy fragment.
- Workspace
Id string - Workspace identifier. Must be unique in the current API Management service instance.
- 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. The name is case insensitive.
- Service
Name string - The name of the API Management service.
- Value string
- Contents of the policy fragment.
- Workspace
Id string - Workspace identifier. Must be unique in the current API Management service instance.
- 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. The name is case insensitive.
- service
Name String - The name of the API Management service.
- value String
- Contents of the policy fragment.
- workspace
Id String - Workspace identifier. Must be unique in the current API Management service instance.
- 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. The name is case insensitive.
- service
Name string - The name of the API Management service.
- value string
- Contents of the policy fragment.
- workspace
Id string - Workspace identifier. Must be unique in the current API Management service instance.
- 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. The name is case insensitive.
- service_
name str - The name of the API Management service.
- value str
- Contents of the policy fragment.
- workspace_
id str - Workspace identifier. Must be unique in the current API Management service instance.
- 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. The name is case insensitive.
- service
Name String - The name of the API Management service.
- value String
- Contents of the policy fragment.
- workspace
Id String - Workspace identifier. Must be unique in the current API Management service instance.
- 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 WorkspacePolicyFragment 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:WorkspacePolicyFragment policyFragment1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/workspaces/{workspaceId}/policyFragments/{id}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0