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

com.amazonaws.services.fms.model.AdminAccountSummary Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Firewall Management module holds the client classes that are used for communicating with Firewall Management 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.fms.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Contains high level information about the Firewall Manager administrator account. *

* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AdminAccountSummary implements Serializable, Cloneable, StructuredPojo { /** *

* The Amazon Web Services account ID of the Firewall Manager administrator's account. *

*/ private String adminAccount; /** *

* A boolean value that indicates if the administrator is the default administrator. If true, then this is the * default administrator account. The default administrator can manage third-party firewalls and has full * administrative scope. There is only one default administrator account per organization. For information about * Firewall Manager default administrator accounts, see Managing Firewall Manager * administrators in the Firewall Manager Developer Guide. *

*/ private Boolean defaultAdmin; /** *

* The current status of the request to onboard a member account as an Firewall Manager administrator. *

*
    *
  • *

    * ONBOARDING - The account is onboarding to Firewall Manager as an administrator. *

    *
  • *
  • *

    * ONBOARDING_COMPLETE - Firewall Manager The account is onboarded to Firewall Manager as an * administrator, and can perform actions on the resources defined in their AdminScope. *

    *
  • *
  • *

    * OFFBOARDING - The account is being removed as an Firewall Manager administrator. *

    *
  • *
  • *

    * OFFBOARDING_COMPLETE - The account has been removed as an Firewall Manager administrator. *

    *
  • *
*/ private String status; /** *

* The Amazon Web Services account ID of the Firewall Manager administrator's account. *

* * @param adminAccount * The Amazon Web Services account ID of the Firewall Manager administrator's account. */ public void setAdminAccount(String adminAccount) { this.adminAccount = adminAccount; } /** *

* The Amazon Web Services account ID of the Firewall Manager administrator's account. *

* * @return The Amazon Web Services account ID of the Firewall Manager administrator's account. */ public String getAdminAccount() { return this.adminAccount; } /** *

* The Amazon Web Services account ID of the Firewall Manager administrator's account. *

* * @param adminAccount * The Amazon Web Services account ID of the Firewall Manager administrator's account. * @return Returns a reference to this object so that method calls can be chained together. */ public AdminAccountSummary withAdminAccount(String adminAccount) { setAdminAccount(adminAccount); return this; } /** *

* A boolean value that indicates if the administrator is the default administrator. If true, then this is the * default administrator account. The default administrator can manage third-party firewalls and has full * administrative scope. There is only one default administrator account per organization. For information about * Firewall Manager default administrator accounts, see Managing Firewall Manager * administrators in the Firewall Manager Developer Guide. *

* * @param defaultAdmin * A boolean value that indicates if the administrator is the default administrator. If true, then this is * the default administrator account. The default administrator can manage third-party firewalls and has full * administrative scope. There is only one default administrator account per organization. For information * about Firewall Manager default administrator accounts, see Managing Firewall * Manager administrators in the Firewall Manager Developer Guide. */ public void setDefaultAdmin(Boolean defaultAdmin) { this.defaultAdmin = defaultAdmin; } /** *

* A boolean value that indicates if the administrator is the default administrator. If true, then this is the * default administrator account. The default administrator can manage third-party firewalls and has full * administrative scope. There is only one default administrator account per organization. For information about * Firewall Manager default administrator accounts, see Managing Firewall Manager * administrators in the Firewall Manager Developer Guide. *

* * @return A boolean value that indicates if the administrator is the default administrator. If true, then this is * the default administrator account. The default administrator can manage third-party firewalls and has * full administrative scope. There is only one default administrator account per organization. For * information about Firewall Manager default administrator accounts, see Managing Firewall * Manager administrators in the Firewall Manager Developer Guide. */ public Boolean getDefaultAdmin() { return this.defaultAdmin; } /** *

* A boolean value that indicates if the administrator is the default administrator. If true, then this is the * default administrator account. The default administrator can manage third-party firewalls and has full * administrative scope. There is only one default administrator account per organization. For information about * Firewall Manager default administrator accounts, see Managing Firewall Manager * administrators in the Firewall Manager Developer Guide. *

* * @param defaultAdmin * A boolean value that indicates if the administrator is the default administrator. If true, then this is * the default administrator account. The default administrator can manage third-party firewalls and has full * administrative scope. There is only one default administrator account per organization. For information * about Firewall Manager default administrator accounts, see Managing Firewall * Manager administrators in the Firewall Manager Developer Guide. * @return Returns a reference to this object so that method calls can be chained together. */ public AdminAccountSummary withDefaultAdmin(Boolean defaultAdmin) { setDefaultAdmin(defaultAdmin); return this; } /** *

* A boolean value that indicates if the administrator is the default administrator. If true, then this is the * default administrator account. The default administrator can manage third-party firewalls and has full * administrative scope. There is only one default administrator account per organization. For information about * Firewall Manager default administrator accounts, see Managing Firewall Manager * administrators in the Firewall Manager Developer Guide. *

* * @return A boolean value that indicates if the administrator is the default administrator. If true, then this is * the default administrator account. The default administrator can manage third-party firewalls and has * full administrative scope. There is only one default administrator account per organization. For * information about Firewall Manager default administrator accounts, see Managing Firewall * Manager administrators in the Firewall Manager Developer Guide. */ public Boolean isDefaultAdmin() { return this.defaultAdmin; } /** *

* The current status of the request to onboard a member account as an Firewall Manager administrator. *

*
    *
  • *

    * ONBOARDING - The account is onboarding to Firewall Manager as an administrator. *

    *
  • *
  • *

    * ONBOARDING_COMPLETE - Firewall Manager The account is onboarded to Firewall Manager as an * administrator, and can perform actions on the resources defined in their AdminScope. *

    *
  • *
  • *

    * OFFBOARDING - The account is being removed as an Firewall Manager administrator. *

    *
  • *
  • *

    * OFFBOARDING_COMPLETE - The account has been removed as an Firewall Manager administrator. *

    *
  • *
* * @param status * The current status of the request to onboard a member account as an Firewall Manager administrator.

*
    *
  • *

    * ONBOARDING - The account is onboarding to Firewall Manager as an administrator. *

    *
  • *
  • *

    * ONBOARDING_COMPLETE - Firewall Manager The account is onboarded to Firewall Manager as an * administrator, and can perform actions on the resources defined in their AdminScope. *

    *
  • *
  • *

    * OFFBOARDING - The account is being removed as an Firewall Manager administrator. *

    *
  • *
  • *

    * OFFBOARDING_COMPLETE - The account has been removed as an Firewall Manager administrator. *

    *
  • * @see OrganizationStatus */ public void setStatus(String status) { this.status = status; } /** *

    * The current status of the request to onboard a member account as an Firewall Manager administrator. *

    *
      *
    • *

      * ONBOARDING - The account is onboarding to Firewall Manager as an administrator. *

      *
    • *
    • *

      * ONBOARDING_COMPLETE - Firewall Manager The account is onboarded to Firewall Manager as an * administrator, and can perform actions on the resources defined in their AdminScope. *

      *
    • *
    • *

      * OFFBOARDING - The account is being removed as an Firewall Manager administrator. *

      *
    • *
    • *

      * OFFBOARDING_COMPLETE - The account has been removed as an Firewall Manager administrator. *

      *
    • *
    * * @return The current status of the request to onboard a member account as an Firewall Manager administrator.

    *
      *
    • *

      * ONBOARDING - The account is onboarding to Firewall Manager as an administrator. *

      *
    • *
    • *

      * ONBOARDING_COMPLETE - Firewall Manager The account is onboarded to Firewall Manager as an * administrator, and can perform actions on the resources defined in their AdminScope. *

      *
    • *
    • *

      * OFFBOARDING - The account is being removed as an Firewall Manager administrator. *

      *
    • *
    • *

      * OFFBOARDING_COMPLETE - The account has been removed as an Firewall Manager administrator. *

      *
    • * @see OrganizationStatus */ public String getStatus() { return this.status; } /** *

      * The current status of the request to onboard a member account as an Firewall Manager administrator. *

      *
        *
      • *

        * ONBOARDING - The account is onboarding to Firewall Manager as an administrator. *

        *
      • *
      • *

        * ONBOARDING_COMPLETE - Firewall Manager The account is onboarded to Firewall Manager as an * administrator, and can perform actions on the resources defined in their AdminScope. *

        *
      • *
      • *

        * OFFBOARDING - The account is being removed as an Firewall Manager administrator. *

        *
      • *
      • *

        * OFFBOARDING_COMPLETE - The account has been removed as an Firewall Manager administrator. *

        *
      • *
      * * @param status * The current status of the request to onboard a member account as an Firewall Manager administrator.

      *
        *
      • *

        * ONBOARDING - The account is onboarding to Firewall Manager as an administrator. *

        *
      • *
      • *

        * ONBOARDING_COMPLETE - Firewall Manager The account is onboarded to Firewall Manager as an * administrator, and can perform actions on the resources defined in their AdminScope. *

        *
      • *
      • *

        * OFFBOARDING - The account is being removed as an Firewall Manager administrator. *

        *
      • *
      • *

        * OFFBOARDING_COMPLETE - The account has been removed as an Firewall Manager administrator. *

        *
      • * @return Returns a reference to this object so that method calls can be chained together. * @see OrganizationStatus */ public AdminAccountSummary withStatus(String status) { setStatus(status); return this; } /** *

        * The current status of the request to onboard a member account as an Firewall Manager administrator. *

        *
          *
        • *

          * ONBOARDING - The account is onboarding to Firewall Manager as an administrator. *

          *
        • *
        • *

          * ONBOARDING_COMPLETE - Firewall Manager The account is onboarded to Firewall Manager as an * administrator, and can perform actions on the resources defined in their AdminScope. *

          *
        • *
        • *

          * OFFBOARDING - The account is being removed as an Firewall Manager administrator. *

          *
        • *
        • *

          * OFFBOARDING_COMPLETE - The account has been removed as an Firewall Manager administrator. *

          *
        • *
        * * @param status * The current status of the request to onboard a member account as an Firewall Manager administrator.

        *
          *
        • *

          * ONBOARDING - The account is onboarding to Firewall Manager as an administrator. *

          *
        • *
        • *

          * ONBOARDING_COMPLETE - Firewall Manager The account is onboarded to Firewall Manager as an * administrator, and can perform actions on the resources defined in their AdminScope. *

          *
        • *
        • *

          * OFFBOARDING - The account is being removed as an Firewall Manager administrator. *

          *
        • *
        • *

          * OFFBOARDING_COMPLETE - The account has been removed as an Firewall Manager administrator. *

          *
        • * @return Returns a reference to this object so that method calls can be chained together. * @see OrganizationStatus */ public AdminAccountSummary withStatus(OrganizationStatus status) { this.status = status.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 (getAdminAccount() != null) sb.append("AdminAccount: ").append(getAdminAccount()).append(","); if (getDefaultAdmin() != null) sb.append("DefaultAdmin: ").append(getDefaultAdmin()).append(","); if (getStatus() != null) sb.append("Status: ").append(getStatus()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AdminAccountSummary == false) return false; AdminAccountSummary other = (AdminAccountSummary) obj; if (other.getAdminAccount() == null ^ this.getAdminAccount() == null) return false; if (other.getAdminAccount() != null && other.getAdminAccount().equals(this.getAdminAccount()) == false) return false; if (other.getDefaultAdmin() == null ^ this.getDefaultAdmin() == null) return false; if (other.getDefaultAdmin() != null && other.getDefaultAdmin().equals(this.getDefaultAdmin()) == false) return false; if (other.getStatus() == null ^ this.getStatus() == null) return false; if (other.getStatus() != null && other.getStatus().equals(this.getStatus()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAdminAccount() == null) ? 0 : getAdminAccount().hashCode()); hashCode = prime * hashCode + ((getDefaultAdmin() == null) ? 0 : getDefaultAdmin().hashCode()); hashCode = prime * hashCode + ((getStatus() == null) ? 0 : getStatus().hashCode()); return hashCode; } @Override public AdminAccountSummary clone() { try { return (AdminAccountSummary) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.fms.model.transform.AdminAccountSummaryMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy