google-apis-analyticshub_v1 0.37.0 → 0.40.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 74331fc15fdcd3f643399c1dd4de9c4dbeb2694ae21fc0c05a99913a73d444b5
|
|
4
|
+
data.tar.gz: 28c16fc1f32f8ce1f35e54703b04d8e4bd65a2d258226e237e1c4945f17eec12
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e3f8919ae90356ce837922e67f1e99fb4948c00e4efb85748295b4f2528689fd7cd88d5cfb7a7819ea745ef58848898b160f721949f0656718c6fc2dbae5ca3
|
|
7
|
+
data.tar.gz: ae2475666b7300d2b12f21af8b01364480acd9296d634746bb54bc03cb89bf7b51a35a8e384f6752ee888189f80a0cf39c399530e7dd6578377a943001d518ae
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Release history for google-apis-analyticshub_v1
|
|
2
2
|
|
|
3
|
+
### v0.40.0 (2026-01-25)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260111
|
|
6
|
+
|
|
7
|
+
### v0.39.0 (2026-01-11)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251208
|
|
10
|
+
|
|
11
|
+
### v0.38.0 (2025-10-26)
|
|
12
|
+
|
|
13
|
+
* Regenerated from discovery document revision 20251020
|
|
14
|
+
|
|
3
15
|
### v0.37.0 (2025-09-07)
|
|
4
16
|
|
|
5
17
|
* Regenerated from discovery document revision 20250901
|
|
@@ -22,6 +22,45 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module AnalyticshubV1
|
|
24
24
|
|
|
25
|
+
# Configuration for making inference requests against Vertex AI models.
|
|
26
|
+
class AiInference
|
|
27
|
+
include Google::Apis::Core::Hashable
|
|
28
|
+
|
|
29
|
+
# Required. An endpoint to a Vertex AI model of the form `projects/`project`/
|
|
30
|
+
# locations/`location`/endpoints/`endpoint`` or `projects/`project`/locations/`
|
|
31
|
+
# location`/publishers/`publisher`/models/`model``. Vertex AI API requests will
|
|
32
|
+
# be sent to this endpoint.
|
|
33
|
+
# Corresponds to the JSON property `endpoint`
|
|
34
|
+
# @return [String]
|
|
35
|
+
attr_accessor :endpoint
|
|
36
|
+
|
|
37
|
+
# Optional. The service account to use to make prediction requests against
|
|
38
|
+
# endpoints. The resource creator or updater that specifies this field must have
|
|
39
|
+
# `iam.serviceAccounts.actAs` permission on the service account. If not
|
|
40
|
+
# specified, the Pub/Sub [service agent](`$universe.dns_names.
|
|
41
|
+
# final_documentation_domain`/iam/docs/service-agents), service-`project_number`@
|
|
42
|
+
# gcp-sa-pubsub.iam.gserviceaccount.com, is used.
|
|
43
|
+
# Corresponds to the JSON property `serviceAccountEmail`
|
|
44
|
+
# @return [String]
|
|
45
|
+
attr_accessor :service_account_email
|
|
46
|
+
|
|
47
|
+
# Configuration for making inferences using arbitrary JSON payloads.
|
|
48
|
+
# Corresponds to the JSON property `unstructuredInference`
|
|
49
|
+
# @return [Google::Apis::AnalyticshubV1::UnstructuredInference]
|
|
50
|
+
attr_accessor :unstructured_inference
|
|
51
|
+
|
|
52
|
+
def initialize(**args)
|
|
53
|
+
update!(**args)
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Update properties of this object
|
|
57
|
+
def update!(**args)
|
|
58
|
+
@endpoint = args[:endpoint] if args.key?(:endpoint)
|
|
59
|
+
@service_account_email = args[:service_account_email] if args.key?(:service_account_email)
|
|
60
|
+
@unstructured_inference = args[:unstructured_inference] if args.key?(:unstructured_inference)
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
|
|
25
64
|
# Message for approving a QueryTemplate.
|
|
26
65
|
class ApproveQueryTemplateRequest
|
|
27
66
|
include Google::Apis::Core::Hashable
|
|
@@ -1107,7 +1146,7 @@ module Google
|
|
|
1107
1146
|
# @return [Array<Google::Apis::AnalyticshubV1::MessageTransform>]
|
|
1108
1147
|
attr_accessor :message_transforms
|
|
1109
1148
|
|
|
1110
|
-
# Required. Name of the subscription. Format is `projects/`project`/
|
|
1149
|
+
# Required. Identifier. Name of the subscription. Format is `projects/`project`/
|
|
1111
1150
|
# subscriptions/`sub``.
|
|
1112
1151
|
# Corresponds to the JSON property `name`
|
|
1113
1152
|
# @return [String]
|
|
@@ -1140,6 +1179,13 @@ module Google
|
|
|
1140
1179
|
# @return [Google::Apis::AnalyticshubV1::RetryPolicy]
|
|
1141
1180
|
attr_accessor :retry_policy
|
|
1142
1181
|
|
|
1182
|
+
# Optional. Input only. Immutable. Tag keys/values directly bound to this
|
|
1183
|
+
# resource. For example: "123/environment": "production", "123/costCenter": "
|
|
1184
|
+
# marketing"
|
|
1185
|
+
# Corresponds to the JSON property `tags`
|
|
1186
|
+
# @return [Hash<String,String>]
|
|
1187
|
+
attr_accessor :tags
|
|
1188
|
+
|
|
1143
1189
|
def initialize(**args)
|
|
1144
1190
|
update!(**args)
|
|
1145
1191
|
end
|
|
@@ -1162,6 +1208,7 @@ module Google
|
|
|
1162
1208
|
@push_config = args[:push_config] if args.key?(:push_config)
|
|
1163
1209
|
@retain_acked_messages = args[:retain_acked_messages] if args.key?(:retain_acked_messages)
|
|
1164
1210
|
@retry_policy = args[:retry_policy] if args.key?(:retry_policy)
|
|
1211
|
+
@tags = args[:tags] if args.key?(:tags)
|
|
1165
1212
|
end
|
|
1166
1213
|
end
|
|
1167
1214
|
|
|
@@ -1511,6 +1558,12 @@ module Google
|
|
|
1511
1558
|
# @return [String]
|
|
1512
1559
|
attr_accessor :state
|
|
1513
1560
|
|
|
1561
|
+
# Stored procedure configuration, used to configure stored procedure sharing on
|
|
1562
|
+
# linked dataset.
|
|
1563
|
+
# Corresponds to the JSON property `storedProcedureConfig`
|
|
1564
|
+
# @return [Google::Apis::AnalyticshubV1::StoredProcedureConfig]
|
|
1565
|
+
attr_accessor :stored_procedure_config
|
|
1566
|
+
|
|
1514
1567
|
def initialize(**args)
|
|
1515
1568
|
update!(**args)
|
|
1516
1569
|
end
|
|
@@ -1536,6 +1589,7 @@ module Google
|
|
|
1536
1589
|
@resource_type = args[:resource_type] if args.key?(:resource_type)
|
|
1537
1590
|
@restricted_export_config = args[:restricted_export_config] if args.key?(:restricted_export_config)
|
|
1538
1591
|
@state = args[:state] if args.key?(:state)
|
|
1592
|
+
@stored_procedure_config = args[:stored_procedure_config] if args.key?(:stored_procedure_config)
|
|
1539
1593
|
end
|
|
1540
1594
|
end
|
|
1541
1595
|
|
|
@@ -1543,6 +1597,11 @@ module Google
|
|
|
1543
1597
|
class MessageTransform
|
|
1544
1598
|
include Google::Apis::Core::Hashable
|
|
1545
1599
|
|
|
1600
|
+
# Configuration for making inference requests against Vertex AI models.
|
|
1601
|
+
# Corresponds to the JSON property `aiInference`
|
|
1602
|
+
# @return [Google::Apis::AnalyticshubV1::AiInference]
|
|
1603
|
+
attr_accessor :ai_inference
|
|
1604
|
+
|
|
1546
1605
|
# Optional. If true, the transform is disabled and will not be applied to
|
|
1547
1606
|
# messages. Defaults to `false`.
|
|
1548
1607
|
# Corresponds to the JSON property `disabled`
|
|
@@ -1569,6 +1628,7 @@ module Google
|
|
|
1569
1628
|
|
|
1570
1629
|
# Update properties of this object
|
|
1571
1630
|
def update!(**args)
|
|
1631
|
+
@ai_inference = args[:ai_inference] if args.key?(:ai_inference)
|
|
1572
1632
|
@disabled = args[:disabled] if args.key?(:disabled)
|
|
1573
1633
|
@enabled = args[:enabled] if args.key?(:enabled)
|
|
1574
1634
|
@javascript_udf = args[:javascript_udf] if args.key?(:javascript_udf)
|
|
@@ -2440,6 +2500,33 @@ module Google
|
|
|
2440
2500
|
end
|
|
2441
2501
|
end
|
|
2442
2502
|
|
|
2503
|
+
# Stored procedure configuration, used to configure stored procedure sharing on
|
|
2504
|
+
# linked dataset.
|
|
2505
|
+
class StoredProcedureConfig
|
|
2506
|
+
include Google::Apis::Core::Hashable
|
|
2507
|
+
|
|
2508
|
+
# Output only. Types of stored procedure supported to share.
|
|
2509
|
+
# Corresponds to the JSON property `allowedStoredProcedureTypes`
|
|
2510
|
+
# @return [Array<String>]
|
|
2511
|
+
attr_accessor :allowed_stored_procedure_types
|
|
2512
|
+
|
|
2513
|
+
# Optional. If true, enable sharing of stored procedure.
|
|
2514
|
+
# Corresponds to the JSON property `enabled`
|
|
2515
|
+
# @return [Boolean]
|
|
2516
|
+
attr_accessor :enabled
|
|
2517
|
+
alias_method :enabled?, :enabled
|
|
2518
|
+
|
|
2519
|
+
def initialize(**args)
|
|
2520
|
+
update!(**args)
|
|
2521
|
+
end
|
|
2522
|
+
|
|
2523
|
+
# Update properties of this object
|
|
2524
|
+
def update!(**args)
|
|
2525
|
+
@allowed_stored_procedure_types = args[:allowed_stored_procedure_types] if args.key?(:allowed_stored_procedure_types)
|
|
2526
|
+
@enabled = args[:enabled] if args.key?(:enabled)
|
|
2527
|
+
end
|
|
2528
|
+
end
|
|
2529
|
+
|
|
2443
2530
|
# Message for submitting a QueryTemplate.
|
|
2444
2531
|
class SubmitQueryTemplateRequest
|
|
2445
2532
|
include Google::Apis::Core::Hashable
|
|
@@ -2725,6 +2812,27 @@ module Google
|
|
|
2725
2812
|
def update!(**args)
|
|
2726
2813
|
end
|
|
2727
2814
|
end
|
|
2815
|
+
|
|
2816
|
+
# Configuration for making inferences using arbitrary JSON payloads.
|
|
2817
|
+
class UnstructuredInference
|
|
2818
|
+
include Google::Apis::Core::Hashable
|
|
2819
|
+
|
|
2820
|
+
# Optional. A parameters object to be included in each inference request. The
|
|
2821
|
+
# parameters object is combined with the data field of the Pub/Sub message to
|
|
2822
|
+
# form the inference request.
|
|
2823
|
+
# Corresponds to the JSON property `parameters`
|
|
2824
|
+
# @return [Hash<String,Object>]
|
|
2825
|
+
attr_accessor :parameters
|
|
2826
|
+
|
|
2827
|
+
def initialize(**args)
|
|
2828
|
+
update!(**args)
|
|
2829
|
+
end
|
|
2830
|
+
|
|
2831
|
+
# Update properties of this object
|
|
2832
|
+
def update!(**args)
|
|
2833
|
+
@parameters = args[:parameters] if args.key?(:parameters)
|
|
2834
|
+
end
|
|
2835
|
+
end
|
|
2728
2836
|
end
|
|
2729
2837
|
end
|
|
2730
2838
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module AnalyticshubV1
|
|
18
18
|
# Version of the google-apis-analyticshub_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.40.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260111"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -22,6 +22,12 @@ module Google
|
|
|
22
22
|
module Apis
|
|
23
23
|
module AnalyticshubV1
|
|
24
24
|
|
|
25
|
+
class AiInference
|
|
26
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
|
+
|
|
28
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
29
|
+
end
|
|
30
|
+
|
|
25
31
|
class ApproveQueryTemplateRequest
|
|
26
32
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
27
33
|
|
|
@@ -376,6 +382,12 @@ module Google
|
|
|
376
382
|
include Google::Apis::Core::JsonObjectSupport
|
|
377
383
|
end
|
|
378
384
|
|
|
385
|
+
class StoredProcedureConfig
|
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
387
|
+
|
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
389
|
+
end
|
|
390
|
+
|
|
379
391
|
class SubmitQueryTemplateRequest
|
|
380
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
381
393
|
|
|
@@ -430,6 +442,22 @@ module Google
|
|
|
430
442
|
include Google::Apis::Core::JsonObjectSupport
|
|
431
443
|
end
|
|
432
444
|
|
|
445
|
+
class UnstructuredInference
|
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
447
|
+
|
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
449
|
+
end
|
|
450
|
+
|
|
451
|
+
class AiInference
|
|
452
|
+
# @private
|
|
453
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
454
|
+
property :endpoint, as: 'endpoint'
|
|
455
|
+
property :service_account_email, as: 'serviceAccountEmail'
|
|
456
|
+
property :unstructured_inference, as: 'unstructuredInference', class: Google::Apis::AnalyticshubV1::UnstructuredInference, decorator: Google::Apis::AnalyticshubV1::UnstructuredInference::Representation
|
|
457
|
+
|
|
458
|
+
end
|
|
459
|
+
end
|
|
460
|
+
|
|
433
461
|
class ApproveQueryTemplateRequest
|
|
434
462
|
# @private
|
|
435
463
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -686,6 +714,7 @@ module Google
|
|
|
686
714
|
property :retain_acked_messages, as: 'retainAckedMessages'
|
|
687
715
|
property :retry_policy, as: 'retryPolicy', class: Google::Apis::AnalyticshubV1::RetryPolicy, decorator: Google::Apis::AnalyticshubV1::RetryPolicy::Representation
|
|
688
716
|
|
|
717
|
+
hash :tags, as: 'tags'
|
|
689
718
|
end
|
|
690
719
|
end
|
|
691
720
|
|
|
@@ -788,12 +817,16 @@ module Google
|
|
|
788
817
|
property :restricted_export_config, as: 'restrictedExportConfig', class: Google::Apis::AnalyticshubV1::RestrictedExportConfig, decorator: Google::Apis::AnalyticshubV1::RestrictedExportConfig::Representation
|
|
789
818
|
|
|
790
819
|
property :state, as: 'state'
|
|
820
|
+
property :stored_procedure_config, as: 'storedProcedureConfig', class: Google::Apis::AnalyticshubV1::StoredProcedureConfig, decorator: Google::Apis::AnalyticshubV1::StoredProcedureConfig::Representation
|
|
821
|
+
|
|
791
822
|
end
|
|
792
823
|
end
|
|
793
824
|
|
|
794
825
|
class MessageTransform
|
|
795
826
|
# @private
|
|
796
827
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
828
|
+
property :ai_inference, as: 'aiInference', class: Google::Apis::AnalyticshubV1::AiInference, decorator: Google::Apis::AnalyticshubV1::AiInference::Representation
|
|
829
|
+
|
|
797
830
|
property :disabled, as: 'disabled'
|
|
798
831
|
property :enabled, as: 'enabled'
|
|
799
832
|
property :javascript_udf, as: 'javascriptUdf', class: Google::Apis::AnalyticshubV1::JavaScriptUdf, decorator: Google::Apis::AnalyticshubV1::JavaScriptUdf::Representation
|
|
@@ -1012,6 +1045,14 @@ module Google
|
|
|
1012
1045
|
end
|
|
1013
1046
|
end
|
|
1014
1047
|
|
|
1048
|
+
class StoredProcedureConfig
|
|
1049
|
+
# @private
|
|
1050
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1051
|
+
collection :allowed_stored_procedure_types, as: 'allowedStoredProcedureTypes'
|
|
1052
|
+
property :enabled, as: 'enabled'
|
|
1053
|
+
end
|
|
1054
|
+
end
|
|
1055
|
+
|
|
1015
1056
|
class SubmitQueryTemplateRequest
|
|
1016
1057
|
# @private
|
|
1017
1058
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -1099,6 +1140,13 @@ module Google
|
|
|
1099
1140
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1100
1141
|
end
|
|
1101
1142
|
end
|
|
1143
|
+
|
|
1144
|
+
class UnstructuredInference
|
|
1145
|
+
# @private
|
|
1146
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
1147
|
+
hash :parameters, as: 'parameters'
|
|
1148
|
+
end
|
|
1149
|
+
end
|
|
1102
1150
|
end
|
|
1103
1151
|
end
|
|
1104
1152
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-analyticshub_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.40.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-analyticshub_v1/v0.40.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-analyticshub_v1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|