Show / Hide Table of Contents

Class EntryArgs

Inheritance
System.Object
InputArgs
ResourceArgs
EntryArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Gcp.DataCatalog
Assembly: Pulumi.Gcp.dll
Syntax
public sealed class EntryArgs : ResourceArgs

Constructors

View Source

EntryArgs()

Declaration
public EntryArgs()

Properties

View Source

Description

Entry description, which can consist of several sentences or paragraphs that describe entry contents.

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DisplayName

Display information such as title and description. A short name to identify the entry, for example, "Analytics Data - Jan 2011".

Declaration
public Input<string> DisplayName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

EntryGroup

The name of the entry group this entry is in.

Declaration
public Input<string> EntryGroup { get; set; }
Property Value
Type Description
Input<System.String>
View Source

EntryId

The id of the entry to create.

Declaration
public Input<string> EntryId { get; set; }
Property Value
Type Description
Input<System.String>
View Source

GcsFilesetSpec

Specification that applies to a Cloud Storage fileset. This is only valid on entries of type FILESET. Structure is documented below.

Declaration
public Input<EntryGcsFilesetSpecArgs> GcsFilesetSpec { get; set; }
Property Value
Type Description
Input<EntryGcsFilesetSpecArgs>
View Source

LinkedResource

The resource this metadata entry refers to. For Google Cloud Platform resources, linkedResource is the full name of the resource. For example, the linkedResource for a table resource from BigQuery is: //bigquery.googleapis.com/projects/projectId/datasets/datasetId/tables/tableId Output only when Entry is of type in the EntryType enum. For entries with userSpecifiedType, this field is optional and defaults to an empty string.

Declaration
public Input<string> LinkedResource { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Schema

Schema of the entry (e.g. BigQuery, GoogleSQL, Avro schema), as a json string. An entry might not have any schema attached to it. See https://cloud.google.com/data-catalog/docs/reference/rest/v1/projects.locations.entryGroups.entries#schema for what fields this schema can contain.

Declaration
public Input<string> Schema { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Type

The type of the entry. Only used for Entries with types in the EntryType enum. Currently, only FILESET enum value is allowed. All other entries created through Data Catalog must use userSpecifiedType.

Declaration
public Input<string> Type { get; set; }
Property Value
Type Description
Input<System.String>
View Source

UserSpecifiedSystem

This field indicates the entry's source system that Data Catalog does not integrate with. userSpecifiedSystem strings must begin with a letter or underscore and can only contain letters, numbers, and underscores; are case insensitive; must be at least 1 character and at most 64 characters long.

Declaration
public Input<string> UserSpecifiedSystem { get; set; }
Property Value
Type Description
Input<System.String>
View Source

UserSpecifiedType

Entry type if it does not fit any of the input-allowed values listed in EntryType enum above. When creating an entry, users should check the enum values first, if nothing matches the entry to be created, then provide a custom value, for example "my_special_type". userSpecifiedType strings must begin with a letter or underscore and can only contain letters, numbers, and underscores; are case insensitive; must be at least 1 character and at most 64 characters long.

Declaration
public Input<string> UserSpecifiedType { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.