prismacloud.RqlSearch
Explore with Pulumi AI
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.
- Heuristic
Search bool - Perform heuristic search. Applicable for
config
andaudit_event
. - Limit double
- Limit rules (default:
10
). - Rql
Search stringId - Search
Id string - The search ID returned from a successful RQL query.
- Search
Type string - The search type. Valid values are
config
(default)event
,network
,iam
andasset
. - Skip
Result bool - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - Time
Range RqlSearch Time Range - The RQL time range spec, as defined below.
- Query string
- The RQL query.
- Heuristic
Search bool - Perform heuristic search. Applicable for
config
andaudit_event
. - Limit float64
- Limit rules (default:
10
). - Rql
Search stringId - Search
Id string - The search ID returned from a successful RQL query.
- Search
Type string - The search type. Valid values are
config
(default)event
,network
,iam
andasset
. - Skip
Result bool - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - Time
Range RqlSearch Time Range Args - The RQL time range spec, as defined below.
- query String
- The RQL query.
- heuristic
Search Boolean - Perform heuristic search. Applicable for
config
andaudit_event
. - limit Double
- Limit rules (default:
10
). - rql
Search StringId - search
Id String - The search ID returned from a successful RQL query.
- search
Type String - The search type. Valid values are
config
(default)event
,network
,iam
andasset
. - skip
Result Boolean - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - time
Range RqlSearch Time Range - The RQL time range spec, as defined below.
- query string
- The RQL query.
- heuristic
Search boolean - Perform heuristic search. Applicable for
config
andaudit_event
. - limit number
- Limit rules (default:
10
). - rql
Search stringId - search
Id string - The search ID returned from a successful RQL query.
- search
Type string - The search type. Valid values are
config
(default)event
,network
,iam
andasset
. - skip
Result boolean - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - time
Range RqlSearch Time Range - The RQL time range spec, as defined below.
- query str
- The RQL query.
- heuristic_
search bool - Perform heuristic search. Applicable for
config
andaudit_event
. - limit float
- Limit rules (default:
10
). - rql_
search_ strid - 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
andasset
. - skip_
result bool - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - time_
range RqlSearch Time Range Args - The RQL time range spec, as defined below.
- query String
- The RQL query.
- heuristic
Search Boolean - Perform heuristic search. Applicable for
config
andaudit_event
. - limit Number
- Limit rules (default:
10
). - rql
Search StringId - search
Id String - The search ID returned from a successful RQL query.
- search
Type String - The search type. Valid values are
config
(default)event
,network
,iam
andasset
. - skip
Result Boolean - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - time
Range 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:
- Asset
Datas List<RqlSearch Asset Data> - List of asset data structs
- Cloud
Type string - Cloud Type
- Config
Datas List<RqlSearch Config Data> - (for
search_type="config"
, list) List of config_data specs, as defined below. - Description string
- Description.
- Event
Datas List<RqlSearch Event Data> - (For
search_type="event"
, list) List of event_data specs, as defined below. - Group
Bies List<string> - (list) Group by.
- Iam
Datas List<RqlSearch Iam Data> - (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.
- Network
Datas List<RqlSearch Network Data> - (For
search_type="network"
, list) List of network_data specs, as defined below. - Saved bool
- Is search saved
- Asset
Datas []RqlSearch Asset Data - List of asset data structs
- Cloud
Type string - Cloud Type
- Config
Datas []RqlSearch Config Data - (for
search_type="config"
, list) List of config_data specs, as defined below. - Description string
- Description.
- Event
Datas []RqlSearch Event Data - (For
search_type="event"
, list) List of event_data specs, as defined below. - Group
Bies []string - (list) Group by.
- Iam
Datas []RqlSearch Iam Data - (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.
- Network
Datas []RqlSearch Network Data - (For
search_type="network"
, list) List of network_data specs, as defined below. - Saved bool
- Is search saved
- asset
Datas List<RqlSearch Asset Data> - List of asset data structs
- cloud
Type String - Cloud Type
- config
Datas List<RqlSearch Config Data> - (for
search_type="config"
, list) List of config_data specs, as defined below. - description String
- Description.
- event
Datas List<RqlSearch Event Data> - (For
search_type="event"
, list) List of event_data specs, as defined below. - group
Bies List<String> - (list) Group by.
- iam
Datas List<RqlSearch Iam Data> - (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.
- network
Datas List<RqlSearch Network Data> - (For
search_type="network"
, list) List of network_data specs, as defined below. - saved Boolean
- Is search saved
- asset
Datas RqlSearch Asset Data[] - List of asset data structs
- cloud
Type string - Cloud Type
- config
Datas RqlSearch Config Data[] - (for
search_type="config"
, list) List of config_data specs, as defined below. - description string
- Description.
- event
Datas RqlSearch Event Data[] - (For
search_type="event"
, list) List of event_data specs, as defined below. - group
Bies string[] - (list) Group by.
- iam
Datas RqlSearch Iam Data[] - (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.
- network
Datas RqlSearch Network Data[] - (For
search_type="network"
, list) List of network_data specs, as defined below. - saved boolean
- Is search saved
- asset_
datas Sequence[RqlSearch Asset Data] - List of asset data structs
- cloud_
type str - Cloud Type
- config_
datas Sequence[RqlSearch Config Data] - (for
search_type="config"
, list) List of config_data specs, as defined below. - description str
- Description.
- event_
datas Sequence[RqlSearch Event Data] - (For
search_type="event"
, list) List of event_data specs, as defined below. - group_
bies Sequence[str] - (list) Group by.
- iam_
datas Sequence[RqlSearch Iam Data] - (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[RqlSearch Network Data] - (For
search_type="network"
, list) List of network_data specs, as defined below. - saved bool
- Is search saved
- asset
Datas List<Property Map> - List of asset data structs
- cloud
Type String - Cloud Type
- config
Datas List<Property Map> - (for
search_type="config"
, list) List of config_data specs, as defined below. - description String
- Description.
- event
Datas List<Property Map> - (For
search_type="event"
, list) List of event_data specs, as defined below. - group
Bies List<String> - (list) Group by.
- iam
Datas 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.
- network
Datas 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.
- Asset
Datas List<RqlSearch Asset Data> - List of asset data structs
- Cloud
Type string - Cloud Type
- Config
Datas List<RqlSearch Config Data> - (for
search_type="config"
, list) List of config_data specs, as defined below. - Description string
- Description.
- Event
Datas List<RqlSearch Event Data> - (For
search_type="event"
, list) List of event_data specs, as defined below. - Group
Bies List<string> - (list) Group by.
- Heuristic
Search bool - Perform heuristic search. Applicable for
config
andaudit_event
. - Iam
Datas List<RqlSearch Iam Data> - (For
search_type="iam"
, list) List of iam_data specs, as defined below. - Limit double
- Limit rules (default:
10
). - Name string
- Name.
- Network
Datas List<RqlSearch Network Data> - (For
search_type="network"
, list) List of network_data specs, as defined below. - Query string
- The RQL query.
- Rql
Search stringId - Saved bool
- Is search saved
- Search
Id string - The search ID returned from a successful RQL query.
- Search
Type string - The search type. Valid values are
config
(default)event
,network
,iam
andasset
. - Skip
Result bool - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - Time
Range RqlSearch Time Range - The RQL time range spec, as defined below.
- Asset
Datas []RqlSearch Asset Data Args - List of asset data structs
- Cloud
Type string - Cloud Type
- Config
Datas []RqlSearch Config Data Args - (for
search_type="config"
, list) List of config_data specs, as defined below. - Description string
- Description.
- Event
Datas []RqlSearch Event Data Args - (For
search_type="event"
, list) List of event_data specs, as defined below. - Group
Bies []string - (list) Group by.
- Heuristic
Search bool - Perform heuristic search. Applicable for
config
andaudit_event
. - Iam
Datas []RqlSearch Iam Data Args - (For
search_type="iam"
, list) List of iam_data specs, as defined below. - Limit float64
- Limit rules (default:
10
). - Name string
- Name.
- Network
Datas []RqlSearch Network Data Args - (For
search_type="network"
, list) List of network_data specs, as defined below. - Query string
- The RQL query.
- Rql
Search stringId - Saved bool
- Is search saved
- Search
Id string - The search ID returned from a successful RQL query.
- Search
Type string - The search type. Valid values are
config
(default)event
,network
,iam
andasset
. - Skip
Result bool - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - Time
Range RqlSearch Time Range Args - The RQL time range spec, as defined below.
- asset
Datas List<RqlSearch Asset Data> - List of asset data structs
- cloud
Type String - Cloud Type
- config
Datas List<RqlSearch Config Data> - (for
search_type="config"
, list) List of config_data specs, as defined below. - description String
- Description.
- event
Datas List<RqlSearch Event Data> - (For
search_type="event"
, list) List of event_data specs, as defined below. - group
Bies List<String> - (list) Group by.
- heuristic
Search Boolean - Perform heuristic search. Applicable for
config
andaudit_event
. - iam
Datas List<RqlSearch Iam Data> - (For
search_type="iam"
, list) List of iam_data specs, as defined below. - limit Double
- Limit rules (default:
10
). - name String
- Name.
- network
Datas List<RqlSearch Network Data> - (For
search_type="network"
, list) List of network_data specs, as defined below. - query String
- The RQL query.
- rql
Search StringId - saved Boolean
- Is search saved
- search
Id String - The search ID returned from a successful RQL query.
- search
Type String - The search type. Valid values are
config
(default)event
,network
,iam
andasset
. - skip
Result Boolean - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - time
Range RqlSearch Time Range - The RQL time range spec, as defined below.
- asset
Datas RqlSearch Asset Data[] - List of asset data structs
- cloud
Type string - Cloud Type
- config
Datas RqlSearch Config Data[] - (for
search_type="config"
, list) List of config_data specs, as defined below. - description string
- Description.
- event
Datas RqlSearch Event Data[] - (For
search_type="event"
, list) List of event_data specs, as defined below. - group
Bies string[] - (list) Group by.
- heuristic
Search boolean - Perform heuristic search. Applicable for
config
andaudit_event
. - iam
Datas RqlSearch Iam Data[] - (For
search_type="iam"
, list) List of iam_data specs, as defined below. - limit number
- Limit rules (default:
10
). - name string
- Name.
- network
Datas RqlSearch Network Data[] - (For
search_type="network"
, list) List of network_data specs, as defined below. - query string
- The RQL query.
- rql
Search stringId - saved boolean
- Is search saved
- search
Id string - The search ID returned from a successful RQL query.
- search
Type string - The search type. Valid values are
config
(default)event
,network
,iam
andasset
. - skip
Result boolean - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - time
Range RqlSearch Time Range - The RQL time range spec, as defined below.
- asset_
datas Sequence[RqlSearch Asset Data Args] - List of asset data structs
- cloud_
type str - Cloud Type
- config_
datas Sequence[RqlSearch Config Data Args] - (for
search_type="config"
, list) List of config_data specs, as defined below. - description str
- Description.
- event_
datas Sequence[RqlSearch Event Data Args] - (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
andaudit_event
. - iam_
datas Sequence[RqlSearch Iam Data Args] - (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[RqlSearch Network Data Args] - (For
search_type="network"
, list) List of network_data specs, as defined below. - query str
- The RQL query.
- rql_
search_ strid - 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
andasset
. - skip_
result bool - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - time_
range RqlSearch Time Range Args - The RQL time range spec, as defined below.
- asset
Datas List<Property Map> - List of asset data structs
- cloud
Type String - Cloud Type
- config
Datas List<Property Map> - (for
search_type="config"
, list) List of config_data specs, as defined below. - description String
- Description.
- event
Datas List<Property Map> - (For
search_type="event"
, list) List of event_data specs, as defined below. - group
Bies List<String> - (list) Group by.
- heuristic
Search Boolean - Perform heuristic search. Applicable for
config
andaudit_event
. - iam
Datas 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.
- network
Datas List<Property Map> - (For
search_type="network"
, list) List of network_data specs, as defined below. - query String
- The RQL query.
- rql
Search StringId - saved Boolean
- Is search saved
- search
Id String - The search ID returned from a successful RQL query.
- search
Type String - The search type. Valid values are
config
(default)event
,network
,iam
andasset
. - skip
Result Boolean - Skip RQL search results in response. Applicable for
config
,event
andnetwork
RQL search. - time
Range Property Map - The RQL time range spec, as defined below.
Supporting Types
RqlSearchAssetData, RqlSearchAssetDataArgs
- Asset
Category string - Asset Category
- Asset
Class string - Asset Class
- Asset
Name string - Asset Name
- Asset
Type string - Asset Type
- Cloud
Account stringId - Cloud Account Id
- Cloud
Account stringName - Cloud Account Name
- Cloud
Region string - Cloud Region
- Cloud
Service stringName - Cloud Service Name
- Cloud
Type string - Cloud Type
- External
Asset stringId - External Asset Id
- Finding
Count double - Finding Count
- Finding
Types List<string>By Severity Orders - Finding Types by Severity Order
- Last
Modified doubleAt - Last modified timestamp
- Matched
Security List<RqlIssues Search Asset Data Matched Security Issue> - (list) Matched Security Issues
- Matching
Security doubleIssues Count - Total
Security doubleIssues Count - Total Security Issues Count
matching_security_issues_count"
- Matching Security Issues Count
- Unified
Asset stringId - Unified Asset Id
- Asset
Category string - Asset Category
- Asset
Class string - Asset Class
- Asset
Name string - Asset Name
- Asset
Type string - Asset Type
- Cloud
Account stringId - Cloud Account Id
- Cloud
Account stringName - Cloud Account Name
- Cloud
Region string - Cloud Region
- Cloud
Service stringName - Cloud Service Name
- Cloud
Type string - Cloud Type
- External
Asset stringId - External Asset Id
- Finding
Count float64 - Finding Count
- Finding
Types []stringBy Severity Orders - Finding Types by Severity Order
- Last
Modified float64At - Last modified timestamp
- Matched
Security []RqlIssues Search Asset Data Matched Security Issue - (list) Matched Security Issues
- Matching
Security float64Issues Count - Total
Security float64Issues Count - Total Security Issues Count
matching_security_issues_count"
- Matching Security Issues Count
- Unified
Asset stringId - Unified Asset Id
- asset
Category String - Asset Category
- asset
Class String - Asset Class
- asset
Name String - Asset Name
- asset
Type String - Asset Type
- cloud
Account StringId - Cloud Account Id
- cloud
Account StringName - Cloud Account Name
- cloud
Region String - Cloud Region
- cloud
Service StringName - Cloud Service Name
- cloud
Type String - Cloud Type
- external
Asset StringId - External Asset Id
- finding
Count Double - Finding Count
- finding
Types List<String>By Severity Orders - Finding Types by Severity Order
- last
Modified DoubleAt - Last modified timestamp
- matched
Security List<RqlIssues Search Asset Data Matched Security Issue> - (list) Matched Security Issues
- matching
Security DoubleIssues Count - total
Security DoubleIssues Count - Total Security Issues Count
matching_security_issues_count"
- Matching Security Issues Count
- unified
Asset StringId - Unified Asset Id
- asset
Category string - Asset Category
- asset
Class string - Asset Class
- asset
Name string - Asset Name
- asset
Type string - Asset Type
- cloud
Account stringId - Cloud Account Id
- cloud
Account stringName - Cloud Account Name
- cloud
Region string - Cloud Region
- cloud
Service stringName - Cloud Service Name
- cloud
Type string - Cloud Type
- external
Asset stringId - External Asset Id
- finding
Count number - Finding Count
- finding
Types string[]By Severity Orders - Finding Types by Severity Order
- last
Modified numberAt - Last modified timestamp
- matched
Security RqlIssues Search Asset Data Matched Security Issue[] - (list) Matched Security Issues
- matching
Security numberIssues Count - total
Security numberIssues Count - Total Security Issues Count
matching_security_issues_count"
- Matching Security Issues Count
- unified
Asset stringId - 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_ strid - Cloud Account Id
- cloud_
account_ strname - Cloud Account Name
- cloud_
region str - Cloud Region
- cloud_
service_ strname - Cloud Service Name
- cloud_
type str - Cloud Type
- external_
asset_ strid - External Asset Id
- finding_
count float - Finding Count
- finding_
types_ Sequence[str]by_ severity_ orders - Finding Types by Severity Order
- last_
modified_ floatat - Last modified timestamp
- matched_
security_ Sequence[Rqlissues Search Asset Data Matched Security Issue] - (list) Matched Security Issues
- matching_
security_ floatissues_ count - total_
security_ floatissues_ count - Total Security Issues Count
matching_security_issues_count"
- Matching Security Issues Count
- unified_
asset_ strid - Unified Asset Id
- asset
Category String - Asset Category
- asset
Class String - Asset Class
- asset
Name String - Asset Name
- asset
Type String - Asset Type
- cloud
Account StringId - Cloud Account Id
- cloud
Account StringName - Cloud Account Name
- cloud
Region String - Cloud Region
- cloud
Service StringName - Cloud Service Name
- cloud
Type String - Cloud Type
- external
Asset StringId - External Asset Id
- finding
Count Number - Finding Count
- finding
Types List<String>By Severity Orders - Finding Types by Severity Order
- last
Modified NumberAt - Last modified timestamp
- matched
Security List<Property Map>Issues - (list) Matched Security Issues
- matching
Security NumberIssues Count - total
Security NumberIssues Count - Total Security Issues Count
matching_security_issues_count"
- Matching Security Issues Count
- unified
Asset StringId - Unified Asset Id
RqlSearchAssetDataMatchedSecurityIssue, RqlSearchAssetDataMatchedSecurityIssueArgs
RqlSearchConfigData, RqlSearchConfigDataArgs
RqlSearchEventData, RqlSearchEventDataArgs
- Account string
- Account.
- Region
Api stringIdentifier - Region API identifier.
- Region
Id double - (int) Region ID.
- Account string
- Account.
- Region
Api stringIdentifier - Region API identifier.
- Region
Id float64 - (int) Region ID.
- account String
- Account.
- region
Api StringIdentifier - Region API identifier.
- region
Id Double - (int) Region ID.
- account string
- Account.
- region
Api stringIdentifier - Region API identifier.
- region
Id number - (int) Region ID.
- account str
- Account.
- region_
api_ stridentifier - Region API identifier.
- region_
id float - (int) Region ID.
- account String
- Account.
- region
Api StringIdentifier - Region API identifier.
- region
Id Number - (int) Region ID.
RqlSearchIamData, RqlSearchIamDataArgs
- Accessed
Resources doubleCount - (int) Accessed resource count.
- Dest
Cloud stringAccount - Destination cloud account.
- Dest
Cloud stringRegion - Destination cloud region.
- Dest
Cloud stringResource Rrn - Destination cloud resource RRN.
- Dest
Cloud stringService Name - Destination cloud service name.
- Dest
Cloud stringType - Destination cloud type.
- Dest
Resource stringId - Destination cloud resource id.
- Dest
Resource stringName - Destination cloud resource name.
- Dest
Resource stringType - Destination cloud resource type.
- Effective
Action stringName - Effective action name.
- Exceptions
List<Rql
Search Iam Data Exception> - (list) Permission exception list, as defined below.
- Granted
By stringCloud Entity Id - Granted by cloud entity id.
- Granted
By stringCloud Entity Name - Granted by cloud entity name.
- Granted
By stringCloud Entity Rrn - Granted by cloud entity rrn.
- Granted
By stringCloud Entity Type - Granted by cloud entity type.
- Granted
By stringCloud Policy Id - Granted by cloud policy id.
- Granted
By stringCloud Policy Name - Granted by cloud policy name.
- Granted
By stringCloud Policy Rrn - Granted by cloud policy rrn.
- Granted
By stringCloud Policy Type - Granted by cloud policy type.
- Granted
By stringCloud Type - Granted by cloud type.
- Is
Wild boolCard Dest Cloud Resource Name - (bool) Is destination cloud resource name a wildcard.
- Last
Access stringDate - Last access date.
- Message
Id string - Message id.
- Source
Cloud stringAccount - Source cloud account.
- Source
Cloud stringRegion - Source cloud region.
- Source
Cloud stringResource Rrn - Source cloud resource rrn.
- Source
Cloud stringService Name - Source cloud service name.
- Source
Cloud stringType - Source cloud type.
- Source
Idp stringDomain - Source IDP domain.
- Source
Idp stringEmail - Source IDP email.
- Source
Idp stringGroup - Source IDP group.
- Source
Idp stringRrn - Source IDP rrn.
- Source
Idp stringService - Source IDP service.
- Source
Idp stringUser Name - Source IDP user name.
- Source
Public bool - (bool) Is source public.
- Source
Resource stringId - Source cloud resource id.
- Source
Resource stringName - Source
Resource stringType - Source cloud resource type.
- Accessed
Resources float64Count - (int) Accessed resource count.
- Dest
Cloud stringAccount - Destination cloud account.
- Dest
Cloud stringRegion - Destination cloud region.
- Dest
Cloud stringResource Rrn - Destination cloud resource RRN.
- Dest
Cloud stringService Name - Destination cloud service name.
- Dest
Cloud stringType - Destination cloud type.
- Dest
Resource stringId - Destination cloud resource id.
- Dest
Resource stringName - Destination cloud resource name.
- Dest
Resource stringType - Destination cloud resource type.
- Effective
Action stringName - Effective action name.
- Exceptions
[]Rql
Search Iam Data Exception - (list) Permission exception list, as defined below.
- Granted
By stringCloud Entity Id - Granted by cloud entity id.
- Granted
By stringCloud Entity Name - Granted by cloud entity name.
- Granted
By stringCloud Entity Rrn - Granted by cloud entity rrn.
- Granted
By stringCloud Entity Type - Granted by cloud entity type.
- Granted
By stringCloud Policy Id - Granted by cloud policy id.
- Granted
By stringCloud Policy Name - Granted by cloud policy name.
- Granted
By stringCloud Policy Rrn - Granted by cloud policy rrn.
- Granted
By stringCloud Policy Type - Granted by cloud policy type.
- Granted
By stringCloud Type - Granted by cloud type.
- Is
Wild boolCard Dest Cloud Resource Name - (bool) Is destination cloud resource name a wildcard.
- Last
Access stringDate - Last access date.
- Message
Id string - Message id.
- Source
Cloud stringAccount - Source cloud account.
- Source
Cloud stringRegion - Source cloud region.
- Source
Cloud stringResource Rrn - Source cloud resource rrn.
- Source
Cloud stringService Name - Source cloud service name.
- Source
Cloud stringType - Source cloud type.
- Source
Idp stringDomain - Source IDP domain.
- Source
Idp stringEmail - Source IDP email.
- Source
Idp stringGroup - Source IDP group.
- Source
Idp stringRrn - Source IDP rrn.
- Source
Idp stringService - Source IDP service.
- Source
Idp stringUser Name - Source IDP user name.
- Source
Public bool - (bool) Is source public.
- Source
Resource stringId - Source cloud resource id.
- Source
Resource stringName - Source
Resource stringType - Source cloud resource type.
- accessed
Resources DoubleCount - (int) Accessed resource count.
- dest
Cloud StringAccount - Destination cloud account.
- dest
Cloud StringRegion - Destination cloud region.
- dest
Cloud StringResource Rrn - Destination cloud resource RRN.
- dest
Cloud StringService Name - Destination cloud service name.
- dest
Cloud StringType - Destination cloud type.
- dest
Resource StringId - Destination cloud resource id.
- dest
Resource StringName - Destination cloud resource name.
- dest
Resource StringType - Destination cloud resource type.
- effective
Action StringName - Effective action name.
- exceptions
List<Rql
Search Iam Data Exception> - (list) Permission exception list, as defined below.
- granted
By StringCloud Entity Id - Granted by cloud entity id.
- granted
By StringCloud Entity Name - Granted by cloud entity name.
- granted
By StringCloud Entity Rrn - Granted by cloud entity rrn.
- granted
By StringCloud Entity Type - Granted by cloud entity type.
- granted
By StringCloud Policy Id - Granted by cloud policy id.
- granted
By StringCloud Policy Name - Granted by cloud policy name.
- granted
By StringCloud Policy Rrn - Granted by cloud policy rrn.
- granted
By StringCloud Policy Type - Granted by cloud policy type.
- granted
By StringCloud Type - Granted by cloud type.
- is
Wild BooleanCard Dest Cloud Resource Name - (bool) Is destination cloud resource name a wildcard.
- last
Access StringDate - Last access date.
- message
Id String - Message id.
- source
Cloud StringAccount - Source cloud account.
- source
Cloud StringRegion - Source cloud region.
- source
Cloud StringResource Rrn - Source cloud resource rrn.
- source
Cloud StringService Name - Source cloud service name.
- source
Cloud StringType - Source cloud type.
- source
Idp StringDomain - Source IDP domain.
- source
Idp StringEmail - Source IDP email.
- source
Idp StringGroup - Source IDP group.
- source
Idp StringRrn - Source IDP rrn.
- source
Idp StringService - Source IDP service.
- source
Idp StringUser Name - Source IDP user name.
- source
Public Boolean - (bool) Is source public.
- source
Resource StringId - Source cloud resource id.
- source
Resource StringName - source
Resource StringType - Source cloud resource type.
- accessed
Resources numberCount - (int) Accessed resource count.
- dest
Cloud stringAccount - Destination cloud account.
- dest
Cloud stringRegion - Destination cloud region.
- dest
Cloud stringResource Rrn - Destination cloud resource RRN.
- dest
Cloud stringService Name - Destination cloud service name.
- dest
Cloud stringType - Destination cloud type.
- dest
Resource stringId - Destination cloud resource id.
- dest
Resource stringName - Destination cloud resource name.
- dest
Resource stringType - Destination cloud resource type.
- effective
Action stringName - Effective action name.
- exceptions
Rql
Search Iam Data Exception[] - (list) Permission exception list, as defined below.
- granted
By stringCloud Entity Id - Granted by cloud entity id.
- granted
By stringCloud Entity Name - Granted by cloud entity name.
- granted
By stringCloud Entity Rrn - Granted by cloud entity rrn.
- granted
By stringCloud Entity Type - Granted by cloud entity type.
- granted
By stringCloud Policy Id - Granted by cloud policy id.
- granted
By stringCloud Policy Name - Granted by cloud policy name.
- granted
By stringCloud Policy Rrn - Granted by cloud policy rrn.
- granted
By stringCloud Policy Type - Granted by cloud policy type.
- granted
By stringCloud Type - Granted by cloud type.
- is
Wild booleanCard Dest Cloud Resource Name - (bool) Is destination cloud resource name a wildcard.
- last
Access stringDate - Last access date.
- message
Id string - Message id.
- source
Cloud stringAccount - Source cloud account.
- source
Cloud stringRegion - Source cloud region.
- source
Cloud stringResource Rrn - Source cloud resource rrn.
- source
Cloud stringService Name - Source cloud service name.
- source
Cloud stringType - Source cloud type.
- source
Idp stringDomain - Source IDP domain.
- source
Idp stringEmail - Source IDP email.
- source
Idp stringGroup - Source IDP group.
- source
Idp stringRrn - Source IDP rrn.
- source
Idp stringService - Source IDP service.
- source
Idp stringUser Name - Source IDP user name.
- source
Public boolean - (bool) Is source public.
- source
Resource stringId - Source cloud resource id.
- source
Resource stringName - source
Resource stringType - Source cloud resource type.
- accessed_
resources_ floatcount - (int) Accessed resource count.
- dest_
cloud_ straccount - Destination cloud account.
- dest_
cloud_ strregion - Destination cloud region.
- dest_
cloud_ strresource_ rrn - Destination cloud resource RRN.
- dest_
cloud_ strservice_ name - Destination cloud service name.
- dest_
cloud_ strtype - Destination cloud type.
- dest_
resource_ strid - Destination cloud resource id.
- dest_
resource_ strname - Destination cloud resource name.
- dest_
resource_ strtype - Destination cloud resource type.
- effective_
action_ strname - Effective action name.
- exceptions
Sequence[Rql
Search Iam Data Exception] - (list) Permission exception list, as defined below.
- granted_
by_ strcloud_ entity_ id - Granted by cloud entity id.
- granted_
by_ strcloud_ entity_ name - Granted by cloud entity name.
- granted_
by_ strcloud_ entity_ rrn - Granted by cloud entity rrn.
- granted_
by_ strcloud_ entity_ type - Granted by cloud entity type.
- granted_
by_ strcloud_ policy_ id - Granted by cloud policy id.
- granted_
by_ strcloud_ policy_ name - Granted by cloud policy name.
- granted_
by_ strcloud_ policy_ rrn - Granted by cloud policy rrn.
- granted_
by_ strcloud_ policy_ type - Granted by cloud policy type.
- granted_
by_ strcloud_ type - Granted by cloud type.
- is_
wild_ boolcard_ dest_ cloud_ resource_ name - (bool) Is destination cloud resource name a wildcard.
- last_
access_ strdate - Last access date.
- message_
id str - Message id.
- source_
cloud_ straccount - Source cloud account.
- source_
cloud_ strregion - Source cloud region.
- source_
cloud_ strresource_ rrn - Source cloud resource rrn.
- source_
cloud_ strservice_ name - Source cloud service name.
- source_
cloud_ strtype - Source cloud type.
- source_
idp_ strdomain - Source IDP domain.
- source_
idp_ stremail - Source IDP email.
- source_
idp_ strgroup - Source IDP group.
- source_
idp_ strrrn - Source IDP rrn.
- source_
idp_ strservice - Source IDP service.
- source_
idp_ struser_ name - Source IDP user name.
- source_
public bool - (bool) Is source public.
- source_
resource_ strid - Source cloud resource id.
- source_
resource_ strname - source_
resource_ strtype - Source cloud resource type.
- accessed
Resources NumberCount - (int) Accessed resource count.
- dest
Cloud StringAccount - Destination cloud account.
- dest
Cloud StringRegion - Destination cloud region.
- dest
Cloud StringResource Rrn - Destination cloud resource RRN.
- dest
Cloud StringService Name - Destination cloud service name.
- dest
Cloud StringType - Destination cloud type.
- dest
Resource StringId - Destination cloud resource id.
- dest
Resource StringName - Destination cloud resource name.
- dest
Resource StringType - Destination cloud resource type.
- effective
Action StringName - Effective action name.
- exceptions List<Property Map>
- (list) Permission exception list, as defined below.
- granted
By StringCloud Entity Id - Granted by cloud entity id.
- granted
By StringCloud Entity Name - Granted by cloud entity name.
- granted
By StringCloud Entity Rrn - Granted by cloud entity rrn.
- granted
By StringCloud Entity Type - Granted by cloud entity type.
- granted
By StringCloud Policy Id - Granted by cloud policy id.
- granted
By StringCloud Policy Name - Granted by cloud policy name.
- granted
By StringCloud Policy Rrn - Granted by cloud policy rrn.
- granted
By StringCloud Policy Type - Granted by cloud policy type.
- granted
By StringCloud Type - Granted by cloud type.
- is
Wild BooleanCard Dest Cloud Resource Name - (bool) Is destination cloud resource name a wildcard.
- last
Access StringDate - Last access date.
- message
Id String - Message id.
- source
Cloud StringAccount - Source cloud account.
- source
Cloud StringRegion - Source cloud region.
- source
Cloud StringResource Rrn - Source cloud resource rrn.
- source
Cloud StringService Name - Source cloud service name.
- source
Cloud StringType - Source cloud type.
- source
Idp StringDomain - Source IDP domain.
- source
Idp StringEmail - Source IDP email.
- source
Idp StringGroup - Source IDP group.
- source
Idp StringRrn - Source IDP rrn.
- source
Idp StringService - Source IDP service.
- source
Idp StringUser Name - Source IDP user name.
- source
Public Boolean - (bool) Is source public.
- source
Resource StringId - Source cloud resource id.
- source
Resource StringName - source
Resource StringType - Source cloud resource type.
RqlSearchIamDataException, RqlSearchIamDataExceptionArgs
- Message
Code string - Message code.
- Message
Code string - Message code.
- message
Code String - Message code.
- message
Code string - Message code.
- message_
code str - Message code.
- message
Code String - Message code.
RqlSearchNetworkData, RqlSearchNetworkDataArgs
- Account string
- Account.
- Account
Name string - Account Name.
- Region
Id double - (int) Region ID.
- Account string
- Account.
- Account
Name string - Account Name.
- Region
Id float64 - (int) Region ID.
- account String
- Account.
- account
Name String - Account Name.
- region
Id Double - (int) Region ID.
- account string
- Account.
- account
Name string - Account Name.
- region
Id number - (int) Region ID.
- account str
- Account.
- account_
name str - Account Name.
- region_
id float - (int) Region ID.
- account String
- Account.
- account
Name String - Account Name.
- region
Id Number - (int) Region ID.
RqlSearchTimeRange, RqlSearchTimeRangeArgs
- Absolutes
List<Rql
Search Time Range Absolute> - An absolute time range spec, as defined below.
- Relatives
List<Rql
Search Time Range Relative> - A relative time range spec, as defined below.
- To
Nows List<RqlSearch Time Range To Now> - A "To Now" time range spec, as defined below.
- Absolutes
[]Rql
Search Time Range Absolute - An absolute time range spec, as defined below.
- Relatives
[]Rql
Search Time Range Relative - A relative time range spec, as defined below.
- To
Nows []RqlSearch Time Range To Now - A "To Now" time range spec, as defined below.
- absolutes
List<Rql
Search Time Range Absolute> - An absolute time range spec, as defined below.
- relatives
List<Rql
Search Time Range Relative> - A relative time range spec, as defined below.
- to
Nows List<RqlSearch Time Range To Now> - A "To Now" time range spec, as defined below.
- absolutes
Rql
Search Time Range Absolute[] - An absolute time range spec, as defined below.
- relatives
Rql
Search Time Range Relative[] - A relative time range spec, as defined below.
- to
Nows RqlSearch Time Range To Now[] - A "To Now" time range spec, as defined below.
- absolutes
Sequence[Rql
Search Time Range Absolute] - An absolute time range spec, as defined below.
- relatives
Sequence[Rql
Search Time Range Relative] - A relative time range spec, as defined below.
- to_
nows Sequence[RqlSearch Time Range To Now] - 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.
- to
Nows List<Property Map> - A "To Now" time range spec, as defined below.
RqlSearchTimeRangeAbsolute, RqlSearchTimeRangeAbsoluteArgs
RqlSearchTimeRangeRelative, RqlSearchTimeRangeRelativeArgs
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.