/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.glue.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class PutResourcePolicyRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* Contains the policy document to set, in JSON format. *
*/ private String policyInJson; /** ** Do not use. For internal use only. *
*/ private String resourceArn; /** *
* The hash value returned when the previous policy was set using PutResourcePolicy
. Its purpose is to
* prevent concurrent modifications of a policy. Do not use this parameter if no previous policy has been set.
*
* A value of MUST_EXIST
is used to update a policy. A value of NOT_EXIST
is used to
* create a new policy. If a value of NONE
or a null value is used, the call does not depend on the
* existence of a policy.
*
* If 'TRUE'
, indicates that you are using both methods to grant cross-account access to Data Catalog
* resources:
*
* By directly updating the resource policy with PutResourePolicy
*
* By using the Grant permissions command on the Amazon Web Services Management Console. *
*
* Must be set to 'TRUE'
if you have already used the Management Console to grant cross-account access,
* otherwise the call fails. Default is 'FALSE'.
*
* Contains the policy document to set, in JSON format. *
* * @param policyInJson * Contains the policy document to set, in JSON format. */ public void setPolicyInJson(String policyInJson) { this.policyInJson = policyInJson; } /** ** Contains the policy document to set, in JSON format. *
* * @return Contains the policy document to set, in JSON format. */ public String getPolicyInJson() { return this.policyInJson; } /** ** Contains the policy document to set, in JSON format. *
* * @param policyInJson * Contains the policy document to set, in JSON format. * @return Returns a reference to this object so that method calls can be chained together. */ public PutResourcePolicyRequest withPolicyInJson(String policyInJson) { setPolicyInJson(policyInJson); return this; } /** ** Do not use. For internal use only. *
* * @param resourceArn * Do not use. For internal use only. */ public void setResourceArn(String resourceArn) { this.resourceArn = resourceArn; } /** ** Do not use. For internal use only. *
* * @return Do not use. For internal use only. */ public String getResourceArn() { return this.resourceArn; } /** ** Do not use. For internal use only. *
* * @param resourceArn * Do not use. For internal use only. * @return Returns a reference to this object so that method calls can be chained together. */ public PutResourcePolicyRequest withResourceArn(String resourceArn) { setResourceArn(resourceArn); return this; } /** *
* The hash value returned when the previous policy was set using PutResourcePolicy
. Its purpose is to
* prevent concurrent modifications of a policy. Do not use this parameter if no previous policy has been set.
*
PutResourcePolicy
. Its purpose
* is to prevent concurrent modifications of a policy. Do not use this parameter if no previous policy has
* been set.
*/
public void setPolicyHashCondition(String policyHashCondition) {
this.policyHashCondition = policyHashCondition;
}
/**
*
* The hash value returned when the previous policy was set using PutResourcePolicy
. Its purpose is to
* prevent concurrent modifications of a policy. Do not use this parameter if no previous policy has been set.
*
PutResourcePolicy
. Its
* purpose is to prevent concurrent modifications of a policy. Do not use this parameter if no previous
* policy has been set.
*/
public String getPolicyHashCondition() {
return this.policyHashCondition;
}
/**
*
* The hash value returned when the previous policy was set using PutResourcePolicy
. Its purpose is to
* prevent concurrent modifications of a policy. Do not use this parameter if no previous policy has been set.
*
PutResourcePolicy
. Its purpose
* is to prevent concurrent modifications of a policy. Do not use this parameter if no previous policy has
* been set.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PutResourcePolicyRequest withPolicyHashCondition(String policyHashCondition) {
setPolicyHashCondition(policyHashCondition);
return this;
}
/**
*
* A value of MUST_EXIST
is used to update a policy. A value of NOT_EXIST
is used to
* create a new policy. If a value of NONE
or a null value is used, the call does not depend on the
* existence of a policy.
*
MUST_EXIST
is used to update a policy. A value of NOT_EXIST
is used
* to create a new policy. If a value of NONE
or a null value is used, the call does not depend
* on the existence of a policy.
* @see ExistCondition
*/
public void setPolicyExistsCondition(String policyExistsCondition) {
this.policyExistsCondition = policyExistsCondition;
}
/**
*
* A value of MUST_EXIST
is used to update a policy. A value of NOT_EXIST
is used to
* create a new policy. If a value of NONE
or a null value is used, the call does not depend on the
* existence of a policy.
*
MUST_EXIST
is used to update a policy. A value of NOT_EXIST
is used
* to create a new policy. If a value of NONE
or a null value is used, the call does not depend
* on the existence of a policy.
* @see ExistCondition
*/
public String getPolicyExistsCondition() {
return this.policyExistsCondition;
}
/**
*
* A value of MUST_EXIST
is used to update a policy. A value of NOT_EXIST
is used to
* create a new policy. If a value of NONE
or a null value is used, the call does not depend on the
* existence of a policy.
*
MUST_EXIST
is used to update a policy. A value of NOT_EXIST
is used
* to create a new policy. If a value of NONE
or a null value is used, the call does not depend
* on the existence of a policy.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ExistCondition
*/
public PutResourcePolicyRequest withPolicyExistsCondition(String policyExistsCondition) {
setPolicyExistsCondition(policyExistsCondition);
return this;
}
/**
*
* A value of MUST_EXIST
is used to update a policy. A value of NOT_EXIST
is used to
* create a new policy. If a value of NONE
or a null value is used, the call does not depend on the
* existence of a policy.
*
MUST_EXIST
is used to update a policy. A value of NOT_EXIST
is used
* to create a new policy. If a value of NONE
or a null value is used, the call does not depend
* on the existence of a policy.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ExistCondition
*/
public PutResourcePolicyRequest withPolicyExistsCondition(ExistCondition policyExistsCondition) {
this.policyExistsCondition = policyExistsCondition.toString();
return this;
}
/**
*
* If 'TRUE'
, indicates that you are using both methods to grant cross-account access to Data Catalog
* resources:
*
* By directly updating the resource policy with PutResourePolicy
*
* By using the Grant permissions command on the Amazon Web Services Management Console. *
*
* Must be set to 'TRUE'
if you have already used the Management Console to grant cross-account access,
* otherwise the call fails. Default is 'FALSE'.
*
'TRUE'
, indicates that you are using both methods to grant cross-account access to Data
* Catalog resources:
*
* By directly updating the resource policy with PutResourePolicy
*
* By using the Grant permissions command on the Amazon Web Services Management Console. *
*
* Must be set to 'TRUE'
if you have already used the Management Console to grant cross-account
* access, otherwise the call fails. Default is 'FALSE'.
* @see EnableHybridValues
*/
public void setEnableHybrid(String enableHybrid) {
this.enableHybrid = enableHybrid;
}
/**
*
* If 'TRUE'
, indicates that you are using both methods to grant cross-account access to Data Catalog
* resources:
*
* By directly updating the resource policy with PutResourePolicy
*
* By using the Grant permissions command on the Amazon Web Services Management Console. *
*
* Must be set to 'TRUE'
if you have already used the Management Console to grant cross-account access,
* otherwise the call fails. Default is 'FALSE'.
*
'TRUE'
, indicates that you are using both methods to grant cross-account access to Data
* Catalog resources:
*
* By directly updating the resource policy with PutResourePolicy
*
* By using the Grant permissions command on the Amazon Web Services Management Console. *
*
* Must be set to 'TRUE'
if you have already used the Management Console to grant cross-account
* access, otherwise the call fails. Default is 'FALSE'.
* @see EnableHybridValues
*/
public String getEnableHybrid() {
return this.enableHybrid;
}
/**
*
* If 'TRUE'
, indicates that you are using both methods to grant cross-account access to Data Catalog
* resources:
*
* By directly updating the resource policy with PutResourePolicy
*
* By using the Grant permissions command on the Amazon Web Services Management Console. *
*
* Must be set to 'TRUE'
if you have already used the Management Console to grant cross-account access,
* otherwise the call fails. Default is 'FALSE'.
*
'TRUE'
, indicates that you are using both methods to grant cross-account access to Data
* Catalog resources:
*
* By directly updating the resource policy with PutResourePolicy
*
* By using the Grant permissions command on the Amazon Web Services Management Console. *
*
* Must be set to 'TRUE'
if you have already used the Management Console to grant cross-account
* access, otherwise the call fails. Default is 'FALSE'.
* @return Returns a reference to this object so that method calls can be chained together.
* @see EnableHybridValues
*/
public PutResourcePolicyRequest withEnableHybrid(String enableHybrid) {
setEnableHybrid(enableHybrid);
return this;
}
/**
*
* If 'TRUE'
, indicates that you are using both methods to grant cross-account access to Data Catalog
* resources:
*
* By directly updating the resource policy with PutResourePolicy
*
* By using the Grant permissions command on the Amazon Web Services Management Console. *
*
* Must be set to 'TRUE'
if you have already used the Management Console to grant cross-account access,
* otherwise the call fails. Default is 'FALSE'.
*
'TRUE'
, indicates that you are using both methods to grant cross-account access to Data
* Catalog resources:
*
* By directly updating the resource policy with PutResourePolicy
*
* By using the Grant permissions command on the Amazon Web Services Management Console. *
*
* Must be set to 'TRUE'
if you have already used the Management Console to grant cross-account
* access, otherwise the call fails. Default is 'FALSE'.
* @return Returns a reference to this object so that method calls can be chained together.
* @see EnableHybridValues
*/
public PutResourcePolicyRequest withEnableHybrid(EnableHybridValues enableHybrid) {
this.enableHybrid = enableHybrid.toString();
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getPolicyInJson() != null)
sb.append("PolicyInJson: ").append(getPolicyInJson()).append(",");
if (getResourceArn() != null)
sb.append("ResourceArn: ").append(getResourceArn()).append(",");
if (getPolicyHashCondition() != null)
sb.append("PolicyHashCondition: ").append(getPolicyHashCondition()).append(",");
if (getPolicyExistsCondition() != null)
sb.append("PolicyExistsCondition: ").append(getPolicyExistsCondition()).append(",");
if (getEnableHybrid() != null)
sb.append("EnableHybrid: ").append(getEnableHybrid());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof PutResourcePolicyRequest == false)
return false;
PutResourcePolicyRequest other = (PutResourcePolicyRequest) obj;
if (other.getPolicyInJson() == null ^ this.getPolicyInJson() == null)
return false;
if (other.getPolicyInJson() != null && other.getPolicyInJson().equals(this.getPolicyInJson()) == false)
return false;
if (other.getResourceArn() == null ^ this.getResourceArn() == null)
return false;
if (other.getResourceArn() != null && other.getResourceArn().equals(this.getResourceArn()) == false)
return false;
if (other.getPolicyHashCondition() == null ^ this.getPolicyHashCondition() == null)
return false;
if (other.getPolicyHashCondition() != null && other.getPolicyHashCondition().equals(this.getPolicyHashCondition()) == false)
return false;
if (other.getPolicyExistsCondition() == null ^ this.getPolicyExistsCondition() == null)
return false;
if (other.getPolicyExistsCondition() != null && other.getPolicyExistsCondition().equals(this.getPolicyExistsCondition()) == false)
return false;
if (other.getEnableHybrid() == null ^ this.getEnableHybrid() == null)
return false;
if (other.getEnableHybrid() != null && other.getEnableHybrid().equals(this.getEnableHybrid()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getPolicyInJson() == null) ? 0 : getPolicyInJson().hashCode());
hashCode = prime * hashCode + ((getResourceArn() == null) ? 0 : getResourceArn().hashCode());
hashCode = prime * hashCode + ((getPolicyHashCondition() == null) ? 0 : getPolicyHashCondition().hashCode());
hashCode = prime * hashCode + ((getPolicyExistsCondition() == null) ? 0 : getPolicyExistsCondition().hashCode());
hashCode = prime * hashCode + ((getEnableHybrid() == null) ? 0 : getEnableHybrid().hashCode());
return hashCode;
}
@Override
public PutResourcePolicyRequest clone() {
return (PutResourcePolicyRequest) super.clone();
}
}