
com.pulumi.azurenative.azureactivedirectory.outputs.CreateCIAMTenantPropertiesResponse 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.azureactivedirectory.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class CreateCIAMTenantPropertiesResponse {
/**
* @return Country code of Azure tenant (e.g. 'US'). Refer to [https://aka.ms/ciam-data-location](https://aka.ms/ciam-data-location) to see valid country codes and corresponding data residency locations. If you do not see a country code in an valid data residency location, choose one from the list.
*
*/
private String countryCode;
/**
* @return The display name of the Azure AD for customers tenant.
*
*/
private String displayName;
private CreateCIAMTenantPropertiesResponse() {}
/**
* @return Country code of Azure tenant (e.g. 'US'). Refer to [https://aka.ms/ciam-data-location](https://aka.ms/ciam-data-location) to see valid country codes and corresponding data residency locations. If you do not see a country code in an valid data residency location, choose one from the list.
*
*/
public String countryCode() {
return this.countryCode;
}
/**
* @return The display name of the Azure AD for customers tenant.
*
*/
public String displayName() {
return this.displayName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(CreateCIAMTenantPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String countryCode;
private String displayName;
public Builder() {}
public Builder(CreateCIAMTenantPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.countryCode = defaults.countryCode;
this.displayName = defaults.displayName;
}
@CustomType.Setter
public Builder countryCode(String countryCode) {
if (countryCode == null) {
throw new MissingRequiredPropertyException("CreateCIAMTenantPropertiesResponse", "countryCode");
}
this.countryCode = countryCode;
return this;
}
@CustomType.Setter
public Builder displayName(String displayName) {
if (displayName == null) {
throw new MissingRequiredPropertyException("CreateCIAMTenantPropertiesResponse", "displayName");
}
this.displayName = displayName;
return this;
}
public CreateCIAMTenantPropertiesResponse build() {
final var _resultValue = new CreateCIAMTenantPropertiesResponse();
_resultValue.countryCode = countryCode;
_resultValue.displayName = displayName;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy