
com.pulumi.azurenative.hybridnetwork.outputs.ArtifactStorePropertiesFormatResponse 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.azurenative.hybridnetwork.outputs.ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class ArtifactStorePropertiesFormatResponse {
private @Nullable ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration managedResourceGroupConfiguration;
/**
* @return The provisioning state of the application groups resource.
*
*/
private String provisioningState;
/**
* @return The replication strategy.
*
*/
private @Nullable String replicationStrategy;
/**
* @return The created storage resource id
*
*/
private String storageResourceId;
/**
* @return The artifact store type.
*
*/
private @Nullable String storeType;
private ArtifactStorePropertiesFormatResponse() {}
public Optional managedResourceGroupConfiguration() {
return Optional.ofNullable(this.managedResourceGroupConfiguration);
}
/**
* @return The provisioning state of the application groups resource.
*
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* @return The replication strategy.
*
*/
public Optional replicationStrategy() {
return Optional.ofNullable(this.replicationStrategy);
}
/**
* @return The created storage resource id
*
*/
public String storageResourceId() {
return this.storageResourceId;
}
/**
* @return The artifact store type.
*
*/
public Optional storeType() {
return Optional.ofNullable(this.storeType);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ArtifactStorePropertiesFormatResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration managedResourceGroupConfiguration;
private String provisioningState;
private @Nullable String replicationStrategy;
private String storageResourceId;
private @Nullable String storeType;
public Builder() {}
public Builder(ArtifactStorePropertiesFormatResponse defaults) {
Objects.requireNonNull(defaults);
this.managedResourceGroupConfiguration = defaults.managedResourceGroupConfiguration;
this.provisioningState = defaults.provisioningState;
this.replicationStrategy = defaults.replicationStrategy;
this.storageResourceId = defaults.storageResourceId;
this.storeType = defaults.storeType;
}
@CustomType.Setter
public Builder managedResourceGroupConfiguration(@Nullable ArtifactStorePropertiesFormatResponseManagedResourceGroupConfiguration managedResourceGroupConfiguration) {
this.managedResourceGroupConfiguration = managedResourceGroupConfiguration;
return this;
}
@CustomType.Setter
public Builder provisioningState(String provisioningState) {
if (provisioningState == null) {
throw new MissingRequiredPropertyException("ArtifactStorePropertiesFormatResponse", "provisioningState");
}
this.provisioningState = provisioningState;
return this;
}
@CustomType.Setter
public Builder replicationStrategy(@Nullable String replicationStrategy) {
this.replicationStrategy = replicationStrategy;
return this;
}
@CustomType.Setter
public Builder storageResourceId(String storageResourceId) {
if (storageResourceId == null) {
throw new MissingRequiredPropertyException("ArtifactStorePropertiesFormatResponse", "storageResourceId");
}
this.storageResourceId = storageResourceId;
return this;
}
@CustomType.Setter
public Builder storeType(@Nullable String storeType) {
this.storeType = storeType;
return this;
}
public ArtifactStorePropertiesFormatResponse build() {
final var _resultValue = new ArtifactStorePropertiesFormatResponse();
_resultValue.managedResourceGroupConfiguration = managedResourceGroupConfiguration;
_resultValue.provisioningState = provisioningState;
_resultValue.replicationStrategy = replicationStrategy;
_resultValue.storageResourceId = storageResourceId;
_resultValue.storeType = storeType;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy