
com.pulumi.azurenative.machinelearningservices.outputs.CustomKeysWorkspaceConnectionPropertiesResponse Maven / Gradle / Ivy
// *** 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.machinelearningservices.outputs;
import com.pulumi.azurenative.machinelearningservices.outputs.CustomKeysResponse;
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 CustomKeysWorkspaceConnectionPropertiesResponse {
/**
* @return Authentication type of the connection target
* Expected value is 'CustomKeys'.
*
*/
private String authType;
/**
* @return Category of the connection
*
*/
private @Nullable String category;
/**
* @return Custom Keys credential object
*
*/
private @Nullable CustomKeysResponse credentials;
private @Nullable String expiryTime;
private @Nullable Object metadata;
private @Nullable String target;
private CustomKeysWorkspaceConnectionPropertiesResponse() {}
/**
* @return Authentication type of the connection target
* Expected value is 'CustomKeys'.
*
*/
public String authType() {
return this.authType;
}
/**
* @return Category of the connection
*
*/
public Optional category() {
return Optional.ofNullable(this.category);
}
/**
* @return Custom Keys credential object
*
*/
public Optional credentials() {
return Optional.ofNullable(this.credentials);
}
public Optional expiryTime() {
return Optional.ofNullable(this.expiryTime);
}
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy