All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ec2.model.ModifyVpcEndpointServicePermissionsRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service

There is a newer version: 1.12.772
Show newest version
/*
 * 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.ec2.model;

import java.io.Serializable;
import javax.annotation.Generated;

import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.ModifyVpcEndpointServicePermissionsRequestMarshaller;

/**
 * 
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ModifyVpcEndpointServicePermissionsRequest extends AmazonWebServiceRequest implements Serializable, Cloneable,
        DryRunSupportedRequest {

    /**
     * 

* The ID of the service. *

*/ private String serviceId; /** *

* The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. To * grant permissions to all principals, specify an asterisk (*). *

*/ private com.amazonaws.internal.SdkInternalList addAllowedPrincipals; /** *

* The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list. *

*/ private com.amazonaws.internal.SdkInternalList removeAllowedPrincipals; /** *

* The ID of the service. *

* * @param serviceId * The ID of the service. */ public void setServiceId(String serviceId) { this.serviceId = serviceId; } /** *

* The ID of the service. *

* * @return The ID of the service. */ public String getServiceId() { return this.serviceId; } /** *

* The ID of the service. *

* * @param serviceId * The ID of the service. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyVpcEndpointServicePermissionsRequest withServiceId(String serviceId) { setServiceId(serviceId); return this; } /** *

* The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. To * grant permissions to all principals, specify an asterisk (*). *

* * @return The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this * list. To grant permissions to all principals, specify an asterisk (*). */ public java.util.List getAddAllowedPrincipals() { if (addAllowedPrincipals == null) { addAllowedPrincipals = new com.amazonaws.internal.SdkInternalList(); } return addAllowedPrincipals; } /** *

* The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. To * grant permissions to all principals, specify an asterisk (*). *

* * @param addAllowedPrincipals * The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. * To grant permissions to all principals, specify an asterisk (*). */ public void setAddAllowedPrincipals(java.util.Collection addAllowedPrincipals) { if (addAllowedPrincipals == null) { this.addAllowedPrincipals = null; return; } this.addAllowedPrincipals = new com.amazonaws.internal.SdkInternalList(addAllowedPrincipals); } /** *

* The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. To * grant permissions to all principals, specify an asterisk (*). *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setAddAllowedPrincipals(java.util.Collection)} or {@link #withAddAllowedPrincipals(java.util.Collection)} * if you want to override the existing values. *

* * @param addAllowedPrincipals * The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. * To grant permissions to all principals, specify an asterisk (*). * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyVpcEndpointServicePermissionsRequest withAddAllowedPrincipals(String... addAllowedPrincipals) { if (this.addAllowedPrincipals == null) { setAddAllowedPrincipals(new com.amazonaws.internal.SdkInternalList(addAllowedPrincipals.length)); } for (String ele : addAllowedPrincipals) { this.addAllowedPrincipals.add(ele); } return this; } /** *

* The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. To * grant permissions to all principals, specify an asterisk (*). *

* * @param addAllowedPrincipals * The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. * To grant permissions to all principals, specify an asterisk (*). * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyVpcEndpointServicePermissionsRequest withAddAllowedPrincipals(java.util.Collection addAllowedPrincipals) { setAddAllowedPrincipals(addAllowedPrincipals); return this; } /** *

* The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list. *

* * @return The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list. */ public java.util.List getRemoveAllowedPrincipals() { if (removeAllowedPrincipals == null) { removeAllowedPrincipals = new com.amazonaws.internal.SdkInternalList(); } return removeAllowedPrincipals; } /** *

* The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list. *

* * @param removeAllowedPrincipals * The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list. */ public void setRemoveAllowedPrincipals(java.util.Collection removeAllowedPrincipals) { if (removeAllowedPrincipals == null) { this.removeAllowedPrincipals = null; return; } this.removeAllowedPrincipals = new com.amazonaws.internal.SdkInternalList(removeAllowedPrincipals); } /** *

* The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setRemoveAllowedPrincipals(java.util.Collection)} or * {@link #withRemoveAllowedPrincipals(java.util.Collection)} if you want to override the existing values. *

* * @param removeAllowedPrincipals * The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyVpcEndpointServicePermissionsRequest withRemoveAllowedPrincipals(String... removeAllowedPrincipals) { if (this.removeAllowedPrincipals == null) { setRemoveAllowedPrincipals(new com.amazonaws.internal.SdkInternalList(removeAllowedPrincipals.length)); } for (String ele : removeAllowedPrincipals) { this.removeAllowedPrincipals.add(ele); } return this; } /** *

* The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list. *

* * @param removeAllowedPrincipals * The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyVpcEndpointServicePermissionsRequest withRemoveAllowedPrincipals(java.util.Collection removeAllowedPrincipals) { setRemoveAllowedPrincipals(removeAllowedPrincipals); return this; } /** * This method is intended for internal use only. Returns the marshaled request configured with additional * parameters to enable operation dry-run. */ @Override public Request getDryRunRequest() { Request request = new ModifyVpcEndpointServicePermissionsRequestMarshaller().marshall(this); request.addParameter("DryRun", Boolean.toString(true)); return request; } /** * 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 (getServiceId() != null) sb.append("ServiceId: ").append(getServiceId()).append(","); if (getAddAllowedPrincipals() != null) sb.append("AddAllowedPrincipals: ").append(getAddAllowedPrincipals()).append(","); if (getRemoveAllowedPrincipals() != null) sb.append("RemoveAllowedPrincipals: ").append(getRemoveAllowedPrincipals()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ModifyVpcEndpointServicePermissionsRequest == false) return false; ModifyVpcEndpointServicePermissionsRequest other = (ModifyVpcEndpointServicePermissionsRequest) obj; if (other.getServiceId() == null ^ this.getServiceId() == null) return false; if (other.getServiceId() != null && other.getServiceId().equals(this.getServiceId()) == false) return false; if (other.getAddAllowedPrincipals() == null ^ this.getAddAllowedPrincipals() == null) return false; if (other.getAddAllowedPrincipals() != null && other.getAddAllowedPrincipals().equals(this.getAddAllowedPrincipals()) == false) return false; if (other.getRemoveAllowedPrincipals() == null ^ this.getRemoveAllowedPrincipals() == null) return false; if (other.getRemoveAllowedPrincipals() != null && other.getRemoveAllowedPrincipals().equals(this.getRemoveAllowedPrincipals()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getServiceId() == null) ? 0 : getServiceId().hashCode()); hashCode = prime * hashCode + ((getAddAllowedPrincipals() == null) ? 0 : getAddAllowedPrincipals().hashCode()); hashCode = prime * hashCode + ((getRemoveAllowedPrincipals() == null) ? 0 : getRemoveAllowedPrincipals().hashCode()); return hashCode; } @Override public ModifyVpcEndpointServicePermissionsRequest clone() { return (ModifyVpcEndpointServicePermissionsRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy