1. Packages
  2. Google Cloud Native
  3. API Docs
  4. analyticshub
  5. analyticshub/v1beta1
  6. Listing

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

google-native.analyticshub/v1beta1.Listing

Explore with Pulumi AI

google-native logo

Google Cloud Native is in preview. Google Cloud Classic is fully supported.

Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi

    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.

    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:

    BigqueryDataset Pulumi.GoogleNative.AnalyticsHub.V1Beta1.Inputs.BigQueryDatasetSource
    Shared dataset i.e. BigQuery dataset source.
    DataExchangeId string
    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.GoogleNative.AnalyticsHub.V1Beta1.ListingCategoriesItem>
    Optional. Categories of the listing. Up to two categories are allowed.
    DataProvider Pulumi.GoogleNative.AnalyticsHub.V1Beta1.Inputs.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 Pulumi.GoogleNative.AnalyticsHub.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.
    RestrictedExportConfig Pulumi.GoogleNative.AnalyticsHub.V1Beta1.Inputs.RestrictedExportConfig
    Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
    BigqueryDataset BigQueryDatasetSourceArgs
    Shared dataset i.e. BigQuery dataset source.
    DataExchangeId string
    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 []ListingCategoriesItem
    Optional. Categories of the listing. Up to two categories are allowed.
    DataProvider DataProviderArgs
    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.
    RestrictedExportConfig RestrictedExportConfigArgs
    Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
    bigqueryDataset BigQueryDatasetSource
    Shared dataset i.e. BigQuery dataset source.
    dataExchangeId String
    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<ListingCategoriesItem>
    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.
    restrictedExportConfig RestrictedExportConfig
    Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
    bigqueryDataset BigQueryDatasetSource
    Shared dataset i.e. BigQuery dataset source.
    dataExchangeId string
    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 ListingCategoriesItem[]
    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.
    restrictedExportConfig RestrictedExportConfig
    Optional. If set, restricted export configuration will be propagated and enforced on the linked dataset.
    bigquery_dataset BigQueryDatasetSourceArgs
    Shared dataset i.e. BigQuery dataset source.
    data_exchange_id str
    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[ListingCategoriesItem]
    Optional. Categories of the listing. Up to two categories are allowed.
    data_provider DataProviderArgs
    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_config RestrictedExportConfigArgs
    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.
    dataExchangeId String
    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.
    restrictedExportConfig Property Map
    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:

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name of the listing. e.g. projects/myproject/locations/US/dataExchanges/123/listings/456
    State string
    Current state of the listing.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name of the listing. e.g. projects/myproject/locations/US/dataExchanges/123/listings/456
    State string
    Current state of the listing.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name of the listing. e.g. projects/myproject/locations/US/dataExchanges/123/listings/456
    state String
    Current state of the listing.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The resource name of the listing. e.g. projects/myproject/locations/US/dataExchanges/123/listings/456
    state string
    Current state of the listing.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The resource name of the listing. e.g. projects/myproject/locations/US/dataExchanges/123/listings/456
    state str
    Current state of the listing.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name of the listing. e.g. projects/myproject/locations/US/dataExchanges/123/listings/456
    state String
    Current state of the listing.

    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
    CategoryAdvertisingAndMarketing
    CATEGORY_ADVERTISING_AND_MARKETING
    CategoryCommerce
    CATEGORY_COMMERCE
    CategoryClimateAndEnvironment
    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
    CategoryHealthcareAndLifeScience
    CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
    CategoryMedia
    CATEGORY_MEDIA
    CategoryPublicSector
    CATEGORY_PUBLIC_SECTOR
    CategoryRetail
    CATEGORY_RETAIL
    CategorySports
    CATEGORY_SPORTS
    CategoryScienceAndResearch
    CATEGORY_SCIENCE_AND_RESEARCH
    CategoryTransportationAndLogistics
    CATEGORY_TRANSPORTATION_AND_LOGISTICS
    CategoryTravelAndTourism
    CATEGORY_TRAVEL_AND_TOURISM
    ListingCategoriesItemCategoryUnspecified
    CATEGORY_UNSPECIFIED
    ListingCategoriesItemCategoryOthers
    CATEGORY_OTHERS
    ListingCategoriesItemCategoryAdvertisingAndMarketing
    CATEGORY_ADVERTISING_AND_MARKETING
    ListingCategoriesItemCategoryCommerce
    CATEGORY_COMMERCE
    ListingCategoriesItemCategoryClimateAndEnvironment
    CATEGORY_CLIMATE_AND_ENVIRONMENT
    ListingCategoriesItemCategoryDemographics
    CATEGORY_DEMOGRAPHICS
    ListingCategoriesItemCategoryEconomics
    CATEGORY_ECONOMICS
    ListingCategoriesItemCategoryEducation
    CATEGORY_EDUCATION
    ListingCategoriesItemCategoryEnergy
    CATEGORY_ENERGY
    ListingCategoriesItemCategoryFinancial
    CATEGORY_FINANCIAL
    ListingCategoriesItemCategoryGaming
    CATEGORY_GAMING
    ListingCategoriesItemCategoryGeospatial
    CATEGORY_GEOSPATIAL
    ListingCategoriesItemCategoryHealthcareAndLifeScience
    CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
    ListingCategoriesItemCategoryMedia
    CATEGORY_MEDIA
    ListingCategoriesItemCategoryPublicSector
    CATEGORY_PUBLIC_SECTOR
    ListingCategoriesItemCategoryRetail
    CATEGORY_RETAIL
    ListingCategoriesItemCategorySports
    CATEGORY_SPORTS
    ListingCategoriesItemCategoryScienceAndResearch
    CATEGORY_SCIENCE_AND_RESEARCH
    ListingCategoriesItemCategoryTransportationAndLogistics
    CATEGORY_TRANSPORTATION_AND_LOGISTICS
    ListingCategoriesItemCategoryTravelAndTourism
    CATEGORY_TRAVEL_AND_TOURISM
    CategoryUnspecified
    CATEGORY_UNSPECIFIED
    CategoryOthers
    CATEGORY_OTHERS
    CategoryAdvertisingAndMarketing
    CATEGORY_ADVERTISING_AND_MARKETING
    CategoryCommerce
    CATEGORY_COMMERCE
    CategoryClimateAndEnvironment
    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
    CategoryHealthcareAndLifeScience
    CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
    CategoryMedia
    CATEGORY_MEDIA
    CategoryPublicSector
    CATEGORY_PUBLIC_SECTOR
    CategoryRetail
    CATEGORY_RETAIL
    CategorySports
    CATEGORY_SPORTS
    CategoryScienceAndResearch
    CATEGORY_SCIENCE_AND_RESEARCH
    CategoryTransportationAndLogistics
    CATEGORY_TRANSPORTATION_AND_LOGISTICS
    CategoryTravelAndTourism
    CATEGORY_TRAVEL_AND_TOURISM
    CategoryUnspecified
    CATEGORY_UNSPECIFIED
    CategoryOthers
    CATEGORY_OTHERS
    CategoryAdvertisingAndMarketing
    CATEGORY_ADVERTISING_AND_MARKETING
    CategoryCommerce
    CATEGORY_COMMERCE
    CategoryClimateAndEnvironment
    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
    CategoryHealthcareAndLifeScience
    CATEGORY_HEALTHCARE_AND_LIFE_SCIENCE
    CategoryMedia
    CATEGORY_MEDIA
    CategoryPublicSector
    CATEGORY_PUBLIC_SECTOR
    CategoryRetail
    CATEGORY_RETAIL
    CategorySports
    CATEGORY_SPORTS
    CategoryScienceAndResearch
    CATEGORY_SCIENCE_AND_RESEARCH
    CategoryTransportationAndLogistics
    CATEGORY_TRANSPORTATION_AND_LOGISTICS
    CategoryTravelAndTourism
    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.
    RestrictQueryResult bool
    Optional. If true, restrict export of query result derived from restricted linked dataset table.
    Enabled bool
    Optional. If true, enable restricted export.
    RestrictQueryResult bool
    Optional. If true, restrict export of query result derived from restricted linked dataset table.
    enabled Boolean
    Optional. If true, enable restricted export.
    restrictQueryResult Boolean
    Optional. If true, restrict export of query result derived from restricted linked dataset table.
    enabled boolean
    Optional. If true, enable restricted export.
    restrictQueryResult boolean
    Optional. If true, restrict export of query result derived from restricted linked dataset table.
    enabled bool
    Optional. If true, enable restricted export.
    restrict_query_result bool
    Optional. If true, restrict export of query result derived from restricted linked dataset table.
    enabled Boolean
    Optional. If true, enable restricted export.
    restrictQueryResult Boolean
    Optional. If true, restrict export of query result derived from restricted linked dataset table.

    RestrictedExportConfigResponse, RestrictedExportConfigResponseArgs

    Enabled bool
    Optional. If true, enable restricted export.
    RestrictDirectTableAccess bool
    If true, restrict direct table access(read api/tabledata.list) on linked table.
    RestrictQueryResult bool
    Optional. If true, restrict export of query result derived from restricted linked dataset table.
    Enabled bool
    Optional. If true, enable restricted export.
    RestrictDirectTableAccess bool
    If true, restrict direct table access(read api/tabledata.list) on linked table.
    RestrictQueryResult bool
    Optional. If true, restrict export of query result derived from restricted linked dataset table.
    enabled Boolean
    Optional. If true, enable restricted export.
    restrictDirectTableAccess Boolean
    If true, restrict direct table access(read api/tabledata.list) on linked table.
    restrictQueryResult Boolean
    Optional. If true, restrict export of query result derived from restricted linked dataset table.
    enabled boolean
    Optional. If true, enable restricted export.
    restrictDirectTableAccess boolean
    If true, restrict direct table access(read api/tabledata.list) on linked table.
    restrictQueryResult boolean
    Optional. If true, restrict export of query result derived from restricted linked dataset table.
    enabled bool
    Optional. If true, enable restricted export.
    restrict_direct_table_access bool
    If true, restrict direct table access(read api/tabledata.list) on linked table.
    restrict_query_result bool
    Optional. If true, restrict export of query result derived from restricted linked dataset table.
    enabled Boolean
    Optional. If true, enable restricted export.
    restrictDirectTableAccess Boolean
    If true, restrict direct table access(read api/tabledata.list) on linked table.
    restrictQueryResult Boolean
    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-native logo

    Google Cloud Native is in preview. Google Cloud Classic is fully supported.

    Google Cloud Native v0.32.0 published on Wednesday, Nov 29, 2023 by Pulumi