com.pulumi.azurenative.signalrservice.SignalRSharedPrivateLinkResourceArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.signalrservice;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class SignalRSharedPrivateLinkResourceArgs extends com.pulumi.resources.ResourceArgs {
public static final SignalRSharedPrivateLinkResourceArgs Empty = new SignalRSharedPrivateLinkResourceArgs();
/**
* The group id from the provider of resource the shared private link resource is for
*
*/
@Import(name="groupId", required=true)
private Output groupId;
/**
* @return The group id from the provider of resource the shared private link resource is for
*
*/
public Output groupId() {
return this.groupId;
}
/**
* The resource id of the resource the shared private link resource is for
*
*/
@Import(name="privateLinkResourceId", required=true)
private Output privateLinkResourceId;
/**
* @return The resource id of the resource the shared private link resource is for
*
*/
public Output privateLinkResourceId() {
return this.privateLinkResourceId;
}
/**
* The request message for requesting approval of the shared private link resource
*
*/
@Import(name="requestMessage")
private @Nullable Output requestMessage;
/**
* @return The request message for requesting approval of the shared private link resource
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy