Module GapiBigqueryV2Model.Dataset

module Access : sig ... end
type t = {
access : Access.t list;

[Optional] An array of objects that define dataset access for one or more entities. You can set this property when inserting or updating a dataset in order to control who is allowed to access the data. If unspecified at dataset creation time, BigQuery adds default dataset access for the following entities: access.specialGroup: projectReaders; access.role: READER; access.specialGroup: projectWriters; access.role: WRITER; access.specialGroup: projectOwners; access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER;

creationTime : int64;

[Output-only] The time when this dataset was created, in milliseconds since the epoch.

datasetReference : DatasetReference.t;

[Required] A reference that identifies the dataset.

defaultTableExpirationMs : int64;

[Experimental] The default lifetime of all tables in the dataset, in milliseconds. The minimum value is 3600000 milliseconds (one hour). Once this property is set, all newly-created tables in the dataset will have an expirationTime property set to the creation time plus the value in this property, and changing the value will only affect new tables, not existing ones. When the expirationTime for a given table is reached, that table will be deleted automatically. If a table's expirationTime is modified or removed before the table expires, or if you provide an explicit expirationTime when creating a table, that value takes precedence over the default expiration time indicated by this property.

description : string;

[Optional] A user-friendly description of the dataset.

etag : string;

[Output-only] A hash of the resource.

friendlyName : string;

[Optional] A descriptive name for the dataset.

id : string;

[Output-only] The fully-qualified unique name of the dataset in the format projectId:datasetId. The dataset name without the project name is given in the datasetId field. When creating a new dataset, leave this field blank, and instead specify the datasetId field.

kind : string;

[Output-only] The resource type.

lastModifiedTime : int64;

[Output-only] The date when this dataset or any of its tables was last modified, in milliseconds since the epoch.

location : string;

[Experimental] The geographic location where the dataset should reside. Possible values include EU and US. The default value is US.

}
val access : (tAccess.t list) GapiLens.t
val creationTime : (t, int64) GapiLens.t
val datasetReference : (tDatasetReference.t) GapiLens.t
val defaultTableExpirationMs : (t, int64) GapiLens.t
val description : (t, string) GapiLens.t
val etag : (t, string) GapiLens.t
val friendlyName : (t, string) GapiLens.t
val id : (t, string) GapiLens.t
val kind : (t, string) GapiLens.t
val lastModifiedTime : (t, int64) GapiLens.t
val location : (t, string) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t
val to_data_model : t -> GapiJson.json_data_model
val of_data_model : GapiJson.json_data_model -> t