Class: Google::Cloud::Bigquery::DataExchange::V1beta1::Listing
- Inherits:
-
Object
- Object
- Google::Cloud::Bigquery::DataExchange::V1beta1::Listing
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb
Overview
A listing is what gets published into a data exchange that a subscriber can subscribe to. It contains a reference to the data source along with descriptive information that will help subscribers find and subscribe the data.
Defined Under Namespace
Modules: Category, State Classes: BigQueryDatasetSource
Instance Attribute Summary collapse
-
#bigquery_dataset ⇒ ::Google::Cloud::Bigquery::DataExchange::V1beta1::Listing::BigQueryDatasetSource
Required.
-
#categories ⇒ ::Array<::Google::Cloud::Bigquery::DataExchange::V1beta1::Listing::Category>
Optional.
-
#data_provider ⇒ ::Google::Cloud::Bigquery::DataExchange::V1beta1::DataProvider
Optional.
-
#description ⇒ ::String
Optional.
-
#display_name ⇒ ::String
Required.
-
#documentation ⇒ ::String
Optional.
-
#icon ⇒ ::String
Optional.
-
#name ⇒ ::String
readonly
Output only.
-
#primary_contact ⇒ ::String
Optional.
-
#publisher ⇒ ::Google::Cloud::Bigquery::DataExchange::V1beta1::Publisher
Optional.
-
#request_access ⇒ ::String
Optional.
-
#state ⇒ ::Google::Cloud::Bigquery::DataExchange::V1beta1::Listing::State
readonly
Output only.
Instance Attribute Details
#bigquery_dataset ⇒ ::Google::Cloud::Bigquery::DataExchange::V1beta1::Listing::BigQueryDatasetSource
Returns Required. Shared dataset i.e. BigQuery dataset source.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#categories ⇒ ::Array<::Google::Cloud::Bigquery::DataExchange::V1beta1::Listing::Category>
Returns Optional. Categories of the listing. Up to two categories are allowed.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#data_provider ⇒ ::Google::Cloud::Bigquery::DataExchange::V1beta1::DataProvider
Returns Optional. Details of the data provider who owns the source data.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#description ⇒ ::String
Returns Optional. Short description of the listing. The description must not contain Unicode non-characters and C0 and C1 control codes except tabs (HT), new lines (LF), carriage returns (CR), and page breaks (FF). Default value is an empty string. Max length: 2000 bytes.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#display_name ⇒ ::String
Returns Required. Human-readable display name of the listing. The display name must contain only Unicode letters, numbers (0-9), underscores (_), dashes (-), spaces ( ), ampersands (&) and can't start or end with spaces. Default value is an empty string. Max length: 63 bytes.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#documentation ⇒ ::String
Returns Optional. Documentation describing the listing.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#icon ⇒ ::String
Returns Optional. Base64 encoded image representing the listing. Max Size: 3.0MiB Expected image dimensions are 512x512 pixels, however the API only performs validation on size of the encoded data. Note: For byte fields, the contents of the field are base64-encoded (which increases the size of the data by 33-36%) when using JSON on the wire.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#name ⇒ ::String (readonly)
Returns Output only. The resource name of the listing.
e.g. projects/myproject/locations/US/dataExchanges/123/listings/456
.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#primary_contact ⇒ ::String
Returns Optional. Email or URL of the primary point of contact of the listing. Max Length: 1000 bytes.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#publisher ⇒ ::Google::Cloud::Bigquery::DataExchange::V1beta1::Publisher
Returns Optional. Details of the publisher who owns the listing and who can share the source data.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#request_access ⇒ ::String
Returns Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |
#state ⇒ ::Google::Cloud::Bigquery::DataExchange::V1beta1::Listing::State (readonly)
Returns Output only. Current state of the listing.
201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'proto_docs/google/cloud/bigquery/dataexchange/v1beta1/dataexchange.rb', line 201 class Listing include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # A reference to a shared dataset. It is an existing BigQuery dataset with a # collection of objects such as tables and views that you want to share # with subscribers. # When subscriber's subscribe to a listing, Analytics Hub creates a linked # dataset in # the subscriber's project. A Linked dataset is an opaque, read-only BigQuery # dataset that serves as a _symbolic link_ to a shared dataset. # @!attribute [rw] dataset # @return [::String] # Resource name of the dataset source for this listing. # e.g. `projects/myproject/datasets/123` class BigQueryDatasetSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end # State of the listing. module State # Default value. This value is unused. STATE_UNSPECIFIED = 0 # Subscribable state. Users with dataexchange.listings.subscribe permission # can subscribe to this listing. ACTIVE = 1 end # Listing categories. module Category CATEGORY_UNSPECIFIED = 0 CATEGORY_OTHERS = 1 CATEGORY_ADVERTISING_AND_MARKETING = 2 CATEGORY_COMMERCE = 3 CATEGORY_CLIMATE_AND_ENVIRONMENT = 4 CATEGORY_DEMOGRAPHICS = 5 CATEGORY_ECONOMICS = 6 CATEGORY_EDUCATION = 7 CATEGORY_ENERGY = 8 CATEGORY_FINANCIAL = 9 CATEGORY_GAMING = 10 CATEGORY_GEOSPATIAL = 11 CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE = 12 CATEGORY_MEDIA = 13 CATEGORY_PUBLIC_SECTOR = 14 CATEGORY_RETAIL = 15 CATEGORY_SPORTS = 16 CATEGORY_SCIENCE_AND_RESEARCH = 17 CATEGORY_TRANSPORTATION_AND_LOGISTICS = 18 CATEGORY_TRAVEL_AND_TOURISM = 19 end end |