azure-native.apimanagement.WorkspaceProductGroupLink
Explore with Pulumi AI
Product-group link 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.
Example Usage
ApiManagementCreateWorkspaceProductGroupLink
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var workspaceProductGroupLink = new AzureNative.ApiManagement.WorkspaceProductGroupLink("workspaceProductGroupLink", new()
{
GroupId = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/workspaces/wks1/groups/group1",
GroupLinkId = "link1",
ProductId = "testproduct",
ResourceGroupName = "rg1",
ServiceName = "apimService1",
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.NewWorkspaceProductGroupLink(ctx, "workspaceProductGroupLink", &apimanagement.WorkspaceProductGroupLinkArgs{
GroupId: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/workspaces/wks1/groups/group1"),
GroupLinkId: pulumi.String("link1"),
ProductId: pulumi.String("testproduct"),
ResourceGroupName: pulumi.String("rg1"),
ServiceName: pulumi.String("apimService1"),
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.WorkspaceProductGroupLink;
import com.pulumi.azurenative.apimanagement.WorkspaceProductGroupLinkArgs;
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 workspaceProductGroupLink = new WorkspaceProductGroupLink("workspaceProductGroupLink", WorkspaceProductGroupLinkArgs.builder()
.groupId("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/workspaces/wks1/groups/group1")
.groupLinkId("link1")
.productId("testproduct")
.resourceGroupName("rg1")
.serviceName("apimService1")
.workspaceId("wks1")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
workspace_product_group_link = azure_native.apimanagement.WorkspaceProductGroupLink("workspaceProductGroupLink",
group_id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/workspaces/wks1/groups/group1",
group_link_id="link1",
product_id="testproduct",
resource_group_name="rg1",
service_name="apimService1",
workspace_id="wks1")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const workspaceProductGroupLink = new azure_native.apimanagement.WorkspaceProductGroupLink("workspaceProductGroupLink", {
groupId: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/workspaces/wks1/groups/group1",
groupLinkId: "link1",
productId: "testproduct",
resourceGroupName: "rg1",
serviceName: "apimService1",
workspaceId: "wks1",
});
resources:
workspaceProductGroupLink:
type: azure-native:apimanagement:WorkspaceProductGroupLink
properties:
groupId: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.ApiManagement/service/apimService1/workspaces/wks1/groups/group1
groupLinkId: link1
productId: testproduct
resourceGroupName: rg1
serviceName: apimService1
workspaceId: wks1
Create WorkspaceProductGroupLink Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkspaceProductGroupLink(name: string, args: WorkspaceProductGroupLinkArgs, opts?: CustomResourceOptions);
@overload
def WorkspaceProductGroupLink(resource_name: str,
args: WorkspaceProductGroupLinkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkspaceProductGroupLink(resource_name: str,
opts: Optional[ResourceOptions] = None,
group_id: Optional[str] = None,
product_id: Optional[str] = None,
resource_group_name: Optional[str] = None,
service_name: Optional[str] = None,
workspace_id: Optional[str] = None,
group_link_id: Optional[str] = None)
func NewWorkspaceProductGroupLink(ctx *Context, name string, args WorkspaceProductGroupLinkArgs, opts ...ResourceOption) (*WorkspaceProductGroupLink, error)
public WorkspaceProductGroupLink(string name, WorkspaceProductGroupLinkArgs args, CustomResourceOptions? opts = null)
public WorkspaceProductGroupLink(String name, WorkspaceProductGroupLinkArgs args)
public WorkspaceProductGroupLink(String name, WorkspaceProductGroupLinkArgs args, CustomResourceOptions options)
type: azure-native:apimanagement:WorkspaceProductGroupLink
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 WorkspaceProductGroupLinkArgs
- 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 WorkspaceProductGroupLinkArgs
- 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 WorkspaceProductGroupLinkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceProductGroupLinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceProductGroupLinkArgs
- 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 workspaceProductGroupLinkResource = new AzureNative.ApiManagement.WorkspaceProductGroupLink("workspaceProductGroupLinkResource", new()
{
GroupId = "string",
ProductId = "string",
ResourceGroupName = "string",
ServiceName = "string",
WorkspaceId = "string",
GroupLinkId = "string",
});
example, err := apimanagement.NewWorkspaceProductGroupLink(ctx, "workspaceProductGroupLinkResource", &apimanagement.WorkspaceProductGroupLinkArgs{
GroupId: pulumi.String("string"),
ProductId: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ServiceName: pulumi.String("string"),
WorkspaceId: pulumi.String("string"),
GroupLinkId: pulumi.String("string"),
})
var workspaceProductGroupLinkResource = new WorkspaceProductGroupLink("workspaceProductGroupLinkResource", WorkspaceProductGroupLinkArgs.builder()
.groupId("string")
.productId("string")
.resourceGroupName("string")
.serviceName("string")
.workspaceId("string")
.groupLinkId("string")
.build());
workspace_product_group_link_resource = azure_native.apimanagement.WorkspaceProductGroupLink("workspaceProductGroupLinkResource",
group_id="string",
product_id="string",
resource_group_name="string",
service_name="string",
workspace_id="string",
group_link_id="string")
const workspaceProductGroupLinkResource = new azure_native.apimanagement.WorkspaceProductGroupLink("workspaceProductGroupLinkResource", {
groupId: "string",
productId: "string",
resourceGroupName: "string",
serviceName: "string",
workspaceId: "string",
groupLinkId: "string",
});
type: azure-native:apimanagement:WorkspaceProductGroupLink
properties:
groupId: string
groupLinkId: string
productId: string
resourceGroupName: string
serviceName: string
workspaceId: string
WorkspaceProductGroupLink 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 WorkspaceProductGroupLink resource accepts the following input properties:
- Group
Id string - Full resource Id of a group.
- Product
Id string - Product identifier. Must be unique in the current API Management service instance.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Service
Name string - The name of the API Management service.
- Workspace
Id string - Workspace identifier. Must be unique in the current API Management service instance.
- Group
Link stringId - Product-Group link identifier. Must be unique in the current API Management service instance.
- Group
Id string - Full resource Id of a group.
- Product
Id string - Product identifier. Must be unique in the current API Management service instance.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Service
Name string - The name of the API Management service.
- Workspace
Id string - Workspace identifier. Must be unique in the current API Management service instance.
- Group
Link stringId - Product-Group link identifier. Must be unique in the current API Management service instance.
- group
Id String - Full resource Id of a group.
- product
Id String - Product identifier. Must be unique in the current API Management service instance.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- service
Name String - The name of the API Management service.
- workspace
Id String - Workspace identifier. Must be unique in the current API Management service instance.
- group
Link StringId - Product-Group link identifier. Must be unique in the current API Management service instance.
- group
Id string - Full resource Id of a group.
- product
Id string - Product identifier. Must be unique in the current API Management service instance.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- service
Name string - The name of the API Management service.
- workspace
Id string - Workspace identifier. Must be unique in the current API Management service instance.
- group
Link stringId - Product-Group link identifier. Must be unique in the current API Management service instance.
- group_
id str - Full resource Id of a group.
- product_
id str - Product identifier. Must be unique in the current API Management service instance.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- service_
name str - The name of the API Management service.
- workspace_
id str - Workspace identifier. Must be unique in the current API Management service instance.
- group_
link_ strid - Product-Group link identifier. Must be unique in the current API Management service instance.
- group
Id String - Full resource Id of a group.
- product
Id String - Product identifier. Must be unique in the current API Management service instance.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- service
Name String - The name of the API Management service.
- workspace
Id String - Workspace identifier. Must be unique in the current API Management service instance.
- group
Link StringId - Product-Group link identifier. Must be unique in the current API Management service instance.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkspaceProductGroupLink resource produces the following output properties:
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:apimanagement:WorkspaceProductGroupLink link1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiManagement/service/{serviceName}/workspaces/{workspaceId}/products/{productId}/groupLinks/{groupLinkId}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0