OBJECT

AwsNativeAccount

Description

AWS native account.

link GraphQL Schema definition

  • type AwsNativeAccount implements PolarisHierarchyObject, HierarchyObject {
  • # Specifies the state of account in Rubrik environment like Refreshed,
  • # Disconnected, etc. An account can be in a single state at a time.
  • status: AwsAccountStatus!
  • # Last refresh time of the account, in UTC date-time format.
  • lastRefreshedAt: DateTime
  • # List of AWS region specifications associated with the account.
  • regionSpecs: [AwsNativeRegionSpec!]!
  • # Count of EC2 Instances in the AWS Native account.
  • ec2InstanceCount: Int!
  • # Count of EBS Volumes in the AWS Native account.
  • ebsVolumeCount: Int!
  • # Count of RDS Instances in the account.
  • rdsInstanceCount: Int!
  • # Count of Amazon S3 Buckets in the AWS native account.
  • s3BucketCount: Int!
  • # AWS cloud type.
  • cloudType: AwsCloudType!
  • # Specifies the status of the cloud account associated with the feature requested.
  • cloudAccountState: CloudAccountState!
  • # The authorized operations on the object.
  • authorizedOperations: [PolarisObjectAuthorizedOperationsEnum!]!
  • # List of Exocompute configurations for the AWS account.
  • applicationCloudAccountExoConfigs: ApplicationCloudAccountToExocomputeConfig!
  • # List of all EC2 instances under this AWS Native account.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # sortBy: Sort fields for list of AWS EC2 instances.
  • # sortOrder: Sorting order for the results.
  • # ec2InstanceFilters: Filter for EC2 instances.
  • awsNativeEc2Instances(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortBy: AwsNativeEc2InstanceSortFields,
  • sortOrder: SortOrder,
  • ec2InstanceFilters: AwsNativeEc2InstanceFilters
  • ): AwsNativeEc2InstanceConnection!
  • # List of all EBS Volumes under this AWS Native account.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # sortBy: Sort fields for list of AWS EBS volumes.
  • # sortOrder: Sorting order for the results.
  • # ebsVolumeFilters: Filter for EBS volumes.
  • awsNativeEbsVolumes(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortBy: AwsNativeEbsVolumeSortFields,
  • sortOrder: SortOrder,
  • ebsVolumeFilters: AwsNativeEbsVolumeFilters
  • ): AwsNativeEbsVolumeConnection!
  • # List of all RDS Instances under this AWS Native account.
  • #
  • # Arguments
  • # first: Returns the first n elements from the list.
  • # after: Returns the elements in the list that come after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that come before the
  • # specified cursor.
  • # sortBy: Sort fields for list of AWS RDS instances.
  • # sortOrder: Sorting order for the results.
  • # rdsInstanceFilters: Filter for RDS instances.
  • awsNativeRdsInstances(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortBy: AwsNativeRdsInstanceSortFields,
  • sortOrder: SortOrder,
  • rdsInstanceFilters: AwsNativeRdsInstanceFilters
  • ): AwsNativeRdsInstanceConnection!
  • # The FID of the hierarchy object.
  • id: UUID!
  • # The name of the hierarchy object.
  • name: String!
  • # The type of this object.
  • objectType: HierarchyObjectTypeEnum!
  • # The SLA Domain assignment type for this object.
  • slaAssignment: SlaAssignmentTypeEnum!
  • # The effective SLA Domain of the hierarchy object.
  • effectiveSlaDomain: SlaDomain!
  • # The pause status of the effective SLA Domain of the hierarchy object.
  • slaPauseStatus: Boolean!
  • # The distribution of the snapshots of the hierarchy object.
  • snapshotDistribution: SnapshotDistribution!
  • # The effective retention of the SLA Domain of the hierarchy object.
  • effectiveRetentionSlaDomain: SlaDomain
  • # The SLA Domain configured for the hierarchy object.
  • configuredSlaDomain: SlaDomain!
  • # The path node of the effective SLA Domain source.
  • effectiveSlaSourceObject: PathNode
  • # A sequential list of this object's logical ancestors.
  • logicalPath: [PathNode!]!
  • # A sequential list of this object's physical ancestors.
  • physicalPath: [PathNode!]!
  • # The number of descendant workloads of this object.
  • numWorkloadDescendants: Int!
  • # The organizations to which this hierarchy object belongs.
  • allOrgs: [Org!]!
  • }