Class: Google::Apis::BigqueryV2::Dataset
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::Dataset
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Defined Under Namespace
Instance Attribute Summary collapse
-
#access ⇒ Array<Google::Apis::BigqueryV2::Dataset::Access>
[Optional] An array of objects that define dataset access for one or more entities.
-
#creation_time ⇒ Fixnum
[Output-only] The time when this dataset was created, in milliseconds since the epoch.
-
#dataset_reference ⇒ Google::Apis::BigqueryV2::DatasetReference
[Required] A reference that identifies the dataset.
-
#default_collation ⇒ String
[Output-only] The default collation of the dataset.
-
#default_encryption_configuration ⇒ Google::Apis::BigqueryV2::EncryptionConfiguration
Corresponds to the JSON property
defaultEncryptionConfiguration. -
#default_partition_expiration_ms ⇒ Fixnum
[Optional] The default partition expiration for all partitioned tables in the dataset, in milliseconds.
-
#default_table_expiration_ms ⇒ Fixnum
[Optional] The default lifetime of all tables in the dataset, in milliseconds.
-
#description ⇒ String
[Optional] A user-friendly description of the dataset.
-
#etag ⇒ String
[Output-only] A hash of the resource.
-
#friendly_name ⇒ 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.
-
#is_case_insensitive ⇒ Boolean
(also: #is_case_insensitive?)
[Optional] Indicates if table names are case insensitive in the dataset.
-
#kind ⇒ String
[Output-only] The resource type.
-
#labels ⇒ Hash<String,String>
The labels associated with this dataset.
-
#last_modified_time ⇒ Fixnum
[Output-only] The date when this dataset or any of its tables was last modified, in milliseconds since the epoch.
-
#location ⇒ String
The geographic location where the dataset should reside.
-
#max_time_travel_hours ⇒ Fixnum
[Optional] Number of hours for the max time travel for all tables in the dataset.
-
#satisfies_pzs ⇒ Boolean
(also: #satisfies_pzs?)
[Output-only] Reserved for future use.
-
#self_link ⇒ String
[Output-only] A URL that can be used to access the resource again.
-
#storage_billing_model ⇒ String
[Optional] Storage billing model to be used for all tables in the dataset.
-
#tags ⇒ Array<Google::Apis::BigqueryV2::Dataset::Tag>
[Optional]The tags associated with this dataset.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Dataset
constructor
A new instance of Dataset.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Dataset
Returns a new instance of Dataset.
1714 1715 1716 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1714 def initialize(**args) update!(**args) end |
Instance Attribute Details
#access ⇒ Array<Google::Apis::BigqueryV2::Dataset::Access>
[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
1579 1580 1581 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1579 def access @access end |
#creation_time ⇒ Fixnum
[Output-only] The time when this dataset was created, in milliseconds since
the epoch.
Corresponds to the JSON property creationTime
1585 1586 1587 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1585 def creation_time @creation_time end |
#dataset_reference ⇒ Google::Apis::BigqueryV2::DatasetReference
[Required] A reference that identifies the dataset.
Corresponds to the JSON property datasetReference
1590 1591 1592 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1590 def dataset_reference @dataset_reference end |
#default_collation ⇒ String
[Output-only] The default collation of the dataset.
Corresponds to the JSON property defaultCollation
1595 1596 1597 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1595 def default_collation @default_collation end |
#default_encryption_configuration ⇒ Google::Apis::BigqueryV2::EncryptionConfiguration
Corresponds to the JSON property defaultEncryptionConfiguration
1600 1601 1602 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1600 def default_encryption_configuration @default_encryption_configuration end |
#default_partition_expiration_ms ⇒ Fixnum
[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
1616 1617 1618 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1616 def default_partition_expiration_ms @default_partition_expiration_ms end |
#default_table_expiration_ms ⇒ Fixnum
[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
1630 1631 1632 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1630 def default_table_expiration_ms @default_table_expiration_ms end |
#description ⇒ String
[Optional] A user-friendly description of the dataset.
Corresponds to the JSON property description
1635 1636 1637 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1635 def description @description end |
#etag ⇒ String
[Output-only] A hash of the resource.
Corresponds to the JSON property etag
1640 1641 1642 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1640 def etag @etag end |
#friendly_name ⇒ String
[Optional] A descriptive name for the dataset.
Corresponds to the JSON property friendlyName
1645 1646 1647 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1645 def friendly_name @friendly_name end |
#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.
Corresponds to the JSON property id
1653 1654 1655 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1653 def id @id end |
#is_case_insensitive ⇒ Boolean Also known as: is_case_insensitive?
[Optional] Indicates if table names are case insensitive in the dataset.
Corresponds to the JSON property isCaseInsensitive
1658 1659 1660 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1658 def is_case_insensitive @is_case_insensitive end |
#kind ⇒ String
[Output-only] The resource type.
Corresponds to the JSON property kind
1664 1665 1666 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1664 def kind @kind end |
#labels ⇒ Hash<String,String>
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
1671 1672 1673 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1671 def labels @labels end |
#last_modified_time ⇒ Fixnum
[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
1677 1678 1679 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1677 def last_modified_time @last_modified_time end |
#location ⇒ String
The geographic location where the dataset should reside. The default value is
US. See details at https://cloud.google.com/bigquery/docs/locations.
Corresponds to the JSON property location
1683 1684 1685 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1683 def location @location end |
#max_time_travel_hours ⇒ Fixnum
[Optional] Number of hours for the max time travel for all tables in the
dataset.
Corresponds to the JSON property maxTimeTravelHours
1689 1690 1691 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1689 def max_time_travel_hours @max_time_travel_hours end |
#satisfies_pzs ⇒ Boolean Also known as: satisfies_pzs?
[Output-only] Reserved for future use.
Corresponds to the JSON property satisfiesPzs
1694 1695 1696 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1694 def satisfies_pzs @satisfies_pzs end |
#self_link ⇒ String
[Output-only] A URL that can be used to access the resource again. You can use
this URL in Get or Update requests to the resource.
Corresponds to the JSON property selfLink
1701 1702 1703 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1701 def self_link @self_link end |
#storage_billing_model ⇒ String
[Optional] Storage billing model to be used for all tables in the dataset. Can
be set to PHYSICAL. Default is LOGICAL.
Corresponds to the JSON property storageBillingModel
1707 1708 1709 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1707 def storage_billing_model @storage_billing_model end |
#tags ⇒ Array<Google::Apis::BigqueryV2::Dataset::Tag>
[Optional]The tags associated with this dataset. Tag keys are globally unique.
Corresponds to the JSON property tags
1712 1713 1714 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1712 def @tags end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1719 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) @max_time_travel_hours = args[:max_time_travel_hours] if args.key?(:max_time_travel_hours) @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs) @self_link = args[:self_link] if args.key?(:self_link) @storage_billing_model = args[:storage_billing_model] if args.key?(:storage_billing_model) @tags = args[:tags] if args.key?(:tags) end |