1. Packages
  2. Packages
  3. Google Cloud (GCP) Classic
  4. API Docs
  5. storage
  6. getControlProjectIntelligenceFinding
Viewing docs for Google Cloud v9.30.0
published on Monday, Jul 13, 2026 by Pulumi
gcp logo
Viewing docs for Google Cloud v9.30.0
published on Monday, Jul 13, 2026 by Pulumi

    Retrieves information about a specific Cloud Storage intelligence finding in a project and location.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const finding = gcp.storage.getControlProjectIntelligenceFinding({
        project: "my-project-id",
        findingId: "cross_region_egress_spike_insight_1",
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    finding = gcp.storage.get_control_project_intelligence_finding(project="my-project-id",
        finding_id="cross_region_egress_spike_insight_1")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/storage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := storage.GetControlProjectIntelligenceFinding(ctx, &storage.GetControlProjectIntelligenceFindingArgs{
    			Project:   pulumi.StringRef("my-project-id"),
    			FindingId: "cross_region_egress_spike_insight_1",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var finding = Gcp.Storage.GetControlProjectIntelligenceFinding.Invoke(new()
        {
            Project = "my-project-id",
            FindingId = "cross_region_egress_spike_insight_1",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.storage.StorageFunctions;
    import com.pulumi.gcp.storage.inputs.GetControlProjectIntelligenceFindingArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var finding = StorageFunctions.getControlProjectIntelligenceFinding(GetControlProjectIntelligenceFindingArgs.builder()
                .project("my-project-id")
                .findingId("cross_region_egress_spike_insight_1")
                .build());
    
        }
    }
    
    variables:
      finding:
        fn::invoke:
          function: gcp:storage:getControlProjectIntelligenceFinding
          arguments:
            project: my-project-id
            findingId: cross_region_egress_spike_insight_1
    
    pulumi {
      required_providers {
        gcp = {
          source = "pulumi/gcp"
        }
      }
    }
    
    data "gcp_storage_getcontrolprojectintelligencefinding" "finding" {
      project    = "my-project-id"
      finding_id = "cross_region_egress_spike_insight_1"
    }
    

    Using getControlProjectIntelligenceFinding

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getControlProjectIntelligenceFinding(args: GetControlProjectIntelligenceFindingArgs, opts?: InvokeOptions): Promise<GetControlProjectIntelligenceFindingResult>
    function getControlProjectIntelligenceFindingOutput(args: GetControlProjectIntelligenceFindingOutputArgs, opts?: InvokeOptions): Output<GetControlProjectIntelligenceFindingResult>
    def get_control_project_intelligence_finding(finding_id: Optional[str] = None,
                                                 location: Optional[str] = None,
                                                 project: Optional[str] = None,
                                                 opts: Optional[InvokeOptions] = None) -> GetControlProjectIntelligenceFindingResult
    def get_control_project_intelligence_finding_output(finding_id: pulumi.Input[Optional[str]] = None,
                                                 location: pulumi.Input[Optional[str]] = None,
                                                 project: pulumi.Input[Optional[str]] = None,
                                                 opts: Optional[InvokeOptions] = None) -> Output[GetControlProjectIntelligenceFindingResult]
    func GetControlProjectIntelligenceFinding(ctx *Context, args *GetControlProjectIntelligenceFindingArgs, opts ...InvokeOption) (*GetControlProjectIntelligenceFindingResult, error)
    func GetControlProjectIntelligenceFindingOutput(ctx *Context, args *GetControlProjectIntelligenceFindingOutputArgs, opts ...InvokeOption) GetControlProjectIntelligenceFindingResultOutput

    > Note: This function is named GetControlProjectIntelligenceFinding in the Go SDK.

    public static class GetControlProjectIntelligenceFinding 
    {
        public static Task<GetControlProjectIntelligenceFindingResult> InvokeAsync(GetControlProjectIntelligenceFindingArgs args, InvokeOptions? opts = null)
        public static Output<GetControlProjectIntelligenceFindingResult> Invoke(GetControlProjectIntelligenceFindingInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetControlProjectIntelligenceFindingResult> getControlProjectIntelligenceFinding(GetControlProjectIntelligenceFindingArgs args, InvokeOptions options)
    public static Output<GetControlProjectIntelligenceFindingResult> getControlProjectIntelligenceFinding(GetControlProjectIntelligenceFindingArgs args, InvokeOptions options)
    
    fn::invoke:
      function: gcp:storage/getControlProjectIntelligenceFinding:getControlProjectIntelligenceFinding
      arguments:
        # arguments dictionary
    data "gcp_storage_getcontrolprojectintelligencefinding" "name" {
        # arguments
    }

    The following arguments are supported:

    FindingId string
    The ID of the intelligence finding.
    Location string
    The location of the intelligence finding. Currently default value is global and users cannot use for input for now.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    FindingId string
    The ID of the intelligence finding.
    Location string
    The location of the intelligence finding. Currently default value is global and users cannot use for input for now.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    finding_id string
    The ID of the intelligence finding.
    location string
    The location of the intelligence finding. Currently default value is global and users cannot use for input for now.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    findingId String
    The ID of the intelligence finding.
    location String
    The location of the intelligence finding. Currently default value is global and users cannot use for input for now.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    findingId string
    The ID of the intelligence finding.
    location string
    The location of the intelligence finding. Currently default value is global and users cannot use for input for now.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    finding_id str
    The ID of the intelligence finding.
    location str
    The location of the intelligence finding. Currently default value is global and users cannot use for input for now.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    findingId String
    The ID of the intelligence finding.
    location String
    The location of the intelligence finding. Currently default value is global and users cannot use for input for now.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

    getControlProjectIntelligenceFinding Result

    The following output properties are available:

    AssociatedResources List<string>
    Google Cloud resource names that are relevant to the IntelligenceFinding. This list also includes the targetResource.
    Category string
    The category of the finding.
    ColdlineAndArchivalStorageOperationsSpikes List<GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpike>
    A finding about a spike in Class A or Class B operations on Coldline or Archive Cloud Storage objects. Structure is documented below.
    CreateTime string
    The time when the finding was created.
    CrossRegionEgressSpikes List<GetControlProjectIntelligenceFindingCrossRegionEgressSpike>
    A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
    Description string
    A short description of the finding.
    FindingId string
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name of the finding.
    ObservationPeriods List<GetControlProjectIntelligenceFindingObservationPeriod>
    The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
    Project string
    Severity string
    The severity of the finding.
    StorageGrowthAboveTrends List<GetControlProjectIntelligenceFindingStorageGrowthAboveTrend>
    A finding about a spike in storage growth (bytes or object count) that is outside the normal historical trend. Structure is documented below.
    TargetResource string
    The fully qualified resource name of the resource that this IntelligenceFinding applies to.
    ThrottledRequestsSpikes List<GetControlProjectIntelligenceFindingThrottledRequestsSpike>
    A finding about a spike in throttled requests (429 errors) within a project. Structure is documented below.
    Type string
    The type of this finding.
    UpdateTime string
    The time when the finding was last updated.
    Location string
    AssociatedResources []string
    Google Cloud resource names that are relevant to the IntelligenceFinding. This list also includes the targetResource.
    Category string
    The category of the finding.
    ColdlineAndArchivalStorageOperationsSpikes []GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpike
    A finding about a spike in Class A or Class B operations on Coldline or Archive Cloud Storage objects. Structure is documented below.
    CreateTime string
    The time when the finding was created.
    CrossRegionEgressSpikes []GetControlProjectIntelligenceFindingCrossRegionEgressSpike
    A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
    Description string
    A short description of the finding.
    FindingId string
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name of the finding.
    ObservationPeriods []GetControlProjectIntelligenceFindingObservationPeriod
    The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
    Project string
    Severity string
    The severity of the finding.
    StorageGrowthAboveTrends []GetControlProjectIntelligenceFindingStorageGrowthAboveTrend
    A finding about a spike in storage growth (bytes or object count) that is outside the normal historical trend. Structure is documented below.
    TargetResource string
    The fully qualified resource name of the resource that this IntelligenceFinding applies to.
    ThrottledRequestsSpikes []GetControlProjectIntelligenceFindingThrottledRequestsSpike
    A finding about a spike in throttled requests (429 errors) within a project. Structure is documented below.
    Type string
    The type of this finding.
    UpdateTime string
    The time when the finding was last updated.
    Location string
    associated_resources list(string)
    Google Cloud resource names that are relevant to the IntelligenceFinding. This list also includes the targetResource.
    category string
    The category of the finding.
    coldline_and_archival_storage_operations_spikes list(object)
    A finding about a spike in Class A or Class B operations on Coldline or Archive Cloud Storage objects. Structure is documented below.
    create_time string
    The time when the finding was created.
    cross_region_egress_spikes list(object)
    A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
    description string
    A short description of the finding.
    finding_id string
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The resource name of the finding.
    observation_periods list(object)
    The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
    project string
    severity string
    The severity of the finding.
    storage_growth_above_trends list(object)
    A finding about a spike in storage growth (bytes or object count) that is outside the normal historical trend. Structure is documented below.
    target_resource string
    The fully qualified resource name of the resource that this IntelligenceFinding applies to.
    throttled_requests_spikes list(object)
    A finding about a spike in throttled requests (429 errors) within a project. Structure is documented below.
    type string
    The type of this finding.
    update_time string
    The time when the finding was last updated.
    location string
    associatedResources List<String>
    Google Cloud resource names that are relevant to the IntelligenceFinding. This list also includes the targetResource.
    category String
    The category of the finding.
    coldlineAndArchivalStorageOperationsSpikes List<GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpike>
    A finding about a spike in Class A or Class B operations on Coldline or Archive Cloud Storage objects. Structure is documented below.
    createTime String
    The time when the finding was created.
    crossRegionEgressSpikes List<GetControlProjectIntelligenceFindingCrossRegionEgressSpike>
    A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
    description String
    A short description of the finding.
    findingId String
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name of the finding.
    observationPeriods List<GetControlProjectIntelligenceFindingObservationPeriod>
    The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
    project String
    severity String
    The severity of the finding.
    storageGrowthAboveTrends List<GetControlProjectIntelligenceFindingStorageGrowthAboveTrend>
    A finding about a spike in storage growth (bytes or object count) that is outside the normal historical trend. Structure is documented below.
    targetResource String
    The fully qualified resource name of the resource that this IntelligenceFinding applies to.
    throttledRequestsSpikes List<GetControlProjectIntelligenceFindingThrottledRequestsSpike>
    A finding about a spike in throttled requests (429 errors) within a project. Structure is documented below.
    type String
    The type of this finding.
    updateTime String
    The time when the finding was last updated.
    location String
    associatedResources string[]
    Google Cloud resource names that are relevant to the IntelligenceFinding. This list also includes the targetResource.
    category string
    The category of the finding.
    coldlineAndArchivalStorageOperationsSpikes GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpike[]
    A finding about a spike in Class A or Class B operations on Coldline or Archive Cloud Storage objects. Structure is documented below.
    createTime string
    The time when the finding was created.
    crossRegionEgressSpikes GetControlProjectIntelligenceFindingCrossRegionEgressSpike[]
    A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
    description string
    A short description of the finding.
    findingId string
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The resource name of the finding.
    observationPeriods GetControlProjectIntelligenceFindingObservationPeriod[]
    The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
    project string
    severity string
    The severity of the finding.
    storageGrowthAboveTrends GetControlProjectIntelligenceFindingStorageGrowthAboveTrend[]
    A finding about a spike in storage growth (bytes or object count) that is outside the normal historical trend. Structure is documented below.
    targetResource string
    The fully qualified resource name of the resource that this IntelligenceFinding applies to.
    throttledRequestsSpikes GetControlProjectIntelligenceFindingThrottledRequestsSpike[]
    A finding about a spike in throttled requests (429 errors) within a project. Structure is documented below.
    type string
    The type of this finding.
    updateTime string
    The time when the finding was last updated.
    location string
    associated_resources Sequence[str]
    Google Cloud resource names that are relevant to the IntelligenceFinding. This list also includes the targetResource.
    category str
    The category of the finding.
    coldline_and_archival_storage_operations_spikes Sequence[GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpike]
    A finding about a spike in Class A or Class B operations on Coldline or Archive Cloud Storage objects. Structure is documented below.
    create_time str
    The time when the finding was created.
    cross_region_egress_spikes Sequence[GetControlProjectIntelligenceFindingCrossRegionEgressSpike]
    A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
    description str
    A short description of the finding.
    finding_id str
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The resource name of the finding.
    observation_periods Sequence[GetControlProjectIntelligenceFindingObservationPeriod]
    The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
    project str
    severity str
    The severity of the finding.
    storage_growth_above_trends Sequence[GetControlProjectIntelligenceFindingStorageGrowthAboveTrend]
    A finding about a spike in storage growth (bytes or object count) that is outside the normal historical trend. Structure is documented below.
    target_resource str
    The fully qualified resource name of the resource that this IntelligenceFinding applies to.
    throttled_requests_spikes Sequence[GetControlProjectIntelligenceFindingThrottledRequestsSpike]
    A finding about a spike in throttled requests (429 errors) within a project. Structure is documented below.
    type str
    The type of this finding.
    update_time str
    The time when the finding was last updated.
    location str
    associatedResources List<String>
    Google Cloud resource names that are relevant to the IntelligenceFinding. This list also includes the targetResource.
    category String
    The category of the finding.
    coldlineAndArchivalStorageOperationsSpikes List<Property Map>
    A finding about a spike in Class A or Class B operations on Coldline or Archive Cloud Storage objects. Structure is documented below.
    createTime String
    The time when the finding was created.
    crossRegionEgressSpikes List<Property Map>
    A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
    description String
    A short description of the finding.
    findingId String
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name of the finding.
    observationPeriods List<Property Map>
    The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
    project String
    severity String
    The severity of the finding.
    storageGrowthAboveTrends List<Property Map>
    A finding about a spike in storage growth (bytes or object count) that is outside the normal historical trend. Structure is documented below.
    targetResource String
    The fully qualified resource name of the resource that this IntelligenceFinding applies to.
    throttledRequestsSpikes List<Property Map>
    A finding about a spike in throttled requests (429 errors) within a project. Structure is documented below.
    type String
    The type of this finding.
    updateTime String
    The time when the finding was last updated.
    location String

    Supporting Types

    GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpike

    PercentageIncrease double
    The percentage increase for this prefix.
    TopBuckets List<GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucket>
    The top buckets contributing to the spike. Structure is documented below.
    TotalOperationsCount string
    The total operations count for this prefix.
    PercentageIncrease float64
    The percentage increase for this prefix.
    TopBuckets []GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucket
    The top buckets contributing to the spike. Structure is documented below.
    TotalOperationsCount string
    The total operations count for this prefix.
    percentage_increase number
    The percentage increase for this prefix.
    top_buckets list(object)
    The top buckets contributing to the spike. Structure is documented below.
    total_operations_count string
    The total operations count for this prefix.
    percentageIncrease Double
    The percentage increase for this prefix.
    topBuckets List<GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucket>
    The top buckets contributing to the spike. Structure is documented below.
    totalOperationsCount String
    The total operations count for this prefix.
    percentageIncrease number
    The percentage increase for this prefix.
    topBuckets GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucket[]
    The top buckets contributing to the spike. Structure is documented below.
    totalOperationsCount string
    The total operations count for this prefix.
    percentage_increase float
    The percentage increase for this prefix.
    top_buckets Sequence[GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucket]
    The top buckets contributing to the spike. Structure is documented below.
    total_operations_count str
    The total operations count for this prefix.
    percentageIncrease Number
    The percentage increase for this prefix.
    topBuckets List<Property Map>
    The top buckets contributing to the spike. Structure is documented below.
    totalOperationsCount String
    The total operations count for this prefix.

    GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucket

    Bucket string
    The resource name of the bucket.
    Contributions List<GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContribution>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    Errors List<GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketError>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    PercentageIncrease double
    The percentage increase for this prefix.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    TotalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    Bucket string
    The resource name of the bucket.
    Contributions []GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContribution
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    Errors []GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketError
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    PercentageIncrease float64
    The percentage increase for this prefix.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    TotalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    bucket string
    The resource name of the bucket.
    contributions list(object)
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors list(object)
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentage_increase number
    The percentage increase for this prefix.
    throttled_requests string
    The number of throttled requests for this prefix.
    total_egress_bytes string
    The total egress bytes for this prefix.
    total_operations_count string
    The total operations count for this prefix.
    total_storage_growth_bytes string
    The total storage growth in bytes for this bucket.
    bucket String
    The resource name of the bucket.
    contributions List<GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContribution>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors List<GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketError>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease Double
    The percentage increase for this prefix.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    totalStorageGrowthBytes String
    The total storage growth in bytes for this bucket.
    bucket string
    The resource name of the bucket.
    contributions GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContribution[]
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketError[]
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease number
    The percentage increase for this prefix.
    throttledRequests string
    The number of throttled requests for this prefix.
    totalEgressBytes string
    The total egress bytes for this prefix.
    totalOperationsCount string
    The total operations count for this prefix.
    totalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    bucket str
    The resource name of the bucket.
    contributions Sequence[GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContribution]
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors Sequence[GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketError]
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentage_increase float
    The percentage increase for this prefix.
    throttled_requests str
    The number of throttled requests for this prefix.
    total_egress_bytes str
    The total egress bytes for this prefix.
    total_operations_count str
    The total operations count for this prefix.
    total_storage_growth_bytes str
    The total storage growth in bytes for this bucket.
    bucket String
    The resource name of the bucket.
    contributions List<Property Map>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors List<Property Map>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease Number
    The percentage increase for this prefix.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    totalStorageGrowthBytes String
    The total storage growth in bytes for this bucket.

    GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContribution

    TopPrefixes List<GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContributionTopPrefix>
    A list of top prefixes contributing to the finding. Structure is documented below.
    TopPrefixes []GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContributionTopPrefix
    A list of top prefixes contributing to the finding. Structure is documented below.
    top_prefixes list(object)
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes List<GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContributionTopPrefix>
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContributionTopPrefix[]
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes List<Property Map>
    A list of top prefixes contributing to the finding. Structure is documented below.

    GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketContributionTopPrefix

    PercentageIncrease double
    The percentage increase for this prefix.
    Prefix string
    The prefix string.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    PercentageIncrease float64
    The percentage increase for this prefix.
    Prefix string
    The prefix string.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    percentage_increase number
    The percentage increase for this prefix.
    prefix string
    The prefix string.
    throttled_requests string
    The number of throttled requests for this prefix.
    total_egress_bytes string
    The total egress bytes for this prefix.
    total_operations_count string
    The total operations count for this prefix.
    percentageIncrease Double
    The percentage increase for this prefix.
    prefix String
    The prefix string.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    percentageIncrease number
    The percentage increase for this prefix.
    prefix string
    The prefix string.
    throttledRequests string
    The number of throttled requests for this prefix.
    totalEgressBytes string
    The total egress bytes for this prefix.
    totalOperationsCount string
    The total operations count for this prefix.
    percentage_increase float
    The percentage increase for this prefix.
    prefix str
    The prefix string.
    throttled_requests str
    The number of throttled requests for this prefix.
    total_egress_bytes str
    The total egress bytes for this prefix.
    total_operations_count str
    The total operations count for this prefix.
    percentageIncrease Number
    The percentage increase for this prefix.
    prefix String
    The prefix string.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.

    GetControlProjectIntelligenceFindingColdlineAndArchivalStorageOperationsSpikeTopBucketError

    Code int
    The error code.
    Message string
    The error message.
    Code int
    The error code.
    Message string
    The error message.
    code number
    The error code.
    message string
    The error message.
    code Integer
    The error code.
    message String
    The error message.
    code number
    The error code.
    message string
    The error message.
    code int
    The error code.
    message str
    The error message.
    code Number
    The error code.
    message String
    The error message.

    GetControlProjectIntelligenceFindingCrossRegionEgressSpike

    PercentageIncrease double
    The percentage increase for this prefix.
    TopBuckets List<GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucket>
    The top buckets contributing to the spike. Structure is documented below.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    PercentageIncrease float64
    The percentage increase for this prefix.
    TopBuckets []GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucket
    The top buckets contributing to the spike. Structure is documented below.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    percentage_increase number
    The percentage increase for this prefix.
    top_buckets list(object)
    The top buckets contributing to the spike. Structure is documented below.
    total_egress_bytes string
    The total egress bytes for this prefix.
    percentageIncrease Double
    The percentage increase for this prefix.
    topBuckets List<GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucket>
    The top buckets contributing to the spike. Structure is documented below.
    totalEgressBytes String
    The total egress bytes for this prefix.
    percentageIncrease number
    The percentage increase for this prefix.
    topBuckets GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucket[]
    The top buckets contributing to the spike. Structure is documented below.
    totalEgressBytes string
    The total egress bytes for this prefix.
    percentage_increase float
    The percentage increase for this prefix.
    top_buckets Sequence[GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucket]
    The top buckets contributing to the spike. Structure is documented below.
    total_egress_bytes str
    The total egress bytes for this prefix.
    percentageIncrease Number
    The percentage increase for this prefix.
    topBuckets List<Property Map>
    The top buckets contributing to the spike. Structure is documented below.
    totalEgressBytes String
    The total egress bytes for this prefix.

    GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucket

    Bucket string
    The resource name of the bucket.
    Contributions List<GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContribution>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    Errors List<GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketError>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    PercentageIncrease double
    The percentage increase for this prefix.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    TotalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    Bucket string
    The resource name of the bucket.
    Contributions []GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContribution
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    Errors []GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketError
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    PercentageIncrease float64
    The percentage increase for this prefix.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    TotalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    bucket string
    The resource name of the bucket.
    contributions list(object)
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors list(object)
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentage_increase number
    The percentage increase for this prefix.
    throttled_requests string
    The number of throttled requests for this prefix.
    total_egress_bytes string
    The total egress bytes for this prefix.
    total_operations_count string
    The total operations count for this prefix.
    total_storage_growth_bytes string
    The total storage growth in bytes for this bucket.
    bucket String
    The resource name of the bucket.
    contributions List<GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContribution>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors List<GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketError>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease Double
    The percentage increase for this prefix.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    totalStorageGrowthBytes String
    The total storage growth in bytes for this bucket.
    bucket string
    The resource name of the bucket.
    contributions GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContribution[]
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketError[]
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease number
    The percentage increase for this prefix.
    throttledRequests string
    The number of throttled requests for this prefix.
    totalEgressBytes string
    The total egress bytes for this prefix.
    totalOperationsCount string
    The total operations count for this prefix.
    totalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    bucket str
    The resource name of the bucket.
    contributions Sequence[GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContribution]
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors Sequence[GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketError]
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentage_increase float
    The percentage increase for this prefix.
    throttled_requests str
    The number of throttled requests for this prefix.
    total_egress_bytes str
    The total egress bytes for this prefix.
    total_operations_count str
    The total operations count for this prefix.
    total_storage_growth_bytes str
    The total storage growth in bytes for this bucket.
    bucket String
    The resource name of the bucket.
    contributions List<Property Map>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors List<Property Map>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease Number
    The percentage increase for this prefix.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    totalStorageGrowthBytes String
    The total storage growth in bytes for this bucket.

    GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContribution

    TopPrefixes List<GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContributionTopPrefix>
    A list of top prefixes contributing to the finding. Structure is documented below.
    TopPrefixes []GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContributionTopPrefix
    A list of top prefixes contributing to the finding. Structure is documented below.
    top_prefixes list(object)
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes List<GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContributionTopPrefix>
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContributionTopPrefix[]
    A list of top prefixes contributing to the finding. Structure is documented below.
    top_prefixes Sequence[GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContributionTopPrefix]
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes List<Property Map>
    A list of top prefixes contributing to the finding. Structure is documented below.

    GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketContributionTopPrefix

    PercentageIncrease double
    The percentage increase for this prefix.
    Prefix string
    The prefix string.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    PercentageIncrease float64
    The percentage increase for this prefix.
    Prefix string
    The prefix string.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    percentage_increase number
    The percentage increase for this prefix.
    prefix string
    The prefix string.
    throttled_requests string
    The number of throttled requests for this prefix.
    total_egress_bytes string
    The total egress bytes for this prefix.
    total_operations_count string
    The total operations count for this prefix.
    percentageIncrease Double
    The percentage increase for this prefix.
    prefix String
    The prefix string.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    percentageIncrease number
    The percentage increase for this prefix.
    prefix string
    The prefix string.
    throttledRequests string
    The number of throttled requests for this prefix.
    totalEgressBytes string
    The total egress bytes for this prefix.
    totalOperationsCount string
    The total operations count for this prefix.
    percentage_increase float
    The percentage increase for this prefix.
    prefix str
    The prefix string.
    throttled_requests str
    The number of throttled requests for this prefix.
    total_egress_bytes str
    The total egress bytes for this prefix.
    total_operations_count str
    The total operations count for this prefix.
    percentageIncrease Number
    The percentage increase for this prefix.
    prefix String
    The prefix string.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.

    GetControlProjectIntelligenceFindingCrossRegionEgressSpikeTopBucketError

    Code int
    The error code.
    Message string
    The error message.
    Code int
    The error code.
    Message string
    The error message.
    code number
    The error code.
    message string
    The error message.
    code Integer
    The error code.
    message String
    The error message.
    code number
    The error code.
    message string
    The error message.
    code int
    The error code.
    message str
    The error message.
    code Number
    The error code.
    message String
    The error message.

    GetControlProjectIntelligenceFindingObservationPeriod

    EndTime string
    The end time of the observation period.
    StartTime string
    The start time of the observation period.
    EndTime string
    The end time of the observation period.
    StartTime string
    The start time of the observation period.
    end_time string
    The end time of the observation period.
    start_time string
    The start time of the observation period.
    endTime String
    The end time of the observation period.
    startTime String
    The start time of the observation period.
    endTime string
    The end time of the observation period.
    startTime string
    The start time of the observation period.
    end_time str
    The end time of the observation period.
    start_time str
    The start time of the observation period.
    endTime String
    The end time of the observation period.
    startTime String
    The start time of the observation period.

    GetControlProjectIntelligenceFindingStorageGrowthAboveTrend

    PercentageIncrease double
    The percentage increase for this prefix.
    TopBuckets List<GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucket>
    The top buckets contributing to the spike. Structure is documented below.
    TotalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    PercentageIncrease float64
    The percentage increase for this prefix.
    TopBuckets []GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucket
    The top buckets contributing to the spike. Structure is documented below.
    TotalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    percentage_increase number
    The percentage increase for this prefix.
    top_buckets list(object)
    The top buckets contributing to the spike. Structure is documented below.
    total_storage_growth_bytes string
    The total storage growth in bytes for this bucket.
    percentageIncrease Double
    The percentage increase for this prefix.
    topBuckets List<GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucket>
    The top buckets contributing to the spike. Structure is documented below.
    totalStorageGrowthBytes String
    The total storage growth in bytes for this bucket.
    percentageIncrease number
    The percentage increase for this prefix.
    topBuckets GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucket[]
    The top buckets contributing to the spike. Structure is documented below.
    totalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    percentage_increase float
    The percentage increase for this prefix.
    top_buckets Sequence[GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucket]
    The top buckets contributing to the spike. Structure is documented below.
    total_storage_growth_bytes str
    The total storage growth in bytes for this bucket.
    percentageIncrease Number
    The percentage increase for this prefix.
    topBuckets List<Property Map>
    The top buckets contributing to the spike. Structure is documented below.
    totalStorageGrowthBytes String
    The total storage growth in bytes for this bucket.

    GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucket

    Bucket string
    The resource name of the bucket.
    Contributions List<GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContribution>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    Errors List<GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketError>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    PercentageIncrease double
    The percentage increase for this prefix.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    TotalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    Bucket string
    The resource name of the bucket.
    Contributions []GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContribution
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    Errors []GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketError
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    PercentageIncrease float64
    The percentage increase for this prefix.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    TotalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    bucket string
    The resource name of the bucket.
    contributions list(object)
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors list(object)
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentage_increase number
    The percentage increase for this prefix.
    throttled_requests string
    The number of throttled requests for this prefix.
    total_egress_bytes string
    The total egress bytes for this prefix.
    total_operations_count string
    The total operations count for this prefix.
    total_storage_growth_bytes string
    The total storage growth in bytes for this bucket.
    bucket String
    The resource name of the bucket.
    contributions List<GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContribution>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors List<GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketError>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease Double
    The percentage increase for this prefix.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    totalStorageGrowthBytes String
    The total storage growth in bytes for this bucket.
    bucket string
    The resource name of the bucket.
    contributions GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContribution[]
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketError[]
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease number
    The percentage increase for this prefix.
    throttledRequests string
    The number of throttled requests for this prefix.
    totalEgressBytes string
    The total egress bytes for this prefix.
    totalOperationsCount string
    The total operations count for this prefix.
    totalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    bucket str
    The resource name of the bucket.
    contributions Sequence[GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContribution]
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors Sequence[GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketError]
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentage_increase float
    The percentage increase for this prefix.
    throttled_requests str
    The number of throttled requests for this prefix.
    total_egress_bytes str
    The total egress bytes for this prefix.
    total_operations_count str
    The total operations count for this prefix.
    total_storage_growth_bytes str
    The total storage growth in bytes for this bucket.
    bucket String
    The resource name of the bucket.
    contributions List<Property Map>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors List<Property Map>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease Number
    The percentage increase for this prefix.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    totalStorageGrowthBytes String
    The total storage growth in bytes for this bucket.

    GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContribution

    TopPrefixes List<GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContributionTopPrefix>
    A list of top prefixes contributing to the finding. Structure is documented below.
    TopPrefixes []GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContributionTopPrefix
    A list of top prefixes contributing to the finding. Structure is documented below.
    top_prefixes list(object)
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes List<GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContributionTopPrefix>
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContributionTopPrefix[]
    A list of top prefixes contributing to the finding. Structure is documented below.
    top_prefixes Sequence[GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContributionTopPrefix]
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes List<Property Map>
    A list of top prefixes contributing to the finding. Structure is documented below.

    GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketContributionTopPrefix

    PercentageIncrease double
    The percentage increase for this prefix.
    Prefix string
    The prefix string.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    PercentageIncrease float64
    The percentage increase for this prefix.
    Prefix string
    The prefix string.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    percentage_increase number
    The percentage increase for this prefix.
    prefix string
    The prefix string.
    throttled_requests string
    The number of throttled requests for this prefix.
    total_egress_bytes string
    The total egress bytes for this prefix.
    total_operations_count string
    The total operations count for this prefix.
    percentageIncrease Double
    The percentage increase for this prefix.
    prefix String
    The prefix string.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    percentageIncrease number
    The percentage increase for this prefix.
    prefix string
    The prefix string.
    throttledRequests string
    The number of throttled requests for this prefix.
    totalEgressBytes string
    The total egress bytes for this prefix.
    totalOperationsCount string
    The total operations count for this prefix.
    percentage_increase float
    The percentage increase for this prefix.
    prefix str
    The prefix string.
    throttled_requests str
    The number of throttled requests for this prefix.
    total_egress_bytes str
    The total egress bytes for this prefix.
    total_operations_count str
    The total operations count for this prefix.
    percentageIncrease Number
    The percentage increase for this prefix.
    prefix String
    The prefix string.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.

    GetControlProjectIntelligenceFindingStorageGrowthAboveTrendTopBucketError

    Code int
    The error code.
    Message string
    The error message.
    Code int
    The error code.
    Message string
    The error message.
    code number
    The error code.
    message string
    The error message.
    code Integer
    The error code.
    message String
    The error message.
    code number
    The error code.
    message string
    The error message.
    code int
    The error code.
    message str
    The error message.
    code Number
    The error code.
    message String
    The error message.

    GetControlProjectIntelligenceFindingThrottledRequestsSpike

    PercentageIncrease double
    The percentage increase for this prefix.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TopBuckets List<GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucket>
    The top buckets contributing to the spike. Structure is documented below.
    PercentageIncrease float64
    The percentage increase for this prefix.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TopBuckets []GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucket
    The top buckets contributing to the spike. Structure is documented below.
    percentage_increase number
    The percentage increase for this prefix.
    throttled_requests string
    The number of throttled requests for this prefix.
    top_buckets list(object)
    The top buckets contributing to the spike. Structure is documented below.
    percentageIncrease Double
    The percentage increase for this prefix.
    throttledRequests String
    The number of throttled requests for this prefix.
    topBuckets List<GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucket>
    The top buckets contributing to the spike. Structure is documented below.
    percentageIncrease number
    The percentage increase for this prefix.
    throttledRequests string
    The number of throttled requests for this prefix.
    topBuckets GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucket[]
    The top buckets contributing to the spike. Structure is documented below.
    percentage_increase float
    The percentage increase for this prefix.
    throttled_requests str
    The number of throttled requests for this prefix.
    top_buckets Sequence[GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucket]
    The top buckets contributing to the spike. Structure is documented below.
    percentageIncrease Number
    The percentage increase for this prefix.
    throttledRequests String
    The number of throttled requests for this prefix.
    topBuckets List<Property Map>
    The top buckets contributing to the spike. Structure is documented below.

    GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucket

    Bucket string
    The resource name of the bucket.
    Contributions List<GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContribution>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    Errors List<GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketError>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    PercentageIncrease double
    The percentage increase for this prefix.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    TotalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    Bucket string
    The resource name of the bucket.
    Contributions []GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContribution
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    Errors []GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketError
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    PercentageIncrease float64
    The percentage increase for this prefix.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    TotalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    bucket string
    The resource name of the bucket.
    contributions list(object)
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors list(object)
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentage_increase number
    The percentage increase for this prefix.
    throttled_requests string
    The number of throttled requests for this prefix.
    total_egress_bytes string
    The total egress bytes for this prefix.
    total_operations_count string
    The total operations count for this prefix.
    total_storage_growth_bytes string
    The total storage growth in bytes for this bucket.
    bucket String
    The resource name of the bucket.
    contributions List<GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContribution>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors List<GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketError>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease Double
    The percentage increase for this prefix.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    totalStorageGrowthBytes String
    The total storage growth in bytes for this bucket.
    bucket string
    The resource name of the bucket.
    contributions GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContribution[]
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketError[]
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease number
    The percentage increase for this prefix.
    throttledRequests string
    The number of throttled requests for this prefix.
    totalEgressBytes string
    The total egress bytes for this prefix.
    totalOperationsCount string
    The total operations count for this prefix.
    totalStorageGrowthBytes string
    The total storage growth in bytes for this bucket.
    bucket str
    The resource name of the bucket.
    contributions Sequence[GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContribution]
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors Sequence[GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketError]
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentage_increase float
    The percentage increase for this prefix.
    throttled_requests str
    The number of throttled requests for this prefix.
    total_egress_bytes str
    The total egress bytes for this prefix.
    total_operations_count str
    The total operations count for this prefix.
    total_storage_growth_bytes str
    The total storage growth in bytes for this bucket.
    bucket String
    The resource name of the bucket.
    contributions List<Property Map>
    The breakdown of prefixes contributing to the spike. Structure is documented below.
    errors List<Property Map>
    Error details if the bucket details cannot be retrieved. Structure is documented below.
    percentageIncrease Number
    The percentage increase for this prefix.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    totalStorageGrowthBytes String
    The total storage growth in bytes for this bucket.

    GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContribution

    TopPrefixes List<GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContributionTopPrefix>
    A list of top prefixes contributing to the finding. Structure is documented below.
    TopPrefixes []GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContributionTopPrefix
    A list of top prefixes contributing to the finding. Structure is documented below.
    top_prefixes list(object)
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes List<GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContributionTopPrefix>
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContributionTopPrefix[]
    A list of top prefixes contributing to the finding. Structure is documented below.
    top_prefixes Sequence[GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContributionTopPrefix]
    A list of top prefixes contributing to the finding. Structure is documented below.
    topPrefixes List<Property Map>
    A list of top prefixes contributing to the finding. Structure is documented below.

    GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketContributionTopPrefix

    PercentageIncrease double
    The percentage increase for this prefix.
    Prefix string
    The prefix string.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    PercentageIncrease float64
    The percentage increase for this prefix.
    Prefix string
    The prefix string.
    ThrottledRequests string
    The number of throttled requests for this prefix.
    TotalEgressBytes string
    The total egress bytes for this prefix.
    TotalOperationsCount string
    The total operations count for this prefix.
    percentage_increase number
    The percentage increase for this prefix.
    prefix string
    The prefix string.
    throttled_requests string
    The number of throttled requests for this prefix.
    total_egress_bytes string
    The total egress bytes for this prefix.
    total_operations_count string
    The total operations count for this prefix.
    percentageIncrease Double
    The percentage increase for this prefix.
    prefix String
    The prefix string.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.
    percentageIncrease number
    The percentage increase for this prefix.
    prefix string
    The prefix string.
    throttledRequests string
    The number of throttled requests for this prefix.
    totalEgressBytes string
    The total egress bytes for this prefix.
    totalOperationsCount string
    The total operations count for this prefix.
    percentage_increase float
    The percentage increase for this prefix.
    prefix str
    The prefix string.
    throttled_requests str
    The number of throttled requests for this prefix.
    total_egress_bytes str
    The total egress bytes for this prefix.
    total_operations_count str
    The total operations count for this prefix.
    percentageIncrease Number
    The percentage increase for this prefix.
    prefix String
    The prefix string.
    throttledRequests String
    The number of throttled requests for this prefix.
    totalEgressBytes String
    The total egress bytes for this prefix.
    totalOperationsCount String
    The total operations count for this prefix.

    GetControlProjectIntelligenceFindingThrottledRequestsSpikeTopBucketError

    Code int
    The error code.
    Message string
    The error message.
    Code int
    The error code.
    Message string
    The error message.
    code number
    The error code.
    message string
    The error message.
    code Integer
    The error code.
    message String
    The error message.
    code number
    The error code.
    message string
    The error message.
    code int
    The error code.
    message str
    The error message.
    code Number
    The error code.
    message String
    The error message.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Viewing docs for Google Cloud v9.30.0
    published on Monday, Jul 13, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial