google-apis-discoveryengine_v1alpha 0.92.0 → 0.93.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: dce9fcf07919cd04ddc39d6dbf351cdc1b4b87022d8aaaf6f79f64ecef162a00
|
|
4
|
+
data.tar.gz: c88644131501f71294ac433bc52bf042b3f8b12808280486d0d5ea5c9b5f1fdb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28ca791feb49f7e2a456392afa82bc0f431deec8a3cd3530526b1ab6e99fffdc31e2f257b66470e99bb1f95049e411fb7d2c06db59e0bc3c32c809ec3bdb6bde
|
|
7
|
+
data.tar.gz: 870524c663a06cb4dbcbbac0780291069c8511703d2e04d0603d5d90305cb48f524c8090467622186cb50354a4871f77aa7a8eb820d097bd53e01140743fff1f
|
data/CHANGELOG.md
CHANGED
|
@@ -3541,6 +3541,11 @@ module Google
|
|
|
3541
3541
|
# @return [String]
|
|
3542
3542
|
attr_accessor :name
|
|
3543
3543
|
|
|
3544
|
+
# Observability config for a resource.
|
|
3545
|
+
# Corresponds to the JSON property `observabilityConfig`
|
|
3546
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig]
|
|
3547
|
+
attr_accessor :observability_config
|
|
3548
|
+
|
|
3544
3549
|
# Configurations for a Search Engine.
|
|
3545
3550
|
# Corresponds to the JSON property `searchEngineConfig`
|
|
3546
3551
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig]
|
|
@@ -3578,6 +3583,7 @@ module Google
|
|
|
3578
3583
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
3579
3584
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
3580
3585
|
@name = args[:name] if args.key?(:name)
|
|
3586
|
+
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
3581
3587
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
3582
3588
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
3583
3589
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -4585,6 +4591,35 @@ module Google
|
|
|
4585
4591
|
end
|
|
4586
4592
|
end
|
|
4587
4593
|
|
|
4594
|
+
# Observability config for a resource.
|
|
4595
|
+
class GoogleCloudDiscoveryengineV1ObservabilityConfig
|
|
4596
|
+
include Google::Apis::Core::Hashable
|
|
4597
|
+
|
|
4598
|
+
# Optional. Enables observability. If false, all other flags are ignored.
|
|
4599
|
+
# Corresponds to the JSON property `observabilityEnabled`
|
|
4600
|
+
# @return [Boolean]
|
|
4601
|
+
attr_accessor :observability_enabled
|
|
4602
|
+
alias_method :observability_enabled?, :observability_enabled
|
|
4603
|
+
|
|
4604
|
+
# Optional. Enables sensitive logging. Sensitive logging includes customer core
|
|
4605
|
+
# content (e.g. prompts, responses). If false, will sanitize all sensitive
|
|
4606
|
+
# fields.
|
|
4607
|
+
# Corresponds to the JSON property `sensitiveLoggingEnabled`
|
|
4608
|
+
# @return [Boolean]
|
|
4609
|
+
attr_accessor :sensitive_logging_enabled
|
|
4610
|
+
alias_method :sensitive_logging_enabled?, :sensitive_logging_enabled
|
|
4611
|
+
|
|
4612
|
+
def initialize(**args)
|
|
4613
|
+
update!(**args)
|
|
4614
|
+
end
|
|
4615
|
+
|
|
4616
|
+
# Update properties of this object
|
|
4617
|
+
def update!(**args)
|
|
4618
|
+
@observability_enabled = args[:observability_enabled] if args.key?(:observability_enabled)
|
|
4619
|
+
@sensitive_logging_enabled = args[:sensitive_logging_enabled] if args.key?(:sensitive_logging_enabled)
|
|
4620
|
+
end
|
|
4621
|
+
end
|
|
4622
|
+
|
|
4588
4623
|
# Metadata and configurations for a Google Cloud project in the service.
|
|
4589
4624
|
class GoogleCloudDiscoveryengineV1Project
|
|
4590
4625
|
include Google::Apis::Core::Hashable
|
|
@@ -4736,6 +4771,11 @@ module Google
|
|
|
4736
4771
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
|
|
4737
4772
|
attr_accessor :model_armor_config
|
|
4738
4773
|
|
|
4774
|
+
# Observability config for a resource.
|
|
4775
|
+
# Corresponds to the JSON property `observabilityConfig`
|
|
4776
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig]
|
|
4777
|
+
attr_accessor :observability_config
|
|
4778
|
+
|
|
4739
4779
|
# Optional. Whether to disable the notebook sharing feature for the project.
|
|
4740
4780
|
# Default to false if not specified.
|
|
4741
4781
|
# Corresponds to the JSON property `optOutNotebookSharing`
|
|
@@ -4750,6 +4790,7 @@ module Google
|
|
|
4750
4790
|
# Update properties of this object
|
|
4751
4791
|
def update!(**args)
|
|
4752
4792
|
@model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
|
|
4793
|
+
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
4753
4794
|
@opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
|
|
4754
4795
|
end
|
|
4755
4796
|
end
|
|
@@ -15470,6 +15511,11 @@ module Google
|
|
|
15470
15511
|
# @return [String]
|
|
15471
15512
|
attr_accessor :name
|
|
15472
15513
|
|
|
15514
|
+
# Observability config for a resource.
|
|
15515
|
+
# Corresponds to the JSON property `observabilityConfig`
|
|
15516
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig]
|
|
15517
|
+
attr_accessor :observability_config
|
|
15518
|
+
|
|
15473
15519
|
# Additional information of a recommendation engine.
|
|
15474
15520
|
# Corresponds to the JSON property `recommendationMetadata`
|
|
15475
15521
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata]
|
|
@@ -15517,6 +15563,7 @@ module Google
|
|
|
15517
15563
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
15518
15564
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
15519
15565
|
@name = args[:name] if args.key?(:name)
|
|
15566
|
+
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
15520
15567
|
@recommendation_metadata = args[:recommendation_metadata] if args.key?(:recommendation_metadata)
|
|
15521
15568
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
15522
15569
|
@similar_documents_config = args[:similar_documents_config] if args.key?(:similar_documents_config)
|
|
@@ -19333,6 +19380,35 @@ module Google
|
|
|
19333
19380
|
end
|
|
19334
19381
|
end
|
|
19335
19382
|
|
|
19383
|
+
# Observability config for a resource.
|
|
19384
|
+
class GoogleCloudDiscoveryengineV1alphaObservabilityConfig
|
|
19385
|
+
include Google::Apis::Core::Hashable
|
|
19386
|
+
|
|
19387
|
+
# Optional. Enables observability. If false, all other flags are ignored.
|
|
19388
|
+
# Corresponds to the JSON property `observabilityEnabled`
|
|
19389
|
+
# @return [Boolean]
|
|
19390
|
+
attr_accessor :observability_enabled
|
|
19391
|
+
alias_method :observability_enabled?, :observability_enabled
|
|
19392
|
+
|
|
19393
|
+
# Optional. Enables sensitive logging. Sensitive logging includes customer core
|
|
19394
|
+
# content (e.g. prompts, responses). If false, will sanitize all sensitive
|
|
19395
|
+
# fields.
|
|
19396
|
+
# Corresponds to the JSON property `sensitiveLoggingEnabled`
|
|
19397
|
+
# @return [Boolean]
|
|
19398
|
+
attr_accessor :sensitive_logging_enabled
|
|
19399
|
+
alias_method :sensitive_logging_enabled?, :sensitive_logging_enabled
|
|
19400
|
+
|
|
19401
|
+
def initialize(**args)
|
|
19402
|
+
update!(**args)
|
|
19403
|
+
end
|
|
19404
|
+
|
|
19405
|
+
# Update properties of this object
|
|
19406
|
+
def update!(**args)
|
|
19407
|
+
@observability_enabled = args[:observability_enabled] if args.key?(:observability_enabled)
|
|
19408
|
+
@sensitive_logging_enabled = args[:sensitive_logging_enabled] if args.key?(:sensitive_logging_enabled)
|
|
19409
|
+
end
|
|
19410
|
+
end
|
|
19411
|
+
|
|
19336
19412
|
# Request message for CrawlRateManagementService.ObtainCrawlRate method.
|
|
19337
19413
|
class GoogleCloudDiscoveryengineV1alphaObtainCrawlRateRequest
|
|
19338
19414
|
include Google::Apis::Core::Hashable
|
|
@@ -19819,6 +19895,11 @@ module Google
|
|
|
19819
19895
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
|
|
19820
19896
|
attr_accessor :model_armor_config
|
|
19821
19897
|
|
|
19898
|
+
# Observability config for a resource.
|
|
19899
|
+
# Corresponds to the JSON property `observabilityConfig`
|
|
19900
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig]
|
|
19901
|
+
attr_accessor :observability_config
|
|
19902
|
+
|
|
19822
19903
|
# Optional. Whether to disable the notebook sharing feature for the project.
|
|
19823
19904
|
# Default to false if not specified.
|
|
19824
19905
|
# Corresponds to the JSON property `optOutNotebookSharing`
|
|
@@ -19833,6 +19914,7 @@ module Google
|
|
|
19833
19914
|
# Update properties of this object
|
|
19834
19915
|
def update!(**args)
|
|
19835
19916
|
@model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
|
|
19917
|
+
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
19836
19918
|
@opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
|
|
19837
19919
|
end
|
|
19838
19920
|
end
|
|
@@ -29694,6 +29776,11 @@ module Google
|
|
|
29694
29776
|
# @return [String]
|
|
29695
29777
|
attr_accessor :name
|
|
29696
29778
|
|
|
29779
|
+
# Observability config for a resource.
|
|
29780
|
+
# Corresponds to the JSON property `observabilityConfig`
|
|
29781
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig]
|
|
29782
|
+
attr_accessor :observability_config
|
|
29783
|
+
|
|
29697
29784
|
# Configurations for a Search Engine.
|
|
29698
29785
|
# Corresponds to the JSON property `searchEngineConfig`
|
|
29699
29786
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig]
|
|
@@ -29731,6 +29818,7 @@ module Google
|
|
|
29731
29818
|
@media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
|
|
29732
29819
|
@model_configs = args[:model_configs] if args.key?(:model_configs)
|
|
29733
29820
|
@name = args[:name] if args.key?(:name)
|
|
29821
|
+
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
29734
29822
|
@search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
|
|
29735
29823
|
@solution_type = args[:solution_type] if args.key?(:solution_type)
|
|
29736
29824
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
@@ -30962,6 +31050,35 @@ module Google
|
|
|
30962
31050
|
end
|
|
30963
31051
|
end
|
|
30964
31052
|
|
|
31053
|
+
# Observability config for a resource.
|
|
31054
|
+
class GoogleCloudDiscoveryengineV1betaObservabilityConfig
|
|
31055
|
+
include Google::Apis::Core::Hashable
|
|
31056
|
+
|
|
31057
|
+
# Optional. Enables observability. If false, all other flags are ignored.
|
|
31058
|
+
# Corresponds to the JSON property `observabilityEnabled`
|
|
31059
|
+
# @return [Boolean]
|
|
31060
|
+
attr_accessor :observability_enabled
|
|
31061
|
+
alias_method :observability_enabled?, :observability_enabled
|
|
31062
|
+
|
|
31063
|
+
# Optional. Enables sensitive logging. Sensitive logging includes customer core
|
|
31064
|
+
# content (e.g. prompts, responses). If false, will sanitize all sensitive
|
|
31065
|
+
# fields.
|
|
31066
|
+
# Corresponds to the JSON property `sensitiveLoggingEnabled`
|
|
31067
|
+
# @return [Boolean]
|
|
31068
|
+
attr_accessor :sensitive_logging_enabled
|
|
31069
|
+
alias_method :sensitive_logging_enabled?, :sensitive_logging_enabled
|
|
31070
|
+
|
|
31071
|
+
def initialize(**args)
|
|
31072
|
+
update!(**args)
|
|
31073
|
+
end
|
|
31074
|
+
|
|
31075
|
+
# Update properties of this object
|
|
31076
|
+
def update!(**args)
|
|
31077
|
+
@observability_enabled = args[:observability_enabled] if args.key?(:observability_enabled)
|
|
31078
|
+
@sensitive_logging_enabled = args[:sensitive_logging_enabled] if args.key?(:sensitive_logging_enabled)
|
|
31079
|
+
end
|
|
31080
|
+
end
|
|
31081
|
+
|
|
30965
31082
|
# Response message for CrawlRateManagementService.ObtainCrawlRate method. The
|
|
30966
31083
|
# response contains organcic or dedicated crawl rate time series data for
|
|
30967
31084
|
# monitoring, depending on whether dedicated crawl rate is set.
|
|
@@ -31190,6 +31307,11 @@ module Google
|
|
|
31190
31307
|
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
|
|
31191
31308
|
attr_accessor :model_armor_config
|
|
31192
31309
|
|
|
31310
|
+
# Observability config for a resource.
|
|
31311
|
+
# Corresponds to the JSON property `observabilityConfig`
|
|
31312
|
+
# @return [Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig]
|
|
31313
|
+
attr_accessor :observability_config
|
|
31314
|
+
|
|
31193
31315
|
# Optional. Whether to disable the notebook sharing feature for the project.
|
|
31194
31316
|
# Default to false if not specified.
|
|
31195
31317
|
# Corresponds to the JSON property `optOutNotebookSharing`
|
|
@@ -31204,6 +31326,7 @@ module Google
|
|
|
31204
31326
|
# Update properties of this object
|
|
31205
31327
|
def update!(**args)
|
|
31206
31328
|
@model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
|
|
31329
|
+
@observability_config = args[:observability_config] if args.key?(:observability_config)
|
|
31207
31330
|
@opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
|
|
31208
31331
|
end
|
|
31209
31332
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module DiscoveryengineV1alpha
|
|
18
18
|
# Version of the google-apis-discoveryengine_v1alpha gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.93.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 = "20260130"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -718,6 +718,12 @@ module Google
|
|
|
718
718
|
include Google::Apis::Core::JsonObjectSupport
|
|
719
719
|
end
|
|
720
720
|
|
|
721
|
+
class GoogleCloudDiscoveryengineV1ObservabilityConfig
|
|
722
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
723
|
+
|
|
724
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
725
|
+
end
|
|
726
|
+
|
|
721
727
|
class GoogleCloudDiscoveryengineV1Project
|
|
722
728
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
723
729
|
|
|
@@ -3106,6 +3112,12 @@ module Google
|
|
|
3106
3112
|
include Google::Apis::Core::JsonObjectSupport
|
|
3107
3113
|
end
|
|
3108
3114
|
|
|
3115
|
+
class GoogleCloudDiscoveryengineV1alphaObservabilityConfig
|
|
3116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3117
|
+
|
|
3118
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
3119
|
+
end
|
|
3120
|
+
|
|
3109
3121
|
class GoogleCloudDiscoveryengineV1alphaObtainCrawlRateRequest
|
|
3110
3122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
3111
3123
|
|
|
@@ -4870,6 +4882,12 @@ module Google
|
|
|
4870
4882
|
include Google::Apis::Core::JsonObjectSupport
|
|
4871
4883
|
end
|
|
4872
4884
|
|
|
4885
|
+
class GoogleCloudDiscoveryengineV1betaObservabilityConfig
|
|
4886
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4887
|
+
|
|
4888
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
4889
|
+
end
|
|
4890
|
+
|
|
4873
4891
|
class GoogleCloudDiscoveryengineV1betaObtainCrawlRateResponse
|
|
4874
4892
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
4875
4893
|
|
|
@@ -6570,6 +6588,8 @@ module Google
|
|
|
6570
6588
|
|
|
6571
6589
|
hash :model_configs, as: 'modelConfigs'
|
|
6572
6590
|
property :name, as: 'name'
|
|
6591
|
+
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig::Representation
|
|
6592
|
+
|
|
6573
6593
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig::Representation
|
|
6574
6594
|
|
|
6575
6595
|
property :solution_type, as: 'solutionType'
|
|
@@ -6851,6 +6871,14 @@ module Google
|
|
|
6851
6871
|
end
|
|
6852
6872
|
end
|
|
6853
6873
|
|
|
6874
|
+
class GoogleCloudDiscoveryengineV1ObservabilityConfig
|
|
6875
|
+
# @private
|
|
6876
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6877
|
+
property :observability_enabled, as: 'observabilityEnabled'
|
|
6878
|
+
property :sensitive_logging_enabled, as: 'sensitiveLoggingEnabled'
|
|
6879
|
+
end
|
|
6880
|
+
end
|
|
6881
|
+
|
|
6854
6882
|
class GoogleCloudDiscoveryengineV1Project
|
|
6855
6883
|
# @private
|
|
6856
6884
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -6891,6 +6919,8 @@ module Google
|
|
|
6891
6919
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6892
6920
|
property :model_armor_config, as: 'modelArmorConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig::Representation
|
|
6893
6921
|
|
|
6922
|
+
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1ObservabilityConfig::Representation
|
|
6923
|
+
|
|
6894
6924
|
property :opt_out_notebook_sharing, as: 'optOutNotebookSharing'
|
|
6895
6925
|
end
|
|
6896
6926
|
end
|
|
@@ -9787,6 +9817,8 @@ module Google
|
|
|
9787
9817
|
|
|
9788
9818
|
hash :model_configs, as: 'modelConfigs'
|
|
9789
9819
|
property :name, as: 'name'
|
|
9820
|
+
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig::Representation
|
|
9821
|
+
|
|
9790
9822
|
property :recommendation_metadata, as: 'recommendationMetadata', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata::Representation
|
|
9791
9823
|
|
|
9792
9824
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig::Representation
|
|
@@ -10918,6 +10950,14 @@ module Google
|
|
|
10918
10950
|
end
|
|
10919
10951
|
end
|
|
10920
10952
|
|
|
10953
|
+
class GoogleCloudDiscoveryengineV1alphaObservabilityConfig
|
|
10954
|
+
# @private
|
|
10955
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
10956
|
+
property :observability_enabled, as: 'observabilityEnabled'
|
|
10957
|
+
property :sensitive_logging_enabled, as: 'sensitiveLoggingEnabled'
|
|
10958
|
+
end
|
|
10959
|
+
end
|
|
10960
|
+
|
|
10921
10961
|
class GoogleCloudDiscoveryengineV1alphaObtainCrawlRateRequest
|
|
10922
10962
|
# @private
|
|
10923
10963
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -11051,6 +11091,8 @@ module Google
|
|
|
11051
11091
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
11052
11092
|
property :model_armor_config, as: 'modelArmorConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig::Representation
|
|
11053
11093
|
|
|
11094
|
+
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaObservabilityConfig::Representation
|
|
11095
|
+
|
|
11054
11096
|
property :opt_out_notebook_sharing, as: 'optOutNotebookSharing'
|
|
11055
11097
|
end
|
|
11056
11098
|
end
|
|
@@ -13612,6 +13654,8 @@ module Google
|
|
|
13612
13654
|
|
|
13613
13655
|
hash :model_configs, as: 'modelConfigs'
|
|
13614
13656
|
property :name, as: 'name'
|
|
13657
|
+
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig::Representation
|
|
13658
|
+
|
|
13615
13659
|
property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig::Representation
|
|
13616
13660
|
|
|
13617
13661
|
property :solution_type, as: 'solutionType'
|
|
@@ -13960,6 +14004,14 @@ module Google
|
|
|
13960
14004
|
end
|
|
13961
14005
|
end
|
|
13962
14006
|
|
|
14007
|
+
class GoogleCloudDiscoveryengineV1betaObservabilityConfig
|
|
14008
|
+
# @private
|
|
14009
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14010
|
+
property :observability_enabled, as: 'observabilityEnabled'
|
|
14011
|
+
property :sensitive_logging_enabled, as: 'sensitiveLoggingEnabled'
|
|
14012
|
+
end
|
|
14013
|
+
end
|
|
14014
|
+
|
|
13963
14015
|
class GoogleCloudDiscoveryengineV1betaObtainCrawlRateResponse
|
|
13964
14016
|
# @private
|
|
13965
14017
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -14023,6 +14075,8 @@ module Google
|
|
|
14023
14075
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
14024
14076
|
property :model_armor_config, as: 'modelArmorConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig::Representation
|
|
14025
14077
|
|
|
14078
|
+
property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1betaObservabilityConfig::Representation
|
|
14079
|
+
|
|
14026
14080
|
property :opt_out_notebook_sharing, as: 'optOutNotebookSharing'
|
|
14027
14081
|
end
|
|
14028
14082
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-discoveryengine_v1alpha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.93.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-discoveryengine_v1alpha/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1alpha/v0.93.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1alpha
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|