google-apis-discoveryengine_v1beta 0.97.0 → 0.98.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: '09deaa4ef0121a1dab16eae221da945bc542dbb90a13cb81c640367830c2adb5'
4
- data.tar.gz: 56ffd5de732d6fc7e5385c1c7d0dcfdf833f68b8192ad034269c8c14406f829d
3
+ metadata.gz: 7d99e1b9242078efcbb031cfae84bf1670b628b1c65c497f957aa20300404f2e
4
+ data.tar.gz: '091d10dfe0f5944382d35b55472424fcc7deab3cb263896b0dbaba13d517b42f'
5
5
  SHA512:
6
- metadata.gz: 5c43cb9bf62a06089953922eac257175f21395e35387aea8067ea3bf9e5abd4ccbc082063adbdb630c6f7842e7d3721a271f8df4640b5ad8967a307d9e7d1519
7
- data.tar.gz: 14ff92594d3e890bfc2faa96d89a6bb994f53094b29568c9a22beb91f9a41d0019bea4fd8eb8556290685fa24386df0a572cf5cd0dbd1c2344a8450bdb4447b0
6
+ metadata.gz: ad071cbf5347a7044cd3b11a827c1a5990406b7292e2a90518d9265b2165e138220f4bd325069d2c0af9e1abe4ac10ef015ec49f5767caa820af87e171c321bd
7
+ data.tar.gz: bfd29b3a711aaade1ef9f753bd3f74a9c1f6850de497b4a1defb7f2ddb97da7ee4b2373c9145774d24fa3d50066e03425d44724332c0e5939b6671ce6631c371
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-discoveryengine_v1beta
2
2
 
3
+ ### v0.98.0 (2026-02-08)
4
+
5
+ * Regenerated from discovery document revision 20260130
6
+
3
7
  ### v0.97.0 (2026-02-01)
4
8
 
5
9
  * Regenerated from discovery document revision 20260125
@@ -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::DiscoveryengineV1beta::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::DiscoveryengineV1beta::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::DiscoveryengineV1beta::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::DiscoveryengineV1beta::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
@@ -10612,6 +10653,11 @@ module Google
10612
10653
  # @return [String]
10613
10654
  attr_accessor :name
10614
10655
 
10656
+ # Observability config for a resource.
10657
+ # Corresponds to the JSON property `observabilityConfig`
10658
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaObservabilityConfig]
10659
+ attr_accessor :observability_config
10660
+
10615
10661
  # Additional information of a recommendation engine.
10616
10662
  # Corresponds to the JSON property `recommendationMetadata`
10617
10663
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata]
@@ -10659,6 +10705,7 @@ module Google
10659
10705
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
10660
10706
  @model_configs = args[:model_configs] if args.key?(:model_configs)
10661
10707
  @name = args[:name] if args.key?(:name)
10708
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
10662
10709
  @recommendation_metadata = args[:recommendation_metadata] if args.key?(:recommendation_metadata)
10663
10710
  @search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
10664
10711
  @similar_documents_config = args[:similar_documents_config] if args.key?(:similar_documents_config)
@@ -12374,6 +12421,35 @@ module Google
12374
12421
  end
12375
12422
  end
12376
12423
 
12424
+ # Observability config for a resource.
12425
+ class GoogleCloudDiscoveryengineV1alphaObservabilityConfig
12426
+ include Google::Apis::Core::Hashable
12427
+
12428
+ # Optional. Enables observability. If false, all other flags are ignored.
12429
+ # Corresponds to the JSON property `observabilityEnabled`
12430
+ # @return [Boolean]
12431
+ attr_accessor :observability_enabled
12432
+ alias_method :observability_enabled?, :observability_enabled
12433
+
12434
+ # Optional. Enables sensitive logging. Sensitive logging includes customer core
12435
+ # content (e.g. prompts, responses). If false, will sanitize all sensitive
12436
+ # fields.
12437
+ # Corresponds to the JSON property `sensitiveLoggingEnabled`
12438
+ # @return [Boolean]
12439
+ attr_accessor :sensitive_logging_enabled
12440
+ alias_method :sensitive_logging_enabled?, :sensitive_logging_enabled
12441
+
12442
+ def initialize(**args)
12443
+ update!(**args)
12444
+ end
12445
+
12446
+ # Update properties of this object
12447
+ def update!(**args)
12448
+ @observability_enabled = args[:observability_enabled] if args.key?(:observability_enabled)
12449
+ @sensitive_logging_enabled = args[:sensitive_logging_enabled] if args.key?(:sensitive_logging_enabled)
12450
+ end
12451
+ end
12452
+
12377
12453
  # Response message for CrawlRateManagementService.ObtainCrawlRate method. The
12378
12454
  # response contains organcic or dedicated crawl rate time series data for
12379
12455
  # monitoring, depending on whether dedicated crawl rate is set.
@@ -12641,6 +12717,11 @@ module Google
12641
12717
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
12642
12718
  attr_accessor :model_armor_config
12643
12719
 
12720
+ # Observability config for a resource.
12721
+ # Corresponds to the JSON property `observabilityConfig`
12722
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaObservabilityConfig]
12723
+ attr_accessor :observability_config
12724
+
12644
12725
  # Optional. Whether to disable the notebook sharing feature for the project.
12645
12726
  # Default to false if not specified.
12646
12727
  # Corresponds to the JSON property `optOutNotebookSharing`
@@ -12655,6 +12736,7 @@ module Google
12655
12736
  # Update properties of this object
12656
12737
  def update!(**args)
12657
12738
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
12739
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
12658
12740
  @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
12659
12741
  end
12660
12742
  end
@@ -22550,6 +22632,11 @@ module Google
22550
22632
  # @return [String]
22551
22633
  attr_accessor :name
22552
22634
 
22635
+ # Observability config for a resource.
22636
+ # Corresponds to the JSON property `observabilityConfig`
22637
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaObservabilityConfig]
22638
+ attr_accessor :observability_config
22639
+
22553
22640
  # Configurations for a Search Engine.
22554
22641
  # Corresponds to the JSON property `searchEngineConfig`
22555
22642
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig]
@@ -22587,6 +22674,7 @@ module Google
22587
22674
  @media_recommendation_engine_config = args[:media_recommendation_engine_config] if args.key?(:media_recommendation_engine_config)
22588
22675
  @model_configs = args[:model_configs] if args.key?(:model_configs)
22589
22676
  @name = args[:name] if args.key?(:name)
22677
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
22590
22678
  @search_engine_config = args[:search_engine_config] if args.key?(:search_engine_config)
22591
22679
  @solution_type = args[:solution_type] if args.key?(:solution_type)
22592
22680
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -25172,6 +25260,35 @@ module Google
25172
25260
  end
25173
25261
  end
25174
25262
 
25263
+ # Observability config for a resource.
25264
+ class GoogleCloudDiscoveryengineV1betaObservabilityConfig
25265
+ include Google::Apis::Core::Hashable
25266
+
25267
+ # Optional. Enables observability. If false, all other flags are ignored.
25268
+ # Corresponds to the JSON property `observabilityEnabled`
25269
+ # @return [Boolean]
25270
+ attr_accessor :observability_enabled
25271
+ alias_method :observability_enabled?, :observability_enabled
25272
+
25273
+ # Optional. Enables sensitive logging. Sensitive logging includes customer core
25274
+ # content (e.g. prompts, responses). If false, will sanitize all sensitive
25275
+ # fields.
25276
+ # Corresponds to the JSON property `sensitiveLoggingEnabled`
25277
+ # @return [Boolean]
25278
+ attr_accessor :sensitive_logging_enabled
25279
+ alias_method :sensitive_logging_enabled?, :sensitive_logging_enabled
25280
+
25281
+ def initialize(**args)
25282
+ update!(**args)
25283
+ end
25284
+
25285
+ # Update properties of this object
25286
+ def update!(**args)
25287
+ @observability_enabled = args[:observability_enabled] if args.key?(:observability_enabled)
25288
+ @sensitive_logging_enabled = args[:sensitive_logging_enabled] if args.key?(:sensitive_logging_enabled)
25289
+ end
25290
+ end
25291
+
25175
25292
  # Request message for CrawlRateManagementService.ObtainCrawlRate method.
25176
25293
  class GoogleCloudDiscoveryengineV1betaObtainCrawlRateRequest
25177
25294
  include Google::Apis::Core::Hashable
@@ -25573,6 +25690,11 @@ module Google
25573
25690
  # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig]
25574
25691
  attr_accessor :model_armor_config
25575
25692
 
25693
+ # Observability config for a resource.
25694
+ # Corresponds to the JSON property `observabilityConfig`
25695
+ # @return [Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaObservabilityConfig]
25696
+ attr_accessor :observability_config
25697
+
25576
25698
  # Optional. Whether to disable the notebook sharing feature for the project.
25577
25699
  # Default to false if not specified.
25578
25700
  # Corresponds to the JSON property `optOutNotebookSharing`
@@ -25587,6 +25709,7 @@ module Google
25587
25709
  # Update properties of this object
25588
25710
  def update!(**args)
25589
25711
  @model_armor_config = args[:model_armor_config] if args.key?(:model_armor_config)
25712
+ @observability_config = args[:observability_config] if args.key?(:observability_config)
25590
25713
  @opt_out_notebook_sharing = args[:opt_out_notebook_sharing] if args.key?(:opt_out_notebook_sharing)
25591
25714
  end
25592
25715
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DiscoveryengineV1beta
18
18
  # Version of the google-apis-discoveryengine_v1beta gem
19
- GEM_VERSION = "0.97.0"
19
+ GEM_VERSION = "0.98.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 = "20260125"
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
 
@@ -1924,6 +1930,12 @@ module Google
1924
1930
  include Google::Apis::Core::JsonObjectSupport
1925
1931
  end
1926
1932
 
1933
+ class GoogleCloudDiscoveryengineV1alphaObservabilityConfig
1934
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1935
+
1936
+ include Google::Apis::Core::JsonObjectSupport
1937
+ end
1938
+
1927
1939
  class GoogleCloudDiscoveryengineV1alphaObtainCrawlRateResponse
1928
1940
  class Representation < Google::Apis::Core::JsonRepresentation; end
1929
1941
 
@@ -4024,6 +4036,12 @@ module Google
4024
4036
  include Google::Apis::Core::JsonObjectSupport
4025
4037
  end
4026
4038
 
4039
+ class GoogleCloudDiscoveryengineV1betaObservabilityConfig
4040
+ class Representation < Google::Apis::Core::JsonRepresentation; end
4041
+
4042
+ include Google::Apis::Core::JsonObjectSupport
4043
+ end
4044
+
4027
4045
  class GoogleCloudDiscoveryengineV1betaObtainCrawlRateRequest
4028
4046
  class Representation < Google::Apis::Core::JsonRepresentation; end
4029
4047
 
@@ -5952,6 +5970,8 @@ module Google
5952
5970
 
5953
5971
  hash :model_configs, as: 'modelConfigs'
5954
5972
  property :name, as: 'name'
5973
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ObservabilityConfig::Representation
5974
+
5955
5975
  property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1EngineSearchEngineConfig::Representation
5956
5976
 
5957
5977
  property :solution_type, as: 'solutionType'
@@ -6233,6 +6253,14 @@ module Google
6233
6253
  end
6234
6254
  end
6235
6255
 
6256
+ class GoogleCloudDiscoveryengineV1ObservabilityConfig
6257
+ # @private
6258
+ class Representation < Google::Apis::Core::JsonRepresentation
6259
+ property :observability_enabled, as: 'observabilityEnabled'
6260
+ property :sensitive_logging_enabled, as: 'sensitiveLoggingEnabled'
6261
+ end
6262
+ end
6263
+
6236
6264
  class GoogleCloudDiscoveryengineV1Project
6237
6265
  # @private
6238
6266
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -6273,6 +6301,8 @@ module Google
6273
6301
  class Representation < Google::Apis::Core::JsonRepresentation
6274
6302
  property :model_armor_config, as: 'modelArmorConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig::Representation
6275
6303
 
6304
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1ObservabilityConfig::Representation
6305
+
6276
6306
  property :opt_out_notebook_sharing, as: 'optOutNotebookSharing'
6277
6307
  end
6278
6308
  end
@@ -7844,6 +7874,8 @@ module Google
7844
7874
 
7845
7875
  hash :model_configs, as: 'modelConfigs'
7846
7876
  property :name, as: 'name'
7877
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaObservabilityConfig::Representation
7878
+
7847
7879
  property :recommendation_metadata, as: 'recommendationMetadata', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineRecommendationMetadata::Representation
7848
7880
 
7849
7881
  property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaEngineSearchEngineConfig::Representation
@@ -8306,6 +8338,14 @@ module Google
8306
8338
  end
8307
8339
  end
8308
8340
 
8341
+ class GoogleCloudDiscoveryengineV1alphaObservabilityConfig
8342
+ # @private
8343
+ class Representation < Google::Apis::Core::JsonRepresentation
8344
+ property :observability_enabled, as: 'observabilityEnabled'
8345
+ property :sensitive_logging_enabled, as: 'sensitiveLoggingEnabled'
8346
+ end
8347
+ end
8348
+
8309
8349
  class GoogleCloudDiscoveryengineV1alphaObtainCrawlRateResponse
8310
8350
  # @private
8311
8351
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8379,6 +8419,8 @@ module Google
8379
8419
  class Representation < Google::Apis::Core::JsonRepresentation
8380
8420
  property :model_armor_config, as: 'modelArmorConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig::Representation
8381
8421
 
8422
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1alphaObservabilityConfig::Representation
8423
+
8382
8424
  property :opt_out_notebook_sharing, as: 'optOutNotebookSharing'
8383
8425
  end
8384
8426
  end
@@ -11057,6 +11099,8 @@ module Google
11057
11099
 
11058
11100
  hash :model_configs, as: 'modelConfigs'
11059
11101
  property :name, as: 'name'
11102
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaObservabilityConfig::Representation
11103
+
11060
11104
  property :search_engine_config, as: 'searchEngineConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaEngineSearchEngineConfig::Representation
11061
11105
 
11062
11106
  property :solution_type, as: 'solutionType'
@@ -11843,6 +11887,14 @@ module Google
11843
11887
  end
11844
11888
  end
11845
11889
 
11890
+ class GoogleCloudDiscoveryengineV1betaObservabilityConfig
11891
+ # @private
11892
+ class Representation < Google::Apis::Core::JsonRepresentation
11893
+ property :observability_enabled, as: 'observabilityEnabled'
11894
+ property :sensitive_logging_enabled, as: 'sensitiveLoggingEnabled'
11895
+ end
11896
+ end
11897
+
11846
11898
  class GoogleCloudDiscoveryengineV1betaObtainCrawlRateRequest
11847
11899
  # @private
11848
11900
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -11950,6 +12002,8 @@ module Google
11950
12002
  class Representation < Google::Apis::Core::JsonRepresentation
11951
12003
  property :model_armor_config, as: 'modelArmorConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaProjectCustomerProvidedConfigNotebooklmConfigModelArmorConfig::Representation
11952
12004
 
12005
+ property :observability_config, as: 'observabilityConfig', class: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaObservabilityConfig, decorator: Google::Apis::DiscoveryengineV1beta::GoogleCloudDiscoveryengineV1betaObservabilityConfig::Representation
12006
+
11953
12007
  property :opt_out_notebook_sharing, as: 'optOutNotebookSharing'
11954
12008
  end
11955
12009
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-discoveryengine_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.97.0
4
+ version: 0.98.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_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.97.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-discoveryengine_v1beta/v0.98.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-discoveryengine_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: