gcp¶
This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-datadog repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-datadog repo.
- class
pulumi_datadog.gcp.Integration(resource_name, opts=None, client_email=None, client_id=None, host_filters=None, private_key=None, private_key_id=None, project_id=None, __props__=None, __name__=None, __opts__=None)¶ Provides a Datadog - Google Cloud Platform integration resource. This can be used to create and manage Datadog - Google Cloud Platform integration.
import pulumi import pulumi_datadog as datadog # Create a new Datadog - Google Cloud Platform integration awesome_gcp_project_integration = datadog.gcp.Integration("awesomeGcpProjectIntegration", client_email="awesome-service-account@awesome-project-id.iam.gserviceaccount.com", client_id="123456789012345678901", host_filters="foo:bar,buzz:lightyear", private_key="""-----BEGIN PRIVATE KEY----- ... -----END PRIVATE KEY----- """, private_key_id="1234567890123456789012345678901234567890", project_id="awesome-project-id")
- Parameters
resource_name (str) – The name of the resource.
opts (pulumi.ResourceOptions) – Options for the resource.
client_email (pulumi.Input[str]) – Your email found in your JSON service account key.
client_id (pulumi.Input[str]) – Your ID found in your JSON service account key.
host_filters (pulumi.Input[str]) – Limit the GCE instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog.
private_key (pulumi.Input[str]) – Your private key name found in your JSON service account key.
private_key_id (pulumi.Input[str]) – Your private key ID found in your JSON service account key.
project_id (pulumi.Input[str]) – Your Google Cloud project ID found in your JSON service account key.
client_email: pulumi.Output[str] = None¶Your email found in your JSON service account key.
client_id: pulumi.Output[str] = None¶Your ID found in your JSON service account key.
host_filters: pulumi.Output[str] = None¶Limit the GCE instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog.
private_key: pulumi.Output[str] = None¶Your private key name found in your JSON service account key.
private_key_id: pulumi.Output[str] = None¶Your private key ID found in your JSON service account key.
project_id: pulumi.Output[str] = None¶Your Google Cloud project ID found in your JSON service account key.
- static
get(resource_name, id, opts=None, client_email=None, client_id=None, host_filters=None, private_key=None, private_key_id=None, project_id=None)¶ Get an existing Integration resource’s state with the given name, id, and optional extra properties used to qualify the lookup.
- Parameters
resource_name (str) – The unique name of the resulting resource.
id (str) – The unique provider ID of the resource to lookup.
opts (pulumi.ResourceOptions) – Options for the resource.
client_email (pulumi.Input[str]) – Your email found in your JSON service account key.
client_id (pulumi.Input[str]) – Your ID found in your JSON service account key.
host_filters (pulumi.Input[str]) – Limit the GCE instances that are pulled into Datadog by using tags. Only hosts that match one of the defined tags are imported into Datadog.
private_key (pulumi.Input[str]) – Your private key name found in your JSON service account key.
private_key_id (pulumi.Input[str]) – Your private key ID found in your JSON service account key.
project_id (pulumi.Input[str]) – Your Google Cloud project ID found in your JSON service account key.
translate_output_property(prop)¶Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str
translate_input_property(prop)¶Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.
- Parameters
prop (str) – A property name.
- Returns
A potentially transformed property name.
- Return type
str