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={
        "dataset": "string",
    },
    documentation="string",
    description="string",
    data_provider={
        "name": "string",
        "primary_contact": "string",
    },
    icon="string",
    categories=[google_native.analyticshub.v1beta1.ListingCategoriesItem.CATEGORY_UNSPECIFIED],
    location="string",
    primary_contact="string",
    project="string",
    publisher={
        "name": "string",
        "primary_contact": "string",
    },
    request_access="string",
    restricted_export_config={
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Listing resource accepts the following input properties:
- BigqueryDataset Pulumi.Google Native. Analytics Hub. V1Beta1. Inputs. Big Query Dataset Source 
- Shared dataset i.e. BigQuery dataset source.
- DataExchange stringId 
- DisplayName 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.
- ListingId 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.
- DataProvider 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
- PrimaryContact 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.
- RequestAccess string
- Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- RestrictedExport 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.
- BigqueryDataset BigQuery Dataset Source Args 
- Shared dataset i.e. BigQuery dataset source.
- DataExchange stringId 
- DisplayName 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.
- ListingId 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
[]ListingCategories Item 
- Optional. Categories of the listing. Up to two categories are allowed.
- DataProvider 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
- PrimaryContact string
- Optional. Email or URL of the primary point of contact of the listing. Max Length: 1000 bytes.
- Project string
- Publisher
PublisherArgs 
- Optional. Details of the publisher who owns the listing and who can share the source data.
- RequestAccess string
- Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- RestrictedExport RestrictedConfig Export Config Args 
- Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
- bigqueryDataset BigQuery Dataset Source 
- Shared dataset i.e. BigQuery dataset source.
- dataExchange StringId 
- displayName 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.
- listingId 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<ListingCategories Item> 
- Optional. Categories of the listing. Up to two categories are allowed.
- dataProvider 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
- primaryContact 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.
- requestAccess String
- Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- restrictedExport RestrictedConfig Export Config 
- Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
- bigqueryDataset BigQuery Dataset Source 
- Shared dataset i.e. BigQuery dataset source.
- dataExchange stringId 
- displayName 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.
- listingId 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
ListingCategories Item[] 
- Optional. Categories of the listing. Up to two categories are allowed.
- dataProvider 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
- primaryContact 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.
- requestAccess string
- Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- restrictedExport 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[ListingCategories 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
PublisherArgs 
- 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.
- bigqueryDataset Property Map
- Shared dataset i.e. BigQuery dataset source.
- dataExchange StringId 
- displayName 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.
- listingId 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.
- dataProvider 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
- primaryContact 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.
- requestAccess String
- Optional. Email or URL of the request access of the listing. Subscribers can use this reference to request access. Max Length: 1000 bytes.
- restrictedExport 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.
- PrimaryContact string
- Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- Name string
- Optional. Name of the data provider.
- PrimaryContact string
- Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name String
- Optional. Name of the data provider.
- primaryContact String
- Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name string
- Optional. Name of the data provider.
- primaryContact 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.
- primaryContact String
- Optional. Email or URL of the data provider. Max Length: 1000 bytes.
DataProviderResponse, DataProviderResponseArgs      
- Name string
- Optional. Name of the data provider.
- PrimaryContact string
- Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- Name string
- Optional. Name of the data provider.
- PrimaryContact string
- Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name String
- Optional. Name of the data provider.
- primaryContact String
- Optional. Email or URL of the data provider. Max Length: 1000 bytes.
- name string
- Optional. Name of the data provider.
- primaryContact 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.
- primaryContact String
- Optional. Email or URL of the data provider. Max Length: 1000 bytes.
ListingCategoriesItem, ListingCategoriesItemArgs      
- CategoryUnspecified 
- CATEGORY_UNSPECIFIED
- CategoryOthers 
- CATEGORY_OTHERS
- CategoryAdvertising And Marketing 
- CATEGORY_ADVERTISING_AND_MARKETING
- CategoryCommerce 
- CATEGORY_COMMERCE
- CategoryClimate And Environment 
- CATEGORY_CLIMATE_AND_ENVIRONMENT
- CategoryDemographics 
- CATEGORY_DEMOGRAPHICS
- CategoryEconomics 
- CATEGORY_ECONOMICS
- CategoryEducation 
- CATEGORY_EDUCATION
- CategoryEnergy 
- CATEGORY_ENERGY
- CategoryFinancial 
- CATEGORY_FINANCIAL
- CategoryGaming 
- CATEGORY_GAMING
- CategoryGeospatial 
- CATEGORY_GEOSPATIAL
- CategoryHealthcare And Life Science 
- CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- CategoryMedia 
- CATEGORY_MEDIA
- CategoryPublic Sector 
- CATEGORY_PUBLIC_SECTOR
- CategoryRetail 
- CATEGORY_RETAIL
- CategorySports 
- CATEGORY_SPORTS
- CategoryScience And Research 
- CATEGORY_SCIENCE_AND_RESEARCH
- CategoryTransportation And Logistics 
- CATEGORY_TRANSPORTATION_AND_LOGISTICS
- CategoryTravel And Tourism 
- CATEGORY_TRAVEL_AND_TOURISM
- ListingCategories Item Category Unspecified 
- CATEGORY_UNSPECIFIED
- ListingCategories Item Category Others 
- CATEGORY_OTHERS
- ListingCategories Item Category Advertising And Marketing 
- CATEGORY_ADVERTISING_AND_MARKETING
- ListingCategories Item Category Commerce 
- CATEGORY_COMMERCE
- ListingCategories Item Category Climate And Environment 
- CATEGORY_CLIMATE_AND_ENVIRONMENT
- ListingCategories Item Category Demographics 
- CATEGORY_DEMOGRAPHICS
- ListingCategories Item Category Economics 
- CATEGORY_ECONOMICS
- ListingCategories Item Category Education 
- CATEGORY_EDUCATION
- ListingCategories Item Category Energy 
- CATEGORY_ENERGY
- ListingCategories Item Category Financial 
- CATEGORY_FINANCIAL
- ListingCategories Item Category Gaming 
- CATEGORY_GAMING
- ListingCategories Item Category Geospatial 
- CATEGORY_GEOSPATIAL
- ListingCategories Item Category Healthcare And Life Science 
- CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- ListingCategories Item Category Media 
- CATEGORY_MEDIA
- ListingCategories Item Category Public Sector 
- CATEGORY_PUBLIC_SECTOR
- ListingCategories Item Category Retail 
- CATEGORY_RETAIL
- ListingCategories Item Category Sports 
- CATEGORY_SPORTS
- ListingCategories Item Category Science And Research 
- CATEGORY_SCIENCE_AND_RESEARCH
- ListingCategories Item Category Transportation And Logistics 
- CATEGORY_TRANSPORTATION_AND_LOGISTICS
- ListingCategories Item Category Travel And Tourism 
- CATEGORY_TRAVEL_AND_TOURISM
- CategoryUnspecified 
- CATEGORY_UNSPECIFIED
- CategoryOthers 
- CATEGORY_OTHERS
- CategoryAdvertising And Marketing 
- CATEGORY_ADVERTISING_AND_MARKETING
- CategoryCommerce 
- CATEGORY_COMMERCE
- CategoryClimate And Environment 
- CATEGORY_CLIMATE_AND_ENVIRONMENT
- CategoryDemographics 
- CATEGORY_DEMOGRAPHICS
- CategoryEconomics 
- CATEGORY_ECONOMICS
- CategoryEducation 
- CATEGORY_EDUCATION
- CategoryEnergy 
- CATEGORY_ENERGY
- CategoryFinancial 
- CATEGORY_FINANCIAL
- CategoryGaming 
- CATEGORY_GAMING
- CategoryGeospatial 
- CATEGORY_GEOSPATIAL
- CategoryHealthcare And Life Science 
- CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- CategoryMedia 
- CATEGORY_MEDIA
- CategoryPublic Sector 
- CATEGORY_PUBLIC_SECTOR
- CategoryRetail 
- CATEGORY_RETAIL
- CategorySports 
- CATEGORY_SPORTS
- CategoryScience And Research 
- CATEGORY_SCIENCE_AND_RESEARCH
- CategoryTransportation And Logistics 
- CATEGORY_TRANSPORTATION_AND_LOGISTICS
- CategoryTravel And Tourism 
- CATEGORY_TRAVEL_AND_TOURISM
- CategoryUnspecified 
- CATEGORY_UNSPECIFIED
- CategoryOthers 
- CATEGORY_OTHERS
- CategoryAdvertising And Marketing 
- CATEGORY_ADVERTISING_AND_MARKETING
- CategoryCommerce 
- CATEGORY_COMMERCE
- CategoryClimate And Environment 
- CATEGORY_CLIMATE_AND_ENVIRONMENT
- CategoryDemographics 
- CATEGORY_DEMOGRAPHICS
- CategoryEconomics 
- CATEGORY_ECONOMICS
- CategoryEducation 
- CATEGORY_EDUCATION
- CategoryEnergy 
- CATEGORY_ENERGY
- CategoryFinancial 
- CATEGORY_FINANCIAL
- CategoryGaming 
- CATEGORY_GAMING
- CategoryGeospatial 
- CATEGORY_GEOSPATIAL
- CategoryHealthcare And Life Science 
- CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
- CategoryMedia 
- CATEGORY_MEDIA
- CategoryPublic Sector 
- CATEGORY_PUBLIC_SECTOR
- CategoryRetail 
- CATEGORY_RETAIL
- CategorySports 
- CATEGORY_SPORTS
- CategoryScience And Research 
- CATEGORY_SCIENCE_AND_RESEARCH
- CategoryTransportation And Logistics 
- CATEGORY_TRANSPORTATION_AND_LOGISTICS
- CategoryTravel 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.
- PrimaryContact string
- Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- Name string
- Optional. Name of the listing publisher.
- PrimaryContact string
- Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name String
- Optional. Name of the listing publisher.
- primaryContact String
- Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name string
- Optional. Name of the listing publisher.
- primaryContact 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.
- primaryContact String
- Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
PublisherResponse, PublisherResponseArgs    
- Name string
- Optional. Name of the listing publisher.
- PrimaryContact string
- Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- Name string
- Optional. Name of the listing publisher.
- PrimaryContact string
- Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name String
- Optional. Name of the listing publisher.
- primaryContact String
- Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
- name string
- Optional. Name of the listing publisher.
- primaryContact 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.
- primaryContact String
- Optional. Email or URL of the listing publisher. Max Length: 1000 bytes.
RestrictedExportConfig, RestrictedExportConfigArgs      
- Enabled bool
- Optional. If true, enable restricted export.
- RestrictQuery boolResult 
- Optional. If true, restrict export of query result derived from restricted linked dataset table.
- Enabled bool
- Optional. If true, enable restricted export.
- RestrictQuery boolResult 
- Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled Boolean
- Optional. If true, enable restricted export.
- restrictQuery BooleanResult 
- Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled boolean
- Optional. If true, enable restricted export.
- restrictQuery 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.
- restrictQuery 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.
- RestrictDirect boolTable Access 
- If true, restrict direct table access(read api/tabledata.list) on linked table.
- RestrictQuery boolResult 
- Optional. If true, restrict export of query result derived from restricted linked dataset table.
- Enabled bool
- Optional. If true, enable restricted export.
- RestrictDirect boolTable Access 
- If true, restrict direct table access(read api/tabledata.list) on linked table.
- RestrictQuery boolResult 
- Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled Boolean
- Optional. If true, enable restricted export.
- restrictDirect BooleanTable Access 
- If true, restrict direct table access(read api/tabledata.list) on linked table.
- restrictQuery BooleanResult 
- Optional. If true, restrict export of query result derived from restricted linked dataset table.
- enabled boolean
- Optional. If true, enable restricted export.
- restrictDirect booleanTable Access 
- If true, restrict direct table access(read api/tabledata.list) on linked table.
- restrictQuery 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.
- restrictDirect BooleanTable Access 
- If true, restrict direct table access(read api/tabledata.list) on linked table.
- restrictQuery 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.