com.pulumi.azure.blueprint.inputs.GetDefinitionArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure Show documentation
Show all versions of azure Show documentation
A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.
// *** 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.azure.blueprint.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 GetDefinitionArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDefinitionArgs Empty = new GetDefinitionArgs();
/**
* The name of the Blueprint.
*
*/
@Import(name="name", required=true)
private Output name;
/**
* @return The name of the Blueprint.
*
*/
public Output name() {
return this.name;
}
/**
* The ID of the Subscription or Management Group, as the scope at which the blueprint definition is stored.
*
*/
@Import(name="scopeId", required=true)
private Output scopeId;
/**
* @return The ID of the Subscription or Management Group, as the scope at which the blueprint definition is stored.
*
*/
public Output scopeId() {
return this.scopeId;
}
private GetDefinitionArgs() {}
private GetDefinitionArgs(GetDefinitionArgs $) {
this.name = $.name;
this.scopeId = $.scopeId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetDefinitionArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetDefinitionArgs $;
public Builder() {
$ = new GetDefinitionArgs();
}
public Builder(GetDefinitionArgs defaults) {
$ = new GetDefinitionArgs(Objects.requireNonNull(defaults));
}
/**
* @param name The name of the Blueprint.
*
* @return builder
*
*/
public Builder name(Output name) {
$.name = name;
return this;
}
/**
* @param name The name of the Blueprint.
*
* @return builder
*
*/
public Builder name(String name) {
return name(Output.of(name));
}
/**
* @param scopeId The ID of the Subscription or Management Group, as the scope at which the blueprint definition is stored.
*
* @return builder
*
*/
public Builder scopeId(Output scopeId) {
$.scopeId = scopeId;
return this;
}
/**
* @param scopeId The ID of the Subscription or Management Group, as the scope at which the blueprint definition is stored.
*
* @return builder
*
*/
public Builder scopeId(String scopeId) {
return scopeId(Output.of(scopeId));
}
public GetDefinitionArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("GetDefinitionArgs", "name");
}
if ($.scopeId == null) {
throw new MissingRequiredPropertyException("GetDefinitionArgs", "scopeId");
}
return $;
}
}
}