
com.pulumi.azurenative.relay.WCFRelay 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.relay;
import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.relay.WCFRelayArgs;
import com.pulumi.azurenative.relay.outputs.SystemDataResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.Boolean;
import java.lang.Integer;
import java.lang.String;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Description of the WCF relay resource.
* Azure REST API version: 2021-11-01. Prior API version in Azure Native 1.x: 2017-04-01.
*
* Other available API versions: 2016-07-01, 2024-01-01.
*
* ## Example Usage
* ### RelayCreate
*
*
* {@code
* package generated_program;
*
* import com.pulumi.Context;
* import com.pulumi.Pulumi;
* import com.pulumi.core.Output;
* import com.pulumi.azurenative.relay.WCFRelay;
* import com.pulumi.azurenative.relay.WCFRelayArgs;
* 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 wcfRelay = new WCFRelay("wcfRelay", WCFRelayArgs.builder()
* .namespaceName("example-RelayNamespace-9953")
* .relayName("example-Relay-Wcf-1194")
* .relayType("NetTcp")
* .requiresClientAuthorization(true)
* .requiresTransportSecurity(true)
* .resourceGroupName("resourcegroup")
* .build());
*
* }
* }
*
* }
*
*
* ## Import
*
* An existing resource can be imported using its type token, name, and identifier, e.g.
*
* ```sh
* $ pulumi import azure-native:relay:WCFRelay example-Relay-Wcf-1194 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Relay/namespaces/{namespaceName}/wcfRelays/{relayName}
* ```
*
*/
@ResourceType(type="azure-native:relay:WCFRelay")
public class WCFRelay extends com.pulumi.resources.CustomResource {
/**
* The time the WCF relay was created.
*
*/
@Export(name="createdAt", refs={String.class}, tree="[0]")
private Output createdAt;
/**
* @return The time the WCF relay was created.
*
*/
public Output createdAt() {
return this.createdAt;
}
/**
* Returns true if the relay is dynamic; otherwise, false.
*
*/
@Export(name="isDynamic", refs={Boolean.class}, tree="[0]")
private Output isDynamic;
/**
* @return Returns true if the relay is dynamic; otherwise, false.
*
*/
public Output isDynamic() {
return this.isDynamic;
}
/**
* The number of listeners for this relay. Note that min :1 and max:25 are supported.
*
*/
@Export(name="listenerCount", refs={Integer.class}, tree="[0]")
private Output listenerCount;
/**
* @return The number of listeners for this relay. Note that min :1 and max:25 are supported.
*
*/
public Output listenerCount() {
return this.listenerCount;
}
/**
* The geo-location where the resource lives
*
*/
@Export(name="location", refs={String.class}, tree="[0]")
private Output location;
/**
* @return The geo-location where the resource lives
*
*/
public Output location() {
return this.location;
}
/**
* The name of the resource
*
*/
@Export(name="name", refs={String.class}, tree="[0]")
private Output name;
/**
* @return The name of the resource
*
*/
public Output name() {
return this.name;
}
/**
* WCF relay type.
*
*/
@Export(name="relayType", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> relayType;
/**
* @return WCF relay type.
*
*/
public Output> relayType() {
return Codegen.optional(this.relayType);
}
/**
* Returns true if client authorization is needed for this relay; otherwise, false.
*
*/
@Export(name="requiresClientAuthorization", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> requiresClientAuthorization;
/**
* @return Returns true if client authorization is needed for this relay; otherwise, false.
*
*/
public Output> requiresClientAuthorization() {
return Codegen.optional(this.requiresClientAuthorization);
}
/**
* Returns true if transport security is needed for this relay; otherwise, false.
*
*/
@Export(name="requiresTransportSecurity", refs={Boolean.class}, tree="[0]")
private Output* @Nullable */ Boolean> requiresTransportSecurity;
/**
* @return Returns true if transport security is needed for this relay; otherwise, false.
*
*/
public Output> requiresTransportSecurity() {
return Codegen.optional(this.requiresTransportSecurity);
}
/**
* The system meta data relating to this resource.
*
*/
@Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]")
private Output systemData;
/**
* @return The system meta data relating to this resource.
*
*/
public Output systemData() {
return this.systemData;
}
/**
* The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
*
*/
@Export(name="type", refs={String.class}, tree="[0]")
private Output type;
/**
* @return The type of the resource. E.g. "Microsoft.EventHub/Namespaces" or "Microsoft.EventHub/Namespaces/EventHubs"
*
*/
public Output type() {
return this.type;
}
/**
* The time the namespace was updated.
*
*/
@Export(name="updatedAt", refs={String.class}, tree="[0]")
private Output updatedAt;
/**
* @return The time the namespace was updated.
*
*/
public Output updatedAt() {
return this.updatedAt;
}
/**
* The usermetadata is a placeholder to store user-defined string data for the WCF Relay endpoint. For example, it can be used to store descriptive data, such as list of teams and their contact information. Also, user-defined configuration settings can be stored.
*
*/
@Export(name="userMetadata", refs={String.class}, tree="[0]")
private Output* @Nullable */ String> userMetadata;
/**
* @return The usermetadata is a placeholder to store user-defined string data for the WCF Relay endpoint. For example, it can be used to store descriptive data, such as list of teams and their contact information. Also, user-defined configuration settings can be stored.
*
*/
public Output> userMetadata() {
return Codegen.optional(this.userMetadata);
}
/**
*
* @param name The _unique_ name of the resulting resource.
*/
public WCFRelay(java.lang.String name) {
this(name, WCFRelayArgs.Empty);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
*/
public WCFRelay(java.lang.String name, WCFRelayArgs args) {
this(name, args, null);
}
/**
*
* @param name The _unique_ name of the resulting resource.
* @param args The arguments to use to populate this resource's properties.
* @param options A bag of options that control this resource's behavior.
*/
public WCFRelay(java.lang.String name, WCFRelayArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:relay:WCFRelay", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false);
}
private WCFRelay(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
super("azure-native:relay:WCFRelay", name, null, makeResourceOptions(options, id), false);
}
private static WCFRelayArgs makeArgs(WCFRelayArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) {
if (options != null && options.getUrn().isPresent()) {
return null;
}
return args == null ? WCFRelayArgs.Empty : args;
}
private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) {
var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder()
.version(Utilities.getVersion())
.aliases(List.of(
Output.of(Alias.builder().type("azure-native:relay/v20160701:WCFRelay").build()),
Output.of(Alias.builder().type("azure-native:relay/v20170401:WCFRelay").build()),
Output.of(Alias.builder().type("azure-native:relay/v20211101:WCFRelay").build()),
Output.of(Alias.builder().type("azure-native:relay/v20240101:WCFRelay").build())
))
.build();
return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id);
}
/**
* Get an existing Host resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param options Optional settings to control the behavior of the CustomResource.
*/
public static WCFRelay get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) {
return new WCFRelay(name, id, options);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy