
com.pulumi.azurenative.appplatform.inputs.AcceleratorSshSettingArgs 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.appplatform.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Auth setting for SSH auth.
*
*/
public final class AcceleratorSshSettingArgs extends com.pulumi.resources.ResourceArgs {
public static final AcceleratorSshSettingArgs Empty = new AcceleratorSshSettingArgs();
/**
* The type of the auth setting.
* Expected value is 'SSH'.
*
*/
@Import(name="authType", required=true)
private Output authType;
/**
* @return The type of the auth setting.
* Expected value is 'SSH'.
*
*/
public Output authType() {
return this.authType;
}
/**
* Public SSH Key of git repository.
*
*/
@Import(name="hostKey")
private @Nullable Output hostKey;
/**
* @return Public SSH Key of git repository.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy