com.pulumi.azurenative.hybridnetwork.outputs.ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration 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.hybridnetwork.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 ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration {
/**
* @return The managed resource group location.
*
*/
private @Nullable String location;
/**
* @return The managed resource group name.
*
*/
private @Nullable String name;
private ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration() {}
/**
* @return The managed resource group location.
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* @return The managed resource group name.
*
*/
public Optional name() {
return Optional.ofNullable(this.name);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String location;
private @Nullable String name;
public Builder() {}
public Builder(ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration defaults) {
Objects.requireNonNull(defaults);
this.location = defaults.location;
this.name = defaults.name;
}
@CustomType.Setter
public Builder location(@Nullable String location) {
this.location = location;
return this;
}
@CustomType.Setter
public Builder name(@Nullable String name) {
this.name = name;
return this;
}
public ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration build() {
final var _resultValue = new ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration();
_resultValue.location = location;
_resultValue.name = name;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy