
com.pulumi.azurenative.hybridnetwork.inputs.GetConfigurationGroupSchemaArgs 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.hybridnetwork.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 GetConfigurationGroupSchemaArgs extends com.pulumi.resources.InvokeArgs {
public static final GetConfigurationGroupSchemaArgs Empty = new GetConfigurationGroupSchemaArgs();
/**
* The name of the configuration group schema.
*
*/
@Import(name="configurationGroupSchemaName", required=true)
private Output configurationGroupSchemaName;
/**
* @return The name of the configuration group schema.
*
*/
public Output configurationGroupSchemaName() {
return this.configurationGroupSchemaName;
}
/**
* The name of the publisher.
*
*/
@Import(name="publisherName", required=true)
private Output publisherName;
/**
* @return The name of the publisher.
*
*/
public Output publisherName() {
return this.publisherName;
}
/**
* 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 GetConfigurationGroupSchemaArgs() {}
private GetConfigurationGroupSchemaArgs(GetConfigurationGroupSchemaArgs $) {
this.configurationGroupSchemaName = $.configurationGroupSchemaName;
this.publisherName = $.publisherName;
this.resourceGroupName = $.resourceGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetConfigurationGroupSchemaArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetConfigurationGroupSchemaArgs $;
public Builder() {
$ = new GetConfigurationGroupSchemaArgs();
}
public Builder(GetConfigurationGroupSchemaArgs defaults) {
$ = new GetConfigurationGroupSchemaArgs(Objects.requireNonNull(defaults));
}
/**
* @param configurationGroupSchemaName The name of the configuration group schema.
*
* @return builder
*
*/
public Builder configurationGroupSchemaName(Output configurationGroupSchemaName) {
$.configurationGroupSchemaName = configurationGroupSchemaName;
return this;
}
/**
* @param configurationGroupSchemaName The name of the configuration group schema.
*
* @return builder
*
*/
public Builder configurationGroupSchemaName(String configurationGroupSchemaName) {
return configurationGroupSchemaName(Output.of(configurationGroupSchemaName));
}
/**
* @param publisherName The name of the publisher.
*
* @return builder
*
*/
public Builder publisherName(Output publisherName) {
$.publisherName = publisherName;
return this;
}
/**
* @param publisherName The name of the publisher.
*
* @return builder
*
*/
public Builder publisherName(String publisherName) {
return publisherName(Output.of(publisherName));
}
/**
* @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 GetConfigurationGroupSchemaArgs build() {
if ($.configurationGroupSchemaName == null) {
throw new MissingRequiredPropertyException("GetConfigurationGroupSchemaArgs", "configurationGroupSchemaName");
}
if ($.publisherName == null) {
throw new MissingRequiredPropertyException("GetConfigurationGroupSchemaArgs", "publisherName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetConfigurationGroupSchemaArgs", "resourceGroupName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy