Example usage for com.amazonaws.services.rds.model DBInstance getDBParameterGroups

List of usage examples for com.amazonaws.services.rds.model DBInstance getDBParameterGroups

Introduction

In this page you can find the example usage for com.amazonaws.services.rds.model DBInstance getDBParameterGroups.

Prototype


public java.util.List<DBParameterGroupStatus> getDBParameterGroups() 

Source Link

Document

Provides the list of DB parameter groups applied to this DB instance.

Usage

From source file:com.airbnb.billow.RDSInstance.java

public RDSInstance(DBInstance instance, DBCluster cluster, List<Tag> tagList) {
    this.allocatedStorage = instance.getAllocatedStorage();
    this.autoMinorVersionUpgrade = instance.getAutoMinorVersionUpgrade();
    this.availabilityZone = instance.getAvailabilityZone();
    this.backupRetentionPeriod = instance.getBackupRetentionPeriod();
    this.characterSetName = instance.getCharacterSetName();
    this.dBInstanceClass = instance.getDBInstanceClass();
    this.dBInstanceIdentifier = instance.getDBInstanceIdentifier();
    this.dBInstanceStatus = instance.getDBInstanceStatus();
    this.dBClusterIdentifier = instance.getDBClusterIdentifier();
    this.dBName = instance.getDBName();
    this.dBParameterGroups = instance.getDBParameterGroups();
    this.dBSecurityGroups = instance.getDBSecurityGroups();
    this.dBSubnetGroup = instance.getDBSubnetGroup();
    this.endpoint = instance.getEndpoint();
    if (this.endpoint != null) {
        this.hostname = endpoint.getAddress();
        this.privateIP = getPrivateIp(hostname);
    } else {// www  . j av a  2  s. c om
        this.hostname = null;
        this.privateIP = null;
    }
    this.engine = instance.getEngine();
    this.engineVersion = instance.getEngineVersion();
    this.instanceCreateTime = instance.getInstanceCreateTime();
    this.iops = instance.getIops();
    this.latestRestorableTime = instance.getLatestRestorableTime();
    this.licenseModel = instance.getLicenseModel();
    this.masterUsername = instance.getMasterUsername();
    this.multiAZ = instance.getMultiAZ();
    this.optionGroupMemberships = instance.getOptionGroupMemberships();
    this.pendingModifiedValues = instance.getPendingModifiedValues();
    this.preferredBackupWindow = instance.getPreferredBackupWindow();
    this.preferredMaintenanceWindow = instance.getPreferredMaintenanceWindow();
    this.publiclyAccessible = instance.getPubliclyAccessible();
    this.readReplicaDBInstanceIdentifiers = instance.getReadReplicaDBInstanceIdentifiers();
    this.readReplicaSourceDBInstanceIdentifier = instance.getReadReplicaSourceDBInstanceIdentifier();
    this.secondaryAvailabilityZone = instance.getSecondaryAvailabilityZone();
    this.statusInfos = instance.getStatusInfos();
    this.vpcSecurityGroups = instance.getVpcSecurityGroups();
    this.isMaster = checkIfMaster(instance, cluster);

    this.tags = new HashMap<>(tagList.size());
    for (Tag tag : tagList) {
        this.tags.put(tag.getKey(), tag.getValue());
    }
}

From source file:com.msi.tough.rdsquery.RDSQueryUtil.java

public static void marshalDBParameterGroupStatus(XMLNode parent, DBInstance dbInstance) {
    List<DBParameterGroupStatus> dbpGroups = dbInstance.getDBParameterGroups();
    if (dbpGroups != null && dbpGroups.size() > 0) {
        XMLNode nodeGroups = QueryUtil.addNode(parent, RDS_Constants.NODE_DBPARAMETERGROUPS);
        for (DBParameterGroupStatus status : dbpGroups) {
            XMLNode nodeGroup = QueryUtil.addNode(nodeGroups, RDS_Constants.NODE_DBPARAMETERGROUP);
            QueryUtil.addNode(nodeGroup, RDS_Constants.NODE_DBPARAMETERGROUPNAME,
                    status.getDBParameterGroupName());
            QueryUtil.addNode(nodeGroup, RDS_Constants.NODE_PARAMETERAPPLYSTATUS,
                    status.getParameterApplyStatus());
        }/*from   w w  w  .  j a va  2 s.c  o  m*/
    }
}