
com.pulumi.azurenative.azurearcdata.inputs.OnPremisePropertyArgs 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.azurearcdata.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Properties from the Kubernetes data controller
*
*/
public final class OnPremisePropertyArgs extends com.pulumi.resources.ResourceArgs {
public static final OnPremisePropertyArgs Empty = new OnPremisePropertyArgs();
/**
* A globally unique ID identifying the associated Kubernetes cluster
*
*/
@Import(name="id", required=true)
private Output id;
/**
* @return A globally unique ID identifying the associated Kubernetes cluster
*
*/
public Output id() {
return this.id;
}
/**
* Certificate that contains the Kubernetes cluster public key used to verify signing
*
*/
@Import(name="publicSigningKey", required=true)
private Output publicSigningKey;
/**
* @return Certificate that contains the Kubernetes cluster public key used to verify signing
*
*/
public Output publicSigningKey() {
return this.publicSigningKey;
}
/**
* Unique thumbprint returned to customer to verify the certificate being uploaded
*
*/
@Import(name="signingCertificateThumbprint")
private @Nullable Output signingCertificateThumbprint;
/**
* @return Unique thumbprint returned to customer to verify the certificate being uploaded
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy