Google Cloud Native is in preview. Google Cloud Classic is fully supported.
google-native.analyticshub/v1beta1.Listing
Explore with Pulumi AI
Google Cloud Native is in preview. Google Cloud Classic is fully supported.
Creates a new listing. Auto-naming is currently not supported for this resource.
Create Listing Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Listing(name: string, args: ListingArgs, opts?: CustomResourceOptions);
@overload
def Listing(resource_name: str,
args: ListingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Listing(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
listing_id: Optional[str] = None,
data_exchange_id: Optional[str] = None,
bigquery_dataset: Optional[BigQueryDatasetSourceArgs] = None,
documentation: Optional[str] = None,
description: Optional[str] = None,
data_provider: Optional[DataProviderArgs] = None,
icon: Optional[str] = None,
categories: Optional[Sequence[ListingCategoriesItem]] = None,
location: Optional[str] = None,
primary_contact: Optional[str] = None,
project: Optional[str] = None,
publisher: Optional[PublisherArgs] = None,
request_access: Optional[str] = None,
restricted_export_config: Optional[RestrictedExportConfigArgs] = None)
func NewListing(ctx *Context, name string, args ListingArgs, opts ...ResourceOption) (*Listing, error)
public Listing(string name, ListingArgs args, CustomResourceOptions? opts = null)
public Listing(String name, ListingArgs args)
public Listing(String name, ListingArgs args, CustomResourceOptions options)
type: google-native:analyticshub/v1beta1:Listing
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ListingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ListingArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ListingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ListingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ListingArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var google_nativeListingResource = new GoogleNative.AnalyticsHub.V1Beta1.Listing("google-nativeListingResource", new()
{
DisplayName = "string",
ListingId = "string",
DataExchangeId = "string",
BigqueryDataset = new GoogleNative.AnalyticsHub.V1Beta1.Inputs.BigQueryDatasetSourceArgs
{
Dataset = "string",
},
Documentation = "string",
Description = "string",
DataProvider = new GoogleNative.AnalyticsHub.V1Beta1.Inputs.DataProviderArgs
{
Name = "string",
PrimaryContact = "string",
},
Icon = "string",
Categories = new[]
{
GoogleNative.AnalyticsHub.V1Beta1.ListingCategoriesItem.CategoryUnspecified,
},
Location = "string",
PrimaryContact = "string",
Project = "string",
Publisher = new GoogleNative.AnalyticsHub.V1Beta1.Inputs.PublisherArgs
{
Name = "string",
PrimaryContact = "string",
},
RequestAccess = "string",
RestrictedExportConfig = new GoogleNative.AnalyticsHub.V1Beta1.Inputs.RestrictedExportConfigArgs
{
Enabled = false,
RestrictQueryResult = false,
},
});
example, err := analyticshubv1beta1.NewListing(ctx, "google-nativeListingResource", &analyticshubv1beta1.ListingArgs{
DisplayName: pulumi.String("string"),
ListingId: pulumi.String("string"),
DataExchangeId: pulumi.String("string"),
BigqueryDataset: &analyticshub.BigQueryDatasetSourceArgs{
Dataset: pulumi.String("string"),
},
Documentation: pulumi.String("string"),
Description: pulumi.String("string"),
DataProvider: &analyticshub.DataProviderArgs{
Name: pulumi.String("string"),
PrimaryContact: pulumi.String("string"),
},
Icon: pulumi.String("string"),
Categories: analyticshub.ListingCategoriesItemArray{
analyticshubv1beta1.ListingCategoriesItemCategoryUnspecified,
},
Location: pulumi.String("string"),
PrimaryContact: pulumi.String("string"),
Project: pulumi.String("string"),
Publisher: &analyticshub.PublisherArgs{
Name: pulumi.String("string"),
PrimaryContact: pulumi.String("string"),
},
RequestAccess: pulumi.String("string"),
RestrictedExportConfig: &analyticshub.RestrictedExportConfigArgs{
Enabled: pulumi.Bool(false),
RestrictQueryResult: pulumi.Bool(false),
},
})
var google_nativeListingResource = new Listing("google-nativeListingResource", ListingArgs.builder()
.displayName("string")
.listingId("string")
.dataExchangeId("string")
.bigqueryDataset(BigQueryDatasetSourceArgs.builder()
.dataset("string")
.build())
.documentation("string")
.description("string")
.dataProvider(DataProviderArgs.builder()
.name("string")
.primaryContact("string")
.build())
.icon("string")
.categories("CATEGORY_UNSPECIFIED")
.location("string")
.primaryContact("string")
.project("string")
.publisher(PublisherArgs.builder()
.name("string")
.primaryContact("string")
.build())
.requestAccess("string")
.restrictedExportConfig(RestrictedExportConfigArgs.builder()
.enabled(false)
.restrictQueryResult(false)
.build())
.build());
google_native_listing_resource = google_native.analyticshub.v1beta1.Listing("google-nativeListingResource",
display_name="string",
listing_id="string",
data_exchange_id="string",
bigquery_dataset=google_native.analyticshub.v1beta1.BigQueryDatasetSourceArgs(
dataset="string",
),
documentation="string",
description="string",
data_provider=google_native.analyticshub.v1beta1.DataProviderArgs(
name="string",
primary_contact="string",
),
icon="string",
categories=[google_native.analyticshub.v1beta1.ListingCategoriesItem.CATEGORY_UNSPECIFIED],
location="string",
primary_contact="string",
project="string",
publisher=google_native.analyticshub.v1beta1.PublisherArgs(
name="string",
primary_contact="string",
),
request_access="string",
restricted_export_config=google_native.analyticshub.v1beta1.RestrictedExportConfigArgs(
enabled=False,
restrict_query_result=False,
))
const google_nativeListingResource = new google_native.analyticshub.v1beta1.Listing("google-nativeListingResource", {
displayName: "string",
listingId: "string",
dataExchangeId: "string",
bigqueryDataset: {
dataset: "string",
},
documentation: "string",
description: "string",
dataProvider: {
name: "string",
primaryContact: "string",
},
icon: "string",
categories: [google_native.analyticshub.v1beta1.ListingCategoriesItem.CategoryUnspecified],
location: "string",
primaryContact: "string",
project: "string",
publisher: {
name: "string",
primaryContact: "string",
},
requestAccess: "string",
restrictedExportConfig: {
enabled: false,
restrictQueryResult: false,
},
});
type: google-native:analyticshub/v1beta1:Listing
properties:
bigqueryDataset:
dataset: string
categories:
- CATEGORY_UNSPECIFIED
dataExchangeId: string
dataProvider:
name: string
primaryContact: string
description: string
displayName: string
documentation: string
icon: string
listingId: string
location: string
primaryContact: string
project: string
publisher:
name: string
primaryContact: string
requestAccess: string
restrictedExportConfig:
enabled: false
restrictQueryResult: false
Listing Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Listing resource accepts the following input properties:
- Bigquery
Dataset Pulumi.Google Native. Analytics Hub. V1Beta1. Inputs. Big Query Dataset Source - Shared dataset i.e. BigQuery dataset source.
- Data
Exchange stringId - Display
Name string - 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.
- Listing
Id string - Required. The ID of the listing to create. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Max length: 100 bytes.
- Categories
List<Pulumi.
Google Native. Analytics Hub. V1Beta1. Listing Categories Item> - Optional. Categories of the listing. Up to two categories are allowed.
- Data
Provider Pulumi.Google Native. Analytics Hub. V1Beta1. Inputs. Data Provider - Optional. Details of the data provider who owns the source data.
- Description string
- 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.
- Documentation string
- Optional. Documentation describing the listing.
- Icon string
- 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.
- Location string
- Primary
Contact string - Optional. Email or URL of the primary point of contact of the listing. Max Length: 1000 bytes.
- Project string
- Publisher
Pulumi.
Google Native. Analytics Hub. V1Beta1. Inputs. Publisher - Optional. Details of the publisher who owns the listing and who can share the source data.
- Request
Access string - Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- Restricted
Export Pulumi.Config Google Native. Analytics Hub. V1Beta1. Inputs. Restricted Export Config - Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
- Bigquery
Dataset BigQuery Dataset Source Args - Shared dataset i.e. BigQuery dataset source.
- Data
Exchange stringId - Display
Name string - 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.
- Listing
Id string - Required. The ID of the listing to create. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Max length: 100 bytes.
- Categories
[]Listing
Categories Item - Optional. Categories of the listing. Up to two categories are allowed.
- Data
Provider DataProvider Args - Optional. Details of the data provider who owns the source data.
- Description string
- 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.
- Documentation string
- Optional. Documentation describing the listing.
- Icon string
- 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.
- Location string
- Primary
Contact string - Optional. Email or URL of the primary point of contact of the listing. Max Length: 1000 bytes.
- Project string
- Publisher
Publisher
Args - Optional. Details of the publisher who owns the listing and who can share the source data.
- Request
Access string - Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- Restricted
Export RestrictedConfig Export Config Args - Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
- bigquery
Dataset BigQuery Dataset Source - Shared dataset i.e. BigQuery dataset source.
- data
Exchange StringId - display
Name String - 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.
- listing
Id String - Required. The ID of the listing to create. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Max length: 100 bytes.
- categories
List<Listing
Categories Item> - Optional. Categories of the listing. Up to two categories are allowed.
- data
Provider DataProvider - Optional. Details of the data provider who owns the source data.
- description String
- 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.
- documentation String
- Optional. Documentation describing the listing.
- icon String
- 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.
- location String
- primary
Contact String - Optional. Email or URL of the primary point of contact of the listing. Max Length: 1000 bytes.
- project String
- publisher Publisher
- Optional. Details of the publisher who owns the listing and who can share the source data.
- request
Access String - Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- restricted
Export RestrictedConfig Export Config - Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
- bigquery
Dataset BigQuery Dataset Source - Shared dataset i.e. BigQuery dataset source.
- data
Exchange stringId - display
Name string - 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.
- listing
Id string - Required. The ID of the listing to create. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Max length: 100 bytes.
- categories
Listing
Categories Item[] - Optional. Categories of the listing. Up to two categories are allowed.
- data
Provider DataProvider - Optional. Details of the data provider who owns the source data.
- description string
- 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.
- documentation string
- Optional. Documentation describing the listing.
- icon string
- 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.
- location string
- primary
Contact string - Optional. Email or URL of the primary point of contact of the listing. Max Length: 1000 bytes.
- project string
- publisher Publisher
- Optional. Details of the publisher who owns the listing and who can share the source data.
- request
Access string - Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- restricted
Export RestrictedConfig Export Config - Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
- bigquery_
dataset BigQuery Dataset Source Args - Shared dataset i.e. BigQuery dataset source.
- data_
exchange_ strid - display_
name str - 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.
- listing_
id str - Required. The ID of the listing to create. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Max length: 100 bytes.
- categories
Sequence[Listing
Categories Item] - Optional. Categories of the listing. Up to two categories are allowed.
- data_
provider DataProvider Args - Optional. Details of the data provider who owns the source data.
- description str
- 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.
- documentation str
- Optional. Documentation describing the listing.
- icon str
- 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.
- location str
- primary_
contact str - Optional. Email or URL of the primary point of contact of the listing. Max Length: 1000 bytes.
- project str
- publisher
Publisher
Args - Optional. Details of the publisher who owns the listing and who can share the source data.
- request_
access str - Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- restricted_
export_ Restrictedconfig Export Config Args - Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
- bigquery
Dataset Property Map - Shared dataset i.e. BigQuery dataset source.
- data
Exchange StringId - display
Name String - 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.
- listing
Id String - Required. The ID of the listing to create. Must contain only Unicode letters, numbers (0-9), underscores (_). Should not use characters that require URL-escaping, or characters outside of ASCII, spaces. Max length: 100 bytes.
- categories List<"CATEGORY_UNSPECIFIED" | "CATEGORY_OTHERS" | "CATEGORY_ADVERTISING_AND_MARKETING" | "CATEGORY_COMMERCE" | "CATEGORY_CLIMATE_AND_ENVIRONMENT" | "CATEGORY_DEMOGRAPHICS" | "CATEGORY_ECONOMICS" | "CATEGORY_EDUCATION" | "CATEGORY_ENERGY" | "CATEGORY_FINANCIAL" | "CATEGORY_GAMING" | "CATEGORY_GEOSPATIAL" | "CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE" | "CATEGORY_MEDIA" | "CATEGORY_PUBLIC_SECTOR" | "CATEGORY_RETAIL" | "CATEGORY_SPORTS" | "CATEGORY_SCIENCE_AND_RESEARCH" | "CATEGORY_TRANSPORTATION_AND_LOGISTICS" | "CATEGORY_TRAVEL_AND_TOURISM">
- Optional. Categories of the listing. Up to two categories are allowed.
- data
Provider Property Map - Optional. Details of the data provider who owns the source data.
- description String
- 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.
- documentation String
- Optional. Documentation describing the listing.
- icon String
- 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.
- location String
- primary
Contact String - Optional. Email or URL of the primary point of contact of the listing. Max Length: 1000 bytes.
- project String
- publisher Property Map
- Optional. Details of the publisher who owns the listing and who can share the source data.
- request
Access String - Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- restricted
Export Property MapConfig - Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
Outputs
All input properties are implicitly available as output properties. Additionally, the Listing resource produces the following output properties:
Supporting Types
BigQueryDatasetSource, BigQueryDatasetSourceArgs
- Dataset string
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
- Dataset string
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
- dataset String
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
- dataset string
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
- dataset str
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
- dataset String
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
BigQueryDatasetSourceResponse, BigQueryDatasetSourceResponseArgs
- Dataset string
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
- Dataset string
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
- dataset String
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
- dataset string
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
- dataset str
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
- dataset String
- Resource name of the dataset source for this listing. e.g.
projects/myproject/datasets/123
DataProvider, DataProviderArgs
- Name string
- Optional. Name of the data provider.
- Primary
Contact string - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- Name string
- Optional. Name of the data provider.
- Primary
Contact string - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name String
- Optional. Name of the data provider.
- primary
Contact String - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name string
- Optional. Name of the data provider.
- primary
Contact string - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name str
- Optional. Name of the data provider.
- primary_
contact str - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name String
- Optional. Name of the data provider.
- primary
Contact String - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
DataProviderResponse, DataProviderResponseArgs
- Name string
- Optional. Name of the data provider.
- Primary
Contact string - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- Name string
- Optional. Name of the data provider.
- Primary
Contact string - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name String
- Optional. Name of the data provider.
- primary
Contact String - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name string
- Optional. Name of the data provider.
- primary
Contact string - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name str
- Optional. Name of the data provider.
- primary_
contact str - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name String
- Optional. Name of the data provider.
- primary
Contact String - Optional. Email or URL of the data provider. Max Length: 1000 bytes.
ListingCategoriesItem, ListingCategoriesItemArgs
- Category
Unspecified - CATEGORY_UNSPECIFIED
- Category
Others - CATEGORY_OTHERS
- Category
Advertising And Marketing - CATEGORY_ADVERTISING_AND_MARKETING
- Category
Commerce - CATEGORY_COMMERCE
- Category
Climate And Environment - CATEGORY_CLIMATE_AND_ENVIRONMENT
- Category
Demographics - CATEGORY_DEMOGRAPHICS
- Category
Economics - CATEGORY_ECONOMICS
- Category
Education - CATEGORY_EDUCATION
- Category
Energy - CATEGORY_ENERGY
- Category
Financial - CATEGORY_FINANCIAL
- Category
Gaming - CATEGORY_GAMING
- Category
Geospatial - CATEGORY_GEOSPATIAL
- Category
Healthcare And Life Science - CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- Category
Media - CATEGORY_MEDIA
- Category
Public Sector - CATEGORY_PUBLIC_SECTOR
- Category
Retail - CATEGORY_RETAIL
- Category
Sports - CATEGORY_SPORTS
- Category
Science And Research - CATEGORY_SCIENCE_AND_RESEARCH
- Category
Transportation And Logistics - CATEGORY_TRANSPORTATION_AND_LOGISTICS
- Category
Travel And Tourism - CATEGORY_TRAVEL_AND_TOURISM
- Listing
Categories Item Category Unspecified - CATEGORY_UNSPECIFIED
- Listing
Categories Item Category Others - CATEGORY_OTHERS
- Listing
Categories Item Category Advertising And Marketing - CATEGORY_ADVERTISING_AND_MARKETING
- Listing
Categories Item Category Commerce - CATEGORY_COMMERCE
- Listing
Categories Item Category Climate And Environment - CATEGORY_CLIMATE_AND_ENVIRONMENT
- Listing
Categories Item Category Demographics - CATEGORY_DEMOGRAPHICS
- Listing
Categories Item Category Economics - CATEGORY_ECONOMICS
- Listing
Categories Item Category Education - CATEGORY_EDUCATION
- Listing
Categories Item Category Energy - CATEGORY_ENERGY
- Listing
Categories Item Category Financial - CATEGORY_FINANCIAL
- Listing
Categories Item Category Gaming - CATEGORY_GAMING
- Listing
Categories Item Category Geospatial - CATEGORY_GEOSPATIAL
- Listing
Categories Item Category Healthcare And Life Science - CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- Listing
Categories Item Category Media - CATEGORY_MEDIA
- Listing
Categories Item Category Public Sector - CATEGORY_PUBLIC_SECTOR
- Listing
Categories Item Category Retail - CATEGORY_RETAIL
- Listing
Categories Item Category Sports - CATEGORY_SPORTS
- Listing
Categories Item Category Science And Research - CATEGORY_SCIENCE_AND_RESEARCH
- Listing
Categories Item Category Transportation And Logistics - CATEGORY_TRANSPORTATION_AND_LOGISTICS
- Listing
Categories Item Category Travel And Tourism - CATEGORY_TRAVEL_AND_TOURISM
- Category
Unspecified - CATEGORY_UNSPECIFIED
- Category
Others - CATEGORY_OTHERS
- Category
Advertising And Marketing - CATEGORY_ADVERTISING_AND_MARKETING
- Category
Commerce - CATEGORY_COMMERCE
- Category
Climate And Environment - CATEGORY_CLIMATE_AND_ENVIRONMENT
- Category
Demographics - CATEGORY_DEMOGRAPHICS
- Category
Economics - CATEGORY_ECONOMICS
- Category
Education - CATEGORY_EDUCATION
- Category
Energy - CATEGORY_ENERGY
- Category
Financial - CATEGORY_FINANCIAL
- Category
Gaming - CATEGORY_GAMING
- Category
Geospatial - CATEGORY_GEOSPATIAL
- Category
Healthcare And Life Science - CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- Category
Media - CATEGORY_MEDIA
- Category
Public Sector - CATEGORY_PUBLIC_SECTOR
- Category
Retail - CATEGORY_RETAIL
- Category
Sports - CATEGORY_SPORTS
- Category
Science And Research - CATEGORY_SCIENCE_AND_RESEARCH
- Category
Transportation And Logistics - CATEGORY_TRANSPORTATION_AND_LOGISTICS
- Category
Travel And Tourism - CATEGORY_TRAVEL_AND_TOURISM
- Category
Unspecified - CATEGORY_UNSPECIFIED
- Category
Others - CATEGORY_OTHERS
- Category
Advertising And Marketing - CATEGORY_ADVERTISING_AND_MARKETING
- Category
Commerce - CATEGORY_COMMERCE
- Category
Climate And Environment - CATEGORY_CLIMATE_AND_ENVIRONMENT
- Category
Demographics - CATEGORY_DEMOGRAPHICS
- Category
Economics - CATEGORY_ECONOMICS
- Category
Education - CATEGORY_EDUCATION
- Category
Energy - CATEGORY_ENERGY
- Category
Financial - CATEGORY_FINANCIAL
- Category
Gaming - CATEGORY_GAMING
- Category
Geospatial - CATEGORY_GEOSPATIAL
- Category
Healthcare And Life Science - CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- Category
Media - CATEGORY_MEDIA
- Category
Public Sector - CATEGORY_PUBLIC_SECTOR
- Category
Retail - CATEGORY_RETAIL
- Category
Sports - CATEGORY_SPORTS
- Category
Science And Research - CATEGORY_SCIENCE_AND_RESEARCH
- Category
Transportation And Logistics - CATEGORY_TRANSPORTATION_AND_LOGISTICS
- Category
Travel And Tourism - CATEGORY_TRAVEL_AND_TOURISM
- CATEGORY_UNSPECIFIED
- CATEGORY_UNSPECIFIED
- CATEGORY_OTHERS
- CATEGORY_OTHERS
- CATEGORY_ADVERTISING_AND_MARKETING
- CATEGORY_ADVERTISING_AND_MARKETING
- CATEGORY_COMMERCE
- CATEGORY_COMMERCE
- CATEGORY_CLIMATE_AND_ENVIRONMENT
- CATEGORY_CLIMATE_AND_ENVIRONMENT
- CATEGORY_DEMOGRAPHICS
- CATEGORY_DEMOGRAPHICS
- CATEGORY_ECONOMICS
- CATEGORY_ECONOMICS
- CATEGORY_EDUCATION
- CATEGORY_EDUCATION
- CATEGORY_ENERGY
- CATEGORY_ENERGY
- CATEGORY_FINANCIAL
- CATEGORY_FINANCIAL
- CATEGORY_GAMING
- CATEGORY_GAMING
- CATEGORY_GEOSPATIAL
- CATEGORY_GEOSPATIAL
- CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- CATEGORY_MEDIA
- CATEGORY_MEDIA
- CATEGORY_PUBLIC_SECTOR
- CATEGORY_PUBLIC_SECTOR
- CATEGORY_RETAIL
- CATEGORY_RETAIL
- CATEGORY_SPORTS
- CATEGORY_SPORTS
- CATEGORY_SCIENCE_AND_RESEARCH
- CATEGORY_SCIENCE_AND_RESEARCH
- CATEGORY_TRANSPORTATION_AND_LOGISTICS
- CATEGORY_TRANSPORTATION_AND_LOGISTICS
- CATEGORY_TRAVEL_AND_TOURISM
- CATEGORY_TRAVEL_AND_TOURISM
- "CATEGORY_UNSPECIFIED"
- CATEGORY_UNSPECIFIED
- "CATEGORY_OTHERS"
- CATEGORY_OTHERS
- "CATEGORY_ADVERTISING_AND_MARKETING"
- CATEGORY_ADVERTISING_AND_MARKETING
- "CATEGORY_COMMERCE"
- CATEGORY_COMMERCE
- "CATEGORY_CLIMATE_AND_ENVIRONMENT"
- CATEGORY_CLIMATE_AND_ENVIRONMENT
- "CATEGORY_DEMOGRAPHICS"
- CATEGORY_DEMOGRAPHICS
- "CATEGORY_ECONOMICS"
- CATEGORY_ECONOMICS
- "CATEGORY_EDUCATION"
- CATEGORY_EDUCATION
- "CATEGORY_ENERGY"
- CATEGORY_ENERGY
- "CATEGORY_FINANCIAL"
- CATEGORY_FINANCIAL
- "CATEGORY_GAMING"
- CATEGORY_GAMING
- "CATEGORY_GEOSPATIAL"
- CATEGORY_GEOSPATIAL
- "CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE"
- CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- "CATEGORY_MEDIA"
- CATEGORY_MEDIA
- "CATEGORY_PUBLIC_SECTOR"
- CATEGORY_PUBLIC_SECTOR
- "CATEGORY_RETAIL"
- CATEGORY_RETAIL
- "CATEGORY_SPORTS"
- CATEGORY_SPORTS
- "CATEGORY_SCIENCE_AND_RESEARCH"
- CATEGORY_SCIENCE_AND_RESEARCH
- "CATEGORY_TRANSPORTATION_AND_LOGISTICS"
- CATEGORY_TRANSPORTATION_AND_LOGISTICS
- "CATEGORY_TRAVEL_AND_TOURISM"
- CATEGORY_TRAVEL_AND_TOURISM
Publisher, PublisherArgs
- Name string
- Optional. Name of the listing publisher.
- Primary
Contact string - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- Name string
- Optional. Name of the listing publisher.
- Primary
Contact string - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name String
- Optional. Name of the listing publisher.
- primary
Contact String - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name string
- Optional. Name of the listing publisher.
- primary
Contact string - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name str
- Optional. Name of the listing publisher.
- primary_
contact str - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name String
- Optional. Name of the listing publisher.
- primary
Contact String - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
PublisherResponse, PublisherResponseArgs
- Name string
- Optional. Name of the listing publisher.
- Primary
Contact string - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- Name string
- Optional. Name of the listing publisher.
- Primary
Contact string - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name String
- Optional. Name of the listing publisher.
- primary
Contact String - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name string
- Optional. Name of the listing publisher.
- primary
Contact string - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name str
- Optional. Name of the listing publisher.
- primary_
contact str - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name String
- Optional. Name of the listing publisher.
- primary
Contact String - Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
RestrictedExportConfig, RestrictedExportConfigArgs
- Enabled bool
- Optional. If true, enable restricted export.
- Restrict
Query boolResult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
- Enabled bool
- Optional. If true, enable restricted export.
- Restrict
Query boolResult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled Boolean
- Optional. If true, enable restricted export.
- restrict
Query BooleanResult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled boolean
- Optional. If true, enable restricted export.
- restrict
Query booleanResult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled bool
- Optional. If true, enable restricted export.
- restrict_
query_ boolresult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled Boolean
- Optional. If true, enable restricted export.
- restrict
Query BooleanResult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
RestrictedExportConfigResponse, RestrictedExportConfigResponseArgs
- Enabled bool
- Optional. If true, enable restricted export.
- Restrict
Direct boolTable Access - If true, restrict direct table access(read api/tabledata.list) on linked table.
- Restrict
Query boolResult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
- Enabled bool
- Optional. If true, enable restricted export.
- Restrict
Direct boolTable Access - If true, restrict direct table access(read api/tabledata.list) on linked table.
- Restrict
Query boolResult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled Boolean
- Optional. If true, enable restricted export.
- restrict
Direct BooleanTable Access - If true, restrict direct table access(read api/tabledata.list) on linked table.
- restrict
Query BooleanResult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled boolean
- Optional. If true, enable restricted export.
- restrict
Direct booleanTable Access - If true, restrict direct table access(read api/tabledata.list) on linked table.
- restrict
Query booleanResult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled bool
- Optional. If true, enable restricted export.
- restrict_
direct_ booltable_ access - If true, restrict direct table access(read api/tabledata.list) on linked table.
- restrict_
query_ boolresult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled Boolean
- Optional. If true, enable restricted export.
- restrict
Direct BooleanTable Access - If true, restrict direct table access(read api/tabledata.list) on linked table.
- restrict
Query BooleanResult - Optional. If true, restrict export of query result derived from restricted linked dataset table.
Package Details
- Repository
- Google Cloud Native pulumi/pulumi-google-native
- License
- Apache-2.0
Google Cloud Native is in preview. Google Cloud Classic is fully supported.