Viewing docs for Google Cloud v9.30.0
published on Monday, Jul 13, 2026 by Pulumi
published on Monday, Jul 13, 2026 by Pulumi
Viewing docs for Google Cloud v9.30.0
published on Monday, Jul 13, 2026 by Pulumi
published on Monday, Jul 13, 2026 by Pulumi
Retrieves a list of Cloud Storage intelligence finding revisions in a specified project and location.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const revisions = gcp.storage.getControlProjectIntelligenceFindingRevisions({
findingId: "coldline_archival_storage_operations_spike_insight_1",
});
import pulumi
import pulumi_gcp as gcp
revisions = gcp.storage.get_control_project_intelligence_finding_revisions(finding_id="coldline_archival_storage_operations_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.GetControlProjectIntelligenceFindingRevisions(ctx, &storage.GetControlProjectIntelligenceFindingRevisionsArgs{
FindingId: "coldline_archival_storage_operations_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 revisions = Gcp.Storage.GetControlProjectIntelligenceFindingRevisions.Invoke(new()
{
FindingId = "coldline_archival_storage_operations_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.GetControlProjectIntelligenceFindingRevisionsArgs;
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 revisions = StorageFunctions.getControlProjectIntelligenceFindingRevisions(GetControlProjectIntelligenceFindingRevisionsArgs.builder()
.findingId("coldline_archival_storage_operations_spike_insight_1")
.build());
}
}
variables:
revisions:
fn::invoke:
function: gcp:storage:getControlProjectIntelligenceFindingRevisions
arguments:
findingId: coldline_archival_storage_operations_spike_insight_1
pulumi {
required_providers {
gcp = {
source = "pulumi/gcp"
}
}
}
data "gcp_storage_getcontrolprojectintelligencefindingrevisions" "revisions" {
finding_id = "coldline_archival_storage_operations_spike_insight_1"
}
Using getControlProjectIntelligenceFindingRevisions
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 getControlProjectIntelligenceFindingRevisions(args: GetControlProjectIntelligenceFindingRevisionsArgs, opts?: InvokeOptions): Promise<GetControlProjectIntelligenceFindingRevisionsResult>
function getControlProjectIntelligenceFindingRevisionsOutput(args: GetControlProjectIntelligenceFindingRevisionsOutputArgs, opts?: InvokeOptions): Output<GetControlProjectIntelligenceFindingRevisionsResult>def get_control_project_intelligence_finding_revisions(finding_id: Optional[str] = None,
location: Optional[str] = None,
page_size: Optional[int] = None,
project: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetControlProjectIntelligenceFindingRevisionsResult
def get_control_project_intelligence_finding_revisions_output(finding_id: pulumi.Input[Optional[str]] = None,
location: pulumi.Input[Optional[str]] = None,
page_size: pulumi.Input[Optional[int]] = None,
project: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetControlProjectIntelligenceFindingRevisionsResult]func GetControlProjectIntelligenceFindingRevisions(ctx *Context, args *GetControlProjectIntelligenceFindingRevisionsArgs, opts ...InvokeOption) (*GetControlProjectIntelligenceFindingRevisionsResult, error)
func GetControlProjectIntelligenceFindingRevisionsOutput(ctx *Context, args *GetControlProjectIntelligenceFindingRevisionsOutputArgs, opts ...InvokeOption) GetControlProjectIntelligenceFindingRevisionsResultOutput> Note: This function is named GetControlProjectIntelligenceFindingRevisions in the Go SDK.
public static class GetControlProjectIntelligenceFindingRevisions
{
public static Task<GetControlProjectIntelligenceFindingRevisionsResult> InvokeAsync(GetControlProjectIntelligenceFindingRevisionsArgs args, InvokeOptions? opts = null)
public static Output<GetControlProjectIntelligenceFindingRevisionsResult> Invoke(GetControlProjectIntelligenceFindingRevisionsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetControlProjectIntelligenceFindingRevisionsResult> getControlProjectIntelligenceFindingRevisions(GetControlProjectIntelligenceFindingRevisionsArgs args, InvokeOptions options)
public static Output<GetControlProjectIntelligenceFindingRevisionsResult> getControlProjectIntelligenceFindingRevisions(GetControlProjectIntelligenceFindingRevisionsArgs args, InvokeOptions options)
fn::invoke:
function: gcp:storage/getControlProjectIntelligenceFindingRevisions:getControlProjectIntelligenceFindingRevisions
arguments:
# arguments dictionarydata "gcp_storage_get_control_project_intelligence_finding_revisions" "name" {
# arguments
}The following arguments are supported:
- 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.
- Page
Size int - The maximum number of IntelligenceFindingRevision resources to return.
- 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.
- Page
Size int - The maximum number of IntelligenceFindingRevision resources to return.
- 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.
- page_
size number - The maximum number of IntelligenceFindingRevision resources to return.
- 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.
- page
Size Integer - The maximum number of IntelligenceFindingRevision resources to return.
- 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.
- page
Size number - The maximum number of IntelligenceFindingRevision resources to return.
- 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.
- page_
size int - The maximum number of IntelligenceFindingRevision resources to return.
- project str
- 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.
- page
Size Number - The maximum number of IntelligenceFindingRevision resources to return.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
getControlProjectIntelligenceFindingRevisions Result
The following output properties are available:
- finding_
id string - id string
- The provider-assigned unique ID for this managed resource.
- project string
- revisions list(object)
- The list of intelligence finding revisions. Structure is documented below.
- location string
- page_
size number
- finding_
id str - id str
- The provider-assigned unique ID for this managed resource.
- project str
- revisions
Sequence[Get
Control Project Intelligence Finding Revisions Revision] - The list of intelligence finding revisions. Structure is documented below.
- location str
- page_
size int
Supporting Types
GetControlProjectIntelligenceFindingRevisionsRevision
- Create
Time string - The time when the finding was created.
- Name string
- The resource name of the finding.
- Snapshots
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot> - The snapshot of the finding at revision creation time. Structure is documented below.
- Create
Time string - The time when the finding was created.
- Name string
- The resource name of the finding.
- Snapshots
[]Get
Control Project Intelligence Finding Revisions Revision Snapshot - The snapshot of the finding at revision creation time. Structure is documented below.
- create_
time string - The time when the finding was created.
- name string
- The resource name of the finding.
- snapshots list(object)
- The snapshot of the finding at revision creation time. Structure is documented below.
- create
Time String - The time when the finding was created.
- name String
- The resource name of the finding.
- snapshots
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot> - The snapshot of the finding at revision creation time. Structure is documented below.
- create
Time string - The time when the finding was created.
- name string
- The resource name of the finding.
- snapshots
Get
Control Project Intelligence Finding Revisions Revision Snapshot[] - The snapshot of the finding at revision creation time. Structure is documented below.
- create_
time str - The time when the finding was created.
- name str
- The resource name of the finding.
- snapshots
Sequence[Get
Control Project Intelligence Finding Revisions Revision Snapshot] - The snapshot of the finding at revision creation time. Structure is documented below.
- create
Time String - The time when the finding was created.
- name String
- The resource name of the finding.
- snapshots List<Property Map>
- The snapshot of the finding at revision creation time. Structure is documented below.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshot
- 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 List<GetArchival Storage Operations Spikes Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike> - 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 List<GetEgress Spikes Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike> - A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
- Description string
- A short description of the finding.
- Name string
- The resource name of the finding.
- Observation
Periods List<GetControl Project Intelligence Finding Revisions Revision Snapshot Observation Period> - The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
- Severity string
- The severity of the finding.
- Storage
Growth List<GetAbove Trends Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend> - 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 List<GetSpikes Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike> - 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.
- Associated
Resources []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 []GetArchival Storage Operations Spikes Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike - 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 []GetEgress Spikes Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike - A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
- Description string
- A short description of the finding.
- Name string
- The resource name of the finding.
- Observation
Periods []GetControl Project Intelligence Finding Revisions Revision Snapshot Observation Period - The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
- Severity string
- The severity of the finding.
- Storage
Growth []GetAbove Trends Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend - 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 []GetSpikes Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike - 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.
- 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_ list(object)archival_ storage_ operations_ spikes - 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_ list(object)egress_ spikes - A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
- description string
- A short description of the finding.
- 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.
- severity string
- The severity of the finding.
- storage_
growth_ list(object)above_ trends - 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_ list(object)spikes - 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.
- 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 List<GetArchival Storage Operations Spikes Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike> - 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 List<GetEgress Spikes Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike> - A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
- description String
- A short description of the finding.
- name String
- The resource name of the finding.
- observation
Periods List<GetControl Project Intelligence Finding Revisions Revision Snapshot Observation Period> - The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
- severity String
- The severity of the finding.
- storage
Growth List<GetAbove Trends Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend> - 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 List<GetSpikes Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike> - 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.
- associated
Resources 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 GetArchival Storage Operations Spikes Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike[] - 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 GetEgress Spikes Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike[] - A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
- description string
- A short description of the finding.
- name string
- The resource name of the finding.
- observation
Periods GetControl Project Intelligence Finding Revisions Revision Snapshot Observation Period[] - The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
- severity string
- The severity of the finding.
- storage
Growth GetAbove Trends Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend[] - 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 GetSpikes Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike[] - 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.
- 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_ Sequence[Getarchival_ storage_ operations_ spikes Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike] - 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_ Sequence[Getegress_ spikes Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike] - A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
- description str
- A short description of the finding.
- name str
- The resource name of the finding.
- observation_
periods Sequence[GetControl Project Intelligence Finding Revisions Revision Snapshot Observation Period] - The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
- severity str
- The severity of the finding.
- storage_
growth_ Sequence[Getabove_ trends Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend] - 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_ Sequence[Getspikes Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike] - 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.
- 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 List<Property Map>Archival Storage Operations Spikes - 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 List<Property Map>Egress Spikes - A finding about a spike in cross-region egress from Cloud Storage. Structure is documented below.
- description String
- A short description of the finding.
- name String
- The resource name of the finding.
- observation
Periods List<Property Map> - The time interval from which the underlying data generated this IntelligenceFinding was observed. Structure is documented below.
- severity String
- The severity of the finding.
- storage
Growth List<Property Map>Above Trends - 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 List<Property Map>Spikes - 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.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotColdlineAndArchivalStorageOperationsSpike
- Percentage
Increase double - The percentage increase for this prefix.
- Top
Buckets List<GetControl Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket> - The top buckets contributing to the spike. Structure is documented below.
- Total
Operations stringCount - The total operations count for this prefix.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Top
Buckets []GetControl Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket - The top buckets contributing to the spike. Structure is documented below.
- Total
Operations stringCount - 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_ stringcount - The total operations count for this prefix.
- percentage
Increase Double - The percentage increase for this prefix.
- top
Buckets List<GetControl Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket> - The top buckets contributing to the spike. Structure is documented below.
- total
Operations StringCount - The total operations count for this prefix.
- percentage
Increase number - The percentage increase for this prefix.
- top
Buckets GetControl Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket[] - The top buckets contributing to the spike. Structure is documented below.
- total
Operations stringCount - The total operations count for this prefix.
- percentage_
increase float - The percentage increase for this prefix.
- top_
buckets Sequence[GetControl Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket] - The top buckets contributing to the spike. Structure is documented below.
- total_
operations_ strcount - The total operations count for this prefix.
- percentage
Increase Number - The percentage increase for this prefix.
- top
Buckets List<Property Map> - The top buckets contributing to the spike. Structure is documented below.
- total
Operations StringCount - The total operations count for this prefix.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotColdlineAndArchivalStorageOperationsSpikeTopBucket
- Bucket string
- The resource name of the bucket.
- Contributions
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Contribution> - The breakdown of prefixes contributing to the spike. Structure is documented below.
- Errors
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Error> - Error details if the bucket details cannot be retrieved. Structure is documented below.
- Percentage
Increase double - The percentage increase for this prefix.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Total
Storage stringGrowth Bytes - The total storage growth in bytes for this bucket.
- Bucket string
- The resource name of the bucket.
- Contributions
[]Get
Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Contribution - The breakdown of prefixes contributing to the spike. Structure is documented below.
- Errors
[]Get
Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Error - Error details if the bucket details cannot be retrieved. Structure is documented below.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Total
Storage stringGrowth Bytes - 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_ stringbytes - The total egress bytes for this prefix.
- total_
operations_ stringcount - The total operations count for this prefix.
- total_
storage_ stringgrowth_ bytes - The total storage growth in bytes for this bucket.
- bucket String
- The resource name of the bucket.
- contributions
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Contribution> - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Error> - Error details if the bucket details cannot be retrieved. Structure is documented below.
- percentage
Increase Double - The percentage increase for this prefix.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
- total
Storage StringGrowth Bytes - The total storage growth in bytes for this bucket.
- bucket string
- The resource name of the bucket.
- contributions
Get
Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Contribution[] - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
Get
Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Error[] - 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 stringBytes - The total egress bytes for this prefix.
- total
Operations stringCount - The total operations count for this prefix.
- total
Storage stringGrowth Bytes - The total storage growth in bytes for this bucket.
- bucket str
- The resource name of the bucket.
- contributions
Sequence[Get
Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Contribution] - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
Sequence[Get
Control Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Error] - 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_ strbytes - The total egress bytes for this prefix.
- total_
operations_ strcount - The total operations count for this prefix.
- total_
storage_ strgrowth_ bytes - 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.
- percentage
Increase Number - The percentage increase for this prefix.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
- total
Storage StringGrowth Bytes - The total storage growth in bytes for this bucket.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotColdlineAndArchivalStorageOperationsSpikeTopBucketContribution
- Top
Prefixes List<GetControl Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Contribution Top Prefix> - A list of top prefixes contributing to the finding. Structure is documented below.
- Top
Prefixes []GetControl Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Contribution Top Prefix - 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.
- top
Prefixes List<GetControl Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Contribution Top Prefix> - A list of top prefixes contributing to the finding. Structure is documented below.
- top
Prefixes GetControl Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Contribution Top Prefix[] - A list of top prefixes contributing to the finding. Structure is documented below.
- top_
prefixes Sequence[GetControl Project Intelligence Finding Revisions Revision Snapshot Coldline And Archival Storage Operations Spike Top Bucket Contribution Top Prefix] - A list of top prefixes contributing to the finding. Structure is documented below.
- top
Prefixes List<Property Map> - A list of top prefixes contributing to the finding. Structure is documented below.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotColdlineAndArchivalStorageOperationsSpikeTopBucketContributionTopPrefix
- Percentage
Increase double - The percentage increase for this prefix.
- Prefix string
- The prefix string.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Prefix string
- The prefix string.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - 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_ stringbytes - The total egress bytes for this prefix.
- total_
operations_ stringcount - The total operations count for this prefix.
- percentage
Increase Double - The percentage increase for this prefix.
- prefix String
- The prefix string.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - 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 stringBytes - The total egress bytes for this prefix.
- total
Operations stringCount - 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_ strbytes - The total egress bytes for this prefix.
- total_
operations_ strcount - 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 StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotColdlineAndArchivalStorageOperationsSpikeTopBucketError
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotCrossRegionEgressSpike
- Percentage
Increase double - The percentage increase for this prefix.
- Top
Buckets List<GetControl Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket> - The top buckets contributing to the spike. Structure is documented below.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Top
Buckets []GetControl Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket - The top buckets contributing to the spike. Structure is documented below.
- Total
Egress stringBytes - 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_ stringbytes - The total egress bytes for this prefix.
- percentage
Increase Double - The percentage increase for this prefix.
- top
Buckets List<GetControl Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket> - The top buckets contributing to the spike. Structure is documented below.
- total
Egress StringBytes - The total egress bytes for this prefix.
- percentage
Increase number - The percentage increase for this prefix.
- top
Buckets GetControl Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket[] - The top buckets contributing to the spike. Structure is documented below.
- total
Egress stringBytes - The total egress bytes for this prefix.
- percentage_
increase float - The percentage increase for this prefix.
- top_
buckets Sequence[GetControl Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket] - The top buckets contributing to the spike. Structure is documented below.
- total_
egress_ strbytes - The total egress bytes for this prefix.
- percentage
Increase Number - The percentage increase for this prefix.
- top
Buckets List<Property Map> - The top buckets contributing to the spike. Structure is documented below.
- total
Egress StringBytes - The total egress bytes for this prefix.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotCrossRegionEgressSpikeTopBucket
- Bucket string
- The resource name of the bucket.
- Contributions
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Contribution> - The breakdown of prefixes contributing to the spike. Structure is documented below.
- Errors
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Error> - Error details if the bucket details cannot be retrieved. Structure is documented below.
- Percentage
Increase double - The percentage increase for this prefix.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Total
Storage stringGrowth Bytes - The total storage growth in bytes for this bucket.
- Bucket string
- The resource name of the bucket.
- Contributions
[]Get
Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Contribution - The breakdown of prefixes contributing to the spike. Structure is documented below.
- Errors
[]Get
Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Error - Error details if the bucket details cannot be retrieved. Structure is documented below.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Total
Storage stringGrowth Bytes - 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_ stringbytes - The total egress bytes for this prefix.
- total_
operations_ stringcount - The total operations count for this prefix.
- total_
storage_ stringgrowth_ bytes - The total storage growth in bytes for this bucket.
- bucket String
- The resource name of the bucket.
- contributions
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Contribution> - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Error> - Error details if the bucket details cannot be retrieved. Structure is documented below.
- percentage
Increase Double - The percentage increase for this prefix.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
- total
Storage StringGrowth Bytes - The total storage growth in bytes for this bucket.
- bucket string
- The resource name of the bucket.
- contributions
Get
Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Contribution[] - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
Get
Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Error[] - 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 stringBytes - The total egress bytes for this prefix.
- total
Operations stringCount - The total operations count for this prefix.
- total
Storage stringGrowth Bytes - The total storage growth in bytes for this bucket.
- bucket str
- The resource name of the bucket.
- contributions
Sequence[Get
Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Contribution] - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
Sequence[Get
Control Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Error] - 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_ strbytes - The total egress bytes for this prefix.
- total_
operations_ strcount - The total operations count for this prefix.
- total_
storage_ strgrowth_ bytes - 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.
- percentage
Increase Number - The percentage increase for this prefix.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
- total
Storage StringGrowth Bytes - The total storage growth in bytes for this bucket.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotCrossRegionEgressSpikeTopBucketContribution
- Top
Prefixes List<GetControl Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Contribution Top Prefix> - A list of top prefixes contributing to the finding. Structure is documented below.
- Top
Prefixes []GetControl Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Contribution Top Prefix - 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.
- top
Prefixes List<GetControl Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Contribution Top Prefix> - A list of top prefixes contributing to the finding. Structure is documented below.
- top
Prefixes GetControl Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Contribution Top Prefix[] - A list of top prefixes contributing to the finding. Structure is documented below.
- top_
prefixes Sequence[GetControl Project Intelligence Finding Revisions Revision Snapshot Cross Region Egress Spike Top Bucket Contribution Top Prefix] - A list of top prefixes contributing to the finding. Structure is documented below.
- top
Prefixes List<Property Map> - A list of top prefixes contributing to the finding. Structure is documented below.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotCrossRegionEgressSpikeTopBucketContributionTopPrefix
- Percentage
Increase double - The percentage increase for this prefix.
- Prefix string
- The prefix string.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Prefix string
- The prefix string.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - 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_ stringbytes - The total egress bytes for this prefix.
- total_
operations_ stringcount - The total operations count for this prefix.
- percentage
Increase Double - The percentage increase for this prefix.
- prefix String
- The prefix string.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - 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 stringBytes - The total egress bytes for this prefix.
- total
Operations stringCount - 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_ strbytes - The total egress bytes for this prefix.
- total_
operations_ strcount - 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 StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotCrossRegionEgressSpikeTopBucketError
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotObservationPeriod
- end_
time string - The end time of the observation period.
- start_
time 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.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotStorageGrowthAboveTrend
- Percentage
Increase double - The percentage increase for this prefix.
- Top
Buckets List<GetControl Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket> - The top buckets contributing to the spike. Structure is documented below.
- Total
Storage stringGrowth Bytes - The total storage growth in bytes for this bucket.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Top
Buckets []GetControl Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket - The top buckets contributing to the spike. Structure is documented below.
- Total
Storage stringGrowth Bytes - 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_ stringgrowth_ bytes - The total storage growth in bytes for this bucket.
- percentage
Increase Double - The percentage increase for this prefix.
- top
Buckets List<GetControl Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket> - The top buckets contributing to the spike. Structure is documented below.
- total
Storage StringGrowth Bytes - The total storage growth in bytes for this bucket.
- percentage
Increase number - The percentage increase for this prefix.
- top
Buckets GetControl Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket[] - The top buckets contributing to the spike. Structure is documented below.
- total
Storage stringGrowth Bytes - The total storage growth in bytes for this bucket.
- percentage_
increase float - The percentage increase for this prefix.
- top_
buckets Sequence[GetControl Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket] - The top buckets contributing to the spike. Structure is documented below.
- total_
storage_ strgrowth_ bytes - The total storage growth in bytes for this bucket.
- percentage
Increase Number - The percentage increase for this prefix.
- top
Buckets List<Property Map> - The top buckets contributing to the spike. Structure is documented below.
- total
Storage StringGrowth Bytes - The total storage growth in bytes for this bucket.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotStorageGrowthAboveTrendTopBucket
- Bucket string
- The resource name of the bucket.
- Contributions
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Contribution> - The breakdown of prefixes contributing to the spike. Structure is documented below.
- Errors
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Error> - Error details if the bucket details cannot be retrieved. Structure is documented below.
- Percentage
Increase double - The percentage increase for this prefix.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Total
Storage stringGrowth Bytes - The total storage growth in bytes for this bucket.
- Bucket string
- The resource name of the bucket.
- Contributions
[]Get
Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Contribution - The breakdown of prefixes contributing to the spike. Structure is documented below.
- Errors
[]Get
Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Error - Error details if the bucket details cannot be retrieved. Structure is documented below.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Total
Storage stringGrowth Bytes - 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_ stringbytes - The total egress bytes for this prefix.
- total_
operations_ stringcount - The total operations count for this prefix.
- total_
storage_ stringgrowth_ bytes - The total storage growth in bytes for this bucket.
- bucket String
- The resource name of the bucket.
- contributions
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Contribution> - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Error> - Error details if the bucket details cannot be retrieved. Structure is documented below.
- percentage
Increase Double - The percentage increase for this prefix.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
- total
Storage StringGrowth Bytes - The total storage growth in bytes for this bucket.
- bucket string
- The resource name of the bucket.
- contributions
Get
Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Contribution[] - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
Get
Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Error[] - 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 stringBytes - The total egress bytes for this prefix.
- total
Operations stringCount - The total operations count for this prefix.
- total
Storage stringGrowth Bytes - The total storage growth in bytes for this bucket.
- bucket str
- The resource name of the bucket.
- contributions
Sequence[Get
Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Contribution] - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
Sequence[Get
Control Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Error] - 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_ strbytes - The total egress bytes for this prefix.
- total_
operations_ strcount - The total operations count for this prefix.
- total_
storage_ strgrowth_ bytes - 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.
- percentage
Increase Number - The percentage increase for this prefix.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
- total
Storage StringGrowth Bytes - The total storage growth in bytes for this bucket.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotStorageGrowthAboveTrendTopBucketContribution
- Top
Prefixes List<GetControl Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Contribution Top Prefix> - A list of top prefixes contributing to the finding. Structure is documented below.
- Top
Prefixes []GetControl Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Contribution Top Prefix - 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.
- top
Prefixes List<GetControl Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Contribution Top Prefix> - A list of top prefixes contributing to the finding. Structure is documented below.
- top
Prefixes GetControl Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Contribution Top Prefix[] - A list of top prefixes contributing to the finding. Structure is documented below.
- top_
prefixes Sequence[GetControl Project Intelligence Finding Revisions Revision Snapshot Storage Growth Above Trend Top Bucket Contribution Top Prefix] - A list of top prefixes contributing to the finding. Structure is documented below.
- top
Prefixes List<Property Map> - A list of top prefixes contributing to the finding. Structure is documented below.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotStorageGrowthAboveTrendTopBucketContributionTopPrefix
- Percentage
Increase double - The percentage increase for this prefix.
- Prefix string
- The prefix string.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Prefix string
- The prefix string.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - 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_ stringbytes - The total egress bytes for this prefix.
- total_
operations_ stringcount - The total operations count for this prefix.
- percentage
Increase Double - The percentage increase for this prefix.
- prefix String
- The prefix string.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - 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 stringBytes - The total egress bytes for this prefix.
- total
Operations stringCount - 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_ strbytes - The total egress bytes for this prefix.
- total_
operations_ strcount - 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 StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotStorageGrowthAboveTrendTopBucketError
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotThrottledRequestsSpike
- Percentage
Increase double - The percentage increase for this prefix.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Top
Buckets List<GetControl Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket> - The top buckets contributing to the spike. Structure is documented below.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Top
Buckets []GetControl Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket - 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.
- percentage
Increase Double - The percentage increase for this prefix.
- throttled
Requests String - The number of throttled requests for this prefix.
- top
Buckets List<GetControl Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket> - 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 GetControl Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket[] - 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[GetControl Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket] - 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<Property Map> - The top buckets contributing to the spike. Structure is documented below.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotThrottledRequestsSpikeTopBucket
- Bucket string
- The resource name of the bucket.
- Contributions
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Contribution> - The breakdown of prefixes contributing to the spike. Structure is documented below.
- Errors
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Error> - Error details if the bucket details cannot be retrieved. Structure is documented below.
- Percentage
Increase double - The percentage increase for this prefix.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Total
Storage stringGrowth Bytes - The total storage growth in bytes for this bucket.
- Bucket string
- The resource name of the bucket.
- Contributions
[]Get
Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Contribution - The breakdown of prefixes contributing to the spike. Structure is documented below.
- Errors
[]Get
Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Error - Error details if the bucket details cannot be retrieved. Structure is documented below.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Total
Storage stringGrowth Bytes - 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_ stringbytes - The total egress bytes for this prefix.
- total_
operations_ stringcount - The total operations count for this prefix.
- total_
storage_ stringgrowth_ bytes - The total storage growth in bytes for this bucket.
- bucket String
- The resource name of the bucket.
- contributions
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Contribution> - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
List<Get
Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Error> - Error details if the bucket details cannot be retrieved. Structure is documented below.
- percentage
Increase Double - The percentage increase for this prefix.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
- total
Storage StringGrowth Bytes - The total storage growth in bytes for this bucket.
- bucket string
- The resource name of the bucket.
- contributions
Get
Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Contribution[] - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
Get
Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Error[] - 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 stringBytes - The total egress bytes for this prefix.
- total
Operations stringCount - The total operations count for this prefix.
- total
Storage stringGrowth Bytes - The total storage growth in bytes for this bucket.
- bucket str
- The resource name of the bucket.
- contributions
Sequence[Get
Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Contribution] - The breakdown of prefixes contributing to the spike. Structure is documented below.
- errors
Sequence[Get
Control Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Error] - 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_ strbytes - The total egress bytes for this prefix.
- total_
operations_ strcount - The total operations count for this prefix.
- total_
storage_ strgrowth_ bytes - 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.
- percentage
Increase Number - The percentage increase for this prefix.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
- total
Storage StringGrowth Bytes - The total storage growth in bytes for this bucket.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotThrottledRequestsSpikeTopBucketContribution
- Top
Prefixes List<GetControl Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Contribution Top Prefix> - A list of top prefixes contributing to the finding. Structure is documented below.
- Top
Prefixes []GetControl Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Contribution Top Prefix - 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.
- top
Prefixes List<GetControl Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Contribution Top Prefix> - A list of top prefixes contributing to the finding. Structure is documented below.
- top
Prefixes GetControl Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Contribution Top Prefix[] - A list of top prefixes contributing to the finding. Structure is documented below.
- top_
prefixes Sequence[GetControl Project Intelligence Finding Revisions Revision Snapshot Throttled Requests Spike Top Bucket Contribution Top Prefix] - A list of top prefixes contributing to the finding. Structure is documented below.
- top
Prefixes List<Property Map> - A list of top prefixes contributing to the finding. Structure is documented below.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotThrottledRequestsSpikeTopBucketContributionTopPrefix
- Percentage
Increase double - The percentage increase for this prefix.
- Prefix string
- The prefix string.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - The total operations count for this prefix.
- Percentage
Increase float64 - The percentage increase for this prefix.
- Prefix string
- The prefix string.
- Throttled
Requests string - The number of throttled requests for this prefix.
- Total
Egress stringBytes - The total egress bytes for this prefix.
- Total
Operations stringCount - 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_ stringbytes - The total egress bytes for this prefix.
- total_
operations_ stringcount - The total operations count for this prefix.
- percentage
Increase Double - The percentage increase for this prefix.
- prefix String
- The prefix string.
- throttled
Requests String - The number of throttled requests for this prefix.
- total
Egress StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - 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 stringBytes - The total egress bytes for this prefix.
- total
Operations stringCount - 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_ strbytes - The total egress bytes for this prefix.
- total_
operations_ strcount - 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 StringBytes - The total egress bytes for this prefix.
- total
Operations StringCount - The total operations count for this prefix.
GetControlProjectIntelligenceFindingRevisionsRevisionSnapshotThrottledRequestsSpikeTopBucketError
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-betaTerraform Provider.
Viewing docs for Google Cloud v9.30.0
published on Monday, Jul 13, 2026 by Pulumi
published on Monday, Jul 13, 2026 by Pulumi