
com.pulumi.azurenative.machinelearningservices.outputs.ApiKeyAuthWorkspaceConnectionPropertiesResponse 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.machinelearningservices.outputs;
import com.pulumi.azurenative.machinelearningservices.outputs.WorkspaceConnectionApiKeyResponse;
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 ApiKeyAuthWorkspaceConnectionPropertiesResponse {
/**
* @return Authentication type of the connection target
* Expected value is 'ApiKey'.
*
*/
private String authType;
/**
* @return Category of the connection
*
*/
private @Nullable String category;
/**
* @return Api key object for workspace connection credential.
*
*/
private @Nullable WorkspaceConnectionApiKeyResponse credentials;
private @Nullable String expiryTime;
private @Nullable Object metadata;
private @Nullable String target;
private ApiKeyAuthWorkspaceConnectionPropertiesResponse() {}
/**
* @return Authentication type of the connection target
* Expected value is 'ApiKey'.
*
*/
public String authType() {
return this.authType;
}
/**
* @return Category of the connection
*
*/
public Optional category() {
return Optional.ofNullable(this.category);
}
/**
* @return Api key object for workspace connection credential.
*
*/
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