com.pulumi.azurenative.eventgrid.outputs.GetClientResult 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.eventgrid.outputs;
import com.pulumi.azurenative.eventgrid.outputs.ClientAuthenticationResponse;
import com.pulumi.azurenative.eventgrid.outputs.ClientCertificateAuthenticationResponse;
import com.pulumi.azurenative.eventgrid.outputs.SystemDataResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class GetClientResult {
/**
* @return Attributes for the client. Supported values are int, bool, string, string[].
* Example:
* "attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
*
*/
private @Nullable Object attributes;
/**
* @return Authentication information for the client.
*
*/
private @Nullable ClientAuthenticationResponse authentication;
/**
* @return The name presented by the client for authentication. The default value is the name of the resource.
*
*/
private @Nullable String authenticationName;
/**
* @return The client certificate authentication information.
*
*/
private @Nullable ClientCertificateAuthenticationResponse clientCertificateAuthentication;
/**
* @return Description for the Client resource.
*
*/
private @Nullable String description;
/**
* @return Fully qualified identifier of the resource.
*
*/
private String id;
/**
* @return Name of the resource.
*
*/
private String name;
/**
* @return Provisioning state of the Client resource.
*
*/
private String provisioningState;
/**
* @return Indicates if the client is enabled or not. Default value is Enabled.
*
*/
private @Nullable String state;
/**
* @return The system metadata relating to the Client resource.
*
*/
private SystemDataResponse systemData;
/**
* @return Type of the resource.
*
*/
private String type;
private GetClientResult() {}
/**
* @return Attributes for the client. Supported values are int, bool, string, string[].
* Example:
* "attributes": { "room": "345", "floor": 12, "deviceTypes": ["Fan", "Light"] }
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy