
com.pulumi.azurenative.blueprint.inputs.GetBlueprintPlainArgs 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.blueprint.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetBlueprintPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetBlueprintPlainArgs Empty = new GetBlueprintPlainArgs();
/**
* Name of the blueprint definition.
*
*/
@Import(name="blueprintName", required=true)
private String blueprintName;
/**
* @return Name of the blueprint definition.
*
*/
public String blueprintName() {
return this.blueprintName;
}
/**
* The scope of the resource. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroup}'), subscription (format: '/subscriptions/{subscriptionId}').
*
*/
@Import(name="resourceScope", required=true)
private String resourceScope;
/**
* @return The scope of the resource. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroup}'), subscription (format: '/subscriptions/{subscriptionId}').
*
*/
public String resourceScope() {
return this.resourceScope;
}
private GetBlueprintPlainArgs() {}
private GetBlueprintPlainArgs(GetBlueprintPlainArgs $) {
this.blueprintName = $.blueprintName;
this.resourceScope = $.resourceScope;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetBlueprintPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetBlueprintPlainArgs $;
public Builder() {
$ = new GetBlueprintPlainArgs();
}
public Builder(GetBlueprintPlainArgs defaults) {
$ = new GetBlueprintPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param blueprintName Name of the blueprint definition.
*
* @return builder
*
*/
public Builder blueprintName(String blueprintName) {
$.blueprintName = blueprintName;
return this;
}
/**
* @param resourceScope The scope of the resource. Valid scopes are: management group (format: '/providers/Microsoft.Management/managementGroups/{managementGroup}'), subscription (format: '/subscriptions/{subscriptionId}').
*
* @return builder
*
*/
public Builder resourceScope(String resourceScope) {
$.resourceScope = resourceScope;
return this;
}
public GetBlueprintPlainArgs build() {
if ($.blueprintName == null) {
throw new MissingRequiredPropertyException("GetBlueprintPlainArgs", "blueprintName");
}
if ($.resourceScope == null) {
throw new MissingRequiredPropertyException("GetBlueprintPlainArgs", "resourceScope");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy