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

com.amazonaws.services.ec2.model.RevokeClientVpnIngressRequest 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.RevokeClientVpnIngressRequestMarshaller;

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

    /**
     * 

* The ID of the Client VPN endpoint with which the authorization rule is associated. *

*/ private String clientVpnEndpointId; /** *

* The IPv4 address range, in CIDR notation, of the network for which access is being removed. *

*/ private String targetNetworkCidr; /** *

* The ID of the Active Directory group for which to revoke access. *

*/ private String accessGroupId; /** *

* Indicates whether access should be revoked for all clients. *

*/ private Boolean revokeAllGroups; /** *

* The ID of the Client VPN endpoint with which the authorization rule is associated. *

* * @param clientVpnEndpointId * The ID of the Client VPN endpoint with which the authorization rule is associated. */ public void setClientVpnEndpointId(String clientVpnEndpointId) { this.clientVpnEndpointId = clientVpnEndpointId; } /** *

* The ID of the Client VPN endpoint with which the authorization rule is associated. *

* * @return The ID of the Client VPN endpoint with which the authorization rule is associated. */ public String getClientVpnEndpointId() { return this.clientVpnEndpointId; } /** *

* The ID of the Client VPN endpoint with which the authorization rule is associated. *

* * @param clientVpnEndpointId * The ID of the Client VPN endpoint with which the authorization rule is associated. * @return Returns a reference to this object so that method calls can be chained together. */ public RevokeClientVpnIngressRequest withClientVpnEndpointId(String clientVpnEndpointId) { setClientVpnEndpointId(clientVpnEndpointId); return this; } /** *

* The IPv4 address range, in CIDR notation, of the network for which access is being removed. *

* * @param targetNetworkCidr * The IPv4 address range, in CIDR notation, of the network for which access is being removed. */ public void setTargetNetworkCidr(String targetNetworkCidr) { this.targetNetworkCidr = targetNetworkCidr; } /** *

* The IPv4 address range, in CIDR notation, of the network for which access is being removed. *

* * @return The IPv4 address range, in CIDR notation, of the network for which access is being removed. */ public String getTargetNetworkCidr() { return this.targetNetworkCidr; } /** *

* The IPv4 address range, in CIDR notation, of the network for which access is being removed. *

* * @param targetNetworkCidr * The IPv4 address range, in CIDR notation, of the network for which access is being removed. * @return Returns a reference to this object so that method calls can be chained together. */ public RevokeClientVpnIngressRequest withTargetNetworkCidr(String targetNetworkCidr) { setTargetNetworkCidr(targetNetworkCidr); return this; } /** *

* The ID of the Active Directory group for which to revoke access. *

* * @param accessGroupId * The ID of the Active Directory group for which to revoke access. */ public void setAccessGroupId(String accessGroupId) { this.accessGroupId = accessGroupId; } /** *

* The ID of the Active Directory group for which to revoke access. *

* * @return The ID of the Active Directory group for which to revoke access. */ public String getAccessGroupId() { return this.accessGroupId; } /** *

* The ID of the Active Directory group for which to revoke access. *

* * @param accessGroupId * The ID of the Active Directory group for which to revoke access. * @return Returns a reference to this object so that method calls can be chained together. */ public RevokeClientVpnIngressRequest withAccessGroupId(String accessGroupId) { setAccessGroupId(accessGroupId); return this; } /** *

* Indicates whether access should be revoked for all clients. *

* * @param revokeAllGroups * Indicates whether access should be revoked for all clients. */ public void setRevokeAllGroups(Boolean revokeAllGroups) { this.revokeAllGroups = revokeAllGroups; } /** *

* Indicates whether access should be revoked for all clients. *

* * @return Indicates whether access should be revoked for all clients. */ public Boolean getRevokeAllGroups() { return this.revokeAllGroups; } /** *

* Indicates whether access should be revoked for all clients. *

* * @param revokeAllGroups * Indicates whether access should be revoked for all clients. * @return Returns a reference to this object so that method calls can be chained together. */ public RevokeClientVpnIngressRequest withRevokeAllGroups(Boolean revokeAllGroups) { setRevokeAllGroups(revokeAllGroups); return this; } /** *

* Indicates whether access should be revoked for all clients. *

* * @return Indicates whether access should be revoked for all clients. */ public Boolean isRevokeAllGroups() { return this.revokeAllGroups; } /** * 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 RevokeClientVpnIngressRequestMarshaller().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 (getClientVpnEndpointId() != null) sb.append("ClientVpnEndpointId: ").append(getClientVpnEndpointId()).append(","); if (getTargetNetworkCidr() != null) sb.append("TargetNetworkCidr: ").append(getTargetNetworkCidr()).append(","); if (getAccessGroupId() != null) sb.append("AccessGroupId: ").append(getAccessGroupId()).append(","); if (getRevokeAllGroups() != null) sb.append("RevokeAllGroups: ").append(getRevokeAllGroups()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof RevokeClientVpnIngressRequest == false) return false; RevokeClientVpnIngressRequest other = (RevokeClientVpnIngressRequest) obj; if (other.getClientVpnEndpointId() == null ^ this.getClientVpnEndpointId() == null) return false; if (other.getClientVpnEndpointId() != null && other.getClientVpnEndpointId().equals(this.getClientVpnEndpointId()) == false) return false; if (other.getTargetNetworkCidr() == null ^ this.getTargetNetworkCidr() == null) return false; if (other.getTargetNetworkCidr() != null && other.getTargetNetworkCidr().equals(this.getTargetNetworkCidr()) == false) return false; if (other.getAccessGroupId() == null ^ this.getAccessGroupId() == null) return false; if (other.getAccessGroupId() != null && other.getAccessGroupId().equals(this.getAccessGroupId()) == false) return false; if (other.getRevokeAllGroups() == null ^ this.getRevokeAllGroups() == null) return false; if (other.getRevokeAllGroups() != null && other.getRevokeAllGroups().equals(this.getRevokeAllGroups()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getClientVpnEndpointId() == null) ? 0 : getClientVpnEndpointId().hashCode()); hashCode = prime * hashCode + ((getTargetNetworkCidr() == null) ? 0 : getTargetNetworkCidr().hashCode()); hashCode = prime * hashCode + ((getAccessGroupId() == null) ? 0 : getAccessGroupId().hashCode()); hashCode = prime * hashCode + ((getRevokeAllGroups() == null) ? 0 : getRevokeAllGroups().hashCode()); return hashCode; } @Override public RevokeClientVpnIngressRequest clone() { return (RevokeClientVpnIngressRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy