com.pulumi.azurenative.web.outputs.ListWebAppPublishingCredentialsResult 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.web.outputs;
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 ListWebAppPublishingCredentialsResult {
/**
* @return Resource Id.
*
*/
private String id;
/**
* @return Kind of resource.
*
*/
private @Nullable String kind;
/**
* @return Resource Name.
*
*/
private String name;
/**
* @return Password used for publishing.
*
*/
private @Nullable String publishingPassword;
/**
* @return Password hash used for publishing.
*
*/
private @Nullable String publishingPasswordHash;
/**
* @return Password hash salt used for publishing.
*
*/
private @Nullable String publishingPasswordHashSalt;
/**
* @return Username used for publishing.
*
*/
private String publishingUserName;
/**
* @return Url of SCM site.
*
*/
private @Nullable String scmUri;
/**
* @return Resource type.
*
*/
private String type;
private ListWebAppPublishingCredentialsResult() {}
/**
* @return Resource Id.
*
*/
public String id() {
return this.id;
}
/**
* @return Kind of resource.
*
*/
public Optional kind() {
return Optional.ofNullable(this.kind);
}
/**
* @return Resource Name.
*
*/
public String name() {
return this.name;
}
/**
* @return Password used for publishing.
*
*/
public Optional publishingPassword() {
return Optional.ofNullable(this.publishingPassword);
}
/**
* @return Password hash used for publishing.
*
*/
public Optional publishingPasswordHash() {
return Optional.ofNullable(this.publishingPasswordHash);
}
/**
* @return Password hash salt used for publishing.
*
*/
public Optional publishingPasswordHashSalt() {
return Optional.ofNullable(this.publishingPasswordHashSalt);
}
/**
* @return Username used for publishing.
*
*/
public String publishingUserName() {
return this.publishingUserName;
}
/**
* @return Url of SCM site.
*
*/
public Optional scmUri() {
return Optional.ofNullable(this.scmUri);
}
/**
* @return Resource type.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListWebAppPublishingCredentialsResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String id;
private @Nullable String kind;
private String name;
private @Nullable String publishingPassword;
private @Nullable String publishingPasswordHash;
private @Nullable String publishingPasswordHashSalt;
private String publishingUserName;
private @Nullable String scmUri;
private String type;
public Builder() {}
public Builder(ListWebAppPublishingCredentialsResult defaults) {
Objects.requireNonNull(defaults);
this.id = defaults.id;
this.kind = defaults.kind;
this.name = defaults.name;
this.publishingPassword = defaults.publishingPassword;
this.publishingPasswordHash = defaults.publishingPasswordHash;
this.publishingPasswordHashSalt = defaults.publishingPasswordHashSalt;
this.publishingUserName = defaults.publishingUserName;
this.scmUri = defaults.scmUri;
this.type = defaults.type;
}
@CustomType.Setter
public Builder id(String id) {
if (id == null) {
throw new MissingRequiredPropertyException("ListWebAppPublishingCredentialsResult", "id");
}
this.id = id;
return this;
}
@CustomType.Setter
public Builder kind(@Nullable String kind) {
this.kind = kind;
return this;
}
@CustomType.Setter
public Builder name(String name) {
if (name == null) {
throw new MissingRequiredPropertyException("ListWebAppPublishingCredentialsResult", "name");
}
this.name = name;
return this;
}
@CustomType.Setter
public Builder publishingPassword(@Nullable String publishingPassword) {
this.publishingPassword = publishingPassword;
return this;
}
@CustomType.Setter
public Builder publishingPasswordHash(@Nullable String publishingPasswordHash) {
this.publishingPasswordHash = publishingPasswordHash;
return this;
}
@CustomType.Setter
public Builder publishingPasswordHashSalt(@Nullable String publishingPasswordHashSalt) {
this.publishingPasswordHashSalt = publishingPasswordHashSalt;
return this;
}
@CustomType.Setter
public Builder publishingUserName(String publishingUserName) {
if (publishingUserName == null) {
throw new MissingRequiredPropertyException("ListWebAppPublishingCredentialsResult", "publishingUserName");
}
this.publishingUserName = publishingUserName;
return this;
}
@CustomType.Setter
public Builder scmUri(@Nullable String scmUri) {
this.scmUri = scmUri;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("ListWebAppPublishingCredentialsResult", "type");
}
this.type = type;
return this;
}
public ListWebAppPublishingCredentialsResult build() {
final var _resultValue = new ListWebAppPublishingCredentialsResult();
_resultValue.id = id;
_resultValue.kind = kind;
_resultValue.name = name;
_resultValue.publishingPassword = publishingPassword;
_resultValue.publishingPasswordHash = publishingPasswordHash;
_resultValue.publishingPasswordHashSalt = publishingPasswordHashSalt;
_resultValue.publishingUserName = publishingUserName;
_resultValue.scmUri = scmUri;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy