Skip to content

Commit 0386e0f

Browse files
feat(all): auto-regenerate discovery clients (#2947)
1 parent fe72ad1 commit 0386e0f

30 files changed

+625
-177
lines changed

analyticshub/v1/analyticshub-api.json

+74-2
Original file line numberDiff line numberDiff line change
@@ -1022,11 +1022,11 @@
10221022
}
10231023
}
10241024
},
1025-
"revision": "20241028",
1025+
"revision": "20241213",
10261026
"rootUrl": "https://analyticshub.googleapis.com/",
10271027
"schemas": {
10281028
"AnalyticsHubSubscriptionInfo": {
1029-
"description": "Information about an associated Analytics Hub subscription (https://cloud.google.com/bigquery/docs/analytics-hub-manage-subscriptions).",
1029+
"description": "Information about an associated [Analytics Hub subscription](https://cloud.google.com/bigquery/docs/analytics-hub-manage-subscriptions).",
10301030
"id": "AnalyticsHubSubscriptionInfo",
10311031
"properties": {
10321032
"listing": {
@@ -1501,6 +1501,68 @@
15011501
},
15021502
"type": "object"
15031503
},
1504+
"GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfo": {
1505+
"description": "Commercial info contains the information about the commercial data products associated with the listing.",
1506+
"id": "GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfo",
1507+
"properties": {
1508+
"cloudMarketplace": {
1509+
"$ref": "GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfoGoogleCloudMarketplaceInfo",
1510+
"description": "Output only. Details of the Marketplace Data Product associated with the Listing.",
1511+
"readOnly": true
1512+
}
1513+
},
1514+
"type": "object"
1515+
},
1516+
"GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfoGoogleCloudMarketplaceInfo": {
1517+
"description": "Specifies the details of the Marketplace Data Product associated with the Listing.",
1518+
"id": "GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfoGoogleCloudMarketplaceInfo",
1519+
"properties": {
1520+
"commercialState": {
1521+
"description": "Output only. Commercial state of the Marketplace Data Product.",
1522+
"enum": [
1523+
"COMMERCIAL_STATE_UNSPECIFIED",
1524+
"ONBOARDING",
1525+
"ACTIVE"
1526+
],
1527+
"enumDescriptions": [
1528+
"Commercialization is incomplete and cannot be used.",
1529+
"Commercialization has been initialized.",
1530+
"Commercialization is complete and available for use."
1531+
],
1532+
"readOnly": true,
1533+
"type": "string"
1534+
},
1535+
"service": {
1536+
"description": "Output only. Resource name of the commercial service associated with the Marketplace Data Product. e.g. example.com",
1537+
"readOnly": true,
1538+
"type": "string"
1539+
}
1540+
},
1541+
"type": "object"
1542+
},
1543+
"GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfo": {
1544+
"description": "Commercial info metadata for this subscription.",
1545+
"id": "GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfo",
1546+
"properties": {
1547+
"cloudMarketplace": {
1548+
"$ref": "GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfoGoogleCloudMarketplaceInfo",
1549+
"description": "Output only. This is set when the subscription is commercialised via Cloud Marketplace.",
1550+
"readOnly": true
1551+
}
1552+
},
1553+
"type": "object"
1554+
},
1555+
"GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfoGoogleCloudMarketplaceInfo": {
1556+
"description": "Cloud Marketplace commercial metadata for this subscription.",
1557+
"id": "GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfoGoogleCloudMarketplaceInfo",
1558+
"properties": {
1559+
"order": {
1560+
"description": "Resource name of the Marketplace Order.",
1561+
"type": "string"
1562+
}
1563+
},
1564+
"type": "object"
1565+
},
15041566
"GooglePubsubV1Subscription": {
15051567
"description": "A subscription resource. If none of `push_config`, `bigquery_config`, or `cloud_storage_config` is set, then the subscriber will pull and ack messages using API methods. At most one of these fields may be set.",
15061568
"id": "GooglePubsubV1Subscription",
@@ -1770,6 +1832,11 @@
17701832
},
17711833
"type": "array"
17721834
},
1835+
"commercialInfo": {
1836+
"$ref": "GoogleCloudBigqueryAnalyticshubV1ListingCommercialInfo",
1837+
"description": "Output only. Commercial info contains the information about the commercial data products associated with the listing.",
1838+
"readOnly": true
1839+
},
17731840
"dataProvider": {
17741841
"$ref": "DataProvider",
17751842
"description": "Optional. Details of the data provider who owns the source data."
@@ -2284,6 +2351,11 @@
22842351
"description": "A subscription represents a subscribers' access to a particular set of published data. It contains references to associated listings, data exchanges, and linked datasets.",
22852352
"id": "Subscription",
22862353
"properties": {
2354+
"commercialInfo": {
2355+
"$ref": "GoogleCloudBigqueryAnalyticshubV1SubscriptionCommercialInfo",
2356+
"description": "Output only. This is set if this is a commercial subscription i.e. if this subscription was created from subscribing to a commercial listing.",
2357+
"readOnly": true
2358+
},
22872359
"creationTime": {
22882360
"description": "Output only. Timestamp when the subscription was created.",
22892361
"format": "google-datetime",

analyticshub/v1/analyticshub-gen.go

+117-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

analyticshub/v1beta1/analyticshub-api.json

+29-1
Original file line numberDiff line numberDiff line change
@@ -695,7 +695,7 @@
695695
}
696696
}
697697
},
698-
"revision": "20241028",
698+
"revision": "20241213",
699699
"rootUrl": "https://analyticshub.googleapis.com/",
700700
"schemas": {
701701
"AuditConfig": {
@@ -779,6 +779,18 @@
779779
},
780780
"type": "object"
781781
},
782+
"CommercialInfo": {
783+
"description": "Commercial info metadata for this subscription.",
784+
"id": "CommercialInfo",
785+
"properties": {
786+
"cloudMarketplace": {
787+
"$ref": "GoogleCloudMarketplaceInfo",
788+
"description": "Output only. This is set when the subscription is commercialised via Cloud Marketplace.",
789+
"readOnly": true
790+
}
791+
},
792+
"type": "object"
793+
},
782794
"DataExchange": {
783795
"description": "A data exchange is a container that lets you share data. Along with the descriptive information about the data exchange, it contains listings that reference shared datasets.",
784796
"id": "DataExchange",
@@ -930,6 +942,17 @@
930942
},
931943
"type": "object"
932944
},
945+
"GoogleCloudMarketplaceInfo": {
946+
"description": "Cloud Marketplace commercial metadata for this subscription.",
947+
"id": "GoogleCloudMarketplaceInfo",
948+
"properties": {
949+
"order": {
950+
"description": "Resource name of the Marketplace Order.",
951+
"type": "string"
952+
}
953+
},
954+
"type": "object"
955+
},
933956
"LinkedResource": {
934957
"description": "Reference to a linked resource tracked by this Subscription.",
935958
"id": "LinkedResource",
@@ -1292,6 +1315,11 @@
12921315
"description": "A subscription represents a subscribers' access to a particular set of published data. It contains references to associated listings, data exchanges, and linked datasets.",
12931316
"id": "Subscription",
12941317
"properties": {
1318+
"commercialInfo": {
1319+
"$ref": "CommercialInfo",
1320+
"description": "Output only. This is set if this is a commercial subscription i.e. if this subscription was created from subscribing to a commercial listing.",
1321+
"readOnly": true
1322+
},
12951323
"creationTime": {
12961324
"description": "Output only. Timestamp when the subscription was created.",
12971325
"format": "google-datetime",

0 commit comments

Comments
 (0)