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

com.amazonaws.services.ec2.model.CreateVerifiedAccessTrustProviderRequest 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.780
Show newest version
/*
 * Copyright 2019-2024 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.CreateVerifiedAccessTrustProviderRequestMarshaller;

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

    /**
     * 

* The type of trust provider. *

*/ private String trustProviderType; /** *

* The type of user-based trust provider. This parameter is required when the provider type is user. *

*/ private String userTrustProviderType; /** *

* The type of device-based trust provider. This parameter is required when the provider type is device * . *

*/ private String deviceTrustProviderType; /** *

* The options for a OpenID Connect-compatible user-identity trust provider. This parameter is required when the * provider type is user. *

*/ private CreateVerifiedAccessTrustProviderOidcOptions oidcOptions; /** *

* The options for a device-based trust provider. This parameter is required when the provider type is * device. *

*/ private CreateVerifiedAccessTrustProviderDeviceOptions deviceOptions; /** *

* The identifier to be used when working with policy rules. *

*/ private String policyReferenceName; /** *

* A description for the Verified Access trust provider. *

*/ private String description; /** *

* The tags to assign to the Verified Access trust provider. *

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

* A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more * information, see Ensuring * idempotency. *

*/ private String clientToken; /** *

* The options for server side encryption. *

*/ private VerifiedAccessSseSpecificationRequest sseSpecification; /** *

* The type of trust provider. *

* * @param trustProviderType * The type of trust provider. * @see TrustProviderType */ public void setTrustProviderType(String trustProviderType) { this.trustProviderType = trustProviderType; } /** *

* The type of trust provider. *

* * @return The type of trust provider. * @see TrustProviderType */ public String getTrustProviderType() { return this.trustProviderType; } /** *

* The type of trust provider. *

* * @param trustProviderType * The type of trust provider. * @return Returns a reference to this object so that method calls can be chained together. * @see TrustProviderType */ public CreateVerifiedAccessTrustProviderRequest withTrustProviderType(String trustProviderType) { setTrustProviderType(trustProviderType); return this; } /** *

* The type of trust provider. *

* * @param trustProviderType * The type of trust provider. * @return Returns a reference to this object so that method calls can be chained together. * @see TrustProviderType */ public CreateVerifiedAccessTrustProviderRequest withTrustProviderType(TrustProviderType trustProviderType) { this.trustProviderType = trustProviderType.toString(); return this; } /** *

* The type of user-based trust provider. This parameter is required when the provider type is user. *

* * @param userTrustProviderType * The type of user-based trust provider. This parameter is required when the provider type is * user. * @see UserTrustProviderType */ public void setUserTrustProviderType(String userTrustProviderType) { this.userTrustProviderType = userTrustProviderType; } /** *

* The type of user-based trust provider. This parameter is required when the provider type is user. *

* * @return The type of user-based trust provider. This parameter is required when the provider type is * user. * @see UserTrustProviderType */ public String getUserTrustProviderType() { return this.userTrustProviderType; } /** *

* The type of user-based trust provider. This parameter is required when the provider type is user. *

* * @param userTrustProviderType * The type of user-based trust provider. This parameter is required when the provider type is * user. * @return Returns a reference to this object so that method calls can be chained together. * @see UserTrustProviderType */ public CreateVerifiedAccessTrustProviderRequest withUserTrustProviderType(String userTrustProviderType) { setUserTrustProviderType(userTrustProviderType); return this; } /** *

* The type of user-based trust provider. This parameter is required when the provider type is user. *

* * @param userTrustProviderType * The type of user-based trust provider. This parameter is required when the provider type is * user. * @return Returns a reference to this object so that method calls can be chained together. * @see UserTrustProviderType */ public CreateVerifiedAccessTrustProviderRequest withUserTrustProviderType(UserTrustProviderType userTrustProviderType) { this.userTrustProviderType = userTrustProviderType.toString(); return this; } /** *

* The type of device-based trust provider. This parameter is required when the provider type is device * . *

* * @param deviceTrustProviderType * The type of device-based trust provider. This parameter is required when the provider type is * device. * @see DeviceTrustProviderType */ public void setDeviceTrustProviderType(String deviceTrustProviderType) { this.deviceTrustProviderType = deviceTrustProviderType; } /** *

* The type of device-based trust provider. This parameter is required when the provider type is device * . *

* * @return The type of device-based trust provider. This parameter is required when the provider type is * device. * @see DeviceTrustProviderType */ public String getDeviceTrustProviderType() { return this.deviceTrustProviderType; } /** *

* The type of device-based trust provider. This parameter is required when the provider type is device * . *

* * @param deviceTrustProviderType * The type of device-based trust provider. This parameter is required when the provider type is * device. * @return Returns a reference to this object so that method calls can be chained together. * @see DeviceTrustProviderType */ public CreateVerifiedAccessTrustProviderRequest withDeviceTrustProviderType(String deviceTrustProviderType) { setDeviceTrustProviderType(deviceTrustProviderType); return this; } /** *

* The type of device-based trust provider. This parameter is required when the provider type is device * . *

* * @param deviceTrustProviderType * The type of device-based trust provider. This parameter is required when the provider type is * device. * @return Returns a reference to this object so that method calls can be chained together. * @see DeviceTrustProviderType */ public CreateVerifiedAccessTrustProviderRequest withDeviceTrustProviderType(DeviceTrustProviderType deviceTrustProviderType) { this.deviceTrustProviderType = deviceTrustProviderType.toString(); return this; } /** *

* The options for a OpenID Connect-compatible user-identity trust provider. This parameter is required when the * provider type is user. *

* * @param oidcOptions * The options for a OpenID Connect-compatible user-identity trust provider. This parameter is required when * the provider type is user. */ public void setOidcOptions(CreateVerifiedAccessTrustProviderOidcOptions oidcOptions) { this.oidcOptions = oidcOptions; } /** *

* The options for a OpenID Connect-compatible user-identity trust provider. This parameter is required when the * provider type is user. *

* * @return The options for a OpenID Connect-compatible user-identity trust provider. This parameter is required when * the provider type is user. */ public CreateVerifiedAccessTrustProviderOidcOptions getOidcOptions() { return this.oidcOptions; } /** *

* The options for a OpenID Connect-compatible user-identity trust provider. This parameter is required when the * provider type is user. *

* * @param oidcOptions * The options for a OpenID Connect-compatible user-identity trust provider. This parameter is required when * the provider type is user. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVerifiedAccessTrustProviderRequest withOidcOptions(CreateVerifiedAccessTrustProviderOidcOptions oidcOptions) { setOidcOptions(oidcOptions); return this; } /** *

* The options for a device-based trust provider. This parameter is required when the provider type is * device. *

* * @param deviceOptions * The options for a device-based trust provider. This parameter is required when the provider type is * device. */ public void setDeviceOptions(CreateVerifiedAccessTrustProviderDeviceOptions deviceOptions) { this.deviceOptions = deviceOptions; } /** *

* The options for a device-based trust provider. This parameter is required when the provider type is * device. *

* * @return The options for a device-based trust provider. This parameter is required when the provider type is * device. */ public CreateVerifiedAccessTrustProviderDeviceOptions getDeviceOptions() { return this.deviceOptions; } /** *

* The options for a device-based trust provider. This parameter is required when the provider type is * device. *

* * @param deviceOptions * The options for a device-based trust provider. This parameter is required when the provider type is * device. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVerifiedAccessTrustProviderRequest withDeviceOptions(CreateVerifiedAccessTrustProviderDeviceOptions deviceOptions) { setDeviceOptions(deviceOptions); return this; } /** *

* The identifier to be used when working with policy rules. *

* * @param policyReferenceName * The identifier to be used when working with policy rules. */ public void setPolicyReferenceName(String policyReferenceName) { this.policyReferenceName = policyReferenceName; } /** *

* The identifier to be used when working with policy rules. *

* * @return The identifier to be used when working with policy rules. */ public String getPolicyReferenceName() { return this.policyReferenceName; } /** *

* The identifier to be used when working with policy rules. *

* * @param policyReferenceName * The identifier to be used when working with policy rules. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVerifiedAccessTrustProviderRequest withPolicyReferenceName(String policyReferenceName) { setPolicyReferenceName(policyReferenceName); return this; } /** *

* A description for the Verified Access trust provider. *

* * @param description * A description for the Verified Access trust provider. */ public void setDescription(String description) { this.description = description; } /** *

* A description for the Verified Access trust provider. *

* * @return A description for the Verified Access trust provider. */ public String getDescription() { return this.description; } /** *

* A description for the Verified Access trust provider. *

* * @param description * A description for the Verified Access trust provider. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVerifiedAccessTrustProviderRequest withDescription(String description) { setDescription(description); return this; } /** *

* The tags to assign to the Verified Access trust provider. *

* * @return The tags to assign to the Verified Access trust provider. */ public java.util.List getTagSpecifications() { if (tagSpecifications == null) { tagSpecifications = new com.amazonaws.internal.SdkInternalList(); } return tagSpecifications; } /** *

* The tags to assign to the Verified Access trust provider. *

* * @param tagSpecifications * The tags to assign to the Verified Access trust provider. */ public void setTagSpecifications(java.util.Collection tagSpecifications) { if (tagSpecifications == null) { this.tagSpecifications = null; return; } this.tagSpecifications = new com.amazonaws.internal.SdkInternalList(tagSpecifications); } /** *

* The tags to assign to the Verified Access trust provider. *

*

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

* * @param tagSpecifications * The tags to assign to the Verified Access trust provider. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVerifiedAccessTrustProviderRequest withTagSpecifications(TagSpecification... tagSpecifications) { if (this.tagSpecifications == null) { setTagSpecifications(new com.amazonaws.internal.SdkInternalList(tagSpecifications.length)); } for (TagSpecification ele : tagSpecifications) { this.tagSpecifications.add(ele); } return this; } /** *

* The tags to assign to the Verified Access trust provider. *

* * @param tagSpecifications * The tags to assign to the Verified Access trust provider. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVerifiedAccessTrustProviderRequest withTagSpecifications(java.util.Collection tagSpecifications) { setTagSpecifications(tagSpecifications); return this; } /** *

* A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more * information, see Ensuring * idempotency. *

* * @param clientToken * A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For * more information, see Ensuring idempotency. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more * information, see Ensuring * idempotency. *

* * @return A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For * more information, see Ensuring idempotency. */ public String getClientToken() { return this.clientToken; } /** *

* A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more * information, see Ensuring * idempotency. *

* * @param clientToken * A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For * more information, see Ensuring idempotency. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVerifiedAccessTrustProviderRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* The options for server side encryption. *

* * @param sseSpecification * The options for server side encryption. */ public void setSseSpecification(VerifiedAccessSseSpecificationRequest sseSpecification) { this.sseSpecification = sseSpecification; } /** *

* The options for server side encryption. *

* * @return The options for server side encryption. */ public VerifiedAccessSseSpecificationRequest getSseSpecification() { return this.sseSpecification; } /** *

* The options for server side encryption. *

* * @param sseSpecification * The options for server side encryption. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVerifiedAccessTrustProviderRequest withSseSpecification(VerifiedAccessSseSpecificationRequest sseSpecification) { setSseSpecification(sseSpecification); 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 CreateVerifiedAccessTrustProviderRequestMarshaller().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 (getTrustProviderType() != null) sb.append("TrustProviderType: ").append(getTrustProviderType()).append(","); if (getUserTrustProviderType() != null) sb.append("UserTrustProviderType: ").append(getUserTrustProviderType()).append(","); if (getDeviceTrustProviderType() != null) sb.append("DeviceTrustProviderType: ").append(getDeviceTrustProviderType()).append(","); if (getOidcOptions() != null) sb.append("OidcOptions: ").append(getOidcOptions()).append(","); if (getDeviceOptions() != null) sb.append("DeviceOptions: ").append(getDeviceOptions()).append(","); if (getPolicyReferenceName() != null) sb.append("PolicyReferenceName: ").append(getPolicyReferenceName()).append(","); if (getDescription() != null) sb.append("Description: ").append(getDescription()).append(","); if (getTagSpecifications() != null) sb.append("TagSpecifications: ").append(getTagSpecifications()).append(","); if (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getSseSpecification() != null) sb.append("SseSpecification: ").append(getSseSpecification()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof CreateVerifiedAccessTrustProviderRequest == false) return false; CreateVerifiedAccessTrustProviderRequest other = (CreateVerifiedAccessTrustProviderRequest) obj; if (other.getTrustProviderType() == null ^ this.getTrustProviderType() == null) return false; if (other.getTrustProviderType() != null && other.getTrustProviderType().equals(this.getTrustProviderType()) == false) return false; if (other.getUserTrustProviderType() == null ^ this.getUserTrustProviderType() == null) return false; if (other.getUserTrustProviderType() != null && other.getUserTrustProviderType().equals(this.getUserTrustProviderType()) == false) return false; if (other.getDeviceTrustProviderType() == null ^ this.getDeviceTrustProviderType() == null) return false; if (other.getDeviceTrustProviderType() != null && other.getDeviceTrustProviderType().equals(this.getDeviceTrustProviderType()) == false) return false; if (other.getOidcOptions() == null ^ this.getOidcOptions() == null) return false; if (other.getOidcOptions() != null && other.getOidcOptions().equals(this.getOidcOptions()) == false) return false; if (other.getDeviceOptions() == null ^ this.getDeviceOptions() == null) return false; if (other.getDeviceOptions() != null && other.getDeviceOptions().equals(this.getDeviceOptions()) == false) return false; if (other.getPolicyReferenceName() == null ^ this.getPolicyReferenceName() == null) return false; if (other.getPolicyReferenceName() != null && other.getPolicyReferenceName().equals(this.getPolicyReferenceName()) == false) return false; if (other.getDescription() == null ^ this.getDescription() == null) return false; if (other.getDescription() != null && other.getDescription().equals(this.getDescription()) == false) return false; if (other.getTagSpecifications() == null ^ this.getTagSpecifications() == null) return false; if (other.getTagSpecifications() != null && other.getTagSpecifications().equals(this.getTagSpecifications()) == false) return false; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getSseSpecification() == null ^ this.getSseSpecification() == null) return false; if (other.getSseSpecification() != null && other.getSseSpecification().equals(this.getSseSpecification()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getTrustProviderType() == null) ? 0 : getTrustProviderType().hashCode()); hashCode = prime * hashCode + ((getUserTrustProviderType() == null) ? 0 : getUserTrustProviderType().hashCode()); hashCode = prime * hashCode + ((getDeviceTrustProviderType() == null) ? 0 : getDeviceTrustProviderType().hashCode()); hashCode = prime * hashCode + ((getOidcOptions() == null) ? 0 : getOidcOptions().hashCode()); hashCode = prime * hashCode + ((getDeviceOptions() == null) ? 0 : getDeviceOptions().hashCode()); hashCode = prime * hashCode + ((getPolicyReferenceName() == null) ? 0 : getPolicyReferenceName().hashCode()); hashCode = prime * hashCode + ((getDescription() == null) ? 0 : getDescription().hashCode()); hashCode = prime * hashCode + ((getTagSpecifications() == null) ? 0 : getTagSpecifications().hashCode()); hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getSseSpecification() == null) ? 0 : getSseSpecification().hashCode()); return hashCode; } @Override public CreateVerifiedAccessTrustProviderRequest clone() { return (CreateVerifiedAccessTrustProviderRequest) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy