com.pulumi.azure.core.outputs.ResourceDeploymentScriptPowerShellContainer 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.core.outputs;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ResourceDeploymentScriptPowerShellContainer {
/**
* @return Container group name, if not specified then the name will get auto-generated. For more information, please refer to the [Container Configuration](https://learn.microsoft.com/en-us/rest/api/resources/deployment-scripts/create?tabs=HTTP#containerconfiguration) documentation.
*
*/
private @Nullable String containerGroupName;
private ResourceDeploymentScriptPowerShellContainer() {}
/**
* @return Container group name, if not specified then the name will get auto-generated. For more information, please refer to the [Container Configuration](https://learn.microsoft.com/en-us/rest/api/resources/deployment-scripts/create?tabs=HTTP#containerconfiguration) documentation.
*
*/
public Optional containerGroupName() {
return Optional.ofNullable(this.containerGroupName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ResourceDeploymentScriptPowerShellContainer defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String containerGroupName;
public Builder() {}
public Builder(ResourceDeploymentScriptPowerShellContainer defaults) {
Objects.requireNonNull(defaults);
this.containerGroupName = defaults.containerGroupName;
}
@CustomType.Setter
public Builder containerGroupName(@Nullable String containerGroupName) {
this.containerGroupName = containerGroupName;
return this;
}
public ResourceDeploymentScriptPowerShellContainer build() {
final var _resultValue = new ResourceDeploymentScriptPowerShellContainer();
_resultValue.containerGroupName = containerGroupName;
return _resultValue;
}
}
}