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!
  • # CloudSlab DNS that must be in the allowlist to protect object store workloads.
  • cloudSlabDns: String!
  • # 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 occur after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that occur before the
  • # specified cursor.
  • # sortBy: Sort fields for list of AWS EC2 instances.
  • # sortOrder: Sorts the order of 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 occur after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that occur before the
  • # specified cursor.
  • # sortBy: Sort fields for list of AWS EBS volumes.
  • # sortOrder: Sorts the order of 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 occur after the
  • # specified cursor.
  • # last: Returns the last n elements from the list.
  • # before: Returns the elements in the list that occur before the
  • # specified cursor.
  • # sortBy: Sort fields for list of AWS RDS instances.
  • # sortOrder: Sorts the order of results.
  • # rdsInstanceFilters: Filter for RDS instances.
  • awsNativeRdsInstances(
  • first: Int,
  • after: String,
  • last: Int,
  • before: String,
  • sortBy: AwsNativeRdsInstanceSortFields,
  • sortOrder: SortOrder,
  • rdsInstanceFilters: AwsNativeRdsInstanceFilters
  • ): AwsNativeRdsInstanceConnection!
  • # SLA Domain assignment which is pending on the Rubrik Security Cloud native
  • # objects.
  • rscNativeObjectPendingSla: CompactSlaDomain
  • # FID of the hierarchy object.
  • id: UUID!
  • # Name of the hierarchy object.
  • name: String!
  • # Type of this object.
  • objectType: HierarchyObjectTypeEnum!
  • # SLA Domain assignment type for this object.
  • slaAssignment: SlaAssignmentTypeEnum!
  • # Effective SLA Domain of the hierarchy object.
  • effectiveSlaDomain: SlaDomain!
  • # Pause status of the effective SLA Domain of the hierarchy object.
  • slaPauseStatus: Boolean!
  • # Distribution of the snapshots of the hierarchy object.
  • snapshotDistribution: SnapshotDistribution!
  • # Effective retention of the SLA Domain of the hierarchy object.
  • effectiveRetentionSlaDomain: SlaDomain
  • # SLA Domain configured for the hierarchy object.
  • configuredSlaDomain: SlaDomain!
  • # Path node of the effective SLA Domain source.
  • effectiveSlaSourceObject: PathNode
  • # Sequential list of this object's logical ancestors.
  • logicalPath: [PathNode!]!
  • # Sequential list of this object's physical ancestors.
  • physicalPath: [PathNode!]!
  • # Number of descendant workloads of this object.
  • numWorkloadDescendants: Int!
  • # Organizations to which this hierarchy object belongs.
  • allOrgs: [Org!]!
  • # Security posture metadata.
  • securityMetadata: SecurityMetadata
  • }