class Google::Apis::BigqueryV2::Dataset

Attributes

access[RW]
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; Corresponds to the JSON property `access` @return [Array<Google::Apis::BigqueryV2::Dataset::Access>]

creation_time[RW]
Output-only

The time when this dataset was created, in milliseconds since

the epoch. Corresponds to the JSON property `creationTime` @return [Fixnum]

dataset_reference[RW]
Required

A reference that identifies the dataset.

Corresponds to the JSON property `datasetReference` @return [Google::Apis::BigqueryV2::DatasetReference]

default_collation[RW]
Output-only

The default collation of the dataset.

Corresponds to the JSON property `defaultCollation` @return [String]

default_encryption_configuration[RW]

Corresponds to the JSON property `defaultEncryptionConfiguration` @return [Google::Apis::BigqueryV2::EncryptionConfiguration]

default_partition_expiration_ms[RW]
Optional

The default partition expiration for all partitioned tables in the

dataset, in milliseconds. Once this property is set, all newly-created partitioned tables in the dataset will have an expirationMs property in the timePartitioning settings set to this value, and changing the value will only affect new tables, not existing ones. The storage in a partition will have an expiration time of its partition time plus this value. Setting this property overrides the use of defaultTableExpirationMs for partitioned tables: only one of defaultTableExpirationMs and defaultPartitionExpirationMs will be used for any new partitioned table. If you provide an explicit timePartitioning. expirationMs when creating or updating a partitioned table, that value takes precedence over the default partition expiration time indicated by this property. Corresponds to the JSON property `defaultPartitionExpirationMs` @return [Fixnum]

default_table_expiration_ms[RW]
Optional

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. Corresponds to the JSON property `defaultTableExpirationMs` @return [Fixnum]

description[RW]
Optional

A user-friendly description of the dataset.

Corresponds to the JSON property `description` @return [String]

etag[RW]
Output-only

A hash of the resource.

Corresponds to the JSON property `etag` @return [String]

friendly_name[RW]
Optional

A descriptive name for the dataset.

Corresponds to the JSON property `friendlyName` @return [String]

id[RW]
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. Corresponds to the JSON property `id` @return [String]

is_case_insensitive[RW]
Optional

Indicates if table names are case insensitive in the dataset.

Corresponds to the JSON property `isCaseInsensitive` @return [Boolean]

is_case_insensitive?[RW]
Optional

Indicates if table names are case insensitive in the dataset.

Corresponds to the JSON property `isCaseInsensitive` @return [Boolean]

kind[RW]
Output-only

The resource type.

Corresponds to the JSON property `kind` @return [String]

labels[RW]

The labels associated with this dataset. You can use these to organize and group your datasets. You can set this property when inserting or updating a dataset. See Creating and Updating Dataset Labels for more information. Corresponds to the JSON property `labels` @return [Hash<String,String>]

last_modified_time[RW]
Output-only

The date when this dataset or any of its tables was last

modified, in milliseconds since the epoch. Corresponds to the JSON property `lastModifiedTime` @return [Fixnum]

location[RW]

The geographic location where the dataset should reside. The default value is US. See details at cloud.google.com/bigquery/docs/locations. Corresponds to the JSON property `location` @return [String]

satisfies_pzs[RW]
Output-only

Reserved for future use.

Corresponds to the JSON property `satisfiesPZS` @return [Boolean]

satisfies_pzs?[RW]
Output-only

Reserved for future use.

Corresponds to the JSON property `satisfiesPZS` @return [Boolean]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 1618
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigquery_v2/classes.rb, line 1623
def update!(**args)
  @access = args[:access] if args.key?(:access)
  @creation_time = args[:creation_time] if args.key?(:creation_time)
  @dataset_reference = args[:dataset_reference] if args.key?(:dataset_reference)
  @default_collation = args[:default_collation] if args.key?(:default_collation)
  @default_encryption_configuration = args[:default_encryption_configuration] if args.key?(:default_encryption_configuration)
  @default_partition_expiration_ms = args[:default_partition_expiration_ms] if args.key?(:default_partition_expiration_ms)
  @default_table_expiration_ms = args[:default_table_expiration_ms] if args.key?(:default_table_expiration_ms)
  @description = args[:description] if args.key?(:description)
  @etag = args[:etag] if args.key?(:etag)
  @friendly_name = args[:friendly_name] if args.key?(:friendly_name)
  @id = args[:id] if args.key?(:id)
  @is_case_insensitive = args[:is_case_insensitive] if args.key?(:is_case_insensitive)
  @kind = args[:kind] if args.key?(:kind)
  @labels = args[:labels] if args.key?(:labels)
  @last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
  @location = args[:location] if args.key?(:location)
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
  @self_link = args[:self_link] if args.key?(:self_link)
end