com.pulumi.azurenative.streamanalytics.outputs.ServiceBusQueueOutputDataSourceResponse 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.
The newest version!
// *** 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.streamanalytics.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ServiceBusQueueOutputDataSourceResponse {
/**
* @return Authentication Mode.
*
*/
private @Nullable String authenticationMode;
/**
* @return A string array of the names of output columns to be attached to Service Bus messages as custom properties.
*
*/
private @Nullable List propertyColumns;
/**
* @return The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
*
*/
private @Nullable String queueName;
/**
* @return The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
*
*/
private @Nullable String serviceBusNamespace;
/**
* @return The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
*
*/
private @Nullable String sharedAccessPolicyKey;
/**
* @return The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
*
*/
private @Nullable String sharedAccessPolicyName;
/**
* @return The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
*
*/
private @Nullable Object systemPropertyColumns;
/**
* @return Indicates the type of data source output will be written to. Required on PUT (CreateOrReplace) requests.
* Expected value is 'Microsoft.ServiceBus/Queue'.
*
*/
private String type;
private ServiceBusQueueOutputDataSourceResponse() {}
/**
* @return Authentication Mode.
*
*/
public Optional authenticationMode() {
return Optional.ofNullable(this.authenticationMode);
}
/**
* @return A string array of the names of output columns to be attached to Service Bus messages as custom properties.
*
*/
public List propertyColumns() {
return this.propertyColumns == null ? List.of() : this.propertyColumns;
}
/**
* @return The name of the Service Bus Queue. Required on PUT (CreateOrReplace) requests.
*
*/
public Optional queueName() {
return Optional.ofNullable(this.queueName);
}
/**
* @return The namespace that is associated with the desired Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
*
*/
public Optional serviceBusNamespace() {
return Optional.ofNullable(this.serviceBusNamespace);
}
/**
* @return The shared access policy key for the specified shared access policy. Required on PUT (CreateOrReplace) requests.
*
*/
public Optional sharedAccessPolicyKey() {
return Optional.ofNullable(this.sharedAccessPolicyKey);
}
/**
* @return The shared access policy name for the Event Hub, Service Bus Queue, Service Bus Topic, etc. Required on PUT (CreateOrReplace) requests.
*
*/
public Optional sharedAccessPolicyName() {
return Optional.ofNullable(this.sharedAccessPolicyName);
}
/**
* @return The system properties associated with the Service Bus Queue. The following system properties are supported: ReplyToSessionId, ContentType, To, Subject, CorrelationId, TimeToLive, PartitionKey, SessionId, ScheduledEnqueueTime, MessageId, ReplyTo, Label, ScheduledEnqueueTimeUtc.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy