lacework.IntegrationGar
Explore with Pulumi AI
Import
A Lacework GAR integration can be imported using a INT_GUID
, e.g.
$ pulumi import lacework:index/integrationGar:IntegrationGar example EXAMPLE_1234BAE1E42182964D23973F44CFEA3C4AB63B99E9A1EC5
-> Note: To retrieve the INT_GUID
from existing integrations in your account, use the
Lacework CLI command lacework container-registry list
. To install this tool follow
this documentation.
Create IntegrationGar Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new IntegrationGar(name: string, args: IntegrationGarArgs, opts?: CustomResourceOptions);
@overload
def IntegrationGar(resource_name: str,
args: IntegrationGarArgs,
opts: Optional[ResourceOptions] = None)
@overload
def IntegrationGar(resource_name: str,
opts: Optional[ResourceOptions] = None,
credentials: Optional[IntegrationGarCredentialsArgs] = None,
registry_domain: Optional[str] = None,
enabled: Optional[bool] = None,
integration_gar_id: Optional[str] = None,
limit_by_labels: Optional[Sequence[IntegrationGarLimitByLabelArgs]] = None,
limit_by_repositories: Optional[Sequence[str]] = None,
limit_by_tags: Optional[Sequence[str]] = None,
limit_num_imgs: Optional[float] = None,
name: Optional[str] = None,
non_os_package_support: Optional[bool] = None)
func NewIntegrationGar(ctx *Context, name string, args IntegrationGarArgs, opts ...ResourceOption) (*IntegrationGar, error)
public IntegrationGar(string name, IntegrationGarArgs args, CustomResourceOptions? opts = null)
public IntegrationGar(String name, IntegrationGarArgs args)
public IntegrationGar(String name, IntegrationGarArgs args, CustomResourceOptions options)
type: lacework:IntegrationGar
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 IntegrationGarArgs
- 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 IntegrationGarArgs
- 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 IntegrationGarArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args IntegrationGarArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args IntegrationGarArgs
- 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 integrationGarResource = new Lacework.IntegrationGar("integrationGarResource", new()
{
Credentials = new Lacework.Inputs.IntegrationGarCredentialsArgs
{
ClientEmail = "string",
ClientId = "string",
PrivateKey = "string",
PrivateKeyId = "string",
},
RegistryDomain = "string",
Enabled = false,
IntegrationGarId = "string",
LimitByLabels = new[]
{
new Lacework.Inputs.IntegrationGarLimitByLabelArgs
{
Key = "string",
Value = "string",
},
},
LimitByRepositories = new[]
{
"string",
},
LimitByTags = new[]
{
"string",
},
LimitNumImgs = 0,
Name = "string",
NonOsPackageSupport = false,
});
example, err := lacework.NewIntegrationGar(ctx, "integrationGarResource", &lacework.IntegrationGarArgs{
Credentials: &lacework.IntegrationGarCredentialsArgs{
ClientEmail: pulumi.String("string"),
ClientId: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
PrivateKeyId: pulumi.String("string"),
},
RegistryDomain: pulumi.String("string"),
Enabled: pulumi.Bool(false),
IntegrationGarId: pulumi.String("string"),
LimitByLabels: lacework.IntegrationGarLimitByLabelArray{
&lacework.IntegrationGarLimitByLabelArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
LimitByRepositories: pulumi.StringArray{
pulumi.String("string"),
},
LimitByTags: pulumi.StringArray{
pulumi.String("string"),
},
LimitNumImgs: pulumi.Float64(0),
Name: pulumi.String("string"),
NonOsPackageSupport: pulumi.Bool(false),
})
var integrationGarResource = new IntegrationGar("integrationGarResource", IntegrationGarArgs.builder()
.credentials(IntegrationGarCredentialsArgs.builder()
.clientEmail("string")
.clientId("string")
.privateKey("string")
.privateKeyId("string")
.build())
.registryDomain("string")
.enabled(false)
.integrationGarId("string")
.limitByLabels(IntegrationGarLimitByLabelArgs.builder()
.key("string")
.value("string")
.build())
.limitByRepositories("string")
.limitByTags("string")
.limitNumImgs(0)
.name("string")
.nonOsPackageSupport(false)
.build());
integration_gar_resource = lacework.IntegrationGar("integrationGarResource",
credentials={
"client_email": "string",
"client_id": "string",
"private_key": "string",
"private_key_id": "string",
},
registry_domain="string",
enabled=False,
integration_gar_id="string",
limit_by_labels=[{
"key": "string",
"value": "string",
}],
limit_by_repositories=["string"],
limit_by_tags=["string"],
limit_num_imgs=0,
name="string",
non_os_package_support=False)
const integrationGarResource = new lacework.IntegrationGar("integrationGarResource", {
credentials: {
clientEmail: "string",
clientId: "string",
privateKey: "string",
privateKeyId: "string",
},
registryDomain: "string",
enabled: false,
integrationGarId: "string",
limitByLabels: [{
key: "string",
value: "string",
}],
limitByRepositories: ["string"],
limitByTags: ["string"],
limitNumImgs: 0,
name: "string",
nonOsPackageSupport: false,
});
type: lacework:IntegrationGar
properties:
credentials:
clientEmail: string
clientId: string
privateKey: string
privateKeyId: string
enabled: false
integrationGarId: string
limitByLabels:
- key: string
value: string
limitByRepositories:
- string
limitByTags:
- string
limitNumImgs: 0
name: string
nonOsPackageSupport: false
registryDomain: string
IntegrationGar 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 IntegrationGar resource accepts the following input properties:
- Credentials
Integration
Gar Credentials - The credentials needed by the integration. See Credentials below for details.
- Registry
Domain string - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Integration
Gar stringId - Limit
By List<IntegrationLabels Gar Limit By Label> - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - Limit
By List<string>Repositories - A list of repositories to assess.
- List<string>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - Limit
Num doubleImgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - Name string
- The integration name.
- Non
Os boolPackage Support - Enable program language scanning. Defaults to
true
.
- Credentials
Integration
Gar Credentials Args - The credentials needed by the integration. See Credentials below for details.
- Registry
Domain string - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Integration
Gar stringId - Limit
By []IntegrationLabels Gar Limit By Label Args - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - Limit
By []stringRepositories - A list of repositories to assess.
- []string
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - Limit
Num float64Imgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - Name string
- The integration name.
- Non
Os boolPackage Support - Enable program language scanning. Defaults to
true
.
- credentials
Integration
Gar Credentials - The credentials needed by the integration. See Credentials below for details.
- registry
Domain String - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - integration
Gar StringId - limit
By List<IntegrationLabels Gar Limit By Label> - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
By List<String>Repositories - A list of repositories to assess.
- List<String>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
Num DoubleImgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - name String
- The integration name.
- non
Os BooleanPackage Support - Enable program language scanning. Defaults to
true
.
- credentials
Integration
Gar Credentials - The credentials needed by the integration. See Credentials below for details.
- registry
Domain string - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- enabled boolean
- The state of the external integration. Defaults to
true
. - integration
Gar stringId - limit
By IntegrationLabels Gar Limit By Label[] - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
By string[]Repositories - A list of repositories to assess.
- string[]
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
Num numberImgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - name string
- The integration name.
- non
Os booleanPackage Support - Enable program language scanning. Defaults to
true
.
- credentials
Integration
Gar Credentials Args - The credentials needed by the integration. See Credentials below for details.
- registry_
domain str - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- enabled bool
- The state of the external integration. Defaults to
true
. - integration_
gar_ strid - limit_
by_ Sequence[Integrationlabels Gar Limit By Label Args] - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit_
by_ Sequence[str]repositories - A list of repositories to assess.
- Sequence[str]
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit_
num_ floatimgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - name str
- The integration name.
- non_
os_ boolpackage_ support - Enable program language scanning. Defaults to
true
.
- credentials Property Map
- The credentials needed by the integration. See Credentials below for details.
- registry
Domain String - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - integration
Gar StringId - limit
By List<Property Map>Labels - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
By List<String>Repositories - A list of repositories to assess.
- List<String>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
Num NumberImgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - name String
- The integration name.
- non
Os BooleanPackage Support - Enable program language scanning. Defaults to
true
.
Outputs
All input properties are implicitly available as output properties. Additionally, the IntegrationGar resource produces the following output properties:
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Id string
- The provider-assigned unique ID for this managed resource.
- Intg
Guid string - Org
Level bool - Type
Name string
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Id string
- The provider-assigned unique ID for this managed resource.
- Intg
Guid string - Org
Level bool - Type
Name string
- created
Or StringUpdated By - created
Or StringUpdated Time - id String
- The provider-assigned unique ID for this managed resource.
- intg
Guid String - org
Level Boolean - type
Name String
- created
Or stringUpdated By - created
Or stringUpdated Time - id string
- The provider-assigned unique ID for this managed resource.
- intg
Guid string - org
Level boolean - type
Name string
- created_
or_ strupdated_ by - created_
or_ strupdated_ time - id str
- The provider-assigned unique ID for this managed resource.
- intg_
guid str - org_
level bool - type_
name str
- created
Or StringUpdated By - created
Or StringUpdated Time - id String
- The provider-assigned unique ID for this managed resource.
- intg
Guid String - org
Level Boolean - type
Name String
Look up Existing IntegrationGar Resource
Get an existing IntegrationGar 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?: IntegrationGarState, opts?: CustomResourceOptions): IntegrationGar
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_or_updated_by: Optional[str] = None,
created_or_updated_time: Optional[str] = None,
credentials: Optional[IntegrationGarCredentialsArgs] = None,
enabled: Optional[bool] = None,
integration_gar_id: Optional[str] = None,
intg_guid: Optional[str] = None,
limit_by_labels: Optional[Sequence[IntegrationGarLimitByLabelArgs]] = None,
limit_by_repositories: Optional[Sequence[str]] = None,
limit_by_tags: Optional[Sequence[str]] = None,
limit_num_imgs: Optional[float] = None,
name: Optional[str] = None,
non_os_package_support: Optional[bool] = None,
org_level: Optional[bool] = None,
registry_domain: Optional[str] = None,
type_name: Optional[str] = None) -> IntegrationGar
func GetIntegrationGar(ctx *Context, name string, id IDInput, state *IntegrationGarState, opts ...ResourceOption) (*IntegrationGar, error)
public static IntegrationGar Get(string name, Input<string> id, IntegrationGarState? state, CustomResourceOptions? opts = null)
public static IntegrationGar get(String name, Output<String> id, IntegrationGarState state, CustomResourceOptions options)
resources: _: type: lacework:IntegrationGar 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.
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Credentials
Integration
Gar Credentials - The credentials needed by the integration. See Credentials below for details.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Integration
Gar stringId - Intg
Guid string - Limit
By List<IntegrationLabels Gar Limit By Label> - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - Limit
By List<string>Repositories - A list of repositories to assess.
- List<string>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - Limit
Num doubleImgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - Name string
- The integration name.
- Non
Os boolPackage Support - Enable program language scanning. Defaults to
true
. - Org
Level bool - Registry
Domain string - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- Type
Name string
- Created
Or stringUpdated By - Created
Or stringUpdated Time - Credentials
Integration
Gar Credentials Args - The credentials needed by the integration. See Credentials below for details.
- Enabled bool
- The state of the external integration. Defaults to
true
. - Integration
Gar stringId - Intg
Guid string - Limit
By []IntegrationLabels Gar Limit By Label Args - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - Limit
By []stringRepositories - A list of repositories to assess.
- []string
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - Limit
Num float64Imgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - Name string
- The integration name.
- Non
Os boolPackage Support - Enable program language scanning. Defaults to
true
. - Org
Level bool - Registry
Domain string - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- Type
Name string
- created
Or StringUpdated By - created
Or StringUpdated Time - credentials
Integration
Gar Credentials - The credentials needed by the integration. See Credentials below for details.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - integration
Gar StringId - intg
Guid String - limit
By List<IntegrationLabels Gar Limit By Label> - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
By List<String>Repositories - A list of repositories to assess.
- List<String>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
Num DoubleImgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - name String
- The integration name.
- non
Os BooleanPackage Support - Enable program language scanning. Defaults to
true
. - org
Level Boolean - registry
Domain String - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- type
Name String
- created
Or stringUpdated By - created
Or stringUpdated Time - credentials
Integration
Gar Credentials - The credentials needed by the integration. See Credentials below for details.
- enabled boolean
- The state of the external integration. Defaults to
true
. - integration
Gar stringId - intg
Guid string - limit
By IntegrationLabels Gar Limit By Label[] - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
By string[]Repositories - A list of repositories to assess.
- string[]
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
Num numberImgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - name string
- The integration name.
- non
Os booleanPackage Support - Enable program language scanning. Defaults to
true
. - org
Level boolean - registry
Domain string - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- type
Name string
- created_
or_ strupdated_ by - created_
or_ strupdated_ time - credentials
Integration
Gar Credentials Args - The credentials needed by the integration. See Credentials below for details.
- enabled bool
- The state of the external integration. Defaults to
true
. - integration_
gar_ strid - intg_
guid str - limit_
by_ Sequence[Integrationlabels Gar Limit By Label Args] - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit_
by_ Sequence[str]repositories - A list of repositories to assess.
- Sequence[str]
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit_
num_ floatimgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - name str
- The integration name.
- non_
os_ boolpackage_ support - Enable program language scanning. Defaults to
true
. - org_
level bool - registry_
domain str - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- type_
name str
- created
Or StringUpdated By - created
Or StringUpdated Time - credentials Property Map
- The credentials needed by the integration. See Credentials below for details.
- enabled Boolean
- The state of the external integration. Defaults to
true
. - integration
Gar StringId - intg
Guid String - limit
By List<Property Map>Labels - A list of key/value labels to limit the assessment of images. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
By List<String>Repositories - A list of repositories to assess.
- List<String>
- A list of image tags to limit the assessment of images with matching tags. If you specify
limit_by_tags
andlimit_by_label
limits, they function as anAND
. - limit
Num NumberImgs - The maximum number of newest container images to assess per repository. Must be one of
5
,10
, or15
. Defaults to5
. - name String
- The integration name.
- non
Os BooleanPackage Support - Enable program language scanning. Defaults to
true
. - org
Level Boolean - registry
Domain String - The GAR domain, which specifies the location where you store the images. For a list of supported domains, see Supported Registry Domains below.
- type
Name String
Supporting Types
IntegrationGarCredentials, IntegrationGarCredentialsArgs
- Client
Email string - The service account client email.
- Client
Id string - The service account client ID.
- Private
Key string - Private
Key stringId - The service account private key ID.
- Client
Email string - The service account client email.
- Client
Id string - The service account client ID.
- Private
Key string - Private
Key stringId - The service account private key ID.
- client
Email String - The service account client email.
- client
Id String - The service account client ID.
- private
Key String - private
Key StringId - The service account private key ID.
- client
Email string - The service account client email.
- client
Id string - The service account client ID.
- private
Key string - private
Key stringId - The service account private key ID.
- client_
email str - The service account client email.
- client_
id str - The service account client ID.
- private_
key str - private_
key_ strid - The service account private key ID.
- client
Email String - The service account client email.
- client
Id String - The service account client ID.
- private
Key String - private
Key StringId - The service account private key ID.
IntegrationGarLimitByLabel, IntegrationGarLimitByLabelArgs
- Key string
- The key of the label.
- Value string
The value of the label.
For example, to limit by the label
key
with valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.import * as pulumi from "@pulumi/pulumi";
import pulumi
using System.Collections.Generic; using System.Linq; using Pulumi;
return await Deployment.RunAsync(() => { });
package main import ( "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { return nil }) }
package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; 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) { } }
{}
- Key string
- The key of the label.
- Value string
The value of the label.
For example, to limit by the label
key
with valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.import * as pulumi from "@pulumi/pulumi";
import pulumi
using System.Collections.Generic; using System.Linq; using Pulumi;
return await Deployment.RunAsync(() => { });
package main import ( "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { return nil }) }
package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; 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) { } }
{}
- key String
- The key of the label.
- value String
The value of the label.
For example, to limit by the label
key
with valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.import * as pulumi from "@pulumi/pulumi";
import pulumi
using System.Collections.Generic; using System.Linq; using Pulumi;
return await Deployment.RunAsync(() => { });
package main import ( "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { return nil }) }
package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; 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) { } }
{}
- key string
- The key of the label.
- value string
The value of the label.
For example, to limit by the label
key
with valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.import * as pulumi from "@pulumi/pulumi";
import pulumi
using System.Collections.Generic; using System.Linq; using Pulumi;
return await Deployment.RunAsync(() => { });
package main import ( "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { return nil }) }
package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; 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) { } }
{}
- key str
- The key of the label.
- value str
The value of the label.
For example, to limit by the label
key
with valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.import * as pulumi from "@pulumi/pulumi";
import pulumi
using System.Collections.Generic; using System.Linq; using Pulumi;
return await Deployment.RunAsync(() => { });
package main import ( "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { return nil }) }
package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; 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) { } }
{}
- key String
- The key of the label.
- value String
The value of the label.
For example, to limit by the label
key
with valuesvalue
andvalue2
, plus the labelkey1
with valuevalue
.import * as pulumi from "@pulumi/pulumi";
import pulumi
using System.Collections.Generic; using System.Linq; using Pulumi;
return await Deployment.RunAsync(() => { });
package main import ( "github.com/pulumi/pulumi/sdk/v3/go/pulumi" ) func main() { pulumi.Run(func(ctx *pulumi.Context) error { return nil }) }
package generated_program; import com.pulumi.Context; import com.pulumi.Pulumi; import com.pulumi.core.Output; 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) { } }
{}
Package Details
- Repository
- lacework lacework/terraform-provider-lacework
- License
- Notes
- This Pulumi package is based on the
lacework
Terraform Provider.