
com.pulumi.azurenative.eventgrid.outputs.ListDomainSharedAccessKeysResult 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.eventgrid.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 ListDomainSharedAccessKeysResult {
/**
* @return Shared access key1 for the domain.
*
*/
private @Nullable String key1;
/**
* @return Shared access key2 for the domain.
*
*/
private @Nullable String key2;
private ListDomainSharedAccessKeysResult() {}
/**
* @return Shared access key1 for the domain.
*
*/
public Optional key1() {
return Optional.ofNullable(this.key1);
}
/**
* @return Shared access key2 for the domain.
*
*/
public Optional key2() {
return Optional.ofNullable(this.key2);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListDomainSharedAccessKeysResult defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String key1;
private @Nullable String key2;
public Builder() {}
public Builder(ListDomainSharedAccessKeysResult defaults) {
Objects.requireNonNull(defaults);
this.key1 = defaults.key1;
this.key2 = defaults.key2;
}
@CustomType.Setter
public Builder key1(@Nullable String key1) {
this.key1 = key1;
return this;
}
@CustomType.Setter
public Builder key2(@Nullable String key2) {
this.key2 = key2;
return this;
}
public ListDomainSharedAccessKeysResult build() {
final var _resultValue = new ListDomainSharedAccessKeysResult();
_resultValue.key1 = key1;
_resultValue.key2 = key2;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy