
com.pulumi.azurenative.appplatform.outputs.ConfigurationServiceGitPropertyResponse 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.appplatform.outputs;
import com.pulumi.azurenative.appplatform.outputs.ConfigurationServiceGitRepositoryResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.List;
import java.util.Objects;
import javax.annotation.Nullable;
@CustomType
public final class ConfigurationServiceGitPropertyResponse {
/**
* @return Repositories of Application Configuration Service git property.
*
*/
private @Nullable List repositories;
private ConfigurationServiceGitPropertyResponse() {}
/**
* @return Repositories of Application Configuration Service git property.
*
*/
public List repositories() {
return this.repositories == null ? List.of() : this.repositories;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ConfigurationServiceGitPropertyResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List repositories;
public Builder() {}
public Builder(ConfigurationServiceGitPropertyResponse defaults) {
Objects.requireNonNull(defaults);
this.repositories = defaults.repositories;
}
@CustomType.Setter
public Builder repositories(@Nullable List repositories) {
this.repositories = repositories;
return this;
}
public Builder repositories(ConfigurationServiceGitRepositoryResponse... repositories) {
return repositories(List.of(repositories));
}
public ConfigurationServiceGitPropertyResponse build() {
final var _resultValue = new ConfigurationServiceGitPropertyResponse();
_resultValue.repositories = repositories;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy