/* * 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.private5g.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 CreateNetworkSiteRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The Availability Zone that is the parent of this site. You can't change the Availability Zone after you create * the site. *
*/ private String availabilityZone; /** ** The ID of the Availability Zone that is the parent of this site. You can't change the Availability Zone after you * create the site. *
*/ private String availabilityZoneId; /** ** Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How * to ensure idempotency. *
*/ private String clientToken; /** ** The description of the site. *
*/ private String description; /** ** The Amazon Resource Name (ARN) of the network. *
*/ private String networkArn; /** ** The name of the site. You can't change the name after you create the site. *
*/ private String networkSiteName; /** ** Information about the pending plan for this site. *
*/ private SitePlan pendingPlan; /** ** The tags to apply to the network site. *
*/ private java.util.Map* The Availability Zone that is the parent of this site. You can't change the Availability Zone after you create * the site. *
* * @param availabilityZone * The Availability Zone that is the parent of this site. You can't change the Availability Zone after you * create the site. */ public void setAvailabilityZone(String availabilityZone) { this.availabilityZone = availabilityZone; } /** ** The Availability Zone that is the parent of this site. You can't change the Availability Zone after you create * the site. *
* * @return The Availability Zone that is the parent of this site. You can't change the Availability Zone after you * create the site. */ public String getAvailabilityZone() { return this.availabilityZone; } /** ** The Availability Zone that is the parent of this site. You can't change the Availability Zone after you create * the site. *
* * @param availabilityZone * The Availability Zone that is the parent of this site. You can't change the Availability Zone after you * create the site. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateNetworkSiteRequest withAvailabilityZone(String availabilityZone) { setAvailabilityZone(availabilityZone); return this; } /** ** The ID of the Availability Zone that is the parent of this site. You can't change the Availability Zone after you * create the site. *
* * @param availabilityZoneId * The ID of the Availability Zone that is the parent of this site. You can't change the Availability Zone * after you create the site. */ public void setAvailabilityZoneId(String availabilityZoneId) { this.availabilityZoneId = availabilityZoneId; } /** ** The ID of the Availability Zone that is the parent of this site. You can't change the Availability Zone after you * create the site. *
* * @return The ID of the Availability Zone that is the parent of this site. You can't change the Availability Zone * after you create the site. */ public String getAvailabilityZoneId() { return this.availabilityZoneId; } /** ** The ID of the Availability Zone that is the parent of this site. You can't change the Availability Zone after you * create the site. *
* * @param availabilityZoneId * The ID of the Availability Zone that is the parent of this site. You can't change the Availability Zone * after you create the site. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateNetworkSiteRequest withAvailabilityZoneId(String availabilityZoneId) { setAvailabilityZoneId(availabilityZoneId); return this; } /** ** Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How * to ensure idempotency. *
* * @param clientToken * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How to ensure * idempotency. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** ** Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How * to ensure idempotency. *
* * @return Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How to ensure * idempotency. */ public String getClientToken() { return this.clientToken; } /** ** Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How * to ensure idempotency. *
* * @param clientToken * Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more * information, see How to ensure * idempotency. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateNetworkSiteRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** ** The description of the site. *
* * @param description * The description of the site. */ public void setDescription(String description) { this.description = description; } /** ** The description of the site. *
* * @return The description of the site. */ public String getDescription() { return this.description; } /** ** The description of the site. *
* * @param description * The description of the site. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateNetworkSiteRequest withDescription(String description) { setDescription(description); return this; } /** ** The Amazon Resource Name (ARN) of the network. *
* * @param networkArn * The Amazon Resource Name (ARN) of the network. */ public void setNetworkArn(String networkArn) { this.networkArn = networkArn; } /** ** The Amazon Resource Name (ARN) of the network. *
* * @return The Amazon Resource Name (ARN) of the network. */ public String getNetworkArn() { return this.networkArn; } /** ** The Amazon Resource Name (ARN) of the network. *
* * @param networkArn * The Amazon Resource Name (ARN) of the network. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateNetworkSiteRequest withNetworkArn(String networkArn) { setNetworkArn(networkArn); return this; } /** ** The name of the site. You can't change the name after you create the site. *
* * @param networkSiteName * The name of the site. You can't change the name after you create the site. */ public void setNetworkSiteName(String networkSiteName) { this.networkSiteName = networkSiteName; } /** ** The name of the site. You can't change the name after you create the site. *
* * @return The name of the site. You can't change the name after you create the site. */ public String getNetworkSiteName() { return this.networkSiteName; } /** ** The name of the site. You can't change the name after you create the site. *
* * @param networkSiteName * The name of the site. You can't change the name after you create the site. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateNetworkSiteRequest withNetworkSiteName(String networkSiteName) { setNetworkSiteName(networkSiteName); return this; } /** ** Information about the pending plan for this site. *
* * @param pendingPlan * Information about the pending plan for this site. */ public void setPendingPlan(SitePlan pendingPlan) { this.pendingPlan = pendingPlan; } /** ** Information about the pending plan for this site. *
* * @return Information about the pending plan for this site. */ public SitePlan getPendingPlan() { return this.pendingPlan; } /** ** Information about the pending plan for this site. *
* * @param pendingPlan * Information about the pending plan for this site. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateNetworkSiteRequest withPendingPlan(SitePlan pendingPlan) { setPendingPlan(pendingPlan); return this; } /** ** The tags to apply to the network site. *
* * @return The tags to apply to the network site. */ public java.util.Map* The tags to apply to the network site. *
* * @param tags * The tags to apply to the network site. */ public void setTags(java.util.Map* The tags to apply to the network site. *
* * @param tags * The tags to apply to the network site. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateNetworkSiteRequest withTags(java.util.Map