Publisher Args
    data class PublisherArgs(val identity: Output<ManagedServiceIdentityArgs>? = null, val location: Output<String>? = null, val properties: Output<PublisherPropertiesFormatArgs>? = null, val publisherName: Output<String>? = null, val resourceGroupName: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<PublisherArgs> 
publisher resource. Azure REST API version: 2023-09-01.
Example Usage
Create or update a publisher resource
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
    var publisher = new AzureNative.HybridNetwork.Publisher("publisher", new()
    {
        Location = "eastus",
        Properties = new AzureNative.HybridNetwork.Inputs.PublisherPropertiesFormatArgs
        {
            Scope = "Public",
        },
        PublisherName = "TestPublisher",
        ResourceGroupName = "rg",
    });
});Content copied to clipboard
package main
import (
	"github.com/pulumi/pulumi-azure-native-sdk/hybridnetwork/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := hybridnetwork.NewPublisher(ctx, "publisher", &hybridnetwork.PublisherArgs{
			Location: pulumi.String("eastus"),
			Properties: &hybridnetwork.PublisherPropertiesFormatArgs{
				Scope: pulumi.String("Public"),
			},
			PublisherName:     pulumi.String("TestPublisher"),
			ResourceGroupName: pulumi.String("rg"),
		})
		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.hybridnetwork.Publisher;
import com.pulumi.azurenative.hybridnetwork.PublisherArgs;
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 publisher = new Publisher("publisher", PublisherArgs.builder()
            .location("eastus")
            .properties(Map.of("scope", "Public"))
            .publisherName("TestPublisher")
            .resourceGroupName("rg")
            .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:hybridnetwork:Publisher TestPublisher /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.HybridNetwork/publishers/{publisherName}Content copied to clipboard
Constructors
Link copied to clipboard
                fun PublisherArgs(identity: Output<ManagedServiceIdentityArgs>? = null, location: Output<String>? = null, properties: Output<PublisherPropertiesFormatArgs>? = null, publisherName: Output<String>? = null, resourceGroupName: Output<String>? = null, tags: Output<Map<String, String>>? = null)