Partner
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",
});
});
Content copied to clipboard
package main
import (
managementpartner "github.com/pulumi/pulumi-azure-native-sdk/managementpartner/v3"
"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
})
}
Content copied to clipboard
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());
}
}
Content copied to clipboard
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}
Content copied to clipboard
Properties
Link copied to clipboard
The Azure API version of the resource.
Link copied to clipboard
This is the DateTime when the partner was created.
Link copied to clipboard
This is the partner name
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
This is the DateTime when the partner was updated.