
com.pulumi.azurenative.notificationhubs.outputs.WnsCredentialPropertiesResponse Maven / Gradle / Ivy
// *** 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.notificationhubs.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 WnsCredentialPropertiesResponse {
/**
* @return Ges or sets the WNS Certificate Key.
*
*/
private @Nullable String certificateKey;
/**
* @return Gets or sets the package ID for this credential.
*
*/
private @Nullable String packageSid;
/**
* @return Gets or sets the secret key.
*
*/
private @Nullable String secretKey;
/**
* @return Gets or sets the Windows Live endpoint.
*
*/
private @Nullable String windowsLiveEndpoint;
/**
* @return Gets or sets the WNS Certificate.
*
*/
private @Nullable String wnsCertificate;
private WnsCredentialPropertiesResponse() {}
/**
* @return Ges or sets the WNS Certificate Key.
*
*/
public Optional certificateKey() {
return Optional.ofNullable(this.certificateKey);
}
/**
* @return Gets or sets the package ID for this credential.
*
*/
public Optional packageSid() {
return Optional.ofNullable(this.packageSid);
}
/**
* @return Gets or sets the secret key.
*
*/
public Optional secretKey() {
return Optional.ofNullable(this.secretKey);
}
/**
* @return Gets or sets the Windows Live endpoint.
*
*/
public Optional windowsLiveEndpoint() {
return Optional.ofNullable(this.windowsLiveEndpoint);
}
/**
* @return Gets or sets the WNS Certificate.
*
*/
public Optional wnsCertificate() {
return Optional.ofNullable(this.wnsCertificate);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(WnsCredentialPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String certificateKey;
private @Nullable String packageSid;
private @Nullable String secretKey;
private @Nullable String windowsLiveEndpoint;
private @Nullable String wnsCertificate;
public Builder() {}
public Builder(WnsCredentialPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.certificateKey = defaults.certificateKey;
this.packageSid = defaults.packageSid;
this.secretKey = defaults.secretKey;
this.windowsLiveEndpoint = defaults.windowsLiveEndpoint;
this.wnsCertificate = defaults.wnsCertificate;
}
@CustomType.Setter
public Builder certificateKey(@Nullable String certificateKey) {
this.certificateKey = certificateKey;
return this;
}
@CustomType.Setter
public Builder packageSid(@Nullable String packageSid) {
this.packageSid = packageSid;
return this;
}
@CustomType.Setter
public Builder secretKey(@Nullable String secretKey) {
this.secretKey = secretKey;
return this;
}
@CustomType.Setter
public Builder windowsLiveEndpoint(@Nullable String windowsLiveEndpoint) {
this.windowsLiveEndpoint = windowsLiveEndpoint;
return this;
}
@CustomType.Setter
public Builder wnsCertificate(@Nullable String wnsCertificate) {
this.wnsCertificate = wnsCertificate;
return this;
}
public WnsCredentialPropertiesResponse build() {
final var _resultValue = new WnsCredentialPropertiesResponse();
_resultValue.certificateKey = certificateKey;
_resultValue.packageSid = packageSid;
_resultValue.secretKey = secretKey;
_resultValue.windowsLiveEndpoint = windowsLiveEndpoint;
_resultValue.wnsCertificate = wnsCertificate;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy