![JAR search and dependency download from the Maven repository](/logo.png)
com.oracle.bmc.waas.model.CreateWaasPolicyDetails Maven / Gradle / Ivy
Show all versions of oci-java-sdk-shaded-full Show documentation
/**
* Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved.
* This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license.
*/
package com.oracle.bmc.waas.model;
/**
* The required data to create a WAAS policy.
*
* *Warning:** Oracle recommends that you avoid using any confidential information when you
* supply string values using the API.
* Note: Objects should always be created or deserialized using the {@link Builder}. This model
* distinguishes fields that are {@code null} because they are unset from fields that are explicitly
* set to {@code null}. This is done in the setter methods of the {@link Builder}, which maintain a
* set of all explicitly set fields called {@link Builder#__explicitlySet__}. The {@link
* #hashCode()} and {@link #equals(Object)} methods are implemented to take the explicitly set
* fields into account. The constructor, on the other hand, does not take the explicitly set fields
* into account (since the constructor cannot distinguish explicit {@code null} from unset {@code
* null}).
*/
@jakarta.annotation.Generated(value = "OracleSDKGenerator", comments = "API Version: 20181116")
@com.fasterxml.jackson.databind.annotation.JsonDeserialize(
builder = CreateWaasPolicyDetails.Builder.class)
@com.fasterxml.jackson.annotation.JsonFilter(
com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel.EXPLICITLY_SET_FILTER_NAME)
public final class CreateWaasPolicyDetails
extends com.oracle.bmc.http.client.internal.ExplicitlySetBmcModel {
@Deprecated
@java.beans.ConstructorProperties({
"compartmentId",
"displayName",
"domain",
"additionalDomains",
"origins",
"originGroups",
"policyConfig",
"wafConfig",
"freeformTags",
"definedTags"
})
public CreateWaasPolicyDetails(
String compartmentId,
String displayName,
String domain,
java.util.List additionalDomains,
java.util.Map origins,
java.util.Map originGroups,
PolicyConfig policyConfig,
WafConfigDetails wafConfig,
java.util.Map freeformTags,
java.util.Map> definedTags) {
super();
this.compartmentId = compartmentId;
this.displayName = displayName;
this.domain = domain;
this.additionalDomains = additionalDomains;
this.origins = origins;
this.originGroups = originGroups;
this.policyConfig = policyConfig;
this.wafConfig = wafConfig;
this.freeformTags = freeformTags;
this.definedTags = definedTags;
}
@com.fasterxml.jackson.databind.annotation.JsonPOJOBuilder(withPrefix = "")
public static class Builder {
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* compartment in which to create the WAAS policy.
*/
@com.fasterxml.jackson.annotation.JsonProperty("compartmentId")
private String compartmentId;
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* compartment in which to create the WAAS policy.
*
* @param compartmentId the value to set
* @return this builder
*/
public Builder compartmentId(String compartmentId) {
this.compartmentId = compartmentId;
this.__explicitlySet__.add("compartmentId");
return this;
}
/**
* A user-friendly name for the WAAS policy. The name can be changed and does not need to be
* unique.
*/
@com.fasterxml.jackson.annotation.JsonProperty("displayName")
private String displayName;
/**
* A user-friendly name for the WAAS policy. The name can be changed and does not need to be
* unique.
*
* @param displayName the value to set
* @return this builder
*/
public Builder displayName(String displayName) {
this.displayName = displayName;
this.__explicitlySet__.add("displayName");
return this;
}
/** The web application domain that the WAAS policy protects. */
@com.fasterxml.jackson.annotation.JsonProperty("domain")
private String domain;
/**
* The web application domain that the WAAS policy protects.
*
* @param domain the value to set
* @return this builder
*/
public Builder domain(String domain) {
this.domain = domain;
this.__explicitlySet__.add("domain");
return this;
}
/** An array of additional domains for the specified web application. */
@com.fasterxml.jackson.annotation.JsonProperty("additionalDomains")
private java.util.List additionalDomains;
/**
* An array of additional domains for the specified web application.
*
* @param additionalDomains the value to set
* @return this builder
*/
public Builder additionalDomains(java.util.List additionalDomains) {
this.additionalDomains = additionalDomains;
this.__explicitlySet__.add("additionalDomains");
return this;
}
/**
* A map of host to origin for the web application. The key should be a customer friendly
* name for the host, ex. primary, secondary, etc.
*/
@com.fasterxml.jackson.annotation.JsonProperty("origins")
private java.util.Map origins;
/**
* A map of host to origin for the web application. The key should be a customer friendly
* name for the host, ex. primary, secondary, etc.
*
* @param origins the value to set
* @return this builder
*/
public Builder origins(java.util.Map origins) {
this.origins = origins;
this.__explicitlySet__.add("origins");
return this;
}
/**
* The map of origin groups and their keys used to associate origins to the {@code
* wafConfig}. Origin groups allow you to apply weights to groups of origins for load
* balancing purposes. Origins with higher weights will receive larger proportions of client
* requests. To add additional origins to your WAAS policy, update the {@code origins} field
* of a {@code UpdateWaasPolicy} request.
*/
@com.fasterxml.jackson.annotation.JsonProperty("originGroups")
private java.util.Map originGroups;
/**
* The map of origin groups and their keys used to associate origins to the {@code
* wafConfig}. Origin groups allow you to apply weights to groups of origins for load
* balancing purposes. Origins with higher weights will receive larger proportions of client
* requests. To add additional origins to your WAAS policy, update the {@code origins} field
* of a {@code UpdateWaasPolicy} request.
*
* @param originGroups the value to set
* @return this builder
*/
public Builder originGroups(java.util.Map originGroups) {
this.originGroups = originGroups;
this.__explicitlySet__.add("originGroups");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("policyConfig")
private PolicyConfig policyConfig;
public Builder policyConfig(PolicyConfig policyConfig) {
this.policyConfig = policyConfig;
this.__explicitlySet__.add("policyConfig");
return this;
}
@com.fasterxml.jackson.annotation.JsonProperty("wafConfig")
private WafConfigDetails wafConfig;
public Builder wafConfig(WafConfigDetails wafConfig) {
this.wafConfig = wafConfig;
this.__explicitlySet__.add("wafConfig");
return this;
}
/**
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined
* name, type, or namespace. For more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Department": "Finance"}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("freeformTags")
private java.util.Map freeformTags;
/**
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined
* name, type, or namespace. For more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Department": "Finance"}}
*
* @param freeformTags the value to set
* @return this builder
*/
public Builder freeformTags(java.util.Map freeformTags) {
this.freeformTags = freeformTags;
this.__explicitlySet__.add("freeformTags");
return this;
}
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For
* more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Operations": {"CostCenter": "42"}}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("definedTags")
private java.util.Map> definedTags;
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For
* more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Operations": {"CostCenter": "42"}}}
*
* @param definedTags the value to set
* @return this builder
*/
public Builder definedTags(
java.util.Map> definedTags) {
this.definedTags = definedTags;
this.__explicitlySet__.add("definedTags");
return this;
}
@com.fasterxml.jackson.annotation.JsonIgnore
private final java.util.Set __explicitlySet__ = new java.util.HashSet();
public CreateWaasPolicyDetails build() {
CreateWaasPolicyDetails model =
new CreateWaasPolicyDetails(
this.compartmentId,
this.displayName,
this.domain,
this.additionalDomains,
this.origins,
this.originGroups,
this.policyConfig,
this.wafConfig,
this.freeformTags,
this.definedTags);
for (String explicitlySetProperty : this.__explicitlySet__) {
model.markPropertyAsExplicitlySet(explicitlySetProperty);
}
return model;
}
@com.fasterxml.jackson.annotation.JsonIgnore
public Builder copy(CreateWaasPolicyDetails model) {
if (model.wasPropertyExplicitlySet("compartmentId")) {
this.compartmentId(model.getCompartmentId());
}
if (model.wasPropertyExplicitlySet("displayName")) {
this.displayName(model.getDisplayName());
}
if (model.wasPropertyExplicitlySet("domain")) {
this.domain(model.getDomain());
}
if (model.wasPropertyExplicitlySet("additionalDomains")) {
this.additionalDomains(model.getAdditionalDomains());
}
if (model.wasPropertyExplicitlySet("origins")) {
this.origins(model.getOrigins());
}
if (model.wasPropertyExplicitlySet("originGroups")) {
this.originGroups(model.getOriginGroups());
}
if (model.wasPropertyExplicitlySet("policyConfig")) {
this.policyConfig(model.getPolicyConfig());
}
if (model.wasPropertyExplicitlySet("wafConfig")) {
this.wafConfig(model.getWafConfig());
}
if (model.wasPropertyExplicitlySet("freeformTags")) {
this.freeformTags(model.getFreeformTags());
}
if (model.wasPropertyExplicitlySet("definedTags")) {
this.definedTags(model.getDefinedTags());
}
return this;
}
}
/** Create a new builder. */
public static Builder builder() {
return new Builder();
}
public Builder toBuilder() {
return new Builder().copy(this);
}
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* compartment in which to create the WAAS policy.
*/
@com.fasterxml.jackson.annotation.JsonProperty("compartmentId")
private final String compartmentId;
/**
* The [OCID](https://docs.cloud.oracle.com/Content/General/Concepts/identifiers.htm) of the
* compartment in which to create the WAAS policy.
*
* @return the value
*/
public String getCompartmentId() {
return compartmentId;
}
/**
* A user-friendly name for the WAAS policy. The name can be changed and does not need to be
* unique.
*/
@com.fasterxml.jackson.annotation.JsonProperty("displayName")
private final String displayName;
/**
* A user-friendly name for the WAAS policy. The name can be changed and does not need to be
* unique.
*
* @return the value
*/
public String getDisplayName() {
return displayName;
}
/** The web application domain that the WAAS policy protects. */
@com.fasterxml.jackson.annotation.JsonProperty("domain")
private final String domain;
/**
* The web application domain that the WAAS policy protects.
*
* @return the value
*/
public String getDomain() {
return domain;
}
/** An array of additional domains for the specified web application. */
@com.fasterxml.jackson.annotation.JsonProperty("additionalDomains")
private final java.util.List additionalDomains;
/**
* An array of additional domains for the specified web application.
*
* @return the value
*/
public java.util.List getAdditionalDomains() {
return additionalDomains;
}
/**
* A map of host to origin for the web application. The key should be a customer friendly name
* for the host, ex. primary, secondary, etc.
*/
@com.fasterxml.jackson.annotation.JsonProperty("origins")
private final java.util.Map origins;
/**
* A map of host to origin for the web application. The key should be a customer friendly name
* for the host, ex. primary, secondary, etc.
*
* @return the value
*/
public java.util.Map getOrigins() {
return origins;
}
/**
* The map of origin groups and their keys used to associate origins to the {@code wafConfig}.
* Origin groups allow you to apply weights to groups of origins for load balancing purposes.
* Origins with higher weights will receive larger proportions of client requests. To add
* additional origins to your WAAS policy, update the {@code origins} field of a {@code
* UpdateWaasPolicy} request.
*/
@com.fasterxml.jackson.annotation.JsonProperty("originGroups")
private final java.util.Map originGroups;
/**
* The map of origin groups and their keys used to associate origins to the {@code wafConfig}.
* Origin groups allow you to apply weights to groups of origins for load balancing purposes.
* Origins with higher weights will receive larger proportions of client requests. To add
* additional origins to your WAAS policy, update the {@code origins} field of a {@code
* UpdateWaasPolicy} request.
*
* @return the value
*/
public java.util.Map getOriginGroups() {
return originGroups;
}
@com.fasterxml.jackson.annotation.JsonProperty("policyConfig")
private final PolicyConfig policyConfig;
public PolicyConfig getPolicyConfig() {
return policyConfig;
}
@com.fasterxml.jackson.annotation.JsonProperty("wafConfig")
private final WafConfigDetails wafConfig;
public WafConfigDetails getWafConfig() {
return wafConfig;
}
/**
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined
* name, type, or namespace. For more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Department": "Finance"}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("freeformTags")
private final java.util.Map freeformTags;
/**
* Free-form tags for this resource. Each tag is a simple key-value pair with no predefined
* name, type, or namespace. For more information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Department": "Finance"}}
*
* @return the value
*/
public java.util.Map getFreeformTags() {
return freeformTags;
}
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more
* information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Operations": {"CostCenter": "42"}}}
*/
@com.fasterxml.jackson.annotation.JsonProperty("definedTags")
private final java.util.Map> definedTags;
/**
* Defined tags for this resource. Each key is predefined and scoped to a namespace. For more
* information, see [Resource
* Tags](https://docs.cloud.oracle.com/Content/General/Concepts/resourcetags.htm).
*
* Example: {@code {"Operations": {"CostCenter": "42"}}}
*
* @return the value
*/
public java.util.Map> getDefinedTags() {
return definedTags;
}
@Override
public String toString() {
return this.toString(true);
}
/**
* Return a string representation of the object.
*
* @param includeByteArrayContents true to include the full contents of byte arrays
* @return string representation
*/
public String toString(boolean includeByteArrayContents) {
java.lang.StringBuilder sb = new java.lang.StringBuilder();
sb.append("CreateWaasPolicyDetails(");
sb.append("super=").append(super.toString());
sb.append("compartmentId=").append(String.valueOf(this.compartmentId));
sb.append(", displayName=").append(String.valueOf(this.displayName));
sb.append(", domain=").append(String.valueOf(this.domain));
sb.append(", additionalDomains=").append(String.valueOf(this.additionalDomains));
sb.append(", origins=").append(String.valueOf(this.origins));
sb.append(", originGroups=").append(String.valueOf(this.originGroups));
sb.append(", policyConfig=").append(String.valueOf(this.policyConfig));
sb.append(", wafConfig=").append(String.valueOf(this.wafConfig));
sb.append(", freeformTags=").append(String.valueOf(this.freeformTags));
sb.append(", definedTags=").append(String.valueOf(this.definedTags));
sb.append(")");
return sb.toString();
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof CreateWaasPolicyDetails)) {
return false;
}
CreateWaasPolicyDetails other = (CreateWaasPolicyDetails) o;
return java.util.Objects.equals(this.compartmentId, other.compartmentId)
&& java.util.Objects.equals(this.displayName, other.displayName)
&& java.util.Objects.equals(this.domain, other.domain)
&& java.util.Objects.equals(this.additionalDomains, other.additionalDomains)
&& java.util.Objects.equals(this.origins, other.origins)
&& java.util.Objects.equals(this.originGroups, other.originGroups)
&& java.util.Objects.equals(this.policyConfig, other.policyConfig)
&& java.util.Objects.equals(this.wafConfig, other.wafConfig)
&& java.util.Objects.equals(this.freeformTags, other.freeformTags)
&& java.util.Objects.equals(this.definedTags, other.definedTags)
&& super.equals(other);
}
@Override
public int hashCode() {
final int PRIME = 59;
int result = 1;
result =
(result * PRIME)
+ (this.compartmentId == null ? 43 : this.compartmentId.hashCode());
result = (result * PRIME) + (this.displayName == null ? 43 : this.displayName.hashCode());
result = (result * PRIME) + (this.domain == null ? 43 : this.domain.hashCode());
result =
(result * PRIME)
+ (this.additionalDomains == null ? 43 : this.additionalDomains.hashCode());
result = (result * PRIME) + (this.origins == null ? 43 : this.origins.hashCode());
result = (result * PRIME) + (this.originGroups == null ? 43 : this.originGroups.hashCode());
result = (result * PRIME) + (this.policyConfig == null ? 43 : this.policyConfig.hashCode());
result = (result * PRIME) + (this.wafConfig == null ? 43 : this.wafConfig.hashCode());
result = (result * PRIME) + (this.freeformTags == null ? 43 : this.freeformTags.hashCode());
result = (result * PRIME) + (this.definedTags == null ? 43 : this.definedTags.hashCode());
result = (result * PRIME) + super.hashCode();
return result;
}
}