Partner

class Partner : KotlinCustomResource

this is the management partner operations response Uses Azure REST API version 2018-02-01. In version 2.x of the Azure Native provider, it used API version 2018-02-01.

Example Usage

PutPartnerDetails

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var partner = new AzureNative.ManagementPartner.Partner("partner", new()
{
PartnerId = "123456",
});
});
package main
import (
managementpartner "github.com/pulumi/pulumi-azure-native-sdk/managementpartner/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := managementpartner.NewPartner(ctx, "partner", &managementpartner.PartnerArgs{
PartnerId: pulumi.String("123456"),
})
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.managementpartner.Partner;
import com.pulumi.azurenative.managementpartner.PartnerArgs;
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 partner = new Partner("partner", PartnerArgs.builder()
.partnerId("123456")
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:managementpartner:Partner 123456 /providers/Microsoft.ManagementPartner/partners/{partnerId}

Properties

Link copied to clipboard
val azureApiVersion: Output<String>

The Azure API version of the resource.

Link copied to clipboard
val createdTime: Output<String>?

This is the DateTime when the partner was created.

Link copied to clipboard
val etag: Output<Int>?

Type of the partner

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val name: Output<String>

Name of the partner

Link copied to clipboard
val objectId: Output<String>?

This is the object id.

Link copied to clipboard
val partnerId: Output<String>?

This is the partner id

Link copied to clipboard
val partnerName: Output<String>?

This is the partner name

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val tenantId: Output<String>?

This is the tenant id.

Link copied to clipboard
val type: Output<String>

Type of resource. "Microsoft.ManagementPartner/partners"

Link copied to clipboard
val updatedTime: Output<String>?

This is the DateTime when the partner was updated.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard
val version: Output<Int>?

This is the version.