1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. dataplex
  5. Asset
Google Cloud Classic v6.66.0 published on Monday, Sep 18, 2023 by Pulumi

gcp.dataplex.Asset

Explore with Pulumi AI

gcp logo
Google Cloud Classic v6.66.0 published on Monday, Sep 18, 2023 by Pulumi

    The Dataplex Asset resource

    Example Usage

    Basic_asset

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var basicBucket = new Gcp.Storage.Bucket("basicBucket", new()
        {
            Location = "us-west1",
            UniformBucketLevelAccess = true,
            Project = "my-project-name",
        });
    
        var basicLake = new Gcp.DataPlex.Lake("basicLake", new()
        {
            Location = "us-west1",
            Project = "my-project-name",
        });
    
        var basicZone = new Gcp.DataPlex.Zone("basicZone", new()
        {
            Location = "us-west1",
            Lake = basicLake.Name,
            Type = "RAW",
            DiscoverySpec = new Gcp.DataPlex.Inputs.ZoneDiscoverySpecArgs
            {
                Enabled = false,
            },
            ResourceSpec = new Gcp.DataPlex.Inputs.ZoneResourceSpecArgs
            {
                LocationType = "SINGLE_REGION",
            },
            Project = "my-project-name",
        });
    
        var primary = new Gcp.DataPlex.Asset("primary", new()
        {
            Location = "us-west1",
            Lake = basicLake.Name,
            DataplexZone = basicZone.Name,
            DiscoverySpec = new Gcp.DataPlex.Inputs.AssetDiscoverySpecArgs
            {
                Enabled = false,
            },
            ResourceSpec = new Gcp.DataPlex.Inputs.AssetResourceSpecArgs
            {
                Name = "projects/my-project-name/buckets/bucket",
                Type = "STORAGE_BUCKET",
            },
            Project = "my-project-name",
        }, new CustomResourceOptions
        {
            DependsOn = new[]
            {
                basicBucket,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/dataplex"
    	"github.com/pulumi/pulumi-gcp/sdk/v6/go/gcp/storage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		basicBucket, err := storage.NewBucket(ctx, "basicBucket", &storage.BucketArgs{
    			Location:                 pulumi.String("us-west1"),
    			UniformBucketLevelAccess: pulumi.Bool(true),
    			Project:                  pulumi.String("my-project-name"),
    		})
    		if err != nil {
    			return err
    		}
    		basicLake, err := dataplex.NewLake(ctx, "basicLake", &dataplex.LakeArgs{
    			Location: pulumi.String("us-west1"),
    			Project:  pulumi.String("my-project-name"),
    		})
    		if err != nil {
    			return err
    		}
    		basicZone, err := dataplex.NewZone(ctx, "basicZone", &dataplex.ZoneArgs{
    			Location: pulumi.String("us-west1"),
    			Lake:     basicLake.Name,
    			Type:     pulumi.String("RAW"),
    			DiscoverySpec: &dataplex.ZoneDiscoverySpecArgs{
    				Enabled: pulumi.Bool(false),
    			},
    			ResourceSpec: &dataplex.ZoneResourceSpecArgs{
    				LocationType: pulumi.String("SINGLE_REGION"),
    			},
    			Project: pulumi.String("my-project-name"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = dataplex.NewAsset(ctx, "primary", &dataplex.AssetArgs{
    			Location:     pulumi.String("us-west1"),
    			Lake:         basicLake.Name,
    			DataplexZone: basicZone.Name,
    			DiscoverySpec: &dataplex.AssetDiscoverySpecArgs{
    				Enabled: pulumi.Bool(false),
    			},
    			ResourceSpec: &dataplex.AssetResourceSpecArgs{
    				Name: pulumi.String("projects/my-project-name/buckets/bucket"),
    				Type: pulumi.String("STORAGE_BUCKET"),
    			},
    			Project: pulumi.String("my-project-name"),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			basicBucket,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.storage.Bucket;
    import com.pulumi.gcp.storage.BucketArgs;
    import com.pulumi.gcp.dataplex.Lake;
    import com.pulumi.gcp.dataplex.LakeArgs;
    import com.pulumi.gcp.dataplex.Zone;
    import com.pulumi.gcp.dataplex.ZoneArgs;
    import com.pulumi.gcp.dataplex.inputs.ZoneDiscoverySpecArgs;
    import com.pulumi.gcp.dataplex.inputs.ZoneResourceSpecArgs;
    import com.pulumi.gcp.dataplex.Asset;
    import com.pulumi.gcp.dataplex.AssetArgs;
    import com.pulumi.gcp.dataplex.inputs.AssetDiscoverySpecArgs;
    import com.pulumi.gcp.dataplex.inputs.AssetResourceSpecArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 basicBucket = new Bucket("basicBucket", BucketArgs.builder()        
                .location("us-west1")
                .uniformBucketLevelAccess(true)
                .project("my-project-name")
                .build());
    
            var basicLake = new Lake("basicLake", LakeArgs.builder()        
                .location("us-west1")
                .project("my-project-name")
                .build());
    
            var basicZone = new Zone("basicZone", ZoneArgs.builder()        
                .location("us-west1")
                .lake(basicLake.name())
                .type("RAW")
                .discoverySpec(ZoneDiscoverySpecArgs.builder()
                    .enabled(false)
                    .build())
                .resourceSpec(ZoneResourceSpecArgs.builder()
                    .locationType("SINGLE_REGION")
                    .build())
                .project("my-project-name")
                .build());
    
            var primary = new Asset("primary", AssetArgs.builder()        
                .location("us-west1")
                .lake(basicLake.name())
                .dataplexZone(basicZone.name())
                .discoverySpec(AssetDiscoverySpecArgs.builder()
                    .enabled(false)
                    .build())
                .resourceSpec(AssetResourceSpecArgs.builder()
                    .name("projects/my-project-name/buckets/bucket")
                    .type("STORAGE_BUCKET")
                    .build())
                .project("my-project-name")
                .build(), CustomResourceOptions.builder()
                    .dependsOn(basicBucket)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_gcp as gcp
    
    basic_bucket = gcp.storage.Bucket("basicBucket",
        location="us-west1",
        uniform_bucket_level_access=True,
        project="my-project-name")
    basic_lake = gcp.dataplex.Lake("basicLake",
        location="us-west1",
        project="my-project-name")
    basic_zone = gcp.dataplex.Zone("basicZone",
        location="us-west1",
        lake=basic_lake.name,
        type="RAW",
        discovery_spec=gcp.dataplex.ZoneDiscoverySpecArgs(
            enabled=False,
        ),
        resource_spec=gcp.dataplex.ZoneResourceSpecArgs(
            location_type="SINGLE_REGION",
        ),
        project="my-project-name")
    primary = gcp.dataplex.Asset("primary",
        location="us-west1",
        lake=basic_lake.name,
        dataplex_zone=basic_zone.name,
        discovery_spec=gcp.dataplex.AssetDiscoverySpecArgs(
            enabled=False,
        ),
        resource_spec=gcp.dataplex.AssetResourceSpecArgs(
            name="projects/my-project-name/buckets/bucket",
            type="STORAGE_BUCKET",
        ),
        project="my-project-name",
        opts=pulumi.ResourceOptions(depends_on=[basic_bucket]))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const basicBucket = new gcp.storage.Bucket("basicBucket", {
        location: "us-west1",
        uniformBucketLevelAccess: true,
        project: "my-project-name",
    });
    const basicLake = new gcp.dataplex.Lake("basicLake", {
        location: "us-west1",
        project: "my-project-name",
    });
    const basicZone = new gcp.dataplex.Zone("basicZone", {
        location: "us-west1",
        lake: basicLake.name,
        type: "RAW",
        discoverySpec: {
            enabled: false,
        },
        resourceSpec: {
            locationType: "SINGLE_REGION",
        },
        project: "my-project-name",
    });
    const primary = new gcp.dataplex.Asset("primary", {
        location: "us-west1",
        lake: basicLake.name,
        dataplexZone: basicZone.name,
        discoverySpec: {
            enabled: false,
        },
        resourceSpec: {
            name: "projects/my-project-name/buckets/bucket",
            type: "STORAGE_BUCKET",
        },
        project: "my-project-name",
    }, {
        dependsOn: [basicBucket],
    });
    
    resources:
      basicBucket:
        type: gcp:storage:Bucket
        properties:
          location: us-west1
          uniformBucketLevelAccess: true
          project: my-project-name
      basicLake:
        type: gcp:dataplex:Lake
        properties:
          location: us-west1
          project: my-project-name
      basicZone:
        type: gcp:dataplex:Zone
        properties:
          location: us-west1
          lake: ${basicLake.name}
          type: RAW
          discoverySpec:
            enabled: false
          resourceSpec:
            locationType: SINGLE_REGION
          project: my-project-name
      primary:
        type: gcp:dataplex:Asset
        properties:
          location: us-west1
          lake: ${basicLake.name}
          dataplexZone: ${basicZone.name}
          discoverySpec:
            enabled: false
          resourceSpec:
            name: projects/my-project-name/buckets/bucket
            type: STORAGE_BUCKET
          project: my-project-name
        options:
          dependson:
            - ${basicBucket}
    

    Create Asset Resource

    new Asset(name: string, args: AssetArgs, opts?: CustomResourceOptions);
    @overload
    def Asset(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              dataplex_zone: Optional[str] = None,
              description: Optional[str] = None,
              discovery_spec: Optional[AssetDiscoverySpecArgs] = None,
              display_name: Optional[str] = None,
              labels: Optional[Mapping[str, str]] = None,
              lake: Optional[str] = None,
              location: Optional[str] = None,
              name: Optional[str] = None,
              project: Optional[str] = None,
              resource_spec: Optional[AssetResourceSpecArgs] = None)
    @overload
    def Asset(resource_name: str,
              args: AssetArgs,
              opts: Optional[ResourceOptions] = None)
    func NewAsset(ctx *Context, name string, args AssetArgs, opts ...ResourceOption) (*Asset, error)
    public Asset(string name, AssetArgs args, CustomResourceOptions? opts = null)
    public Asset(String name, AssetArgs args)
    public Asset(String name, AssetArgs args, CustomResourceOptions options)
    
    type: gcp:dataplex:Asset
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args AssetArgs
    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 AssetArgs
    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 AssetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AssetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AssetArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Asset Resource Properties

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

    Inputs

    The Asset resource accepts the following input properties:

    DataplexZone string

    The zone for the resource

    DiscoverySpec AssetDiscoverySpec

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    Lake string

    The lake for the resource

    Location string

    The location for the resource

    ResourceSpec AssetResourceSpec

    Required. Immutable. Specification of the resource that is referenced by this asset.

    Description string

    Optional. Description of the asset.

    DisplayName string

    Optional. User friendly display name.

    Labels Dictionary<string, string>

    Optional. User defined labels for the asset.

    Name string

    The name of the asset.

    Project string

    The project for the resource

    DataplexZone string

    The zone for the resource

    DiscoverySpec AssetDiscoverySpecArgs

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    Lake string

    The lake for the resource

    Location string

    The location for the resource

    ResourceSpec AssetResourceSpecArgs

    Required. Immutable. Specification of the resource that is referenced by this asset.

    Description string

    Optional. Description of the asset.

    DisplayName string

    Optional. User friendly display name.

    Labels map[string]string

    Optional. User defined labels for the asset.

    Name string

    The name of the asset.

    Project string

    The project for the resource

    dataplexZone String

    The zone for the resource

    discoverySpec AssetDiscoverySpec

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    lake String

    The lake for the resource

    location String

    The location for the resource

    resourceSpec AssetResourceSpec

    Required. Immutable. Specification of the resource that is referenced by this asset.

    description String

    Optional. Description of the asset.

    displayName String

    Optional. User friendly display name.

    labels Map<String,String>

    Optional. User defined labels for the asset.

    name String

    The name of the asset.

    project String

    The project for the resource

    dataplexZone string

    The zone for the resource

    discoverySpec AssetDiscoverySpec

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    lake string

    The lake for the resource

    location string

    The location for the resource

    resourceSpec AssetResourceSpec

    Required. Immutable. Specification of the resource that is referenced by this asset.

    description string

    Optional. Description of the asset.

    displayName string

    Optional. User friendly display name.

    labels {[key: string]: string}

    Optional. User defined labels for the asset.

    name string

    The name of the asset.

    project string

    The project for the resource

    dataplex_zone str

    The zone for the resource

    discovery_spec AssetDiscoverySpecArgs

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    lake str

    The lake for the resource

    location str

    The location for the resource

    resource_spec AssetResourceSpecArgs

    Required. Immutable. Specification of the resource that is referenced by this asset.

    description str

    Optional. Description of the asset.

    display_name str

    Optional. User friendly display name.

    labels Mapping[str, str]

    Optional. User defined labels for the asset.

    name str

    The name of the asset.

    project str

    The project for the resource

    dataplexZone String

    The zone for the resource

    discoverySpec Property Map

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    lake String

    The lake for the resource

    location String

    The location for the resource

    resourceSpec Property Map

    Required. Immutable. Specification of the resource that is referenced by this asset.

    description String

    Optional. Description of the asset.

    displayName String

    Optional. User friendly display name.

    labels Map<String>

    Optional. User defined labels for the asset.

    name String

    The name of the asset.

    project String

    The project for the resource

    Outputs

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

    CreateTime string

    Output only. The time when the asset was created.

    DiscoveryStatuses List<AssetDiscoveryStatus>

    Output only. Status of the discovery feature applied to data referenced by this asset.

    Id string

    The provider-assigned unique ID for this managed resource.

    ResourceStatuses List<AssetResourceStatus>

    Output only. Status of the resource referenced by this asset.

    SecurityStatuses List<AssetSecurityStatus>

    Output only. Status of the security policy applied to resource referenced by this asset.

    State string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    Uid string

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    UpdateTime string

    Output only. The time when the asset was last updated.

    CreateTime string

    Output only. The time when the asset was created.

    DiscoveryStatuses []AssetDiscoveryStatus

    Output only. Status of the discovery feature applied to data referenced by this asset.

    Id string

    The provider-assigned unique ID for this managed resource.

    ResourceStatuses []AssetResourceStatus

    Output only. Status of the resource referenced by this asset.

    SecurityStatuses []AssetSecurityStatus

    Output only. Status of the security policy applied to resource referenced by this asset.

    State string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    Uid string

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    UpdateTime string

    Output only. The time when the asset was last updated.

    createTime String

    Output only. The time when the asset was created.

    discoveryStatuses List<AssetDiscoveryStatus>

    Output only. Status of the discovery feature applied to data referenced by this asset.

    id String

    The provider-assigned unique ID for this managed resource.

    resourceStatuses List<AssetResourceStatus>

    Output only. Status of the resource referenced by this asset.

    securityStatuses List<AssetSecurityStatus>

    Output only. Status of the security policy applied to resource referenced by this asset.

    state String

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    uid String

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    updateTime String

    Output only. The time when the asset was last updated.

    createTime string

    Output only. The time when the asset was created.

    discoveryStatuses AssetDiscoveryStatus[]

    Output only. Status of the discovery feature applied to data referenced by this asset.

    id string

    The provider-assigned unique ID for this managed resource.

    resourceStatuses AssetResourceStatus[]

    Output only. Status of the resource referenced by this asset.

    securityStatuses AssetSecurityStatus[]

    Output only. Status of the security policy applied to resource referenced by this asset.

    state string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    uid string

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    updateTime string

    Output only. The time when the asset was last updated.

    create_time str

    Output only. The time when the asset was created.

    discovery_statuses Sequence[AssetDiscoveryStatus]

    Output only. Status of the discovery feature applied to data referenced by this asset.

    id str

    The provider-assigned unique ID for this managed resource.

    resource_statuses Sequence[AssetResourceStatus]

    Output only. Status of the resource referenced by this asset.

    security_statuses Sequence[AssetSecurityStatus]

    Output only. Status of the security policy applied to resource referenced by this asset.

    state str

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    uid str

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    update_time str

    Output only. The time when the asset was last updated.

    createTime String

    Output only. The time when the asset was created.

    discoveryStatuses List<Property Map>

    Output only. Status of the discovery feature applied to data referenced by this asset.

    id String

    The provider-assigned unique ID for this managed resource.

    resourceStatuses List<Property Map>

    Output only. Status of the resource referenced by this asset.

    securityStatuses List<Property Map>

    Output only. Status of the security policy applied to resource referenced by this asset.

    state String

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    uid String

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    updateTime String

    Output only. The time when the asset was last updated.

    Look up Existing Asset Resource

    Get an existing Asset 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?: AssetState, opts?: CustomResourceOptions): Asset
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            dataplex_zone: Optional[str] = None,
            description: Optional[str] = None,
            discovery_spec: Optional[AssetDiscoverySpecArgs] = None,
            discovery_statuses: Optional[Sequence[AssetDiscoveryStatusArgs]] = None,
            display_name: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            lake: Optional[str] = None,
            location: Optional[str] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            resource_spec: Optional[AssetResourceSpecArgs] = None,
            resource_statuses: Optional[Sequence[AssetResourceStatusArgs]] = None,
            security_statuses: Optional[Sequence[AssetSecurityStatusArgs]] = None,
            state: Optional[str] = None,
            uid: Optional[str] = None,
            update_time: Optional[str] = None) -> Asset
    func GetAsset(ctx *Context, name string, id IDInput, state *AssetState, opts ...ResourceOption) (*Asset, error)
    public static Asset Get(string name, Input<string> id, AssetState? state, CustomResourceOptions? opts = null)
    public static Asset get(String name, Output<String> id, AssetState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    CreateTime string

    Output only. The time when the asset was created.

    DataplexZone string

    The zone for the resource

    Description string

    Optional. Description of the asset.

    DiscoverySpec AssetDiscoverySpec

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    DiscoveryStatuses List<AssetDiscoveryStatus>

    Output only. Status of the discovery feature applied to data referenced by this asset.

    DisplayName string

    Optional. User friendly display name.

    Labels Dictionary<string, string>

    Optional. User defined labels for the asset.

    Lake string

    The lake for the resource

    Location string

    The location for the resource

    Name string

    The name of the asset.

    Project string

    The project for the resource

    ResourceSpec AssetResourceSpec

    Required. Immutable. Specification of the resource that is referenced by this asset.

    ResourceStatuses List<AssetResourceStatus>

    Output only. Status of the resource referenced by this asset.

    SecurityStatuses List<AssetSecurityStatus>

    Output only. Status of the security policy applied to resource referenced by this asset.

    State string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    Uid string

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    UpdateTime string

    Output only. The time when the asset was last updated.

    CreateTime string

    Output only. The time when the asset was created.

    DataplexZone string

    The zone for the resource

    Description string

    Optional. Description of the asset.

    DiscoverySpec AssetDiscoverySpecArgs

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    DiscoveryStatuses []AssetDiscoveryStatusArgs

    Output only. Status of the discovery feature applied to data referenced by this asset.

    DisplayName string

    Optional. User friendly display name.

    Labels map[string]string

    Optional. User defined labels for the asset.

    Lake string

    The lake for the resource

    Location string

    The location for the resource

    Name string

    The name of the asset.

    Project string

    The project for the resource

    ResourceSpec AssetResourceSpecArgs

    Required. Immutable. Specification of the resource that is referenced by this asset.

    ResourceStatuses []AssetResourceStatusArgs

    Output only. Status of the resource referenced by this asset.

    SecurityStatuses []AssetSecurityStatusArgs

    Output only. Status of the security policy applied to resource referenced by this asset.

    State string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    Uid string

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    UpdateTime string

    Output only. The time when the asset was last updated.

    createTime String

    Output only. The time when the asset was created.

    dataplexZone String

    The zone for the resource

    description String

    Optional. Description of the asset.

    discoverySpec AssetDiscoverySpec

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    discoveryStatuses List<AssetDiscoveryStatus>

    Output only. Status of the discovery feature applied to data referenced by this asset.

    displayName String

    Optional. User friendly display name.

    labels Map<String,String>

    Optional. User defined labels for the asset.

    lake String

    The lake for the resource

    location String

    The location for the resource

    name String

    The name of the asset.

    project String

    The project for the resource

    resourceSpec AssetResourceSpec

    Required. Immutable. Specification of the resource that is referenced by this asset.

    resourceStatuses List<AssetResourceStatus>

    Output only. Status of the resource referenced by this asset.

    securityStatuses List<AssetSecurityStatus>

    Output only. Status of the security policy applied to resource referenced by this asset.

    state String

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    uid String

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    updateTime String

    Output only. The time when the asset was last updated.

    createTime string

    Output only. The time when the asset was created.

    dataplexZone string

    The zone for the resource

    description string

    Optional. Description of the asset.

    discoverySpec AssetDiscoverySpec

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    discoveryStatuses AssetDiscoveryStatus[]

    Output only. Status of the discovery feature applied to data referenced by this asset.

    displayName string

    Optional. User friendly display name.

    labels {[key: string]: string}

    Optional. User defined labels for the asset.

    lake string

    The lake for the resource

    location string

    The location for the resource

    name string

    The name of the asset.

    project string

    The project for the resource

    resourceSpec AssetResourceSpec

    Required. Immutable. Specification of the resource that is referenced by this asset.

    resourceStatuses AssetResourceStatus[]

    Output only. Status of the resource referenced by this asset.

    securityStatuses AssetSecurityStatus[]

    Output only. Status of the security policy applied to resource referenced by this asset.

    state string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    uid string

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    updateTime string

    Output only. The time when the asset was last updated.

    create_time str

    Output only. The time when the asset was created.

    dataplex_zone str

    The zone for the resource

    description str

    Optional. Description of the asset.

    discovery_spec AssetDiscoverySpecArgs

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    discovery_statuses Sequence[AssetDiscoveryStatusArgs]

    Output only. Status of the discovery feature applied to data referenced by this asset.

    display_name str

    Optional. User friendly display name.

    labels Mapping[str, str]

    Optional. User defined labels for the asset.

    lake str

    The lake for the resource

    location str

    The location for the resource

    name str

    The name of the asset.

    project str

    The project for the resource

    resource_spec AssetResourceSpecArgs

    Required. Immutable. Specification of the resource that is referenced by this asset.

    resource_statuses Sequence[AssetResourceStatusArgs]

    Output only. Status of the resource referenced by this asset.

    security_statuses Sequence[AssetSecurityStatusArgs]

    Output only. Status of the security policy applied to resource referenced by this asset.

    state str

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    uid str

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    update_time str

    Output only. The time when the asset was last updated.

    createTime String

    Output only. The time when the asset was created.

    dataplexZone String

    The zone for the resource

    description String

    Optional. Description of the asset.

    discoverySpec Property Map

    Required. Specification of the discovery feature applied to data referenced by this asset. When this spec is left unset, the asset will use the spec set on the parent zone.

    discoveryStatuses List<Property Map>

    Output only. Status of the discovery feature applied to data referenced by this asset.

    displayName String

    Optional. User friendly display name.

    labels Map<String>

    Optional. User defined labels for the asset.

    lake String

    The lake for the resource

    location String

    The location for the resource

    name String

    The name of the asset.

    project String

    The project for the resource

    resourceSpec Property Map

    Required. Immutable. Specification of the resource that is referenced by this asset.

    resourceStatuses List<Property Map>

    Output only. Status of the resource referenced by this asset.

    securityStatuses List<Property Map>

    Output only. Status of the security policy applied to resource referenced by this asset.

    state String

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    uid String

    Output only. System generated globally unique ID for the asset. This ID will be different if the asset is deleted and re-created with the same name.

    updateTime String

    Output only. The time when the asset was last updated.

    Supporting Types

    AssetDiscoverySpec, AssetDiscoverySpecArgs

    Enabled bool

    Required. Whether discovery is enabled.

    CsvOptions AssetDiscoverySpecCsvOptions

    Optional. Configuration for CSV data.

    ExcludePatterns List<string>

    Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    IncludePatterns List<string>

    Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    JsonOptions AssetDiscoverySpecJsonOptions

    Optional. Configuration for Json data.

    Schedule string

    Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, "CRON_TZ=America/New_York 1 * * * *", or "TZ=America/New_York 1 * * * *".

    Enabled bool

    Required. Whether discovery is enabled.

    CsvOptions AssetDiscoverySpecCsvOptions

    Optional. Configuration for CSV data.

    ExcludePatterns []string

    Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    IncludePatterns []string

    Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    JsonOptions AssetDiscoverySpecJsonOptions

    Optional. Configuration for Json data.

    Schedule string

    Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, "CRON_TZ=America/New_York 1 * * * *", or "TZ=America/New_York 1 * * * *".

    enabled Boolean

    Required. Whether discovery is enabled.

    csvOptions AssetDiscoverySpecCsvOptions

    Optional. Configuration for CSV data.

    excludePatterns List<String>

    Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    includePatterns List<String>

    Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    jsonOptions AssetDiscoverySpecJsonOptions

    Optional. Configuration for Json data.

    schedule String

    Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, "CRON_TZ=America/New_York 1 * * * *", or "TZ=America/New_York 1 * * * *".

    enabled boolean

    Required. Whether discovery is enabled.

    csvOptions AssetDiscoverySpecCsvOptions

    Optional. Configuration for CSV data.

    excludePatterns string[]

    Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    includePatterns string[]

    Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    jsonOptions AssetDiscoverySpecJsonOptions

    Optional. Configuration for Json data.

    schedule string

    Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, "CRON_TZ=America/New_York 1 * * * *", or "TZ=America/New_York 1 * * * *".

    enabled bool

    Required. Whether discovery is enabled.

    csv_options AssetDiscoverySpecCsvOptions

    Optional. Configuration for CSV data.

    exclude_patterns Sequence[str]

    Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    include_patterns Sequence[str]

    Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    json_options AssetDiscoverySpecJsonOptions

    Optional. Configuration for Json data.

    schedule str

    Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, "CRON_TZ=America/New_York 1 * * * *", or "TZ=America/New_York 1 * * * *".

    enabled Boolean

    Required. Whether discovery is enabled.

    csvOptions Property Map

    Optional. Configuration for CSV data.

    excludePatterns List<String>

    Optional. The list of patterns to apply for selecting data to exclude during discovery. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    includePatterns List<String>

    Optional. The list of patterns to apply for selecting data to include during discovery if only a subset of the data should considered. For Cloud Storage bucket assets, these are interpreted as glob patterns used to match object names. For BigQuery dataset assets, these are interpreted as patterns to match table names.

    jsonOptions Property Map

    Optional. Configuration for Json data.

    schedule String

    Optional. Cron schedule (https://en.wikipedia.org/wiki/Cron) for running discovery periodically. Successive discovery runs must be scheduled at least 60 minutes apart. The default value is to run discovery every 60 minutes. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, "CRON_TZ=America/New_York 1 * * * *", or "TZ=America/New_York 1 * * * *".

    AssetDiscoverySpecCsvOptions, AssetDiscoverySpecCsvOptionsArgs

    Delimiter string

    Optional. The delimiter being used to separate values. This defaults to ','.

    DisableTypeInference bool

    Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.

    Encoding string

    Optional. The character encoding of the data. The default is UTF-8.

    HeaderRows int

    Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.

    Delimiter string

    Optional. The delimiter being used to separate values. This defaults to ','.

    DisableTypeInference bool

    Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.

    Encoding string

    Optional. The character encoding of the data. The default is UTF-8.

    HeaderRows int

    Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.

    delimiter String

    Optional. The delimiter being used to separate values. This defaults to ','.

    disableTypeInference Boolean

    Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.

    encoding String

    Optional. The character encoding of the data. The default is UTF-8.

    headerRows Integer

    Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.

    delimiter string

    Optional. The delimiter being used to separate values. This defaults to ','.

    disableTypeInference boolean

    Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.

    encoding string

    Optional. The character encoding of the data. The default is UTF-8.

    headerRows number

    Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.

    delimiter str

    Optional. The delimiter being used to separate values. This defaults to ','.

    disable_type_inference bool

    Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.

    encoding str

    Optional. The character encoding of the data. The default is UTF-8.

    header_rows int

    Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.

    delimiter String

    Optional. The delimiter being used to separate values. This defaults to ','.

    disableTypeInference Boolean

    Optional. Whether to disable the inference of data type for CSV data. If true, all columns will be registered as strings.

    encoding String

    Optional. The character encoding of the data. The default is UTF-8.

    headerRows Number

    Optional. The number of rows to interpret as header rows that should be skipped when reading data rows.

    AssetDiscoverySpecJsonOptions, AssetDiscoverySpecJsonOptionsArgs

    DisableTypeInference bool

    Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).

    Encoding string

    Optional. The character encoding of the data. The default is UTF-8.

    DisableTypeInference bool

    Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).

    Encoding string

    Optional. The character encoding of the data. The default is UTF-8.

    disableTypeInference Boolean

    Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).

    encoding String

    Optional. The character encoding of the data. The default is UTF-8.

    disableTypeInference boolean

    Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).

    encoding string

    Optional. The character encoding of the data. The default is UTF-8.

    disable_type_inference bool

    Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).

    encoding str

    Optional. The character encoding of the data. The default is UTF-8.

    disableTypeInference Boolean

    Optional. Whether to disable the inference of data type for Json data. If true, all columns will be registered as their primitive types (strings, number or boolean).

    encoding String

    Optional. The character encoding of the data. The default is UTF-8.

    AssetDiscoveryStatus, AssetDiscoveryStatusArgs

    LastRunDuration string
    LastRunTime string
    Message string
    State string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    Stats List<AssetDiscoveryStatusStat>
    UpdateTime string

    Output only. The time when the asset was last updated.

    LastRunDuration string
    LastRunTime string
    Message string
    State string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    Stats []AssetDiscoveryStatusStat
    UpdateTime string

    Output only. The time when the asset was last updated.

    lastRunDuration String
    lastRunTime String
    message String
    state String

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    stats List<AssetDiscoveryStatusStat>
    updateTime String

    Output only. The time when the asset was last updated.

    lastRunDuration string
    lastRunTime string
    message string
    state string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    stats AssetDiscoveryStatusStat[]
    updateTime string

    Output only. The time when the asset was last updated.

    last_run_duration str
    last_run_time str
    message str
    state str

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    stats Sequence[AssetDiscoveryStatusStat]
    update_time str

    Output only. The time when the asset was last updated.

    lastRunDuration String
    lastRunTime String
    message String
    state String

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    stats List<Property Map>
    updateTime String

    Output only. The time when the asset was last updated.

    AssetDiscoveryStatusStat, AssetDiscoveryStatusStatArgs

    dataItems Integer
    dataSize Integer
    filesets Integer
    tables Integer
    dataItems number
    dataSize number
    filesets number
    tables number
    dataItems Number
    dataSize Number
    filesets Number
    tables Number

    AssetResourceSpec, AssetResourceSpecArgs

    Type string

    Required. Immutable. Type of resource. Possible values: STORAGE_BUCKET, BIGQUERY_DATASET


    Name string

    Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}

    ReadAccessMode string

    Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets. Possible values: DIRECT, MANAGED

    Type string

    Required. Immutable. Type of resource. Possible values: STORAGE_BUCKET, BIGQUERY_DATASET


    Name string

    Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}

    ReadAccessMode string

    Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets. Possible values: DIRECT, MANAGED

    type String

    Required. Immutable. Type of resource. Possible values: STORAGE_BUCKET, BIGQUERY_DATASET


    name String

    Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}

    readAccessMode String

    Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets. Possible values: DIRECT, MANAGED

    type string

    Required. Immutable. Type of resource. Possible values: STORAGE_BUCKET, BIGQUERY_DATASET


    name string

    Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}

    readAccessMode string

    Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets. Possible values: DIRECT, MANAGED

    type str

    Required. Immutable. Type of resource. Possible values: STORAGE_BUCKET, BIGQUERY_DATASET


    name str

    Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}

    read_access_mode str

    Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets. Possible values: DIRECT, MANAGED

    type String

    Required. Immutable. Type of resource. Possible values: STORAGE_BUCKET, BIGQUERY_DATASET


    name String

    Immutable. Relative name of the cloud resource that contains the data that is being managed within a lake. For example: projects/{project_number}/buckets/{bucket_id} projects/{project_number}/datasets/{dataset_id}

    readAccessMode String

    Optional. Determines how read permissions are handled for each asset and their associated tables. Only available to storage buckets assets. Possible values: DIRECT, MANAGED

    AssetResourceStatus, AssetResourceStatusArgs

    Message string
    State string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    UpdateTime string

    Output only. The time when the asset was last updated.

    Message string
    State string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    UpdateTime string

    Output only. The time when the asset was last updated.

    message String
    state String

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    updateTime String

    Output only. The time when the asset was last updated.

    message string
    state string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    updateTime string

    Output only. The time when the asset was last updated.

    message str
    state str

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    update_time str

    Output only. The time when the asset was last updated.

    message String
    state String

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    updateTime String

    Output only. The time when the asset was last updated.

    AssetSecurityStatus, AssetSecurityStatusArgs

    Message string
    State string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    UpdateTime string

    Output only. The time when the asset was last updated.

    Message string
    State string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    UpdateTime string

    Output only. The time when the asset was last updated.

    message String
    state String

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    updateTime String

    Output only. The time when the asset was last updated.

    message string
    state string

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    updateTime string

    Output only. The time when the asset was last updated.

    message str
    state str

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    update_time str

    Output only. The time when the asset was last updated.

    message String
    state String

    Output only. Current state of the asset. Possible values: STATE_UNSPECIFIED, ACTIVE, CREATING, DELETING, ACTION_REQUIRED

    updateTime String

    Output only. The time when the asset was last updated.

    Import

    Asset can be imported using any of these accepted formats

     $ pulumi import gcp:dataplex/asset:Asset default projects/{{project}}/locations/{{location}}/lakes/{{lake}}/zones/{{dataplex_zone}}/assets/{{name}}
    
     $ pulumi import gcp:dataplex/asset:Asset default {{project}}/{{location}}/{{lake}}/{{dataplex_zone}}/{{name}}
    
     $ pulumi import gcp:dataplex/asset:Asset default {{location}}/{{lake}}/{{dataplex_zone}}/{{name}}
    

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the google-beta Terraform Provider.

    gcp logo
    Google Cloud Classic v6.66.0 published on Monday, Sep 18, 2023 by Pulumi