
com.pulumi.azurenative.app.inputs.GetManagedCertificateArgs 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.app.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;
public final class GetManagedCertificateArgs extends com.pulumi.resources.InvokeArgs {
public static final GetManagedCertificateArgs Empty = new GetManagedCertificateArgs();
/**
* Name of the Managed Environment.
*
*/
@Import(name="environmentName", required=true)
private Output environmentName;
/**
* @return Name of the Managed Environment.
*
*/
public Output environmentName() {
return this.environmentName;
}
/**
* Name of the Managed Certificate.
*
*/
@Import(name="managedCertificateName", required=true)
private Output managedCertificateName;
/**
* @return Name of the Managed Certificate.
*
*/
public Output managedCertificateName() {
return this.managedCertificateName;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
private GetManagedCertificateArgs() {}
private GetManagedCertificateArgs(GetManagedCertificateArgs $) {
this.environmentName = $.environmentName;
this.managedCertificateName = $.managedCertificateName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetManagedCertificateArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetManagedCertificateArgs $;
public Builder() {
$ = new GetManagedCertificateArgs();
}
public Builder(GetManagedCertificateArgs defaults) {
$ = new GetManagedCertificateArgs(Objects.requireNonNull(defaults));
}
/**
* @param environmentName Name of the Managed Environment.
*
* @return builder
*
*/
public Builder environmentName(Output environmentName) {
$.environmentName = environmentName;
return this;
}
/**
* @param environmentName Name of the Managed Environment.
*
* @return builder
*
*/
public Builder environmentName(String environmentName) {
return environmentName(Output.of(environmentName));
}
/**
* @param managedCertificateName Name of the Managed Certificate.
*
* @return builder
*
*/
public Builder managedCertificateName(Output managedCertificateName) {
$.managedCertificateName = managedCertificateName;
return this;
}
/**
* @param managedCertificateName Name of the Managed Certificate.
*
* @return builder
*
*/
public Builder managedCertificateName(String managedCertificateName) {
return managedCertificateName(Output.of(managedCertificateName));
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
public GetManagedCertificateArgs build() {
if ($.environmentName == null) {
throw new MissingRequiredPropertyException("GetManagedCertificateArgs", "environmentName");
}
if ($.managedCertificateName == null) {
throw new MissingRequiredPropertyException("GetManagedCertificateArgs", "managedCertificateName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetManagedCertificateArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy