1. Packages
  2. Prismacloud Provider
  3. API Docs
  4. RqlSearch
prismacloud 1.7.0 published on Monday, Apr 14, 2025 by paloaltonetworks

prismacloud.RqlSearch

Explore with Pulumi AI

prismacloud logo
prismacloud 1.7.0 published on Monday, Apr 14, 2025 by paloaltonetworks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as prismacloud from "@pulumi/prismacloud";
    
    const example = new prismacloud.RqlSearch("example", {
        query: "config from cloud.resource where api.name = 'aws-ec2-describe-instances'",
        searchType: "config",
        skipResult: true,
        timeRange: {
            relatives: [{
                amount: 24,
                unit: "hour",
            }],
        },
    });
    
    import pulumi
    import pulumi_prismacloud as prismacloud
    
    example = prismacloud.RqlSearch("example",
        query="config from cloud.resource where api.name = 'aws-ec2-describe-instances'",
        search_type="config",
        skip_result=True,
        time_range={
            "relatives": [{
                "amount": 24,
                "unit": "hour",
            }],
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/prismacloud/prismacloud"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := prismacloud.NewRqlSearch(ctx, "example", &prismacloud.RqlSearchArgs{
    			Query:      pulumi.String("config from cloud.resource where api.name = 'aws-ec2-describe-instances'"),
    			SearchType: pulumi.String("config"),
    			SkipResult: pulumi.Bool(true),
    			TimeRange: &prismacloud.RqlSearchTimeRangeArgs{
    				Relatives: prismacloud.RqlSearchTimeRangeRelativeArray{
    					&prismacloud.RqlSearchTimeRangeRelativeArgs{
    						Amount: pulumi.Float64(24),
    						Unit:   pulumi.String("hour"),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Prismacloud = Pulumi.Prismacloud;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Prismacloud.RqlSearch("example", new()
        {
            Query = "config from cloud.resource where api.name = 'aws-ec2-describe-instances'",
            SearchType = "config",
            SkipResult = true,
            TimeRange = new Prismacloud.Inputs.RqlSearchTimeRangeArgs
            {
                Relatives = new[]
                {
                    new Prismacloud.Inputs.RqlSearchTimeRangeRelativeArgs
                    {
                        Amount = 24,
                        Unit = "hour",
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.prismacloud.RqlSearch;
    import com.pulumi.prismacloud.RqlSearchArgs;
    import com.pulumi.prismacloud.inputs.RqlSearchTimeRangeArgs;
    import java.util.List;
    import java.util.ArrayList;
    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) {
            var example = new RqlSearch("example", RqlSearchArgs.builder()
                .query("config from cloud.resource where api.name = 'aws-ec2-describe-instances'")
                .searchType("config")
                .skipResult(true)
                .timeRange(RqlSearchTimeRangeArgs.builder()
                    .relatives(RqlSearchTimeRangeRelativeArgs.builder()
                        .amount(24)
                        .unit("hour")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: prismacloud:RqlSearch
        properties:
          query: config from cloud.resource where api.name = 'aws-ec2-describe-instances'
          searchType: config
          skipResult: true
          timeRange:
            relatives:
              - amount: 24
                unit: hour
    

    Create RqlSearch Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RqlSearch(name: string, args: RqlSearchArgs, opts?: CustomResourceOptions);
    @overload
    def RqlSearch(resource_name: str,
                  args: RqlSearchArgs,
                  opts: Optional[ResourceOptions] = None)
    
    @overload
    def RqlSearch(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  query: Optional[str] = None,
                  heuristic_search: Optional[bool] = None,
                  limit: Optional[float] = None,
                  rql_search_id: Optional[str] = None,
                  search_id: Optional[str] = None,
                  search_type: Optional[str] = None,
                  skip_result: Optional[bool] = None,
                  time_range: Optional[RqlSearchTimeRangeArgs] = None)
    func NewRqlSearch(ctx *Context, name string, args RqlSearchArgs, opts ...ResourceOption) (*RqlSearch, error)
    public RqlSearch(string name, RqlSearchArgs args, CustomResourceOptions? opts = null)
    public RqlSearch(String name, RqlSearchArgs args)
    public RqlSearch(String name, RqlSearchArgs args, CustomResourceOptions options)
    
    type: prismacloud:RqlSearch
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RqlSearchArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RqlSearchArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RqlSearchArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RqlSearchArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RqlSearchArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var rqlSearchResource = new Prismacloud.RqlSearch("rqlSearchResource", new()
    {
        Query = "string",
        HeuristicSearch = false,
        Limit = 0,
        RqlSearchId = "string",
        SearchId = "string",
        SearchType = "string",
        SkipResult = false,
        TimeRange = new Prismacloud.Inputs.RqlSearchTimeRangeArgs
        {
            Absolutes = new[]
            {
                new Prismacloud.Inputs.RqlSearchTimeRangeAbsoluteArgs
                {
                    End = 0,
                    Start = 0,
                },
            },
            Relatives = new[]
            {
                new Prismacloud.Inputs.RqlSearchTimeRangeRelativeArgs
                {
                    Amount = 0,
                    Unit = "string",
                },
            },
            ToNows = new[]
            {
                new Prismacloud.Inputs.RqlSearchTimeRangeToNowArgs
                {
                    Unit = "string",
                },
            },
        },
    });
    
    example, err := prismacloud.NewRqlSearch(ctx, "rqlSearchResource", &prismacloud.RqlSearchArgs{
    	Query:           pulumi.String("string"),
    	HeuristicSearch: pulumi.Bool(false),
    	Limit:           pulumi.Float64(0),
    	RqlSearchId:     pulumi.String("string"),
    	SearchId:        pulumi.String("string"),
    	SearchType:      pulumi.String("string"),
    	SkipResult:      pulumi.Bool(false),
    	TimeRange: &prismacloud.RqlSearchTimeRangeArgs{
    		Absolutes: prismacloud.RqlSearchTimeRangeAbsoluteArray{
    			&prismacloud.RqlSearchTimeRangeAbsoluteArgs{
    				End:   pulumi.Float64(0),
    				Start: pulumi.Float64(0),
    			},
    		},
    		Relatives: prismacloud.RqlSearchTimeRangeRelativeArray{
    			&prismacloud.RqlSearchTimeRangeRelativeArgs{
    				Amount: pulumi.Float64(0),
    				Unit:   pulumi.String("string"),
    			},
    		},
    		ToNows: prismacloud.RqlSearchTimeRangeToNowArray{
    			&prismacloud.RqlSearchTimeRangeToNowArgs{
    				Unit: pulumi.String("string"),
    			},
    		},
    	},
    })
    
    var rqlSearchResource = new RqlSearch("rqlSearchResource", RqlSearchArgs.builder()
        .query("string")
        .heuristicSearch(false)
        .limit(0)
        .rqlSearchId("string")
        .searchId("string")
        .searchType("string")
        .skipResult(false)
        .timeRange(RqlSearchTimeRangeArgs.builder()
            .absolutes(RqlSearchTimeRangeAbsoluteArgs.builder()
                .end(0)
                .start(0)
                .build())
            .relatives(RqlSearchTimeRangeRelativeArgs.builder()
                .amount(0)
                .unit("string")
                .build())
            .toNows(RqlSearchTimeRangeToNowArgs.builder()
                .unit("string")
                .build())
            .build())
        .build());
    
    rql_search_resource = prismacloud.RqlSearch("rqlSearchResource",
        query="string",
        heuristic_search=False,
        limit=0,
        rql_search_id="string",
        search_id="string",
        search_type="string",
        skip_result=False,
        time_range={
            "absolutes": [{
                "end": 0,
                "start": 0,
            }],
            "relatives": [{
                "amount": 0,
                "unit": "string",
            }],
            "to_nows": [{
                "unit": "string",
            }],
        })
    
    const rqlSearchResource = new prismacloud.RqlSearch("rqlSearchResource", {
        query: "string",
        heuristicSearch: false,
        limit: 0,
        rqlSearchId: "string",
        searchId: "string",
        searchType: "string",
        skipResult: false,
        timeRange: {
            absolutes: [{
                end: 0,
                start: 0,
            }],
            relatives: [{
                amount: 0,
                unit: "string",
            }],
            toNows: [{
                unit: "string",
            }],
        },
    });
    
    type: prismacloud:RqlSearch
    properties:
        heuristicSearch: false
        limit: 0
        query: string
        rqlSearchId: string
        searchId: string
        searchType: string
        skipResult: false
        timeRange:
            absolutes:
                - end: 0
                  start: 0
            relatives:
                - amount: 0
                  unit: string
            toNows:
                - unit: string
    

    RqlSearch Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The RqlSearch resource accepts the following input properties:

    Query string
    The RQL query.
    HeuristicSearch bool
    Perform heuristic search. Applicable for config and audit_event.
    Limit double
    Limit rules (default: 10).
    RqlSearchId string
    SearchId string
    The search ID returned from a successful RQL query.
    SearchType string
    The search type. Valid values are config (default) event, network, iam and asset.
    SkipResult bool
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    TimeRange RqlSearchTimeRange
    The RQL time range spec, as defined below.
    Query string
    The RQL query.
    HeuristicSearch bool
    Perform heuristic search. Applicable for config and audit_event.
    Limit float64
    Limit rules (default: 10).
    RqlSearchId string
    SearchId string
    The search ID returned from a successful RQL query.
    SearchType string
    The search type. Valid values are config (default) event, network, iam and asset.
    SkipResult bool
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    TimeRange RqlSearchTimeRangeArgs
    The RQL time range spec, as defined below.
    query String
    The RQL query.
    heuristicSearch Boolean
    Perform heuristic search. Applicable for config and audit_event.
    limit Double
    Limit rules (default: 10).
    rqlSearchId String
    searchId String
    The search ID returned from a successful RQL query.
    searchType String
    The search type. Valid values are config (default) event, network, iam and asset.
    skipResult Boolean
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    timeRange RqlSearchTimeRange
    The RQL time range spec, as defined below.
    query string
    The RQL query.
    heuristicSearch boolean
    Perform heuristic search. Applicable for config and audit_event.
    limit number
    Limit rules (default: 10).
    rqlSearchId string
    searchId string
    The search ID returned from a successful RQL query.
    searchType string
    The search type. Valid values are config (default) event, network, iam and asset.
    skipResult boolean
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    timeRange RqlSearchTimeRange
    The RQL time range spec, as defined below.
    query str
    The RQL query.
    heuristic_search bool
    Perform heuristic search. Applicable for config and audit_event.
    limit float
    Limit rules (default: 10).
    rql_search_id str
    search_id str
    The search ID returned from a successful RQL query.
    search_type str
    The search type. Valid values are config (default) event, network, iam and asset.
    skip_result bool
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    time_range RqlSearchTimeRangeArgs
    The RQL time range spec, as defined below.
    query String
    The RQL query.
    heuristicSearch Boolean
    Perform heuristic search. Applicable for config and audit_event.
    limit Number
    Limit rules (default: 10).
    rqlSearchId String
    searchId String
    The search ID returned from a successful RQL query.
    searchType String
    The search type. Valid values are config (default) event, network, iam and asset.
    skipResult Boolean
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    timeRange Property Map
    The RQL time range spec, as defined below.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RqlSearch resource produces the following output properties:

    AssetDatas List<RqlSearchAssetData>
    List of asset data structs
    CloudType string
    Cloud Type
    ConfigDatas List<RqlSearchConfigData>
    (for search_type="config", list) List of config_data specs, as defined below.
    Description string
    Description.
    EventDatas List<RqlSearchEventData>
    (For search_type="event", list) List of event_data specs, as defined below.
    GroupBies List<string>
    (list) Group by.
    IamDatas List<RqlSearchIamData>
    (For search_type="iam", list) List of iam_data specs, as defined below.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name.
    NetworkDatas List<RqlSearchNetworkData>
    (For search_type="network", list) List of network_data specs, as defined below.
    Saved bool
    Is search saved
    AssetDatas []RqlSearchAssetData
    List of asset data structs
    CloudType string
    Cloud Type
    ConfigDatas []RqlSearchConfigData
    (for search_type="config", list) List of config_data specs, as defined below.
    Description string
    Description.
    EventDatas []RqlSearchEventData
    (For search_type="event", list) List of event_data specs, as defined below.
    GroupBies []string
    (list) Group by.
    IamDatas []RqlSearchIamData
    (For search_type="iam", list) List of iam_data specs, as defined below.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name.
    NetworkDatas []RqlSearchNetworkData
    (For search_type="network", list) List of network_data specs, as defined below.
    Saved bool
    Is search saved
    assetDatas List<RqlSearchAssetData>
    List of asset data structs
    cloudType String
    Cloud Type
    configDatas List<RqlSearchConfigData>
    (for search_type="config", list) List of config_data specs, as defined below.
    description String
    Description.
    eventDatas List<RqlSearchEventData>
    (For search_type="event", list) List of event_data specs, as defined below.
    groupBies List<String>
    (list) Group by.
    iamDatas List<RqlSearchIamData>
    (For search_type="iam", list) List of iam_data specs, as defined below.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name.
    networkDatas List<RqlSearchNetworkData>
    (For search_type="network", list) List of network_data specs, as defined below.
    saved Boolean
    Is search saved
    assetDatas RqlSearchAssetData[]
    List of asset data structs
    cloudType string
    Cloud Type
    configDatas RqlSearchConfigData[]
    (for search_type="config", list) List of config_data specs, as defined below.
    description string
    Description.
    eventDatas RqlSearchEventData[]
    (For search_type="event", list) List of event_data specs, as defined below.
    groupBies string[]
    (list) Group by.
    iamDatas RqlSearchIamData[]
    (For search_type="iam", list) List of iam_data specs, as defined below.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Name.
    networkDatas RqlSearchNetworkData[]
    (For search_type="network", list) List of network_data specs, as defined below.
    saved boolean
    Is search saved
    asset_datas Sequence[RqlSearchAssetData]
    List of asset data structs
    cloud_type str
    Cloud Type
    config_datas Sequence[RqlSearchConfigData]
    (for search_type="config", list) List of config_data specs, as defined below.
    description str
    Description.
    event_datas Sequence[RqlSearchEventData]
    (For search_type="event", list) List of event_data specs, as defined below.
    group_bies Sequence[str]
    (list) Group by.
    iam_datas Sequence[RqlSearchIamData]
    (For search_type="iam", list) List of iam_data specs, as defined below.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Name.
    network_datas Sequence[RqlSearchNetworkData]
    (For search_type="network", list) List of network_data specs, as defined below.
    saved bool
    Is search saved
    assetDatas List<Property Map>
    List of asset data structs
    cloudType String
    Cloud Type
    configDatas List<Property Map>
    (for search_type="config", list) List of config_data specs, as defined below.
    description String
    Description.
    eventDatas List<Property Map>
    (For search_type="event", list) List of event_data specs, as defined below.
    groupBies List<String>
    (list) Group by.
    iamDatas List<Property Map>
    (For search_type="iam", list) List of iam_data specs, as defined below.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name.
    networkDatas List<Property Map>
    (For search_type="network", list) List of network_data specs, as defined below.
    saved Boolean
    Is search saved

    Look up Existing RqlSearch Resource

    Get an existing RqlSearch resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: RqlSearchState, opts?: CustomResourceOptions): RqlSearch
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            asset_datas: Optional[Sequence[RqlSearchAssetDataArgs]] = None,
            cloud_type: Optional[str] = None,
            config_datas: Optional[Sequence[RqlSearchConfigDataArgs]] = None,
            description: Optional[str] = None,
            event_datas: Optional[Sequence[RqlSearchEventDataArgs]] = None,
            group_bies: Optional[Sequence[str]] = None,
            heuristic_search: Optional[bool] = None,
            iam_datas: Optional[Sequence[RqlSearchIamDataArgs]] = None,
            limit: Optional[float] = None,
            name: Optional[str] = None,
            network_datas: Optional[Sequence[RqlSearchNetworkDataArgs]] = None,
            query: Optional[str] = None,
            rql_search_id: Optional[str] = None,
            saved: Optional[bool] = None,
            search_id: Optional[str] = None,
            search_type: Optional[str] = None,
            skip_result: Optional[bool] = None,
            time_range: Optional[RqlSearchTimeRangeArgs] = None) -> RqlSearch
    func GetRqlSearch(ctx *Context, name string, id IDInput, state *RqlSearchState, opts ...ResourceOption) (*RqlSearch, error)
    public static RqlSearch Get(string name, Input<string> id, RqlSearchState? state, CustomResourceOptions? opts = null)
    public static RqlSearch get(String name, Output<String> id, RqlSearchState state, CustomResourceOptions options)
    resources:  _:    type: prismacloud:RqlSearch    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AssetDatas List<RqlSearchAssetData>
    List of asset data structs
    CloudType string
    Cloud Type
    ConfigDatas List<RqlSearchConfigData>
    (for search_type="config", list) List of config_data specs, as defined below.
    Description string
    Description.
    EventDatas List<RqlSearchEventData>
    (For search_type="event", list) List of event_data specs, as defined below.
    GroupBies List<string>
    (list) Group by.
    HeuristicSearch bool
    Perform heuristic search. Applicable for config and audit_event.
    IamDatas List<RqlSearchIamData>
    (For search_type="iam", list) List of iam_data specs, as defined below.
    Limit double
    Limit rules (default: 10).
    Name string
    Name.
    NetworkDatas List<RqlSearchNetworkData>
    (For search_type="network", list) List of network_data specs, as defined below.
    Query string
    The RQL query.
    RqlSearchId string
    Saved bool
    Is search saved
    SearchId string
    The search ID returned from a successful RQL query.
    SearchType string
    The search type. Valid values are config (default) event, network, iam and asset.
    SkipResult bool
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    TimeRange RqlSearchTimeRange
    The RQL time range spec, as defined below.
    AssetDatas []RqlSearchAssetDataArgs
    List of asset data structs
    CloudType string
    Cloud Type
    ConfigDatas []RqlSearchConfigDataArgs
    (for search_type="config", list) List of config_data specs, as defined below.
    Description string
    Description.
    EventDatas []RqlSearchEventDataArgs
    (For search_type="event", list) List of event_data specs, as defined below.
    GroupBies []string
    (list) Group by.
    HeuristicSearch bool
    Perform heuristic search. Applicable for config and audit_event.
    IamDatas []RqlSearchIamDataArgs
    (For search_type="iam", list) List of iam_data specs, as defined below.
    Limit float64
    Limit rules (default: 10).
    Name string
    Name.
    NetworkDatas []RqlSearchNetworkDataArgs
    (For search_type="network", list) List of network_data specs, as defined below.
    Query string
    The RQL query.
    RqlSearchId string
    Saved bool
    Is search saved
    SearchId string
    The search ID returned from a successful RQL query.
    SearchType string
    The search type. Valid values are config (default) event, network, iam and asset.
    SkipResult bool
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    TimeRange RqlSearchTimeRangeArgs
    The RQL time range spec, as defined below.
    assetDatas List<RqlSearchAssetData>
    List of asset data structs
    cloudType String
    Cloud Type
    configDatas List<RqlSearchConfigData>
    (for search_type="config", list) List of config_data specs, as defined below.
    description String
    Description.
    eventDatas List<RqlSearchEventData>
    (For search_type="event", list) List of event_data specs, as defined below.
    groupBies List<String>
    (list) Group by.
    heuristicSearch Boolean
    Perform heuristic search. Applicable for config and audit_event.
    iamDatas List<RqlSearchIamData>
    (For search_type="iam", list) List of iam_data specs, as defined below.
    limit Double
    Limit rules (default: 10).
    name String
    Name.
    networkDatas List<RqlSearchNetworkData>
    (For search_type="network", list) List of network_data specs, as defined below.
    query String
    The RQL query.
    rqlSearchId String
    saved Boolean
    Is search saved
    searchId String
    The search ID returned from a successful RQL query.
    searchType String
    The search type. Valid values are config (default) event, network, iam and asset.
    skipResult Boolean
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    timeRange RqlSearchTimeRange
    The RQL time range spec, as defined below.
    assetDatas RqlSearchAssetData[]
    List of asset data structs
    cloudType string
    Cloud Type
    configDatas RqlSearchConfigData[]
    (for search_type="config", list) List of config_data specs, as defined below.
    description string
    Description.
    eventDatas RqlSearchEventData[]
    (For search_type="event", list) List of event_data specs, as defined below.
    groupBies string[]
    (list) Group by.
    heuristicSearch boolean
    Perform heuristic search. Applicable for config and audit_event.
    iamDatas RqlSearchIamData[]
    (For search_type="iam", list) List of iam_data specs, as defined below.
    limit number
    Limit rules (default: 10).
    name string
    Name.
    networkDatas RqlSearchNetworkData[]
    (For search_type="network", list) List of network_data specs, as defined below.
    query string
    The RQL query.
    rqlSearchId string
    saved boolean
    Is search saved
    searchId string
    The search ID returned from a successful RQL query.
    searchType string
    The search type. Valid values are config (default) event, network, iam and asset.
    skipResult boolean
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    timeRange RqlSearchTimeRange
    The RQL time range spec, as defined below.
    asset_datas Sequence[RqlSearchAssetDataArgs]
    List of asset data structs
    cloud_type str
    Cloud Type
    config_datas Sequence[RqlSearchConfigDataArgs]
    (for search_type="config", list) List of config_data specs, as defined below.
    description str
    Description.
    event_datas Sequence[RqlSearchEventDataArgs]
    (For search_type="event", list) List of event_data specs, as defined below.
    group_bies Sequence[str]
    (list) Group by.
    heuristic_search bool
    Perform heuristic search. Applicable for config and audit_event.
    iam_datas Sequence[RqlSearchIamDataArgs]
    (For search_type="iam", list) List of iam_data specs, as defined below.
    limit float
    Limit rules (default: 10).
    name str
    Name.
    network_datas Sequence[RqlSearchNetworkDataArgs]
    (For search_type="network", list) List of network_data specs, as defined below.
    query str
    The RQL query.
    rql_search_id str
    saved bool
    Is search saved
    search_id str
    The search ID returned from a successful RQL query.
    search_type str
    The search type. Valid values are config (default) event, network, iam and asset.
    skip_result bool
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    time_range RqlSearchTimeRangeArgs
    The RQL time range spec, as defined below.
    assetDatas List<Property Map>
    List of asset data structs
    cloudType String
    Cloud Type
    configDatas List<Property Map>
    (for search_type="config", list) List of config_data specs, as defined below.
    description String
    Description.
    eventDatas List<Property Map>
    (For search_type="event", list) List of event_data specs, as defined below.
    groupBies List<String>
    (list) Group by.
    heuristicSearch Boolean
    Perform heuristic search. Applicable for config and audit_event.
    iamDatas List<Property Map>
    (For search_type="iam", list) List of iam_data specs, as defined below.
    limit Number
    Limit rules (default: 10).
    name String
    Name.
    networkDatas List<Property Map>
    (For search_type="network", list) List of network_data specs, as defined below.
    query String
    The RQL query.
    rqlSearchId String
    saved Boolean
    Is search saved
    searchId String
    The search ID returned from a successful RQL query.
    searchType String
    The search type. Valid values are config (default) event, network, iam and asset.
    skipResult Boolean
    Skip RQL search results in response. Applicable for config, event and network RQL search.
    timeRange Property Map
    The RQL time range spec, as defined below.

    Supporting Types

    RqlSearchAssetData, RqlSearchAssetDataArgs

    AssetCategory string
    Asset Category
    AssetClass string
    Asset Class
    AssetName string
    Asset Name
    AssetType string
    Asset Type
    CloudAccountId string
    Cloud Account Id
    CloudAccountName string
    Cloud Account Name
    CloudRegion string
    Cloud Region
    CloudServiceName string
    Cloud Service Name
    CloudType string
    Cloud Type
    ExternalAssetId string
    External Asset Id
    FindingCount double
    Finding Count
    FindingTypesBySeverityOrders List<string>
    Finding Types by Severity Order
    LastModifiedAt double
    Last modified timestamp
    MatchedSecurityIssues List<RqlSearchAssetDataMatchedSecurityIssue>
    (list) Matched Security Issues
    MatchingSecurityIssuesCount double
    TotalSecurityIssuesCount double
    Total Security Issues Count

    • matching_security_issues_count" - Matching Security Issues Count
    UnifiedAssetId string
    Unified Asset Id
    AssetCategory string
    Asset Category
    AssetClass string
    Asset Class
    AssetName string
    Asset Name
    AssetType string
    Asset Type
    CloudAccountId string
    Cloud Account Id
    CloudAccountName string
    Cloud Account Name
    CloudRegion string
    Cloud Region
    CloudServiceName string
    Cloud Service Name
    CloudType string
    Cloud Type
    ExternalAssetId string
    External Asset Id
    FindingCount float64
    Finding Count
    FindingTypesBySeverityOrders []string
    Finding Types by Severity Order
    LastModifiedAt float64
    Last modified timestamp
    MatchedSecurityIssues []RqlSearchAssetDataMatchedSecurityIssue
    (list) Matched Security Issues
    MatchingSecurityIssuesCount float64
    TotalSecurityIssuesCount float64
    Total Security Issues Count

    • matching_security_issues_count" - Matching Security Issues Count
    UnifiedAssetId string
    Unified Asset Id
    assetCategory String
    Asset Category
    assetClass String
    Asset Class
    assetName String
    Asset Name
    assetType String
    Asset Type
    cloudAccountId String
    Cloud Account Id
    cloudAccountName String
    Cloud Account Name
    cloudRegion String
    Cloud Region
    cloudServiceName String
    Cloud Service Name
    cloudType String
    Cloud Type
    externalAssetId String
    External Asset Id
    findingCount Double
    Finding Count
    findingTypesBySeverityOrders List<String>
    Finding Types by Severity Order
    lastModifiedAt Double
    Last modified timestamp
    matchedSecurityIssues List<RqlSearchAssetDataMatchedSecurityIssue>
    (list) Matched Security Issues
    matchingSecurityIssuesCount Double
    totalSecurityIssuesCount Double
    Total Security Issues Count

    • matching_security_issues_count" - Matching Security Issues Count
    unifiedAssetId String
    Unified Asset Id
    assetCategory string
    Asset Category
    assetClass string
    Asset Class
    assetName string
    Asset Name
    assetType string
    Asset Type
    cloudAccountId string
    Cloud Account Id
    cloudAccountName string
    Cloud Account Name
    cloudRegion string
    Cloud Region
    cloudServiceName string
    Cloud Service Name
    cloudType string
    Cloud Type
    externalAssetId string
    External Asset Id
    findingCount number
    Finding Count
    findingTypesBySeverityOrders string[]
    Finding Types by Severity Order
    lastModifiedAt number
    Last modified timestamp
    matchedSecurityIssues RqlSearchAssetDataMatchedSecurityIssue[]
    (list) Matched Security Issues
    matchingSecurityIssuesCount number
    totalSecurityIssuesCount number
    Total Security Issues Count

    • matching_security_issues_count" - Matching Security Issues Count
    unifiedAssetId string
    Unified Asset Id
    asset_category str
    Asset Category
    asset_class str
    Asset Class
    asset_name str
    Asset Name
    asset_type str
    Asset Type
    cloud_account_id str
    Cloud Account Id
    cloud_account_name str
    Cloud Account Name
    cloud_region str
    Cloud Region
    cloud_service_name str
    Cloud Service Name
    cloud_type str
    Cloud Type
    external_asset_id str
    External Asset Id
    finding_count float
    Finding Count
    finding_types_by_severity_orders Sequence[str]
    Finding Types by Severity Order
    last_modified_at float
    Last modified timestamp
    matched_security_issues Sequence[RqlSearchAssetDataMatchedSecurityIssue]
    (list) Matched Security Issues
    matching_security_issues_count float
    total_security_issues_count float
    Total Security Issues Count

    • matching_security_issues_count" - Matching Security Issues Count
    unified_asset_id str
    Unified Asset Id
    assetCategory String
    Asset Category
    assetClass String
    Asset Class
    assetName String
    Asset Name
    assetType String
    Asset Type
    cloudAccountId String
    Cloud Account Id
    cloudAccountName String
    Cloud Account Name
    cloudRegion String
    Cloud Region
    cloudServiceName String
    Cloud Service Name
    cloudType String
    Cloud Type
    externalAssetId String
    External Asset Id
    findingCount Number
    Finding Count
    findingTypesBySeverityOrders List<String>
    Finding Types by Severity Order
    lastModifiedAt Number
    Last modified timestamp
    matchedSecurityIssues List<Property Map>
    (list) Matched Security Issues
    matchingSecurityIssuesCount Number
    totalSecurityIssuesCount Number
    Total Security Issues Count

    • matching_security_issues_count" - Matching Security Issues Count
    unifiedAssetId String
    Unified Asset Id

    RqlSearchAssetDataMatchedSecurityIssue, RqlSearchAssetDataMatchedSecurityIssueArgs

    Count double
    Count
    Type string
    Type of Matched Issues
    Count float64
    Count
    Type string
    Type of Matched Issues
    count Double
    Count
    type String
    Type of Matched Issues
    count number
    Count
    type string
    Type of Matched Issues
    count float
    Count
    type str
    Type of Matched Issues
    count Number
    Count
    type String
    Type of Matched Issues

    RqlSearchConfigData, RqlSearchConfigDataArgs

    Name string
    Name.
    StateId string
    The state ID.
    Url string
    The URL.
    Name string
    Name.
    StateId string
    The state ID.
    Url string
    The URL.
    name String
    Name.
    stateId String
    The state ID.
    url String
    The URL.
    name string
    Name.
    stateId string
    The state ID.
    url string
    The URL.
    name str
    Name.
    state_id str
    The state ID.
    url str
    The URL.
    name String
    Name.
    stateId String
    The state ID.
    url String
    The URL.

    RqlSearchEventData, RqlSearchEventDataArgs

    Account string
    Account.
    RegionApiIdentifier string
    Region API identifier.
    RegionId double
    (int) Region ID.
    Account string
    Account.
    RegionApiIdentifier string
    Region API identifier.
    RegionId float64
    (int) Region ID.
    account String
    Account.
    regionApiIdentifier String
    Region API identifier.
    regionId Double
    (int) Region ID.
    account string
    Account.
    regionApiIdentifier string
    Region API identifier.
    regionId number
    (int) Region ID.
    account str
    Account.
    region_api_identifier str
    Region API identifier.
    region_id float
    (int) Region ID.
    account String
    Account.
    regionApiIdentifier String
    Region API identifier.
    regionId Number
    (int) Region ID.

    RqlSearchIamData, RqlSearchIamDataArgs

    AccessedResourcesCount double
    (int) Accessed resource count.
    DestCloudAccount string
    Destination cloud account.
    DestCloudRegion string
    Destination cloud region.
    DestCloudResourceRrn string
    Destination cloud resource RRN.
    DestCloudServiceName string
    Destination cloud service name.
    DestCloudType string
    Destination cloud type.
    DestResourceId string
    Destination cloud resource id.
    DestResourceName string
    Destination cloud resource name.
    DestResourceType string
    Destination cloud resource type.
    EffectiveActionName string
    Effective action name.
    Exceptions List<RqlSearchIamDataException>
    (list) Permission exception list, as defined below.
    GrantedByCloudEntityId string
    Granted by cloud entity id.
    GrantedByCloudEntityName string
    Granted by cloud entity name.
    GrantedByCloudEntityRrn string
    Granted by cloud entity rrn.
    GrantedByCloudEntityType string
    Granted by cloud entity type.
    GrantedByCloudPolicyId string
    Granted by cloud policy id.
    GrantedByCloudPolicyName string
    Granted by cloud policy name.
    GrantedByCloudPolicyRrn string
    Granted by cloud policy rrn.
    GrantedByCloudPolicyType string
    Granted by cloud policy type.
    GrantedByCloudType string
    Granted by cloud type.
    IsWildCardDestCloudResourceName bool
    (bool) Is destination cloud resource name a wildcard.
    LastAccessDate string
    Last access date.
    MessageId string
    Message id.
    SourceCloudAccount string
    Source cloud account.
    SourceCloudRegion string
    Source cloud region.
    SourceCloudResourceRrn string
    Source cloud resource rrn.
    SourceCloudServiceName string
    Source cloud service name.
    SourceCloudType string
    Source cloud type.
    SourceIdpDomain string
    Source IDP domain.
    SourceIdpEmail string
    Source IDP email.
    SourceIdpGroup string
    Source IDP group.
    SourceIdpRrn string
    Source IDP rrn.
    SourceIdpService string
    Source IDP service.
    SourceIdpUserName string
    Source IDP user name.
    SourcePublic bool
    (bool) Is source public.
    SourceResourceId string
    Source cloud resource id.
    SourceResourceName string
    SourceResourceType string
    Source cloud resource type.
    AccessedResourcesCount float64
    (int) Accessed resource count.
    DestCloudAccount string
    Destination cloud account.
    DestCloudRegion string
    Destination cloud region.
    DestCloudResourceRrn string
    Destination cloud resource RRN.
    DestCloudServiceName string
    Destination cloud service name.
    DestCloudType string
    Destination cloud type.
    DestResourceId string
    Destination cloud resource id.
    DestResourceName string
    Destination cloud resource name.
    DestResourceType string
    Destination cloud resource type.
    EffectiveActionName string
    Effective action name.
    Exceptions []RqlSearchIamDataException
    (list) Permission exception list, as defined below.
    GrantedByCloudEntityId string
    Granted by cloud entity id.
    GrantedByCloudEntityName string
    Granted by cloud entity name.
    GrantedByCloudEntityRrn string
    Granted by cloud entity rrn.
    GrantedByCloudEntityType string
    Granted by cloud entity type.
    GrantedByCloudPolicyId string
    Granted by cloud policy id.
    GrantedByCloudPolicyName string
    Granted by cloud policy name.
    GrantedByCloudPolicyRrn string
    Granted by cloud policy rrn.
    GrantedByCloudPolicyType string
    Granted by cloud policy type.
    GrantedByCloudType string
    Granted by cloud type.
    IsWildCardDestCloudResourceName bool
    (bool) Is destination cloud resource name a wildcard.
    LastAccessDate string
    Last access date.
    MessageId string
    Message id.
    SourceCloudAccount string
    Source cloud account.
    SourceCloudRegion string
    Source cloud region.
    SourceCloudResourceRrn string
    Source cloud resource rrn.
    SourceCloudServiceName string
    Source cloud service name.
    SourceCloudType string
    Source cloud type.
    SourceIdpDomain string
    Source IDP domain.
    SourceIdpEmail string
    Source IDP email.
    SourceIdpGroup string
    Source IDP group.
    SourceIdpRrn string
    Source IDP rrn.
    SourceIdpService string
    Source IDP service.
    SourceIdpUserName string
    Source IDP user name.
    SourcePublic bool
    (bool) Is source public.
    SourceResourceId string
    Source cloud resource id.
    SourceResourceName string
    SourceResourceType string
    Source cloud resource type.
    accessedResourcesCount Double
    (int) Accessed resource count.
    destCloudAccount String
    Destination cloud account.
    destCloudRegion String
    Destination cloud region.
    destCloudResourceRrn String
    Destination cloud resource RRN.
    destCloudServiceName String
    Destination cloud service name.
    destCloudType String
    Destination cloud type.
    destResourceId String
    Destination cloud resource id.
    destResourceName String
    Destination cloud resource name.
    destResourceType String
    Destination cloud resource type.
    effectiveActionName String
    Effective action name.
    exceptions List<RqlSearchIamDataException>
    (list) Permission exception list, as defined below.
    grantedByCloudEntityId String
    Granted by cloud entity id.
    grantedByCloudEntityName String
    Granted by cloud entity name.
    grantedByCloudEntityRrn String
    Granted by cloud entity rrn.
    grantedByCloudEntityType String
    Granted by cloud entity type.
    grantedByCloudPolicyId String
    Granted by cloud policy id.
    grantedByCloudPolicyName String
    Granted by cloud policy name.
    grantedByCloudPolicyRrn String
    Granted by cloud policy rrn.
    grantedByCloudPolicyType String
    Granted by cloud policy type.
    grantedByCloudType String
    Granted by cloud type.
    isWildCardDestCloudResourceName Boolean
    (bool) Is destination cloud resource name a wildcard.
    lastAccessDate String
    Last access date.
    messageId String
    Message id.
    sourceCloudAccount String
    Source cloud account.
    sourceCloudRegion String
    Source cloud region.
    sourceCloudResourceRrn String
    Source cloud resource rrn.
    sourceCloudServiceName String
    Source cloud service name.
    sourceCloudType String
    Source cloud type.
    sourceIdpDomain String
    Source IDP domain.
    sourceIdpEmail String
    Source IDP email.
    sourceIdpGroup String
    Source IDP group.
    sourceIdpRrn String
    Source IDP rrn.
    sourceIdpService String
    Source IDP service.
    sourceIdpUserName String
    Source IDP user name.
    sourcePublic Boolean
    (bool) Is source public.
    sourceResourceId String
    Source cloud resource id.
    sourceResourceName String
    sourceResourceType String
    Source cloud resource type.
    accessedResourcesCount number
    (int) Accessed resource count.
    destCloudAccount string
    Destination cloud account.
    destCloudRegion string
    Destination cloud region.
    destCloudResourceRrn string
    Destination cloud resource RRN.
    destCloudServiceName string
    Destination cloud service name.
    destCloudType string
    Destination cloud type.
    destResourceId string
    Destination cloud resource id.
    destResourceName string
    Destination cloud resource name.
    destResourceType string
    Destination cloud resource type.
    effectiveActionName string
    Effective action name.
    exceptions RqlSearchIamDataException[]
    (list) Permission exception list, as defined below.
    grantedByCloudEntityId string
    Granted by cloud entity id.
    grantedByCloudEntityName string
    Granted by cloud entity name.
    grantedByCloudEntityRrn string
    Granted by cloud entity rrn.
    grantedByCloudEntityType string
    Granted by cloud entity type.
    grantedByCloudPolicyId string
    Granted by cloud policy id.
    grantedByCloudPolicyName string
    Granted by cloud policy name.
    grantedByCloudPolicyRrn string
    Granted by cloud policy rrn.
    grantedByCloudPolicyType string
    Granted by cloud policy type.
    grantedByCloudType string
    Granted by cloud type.
    isWildCardDestCloudResourceName boolean
    (bool) Is destination cloud resource name a wildcard.
    lastAccessDate string
    Last access date.
    messageId string
    Message id.
    sourceCloudAccount string
    Source cloud account.
    sourceCloudRegion string
    Source cloud region.
    sourceCloudResourceRrn string
    Source cloud resource rrn.
    sourceCloudServiceName string
    Source cloud service name.
    sourceCloudType string
    Source cloud type.
    sourceIdpDomain string
    Source IDP domain.
    sourceIdpEmail string
    Source IDP email.
    sourceIdpGroup string
    Source IDP group.
    sourceIdpRrn string
    Source IDP rrn.
    sourceIdpService string
    Source IDP service.
    sourceIdpUserName string
    Source IDP user name.
    sourcePublic boolean
    (bool) Is source public.
    sourceResourceId string
    Source cloud resource id.
    sourceResourceName string
    sourceResourceType string
    Source cloud resource type.
    accessed_resources_count float
    (int) Accessed resource count.
    dest_cloud_account str
    Destination cloud account.
    dest_cloud_region str
    Destination cloud region.
    dest_cloud_resource_rrn str
    Destination cloud resource RRN.
    dest_cloud_service_name str
    Destination cloud service name.
    dest_cloud_type str
    Destination cloud type.
    dest_resource_id str
    Destination cloud resource id.
    dest_resource_name str
    Destination cloud resource name.
    dest_resource_type str
    Destination cloud resource type.
    effective_action_name str
    Effective action name.
    exceptions Sequence[RqlSearchIamDataException]
    (list) Permission exception list, as defined below.
    granted_by_cloud_entity_id str
    Granted by cloud entity id.
    granted_by_cloud_entity_name str
    Granted by cloud entity name.
    granted_by_cloud_entity_rrn str
    Granted by cloud entity rrn.
    granted_by_cloud_entity_type str
    Granted by cloud entity type.
    granted_by_cloud_policy_id str
    Granted by cloud policy id.
    granted_by_cloud_policy_name str
    Granted by cloud policy name.
    granted_by_cloud_policy_rrn str
    Granted by cloud policy rrn.
    granted_by_cloud_policy_type str
    Granted by cloud policy type.
    granted_by_cloud_type str
    Granted by cloud type.
    is_wild_card_dest_cloud_resource_name bool
    (bool) Is destination cloud resource name a wildcard.
    last_access_date str
    Last access date.
    message_id str
    Message id.
    source_cloud_account str
    Source cloud account.
    source_cloud_region str
    Source cloud region.
    source_cloud_resource_rrn str
    Source cloud resource rrn.
    source_cloud_service_name str
    Source cloud service name.
    source_cloud_type str
    Source cloud type.
    source_idp_domain str
    Source IDP domain.
    source_idp_email str
    Source IDP email.
    source_idp_group str
    Source IDP group.
    source_idp_rrn str
    Source IDP rrn.
    source_idp_service str
    Source IDP service.
    source_idp_user_name str
    Source IDP user name.
    source_public bool
    (bool) Is source public.
    source_resource_id str
    Source cloud resource id.
    source_resource_name str
    source_resource_type str
    Source cloud resource type.
    accessedResourcesCount Number
    (int) Accessed resource count.
    destCloudAccount String
    Destination cloud account.
    destCloudRegion String
    Destination cloud region.
    destCloudResourceRrn String
    Destination cloud resource RRN.
    destCloudServiceName String
    Destination cloud service name.
    destCloudType String
    Destination cloud type.
    destResourceId String
    Destination cloud resource id.
    destResourceName String
    Destination cloud resource name.
    destResourceType String
    Destination cloud resource type.
    effectiveActionName String
    Effective action name.
    exceptions List<Property Map>
    (list) Permission exception list, as defined below.
    grantedByCloudEntityId String
    Granted by cloud entity id.
    grantedByCloudEntityName String
    Granted by cloud entity name.
    grantedByCloudEntityRrn String
    Granted by cloud entity rrn.
    grantedByCloudEntityType String
    Granted by cloud entity type.
    grantedByCloudPolicyId String
    Granted by cloud policy id.
    grantedByCloudPolicyName String
    Granted by cloud policy name.
    grantedByCloudPolicyRrn String
    Granted by cloud policy rrn.
    grantedByCloudPolicyType String
    Granted by cloud policy type.
    grantedByCloudType String
    Granted by cloud type.
    isWildCardDestCloudResourceName Boolean
    (bool) Is destination cloud resource name a wildcard.
    lastAccessDate String
    Last access date.
    messageId String
    Message id.
    sourceCloudAccount String
    Source cloud account.
    sourceCloudRegion String
    Source cloud region.
    sourceCloudResourceRrn String
    Source cloud resource rrn.
    sourceCloudServiceName String
    Source cloud service name.
    sourceCloudType String
    Source cloud type.
    sourceIdpDomain String
    Source IDP domain.
    sourceIdpEmail String
    Source IDP email.
    sourceIdpGroup String
    Source IDP group.
    sourceIdpRrn String
    Source IDP rrn.
    sourceIdpService String
    Source IDP service.
    sourceIdpUserName String
    Source IDP user name.
    sourcePublic Boolean
    (bool) Is source public.
    sourceResourceId String
    Source cloud resource id.
    sourceResourceName String
    sourceResourceType String
    Source cloud resource type.

    RqlSearchIamDataException, RqlSearchIamDataExceptionArgs

    MessageCode string
    Message code.
    MessageCode string
    Message code.
    messageCode String
    Message code.
    messageCode string
    Message code.
    message_code str
    Message code.
    messageCode String
    Message code.

    RqlSearchNetworkData, RqlSearchNetworkDataArgs

    Account string
    Account.
    AccountName string
    Account Name.
    RegionId double
    (int) Region ID.
    Account string
    Account.
    AccountName string
    Account Name.
    RegionId float64
    (int) Region ID.
    account String
    Account.
    accountName String
    Account Name.
    regionId Double
    (int) Region ID.
    account string
    Account.
    accountName string
    Account Name.
    regionId number
    (int) Region ID.
    account str
    Account.
    account_name str
    Account Name.
    region_id float
    (int) Region ID.
    account String
    Account.
    accountName String
    Account Name.
    regionId Number
    (int) Region ID.

    RqlSearchTimeRange, RqlSearchTimeRangeArgs

    Absolutes List<RqlSearchTimeRangeAbsolute>
    An absolute time range spec, as defined below.
    Relatives List<RqlSearchTimeRangeRelative>
    A relative time range spec, as defined below.
    ToNows List<RqlSearchTimeRangeToNow>
    A "To Now" time range spec, as defined below.
    Absolutes []RqlSearchTimeRangeAbsolute
    An absolute time range spec, as defined below.
    Relatives []RqlSearchTimeRangeRelative
    A relative time range spec, as defined below.
    ToNows []RqlSearchTimeRangeToNow
    A "To Now" time range spec, as defined below.
    absolutes List<RqlSearchTimeRangeAbsolute>
    An absolute time range spec, as defined below.
    relatives List<RqlSearchTimeRangeRelative>
    A relative time range spec, as defined below.
    toNows List<RqlSearchTimeRangeToNow>
    A "To Now" time range spec, as defined below.
    absolutes RqlSearchTimeRangeAbsolute[]
    An absolute time range spec, as defined below.
    relatives RqlSearchTimeRangeRelative[]
    A relative time range spec, as defined below.
    toNows RqlSearchTimeRangeToNow[]
    A "To Now" time range spec, as defined below.
    absolutes Sequence[RqlSearchTimeRangeAbsolute]
    An absolute time range spec, as defined below.
    relatives Sequence[RqlSearchTimeRangeRelative]
    A relative time range spec, as defined below.
    to_nows Sequence[RqlSearchTimeRangeToNow]
    A "To Now" time range spec, as defined below.
    absolutes List<Property Map>
    An absolute time range spec, as defined below.
    relatives List<Property Map>
    A relative time range spec, as defined below.
    toNows List<Property Map>
    A "To Now" time range spec, as defined below.

    RqlSearchTimeRangeAbsolute, RqlSearchTimeRangeAbsoluteArgs

    End double
    End time
    Start double
    Start time
    End float64
    End time
    Start float64
    Start time
    end Double
    End time
    start Double
    Start time
    end number
    End time
    start number
    Start time
    end float
    End time
    start float
    Start time
    end Number
    End time
    start Number
    Start time

    RqlSearchTimeRangeRelative, RqlSearchTimeRangeRelativeArgs

    Amount double
    The time number
    Unit string
    The time unit
    Amount float64
    The time number
    Unit string
    The time unit
    amount Double
    The time number
    unit String
    The time unit
    amount number
    The time number
    unit string
    The time unit
    amount float
    The time number
    unit str
    The time unit
    amount Number
    The time number
    unit String
    The time unit

    RqlSearchTimeRangeToNow, RqlSearchTimeRangeToNowArgs

    Unit string
    The time unit
    Unit string
    The time unit
    unit String
    The time unit
    unit string
    The time unit
    unit str
    The time unit
    unit String
    The time unit

    Package Details

    Repository
    prismacloud paloaltonetworks/terraform-provider-prismacloud
    License
    Notes
    This Pulumi package is based on the prismacloud Terraform Provider.
    prismacloud logo
    prismacloud 1.7.0 published on Monday, Apr 14, 2025 by paloaltonetworks