
com.pulumi.azurenative.documentdb.outputs.AccountKeyMetadataResponse 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.documentdb.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class AccountKeyMetadataResponse {
/**
* @return Generation time in UTC of the key in ISO-8601 format. If the value is missing from the object, it means that the last key regeneration was triggered before 2022-06-18.
*
*/
private String generationTime;
private AccountKeyMetadataResponse() {}
/**
* @return Generation time in UTC of the key in ISO-8601 format. If the value is missing from the object, it means that the last key regeneration was triggered before 2022-06-18.
*
*/
public String generationTime() {
return this.generationTime;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(AccountKeyMetadataResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String generationTime;
public Builder() {}
public Builder(AccountKeyMetadataResponse defaults) {
Objects.requireNonNull(defaults);
this.generationTime = defaults.generationTime;
}
@CustomType.Setter
public Builder generationTime(String generationTime) {
if (generationTime == null) {
throw new MissingRequiredPropertyException("AccountKeyMetadataResponse", "generationTime");
}
this.generationTime = generationTime;
return this;
}
public AccountKeyMetadataResponse build() {
final var _resultValue = new AccountKeyMetadataResponse();
_resultValue.generationTime = generationTime;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy