com.pulumi.azurenative.media.outputs.AkamaiSignatureHeaderAuthenticationKeyResponse 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.media.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 AkamaiSignatureHeaderAuthenticationKeyResponse {
/**
* @return authentication key
*
*/
private @Nullable String base64Key;
/**
* @return The expiration time of the authentication key.
*
*/
private @Nullable String expiration;
/**
* @return identifier of the key
*
*/
private @Nullable String identifier;
private AkamaiSignatureHeaderAuthenticationKeyResponse() {}
/**
* @return authentication key
*
*/
public Optional base64Key() {
return Optional.ofNullable(this.base64Key);
}
/**
* @return The expiration time of the authentication key.
*
*/
public Optional expiration() {
return Optional.ofNullable(this.expiration);
}
/**
* @return identifier of the key
*
*/
public Optional identifier() {
return Optional.ofNullable(this.identifier);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AkamaiSignatureHeaderAuthenticationKeyResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String base64Key;
private @Nullable String expiration;
private @Nullable String identifier;
public Builder() {}
public Builder(AkamaiSignatureHeaderAuthenticationKeyResponse defaults) {
Objects.requireNonNull(defaults);
this.base64Key = defaults.base64Key;
this.expiration = defaults.expiration;
this.identifier = defaults.identifier;
}
@CustomType.Setter
public Builder base64Key(@Nullable String base64Key) {
this.base64Key = base64Key;
return this;
}
@CustomType.Setter
public Builder expiration(@Nullable String expiration) {
this.expiration = expiration;
return this;
}
@CustomType.Setter
public Builder identifier(@Nullable String identifier) {
this.identifier = identifier;
return this;
}
public AkamaiSignatureHeaderAuthenticationKeyResponse build() {
final var _resultValue = new AkamaiSignatureHeaderAuthenticationKeyResponse();
_resultValue.base64Key = base64Key;
_resultValue.expiration = expiration;
_resultValue.identifier = identifier;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy