pulumi-gcp 8.31.0__py3-none-any.whl → 8.31.0a1747205151__py3-none-any.whl

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.
Files changed (45) hide show
  1. pulumi_gcp/__init__.py +0 -8
  2. pulumi_gcp/alloydb/_inputs.py +0 -164
  3. pulumi_gcp/alloydb/outputs.py +0 -211
  4. pulumi_gcp/apigee/_inputs.py +0 -20
  5. pulumi_gcp/apigee/outputs.py +0 -12
  6. pulumi_gcp/bigquery/routine.py +0 -56
  7. pulumi_gcp/bigtable/table.py +7 -7
  8. pulumi_gcp/certificateauthority/_inputs.py +19 -20
  9. pulumi_gcp/certificateauthority/authority.py +0 -70
  10. pulumi_gcp/certificateauthority/outputs.py +11 -12
  11. pulumi_gcp/cloudfunctionsv2/function.py +4 -4
  12. pulumi_gcp/compute/__init__.py +0 -1
  13. pulumi_gcp/compute/_inputs.py +0 -312
  14. pulumi_gcp/compute/get_health_check.py +1 -12
  15. pulumi_gcp/compute/health_check.py +0 -120
  16. pulumi_gcp/compute/outputs.py +0 -353
  17. pulumi_gcp/compute/region_health_check.py +0 -120
  18. pulumi_gcp/container/_inputs.py +6 -6
  19. pulumi_gcp/container/outputs.py +4 -4
  20. pulumi_gcp/dataproc/get_metastore_service.py +12 -1
  21. pulumi_gcp/dataproc/metastore_service.py +61 -0
  22. pulumi_gcp/diagflow/_inputs.py +2894 -6530
  23. pulumi_gcp/diagflow/cx_flow.py +0 -304
  24. pulumi_gcp/diagflow/cx_page.py +0 -290
  25. pulumi_gcp/diagflow/outputs.py +1876 -4630
  26. pulumi_gcp/netapp/backup.py +0 -56
  27. pulumi_gcp/netapp/backup_vault.py +0 -185
  28. pulumi_gcp/netapp/storage_pool.py +2 -2
  29. pulumi_gcp/networkconnectivity/internal_range.py +0 -47
  30. pulumi_gcp/networkconnectivity/regional_endpoint.py +13 -13
  31. pulumi_gcp/networkservices/_inputs.py +0 -43
  32. pulumi_gcp/networkservices/edge_cache_origin.py +0 -61
  33. pulumi_gcp/networkservices/outputs.py +0 -43
  34. pulumi_gcp/pulumi-plugin.json +1 -1
  35. pulumi_gcp/redis/get_instance.py +12 -1
  36. pulumi_gcp/redis/instance.py +61 -0
  37. pulumi_gcp/spanner/database.py +0 -56
  38. pulumi_gcp/spanner/get_database.py +1 -12
  39. pulumi_gcp/storage/bucket.py +4 -4
  40. pulumi_gcp/storage/get_bucket_object_content.py +1 -29
  41. {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/METADATA +1 -1
  42. {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/RECORD +44 -45
  43. {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/WHEEL +1 -1
  44. pulumi_gcp/compute/cross_site_network.py +0 -374
  45. {pulumi_gcp-8.31.0.dist-info → pulumi_gcp-8.31.0a1747205151.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,6 @@ class CxFlowArgs:
27
27
  description: Optional[pulumi.Input[builtins.str]] = None,
28
28
  event_handlers: Optional[pulumi.Input[Sequence[pulumi.Input['CxFlowEventHandlerArgs']]]] = None,
29
29
  is_default_start_flow: Optional[pulumi.Input[builtins.bool]] = None,
30
- knowledge_connector_settings: Optional[pulumi.Input['CxFlowKnowledgeConnectorSettingsArgs']] = None,
31
30
  language_code: Optional[pulumi.Input[builtins.str]] = None,
32
31
  nlu_settings: Optional[pulumi.Input['CxFlowNluSettingsArgs']] = None,
33
32
  parent: Optional[pulumi.Input[builtins.str]] = None,
@@ -52,8 +51,6 @@ class CxFlowArgs:
52
51
  The Default Start Flow cannot be deleted; deleting the `diagflow.CxFlow` resource does nothing to the underlying GCP resources.
53
52
 
54
53
  > Avoid having multiple `diagflow.CxFlow` resources linked to the same agent with `is_default_start_flow = true` because they will compete to control a single Default Start Flow resource in GCP.
55
- :param pulumi.Input['CxFlowKnowledgeConnectorSettingsArgs'] knowledge_connector_settings: Knowledge connector configuration.
56
- Structure is documented below.
57
54
  :param pulumi.Input[builtins.str] language_code: The language of the following fields in flow:
58
55
  Flow.event_handlers.trigger_fulfillment.messages
59
56
  Flow.event_handlers.trigger_fulfillment.conditional_cases
@@ -86,8 +83,6 @@ class CxFlowArgs:
86
83
  pulumi.set(__self__, "event_handlers", event_handlers)
87
84
  if is_default_start_flow is not None:
88
85
  pulumi.set(__self__, "is_default_start_flow", is_default_start_flow)
89
- if knowledge_connector_settings is not None:
90
- pulumi.set(__self__, "knowledge_connector_settings", knowledge_connector_settings)
91
86
  if language_code is not None:
92
87
  pulumi.set(__self__, "language_code", language_code)
93
88
  if nlu_settings is not None:
@@ -171,19 +166,6 @@ class CxFlowArgs:
171
166
  def is_default_start_flow(self, value: Optional[pulumi.Input[builtins.bool]]):
172
167
  pulumi.set(self, "is_default_start_flow", value)
173
168
 
174
- @property
175
- @pulumi.getter(name="knowledgeConnectorSettings")
176
- def knowledge_connector_settings(self) -> Optional[pulumi.Input['CxFlowKnowledgeConnectorSettingsArgs']]:
177
- """
178
- Knowledge connector configuration.
179
- Structure is documented below.
180
- """
181
- return pulumi.get(self, "knowledge_connector_settings")
182
-
183
- @knowledge_connector_settings.setter
184
- def knowledge_connector_settings(self, value: Optional[pulumi.Input['CxFlowKnowledgeConnectorSettingsArgs']]):
185
- pulumi.set(self, "knowledge_connector_settings", value)
186
-
187
169
  @property
188
170
  @pulumi.getter(name="languageCode")
189
171
  def language_code(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -270,7 +252,6 @@ class _CxFlowState:
270
252
  display_name: Optional[pulumi.Input[builtins.str]] = None,
271
253
  event_handlers: Optional[pulumi.Input[Sequence[pulumi.Input['CxFlowEventHandlerArgs']]]] = None,
272
254
  is_default_start_flow: Optional[pulumi.Input[builtins.bool]] = None,
273
- knowledge_connector_settings: Optional[pulumi.Input['CxFlowKnowledgeConnectorSettingsArgs']] = None,
274
255
  language_code: Optional[pulumi.Input[builtins.str]] = None,
275
256
  name: Optional[pulumi.Input[builtins.str]] = None,
276
257
  nlu_settings: Optional[pulumi.Input['CxFlowNluSettingsArgs']] = None,
@@ -296,8 +277,6 @@ class _CxFlowState:
296
277
  The Default Start Flow cannot be deleted; deleting the `diagflow.CxFlow` resource does nothing to the underlying GCP resources.
297
278
 
298
279
  > Avoid having multiple `diagflow.CxFlow` resources linked to the same agent with `is_default_start_flow = true` because they will compete to control a single Default Start Flow resource in GCP.
299
- :param pulumi.Input['CxFlowKnowledgeConnectorSettingsArgs'] knowledge_connector_settings: Knowledge connector configuration.
300
- Structure is documented below.
301
280
  :param pulumi.Input[builtins.str] language_code: The language of the following fields in flow:
302
281
  Flow.event_handlers.trigger_fulfillment.messages
303
282
  Flow.event_handlers.trigger_fulfillment.conditional_cases
@@ -333,8 +312,6 @@ class _CxFlowState:
333
312
  pulumi.set(__self__, "event_handlers", event_handlers)
334
313
  if is_default_start_flow is not None:
335
314
  pulumi.set(__self__, "is_default_start_flow", is_default_start_flow)
336
- if knowledge_connector_settings is not None:
337
- pulumi.set(__self__, "knowledge_connector_settings", knowledge_connector_settings)
338
315
  if language_code is not None:
339
316
  pulumi.set(__self__, "language_code", language_code)
340
317
  if name is not None:
@@ -420,19 +397,6 @@ class _CxFlowState:
420
397
  def is_default_start_flow(self, value: Optional[pulumi.Input[builtins.bool]]):
421
398
  pulumi.set(self, "is_default_start_flow", value)
422
399
 
423
- @property
424
- @pulumi.getter(name="knowledgeConnectorSettings")
425
- def knowledge_connector_settings(self) -> Optional[pulumi.Input['CxFlowKnowledgeConnectorSettingsArgs']]:
426
- """
427
- Knowledge connector configuration.
428
- Structure is documented below.
429
- """
430
- return pulumi.get(self, "knowledge_connector_settings")
431
-
432
- @knowledge_connector_settings.setter
433
- def knowledge_connector_settings(self, value: Optional[pulumi.Input['CxFlowKnowledgeConnectorSettingsArgs']]):
434
- pulumi.set(self, "knowledge_connector_settings", value)
435
-
436
400
  @property
437
401
  @pulumi.getter(name="languageCode")
438
402
  def language_code(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -535,7 +499,6 @@ class CxFlow(pulumi.CustomResource):
535
499
  display_name: Optional[pulumi.Input[builtins.str]] = None,
536
500
  event_handlers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CxFlowEventHandlerArgs', 'CxFlowEventHandlerArgsDict']]]]] = None,
537
501
  is_default_start_flow: Optional[pulumi.Input[builtins.bool]] = None,
538
- knowledge_connector_settings: Optional[pulumi.Input[Union['CxFlowKnowledgeConnectorSettingsArgs', 'CxFlowKnowledgeConnectorSettingsArgsDict']]] = None,
539
502
  language_code: Optional[pulumi.Input[builtins.str]] = None,
540
503
  nlu_settings: Optional[pulumi.Input[Union['CxFlowNluSettingsArgs', 'CxFlowNluSettingsArgsDict']]] = None,
541
504
  parent: Optional[pulumi.Input[builtins.str]] = None,
@@ -648,20 +611,6 @@ class CxFlow(pulumi.CustomResource):
648
611
  name="dialogflowcx-bucket",
649
612
  location="US",
650
613
  uniform_bucket_level_access=True)
651
- my_datastore = gcp.discoveryengine.DataStore("my_datastore",
652
- location="global",
653
- data_store_id="datastore-flow-full",
654
- display_name="datastore-flow-full",
655
- industry_vertical="GENERIC",
656
- content_config="NO_CONTENT",
657
- solution_types=["SOLUTION_TYPE_CHAT"])
658
- my_webhook = gcp.diagflow.CxWebhook("my_webhook",
659
- parent=agent.id,
660
- display_name="MyWebhook",
661
- generic_web_service={
662
- "uri": "https://example.com",
663
- })
664
- project = gcp.organizations.get_project()
665
614
  basic_flow = gcp.diagflow.CxFlow("basic_flow",
666
615
  parent=agent.id,
667
616
  display_name="MyFlow",
@@ -930,117 +879,6 @@ class CxFlow(pulumi.CustomResource):
930
879
  "enable_interaction_logging": True,
931
880
  "enable_consent_based_redaction": True,
932
881
  },
933
- },
934
- knowledge_connector_settings={
935
- "enabled": True,
936
- "trigger_fulfillment": {
937
- "messages": [
938
- {
939
- "channel": "some-channel",
940
- "text": {
941
- "texts": ["information completed, navigating to page 2"],
942
- },
943
- },
944
- {
945
- "payload": " {\\"some-key\\": \\"some-value\\", \\"other-key\\": [\\"other-value\\"]}\\n",
946
- },
947
- {
948
- "conversation_success": {
949
- "metadata": " {\\"some-metadata-key\\": \\"some-value\\", \\"other-metadata-key\\": 1234}\\n",
950
- },
951
- },
952
- {
953
- "output_audio_text": {
954
- "text": "some output text",
955
- },
956
- },
957
- {
958
- "output_audio_text": {
959
- "ssml": " <speak>Some example <say-as interpret-as=\\"characters\\">SSML XML</say-as></speak>\\n",
960
- },
961
- },
962
- {
963
- "live_agent_handoff": {
964
- "metadata": " {\\"some-metadata-key\\": \\"some-value\\", \\"other-metadata-key\\": 1234}\\n",
965
- },
966
- },
967
- {
968
- "play_audio": {
969
- "audio_uri": "http://example.com/some-audio-file.mp3",
970
- },
971
- },
972
- {
973
- "telephony_transfer_call": {
974
- "phone_number": "1-234-567-8902",
975
- },
976
- },
977
- ],
978
- "webhook": my_webhook.id,
979
- "return_partial_responses": True,
980
- "tag": "some-tag",
981
- "set_parameter_actions": [{
982
- "parameter": "some-param",
983
- "value": "123.45",
984
- }],
985
- "conditional_cases": [{
986
- "cases": json.dumps([
987
- {
988
- "condition": "$sys.func.RAND() < 0.5",
989
- "caseContent": [{
990
- "message": {
991
- "text": {
992
- "text": ["First case"],
993
- },
994
- },
995
- }],
996
- },
997
- {
998
- "caseContent": [{
999
- "message": {
1000
- "text": {
1001
- "text": ["Final case"],
1002
- },
1003
- },
1004
- }],
1005
- },
1006
- ]),
1007
- }],
1008
- "advanced_settings": {
1009
- "speech_settings": {
1010
- "endpointer_sensitivity": 30,
1011
- "no_speech_timeout": "3.500s",
1012
- "use_timeout_based_endpointing": True,
1013
- "models": {
1014
- "name": "wrench",
1015
- "mass": "1.3kg",
1016
- "count": "3",
1017
- },
1018
- },
1019
- "dtmf_settings": {
1020
- "enabled": True,
1021
- "max_digits": 1,
1022
- "finish_digit": "#",
1023
- "interdigit_timeout_duration": "3.500s",
1024
- "endpointing_timeout_duration": "3.500s",
1025
- },
1026
- "logging_settings": {
1027
- "enable_stackdriver_logging": True,
1028
- "enable_interaction_logging": True,
1029
- "enable_consent_based_redaction": True,
1030
- },
1031
- },
1032
- "enable_generative_fallback": True,
1033
- },
1034
- "data_store_connections": [{
1035
- "data_store_type": "UNSTRUCTURED",
1036
- "data_store": pulumi.Output.all(
1037
- location=agent.location,
1038
- data_store_id=my_datastore.data_store_id
1039
- ).apply(lambda resolved_outputs: f"projects/{project.number}/locations/{resolved_outputs['location']}/collections/default_collection/dataStores/{resolved_outputs['data_store_id']}")
1040
- ,
1041
- "document_processing_mode": "DOCUMENTS",
1042
- }],
1043
- "target_flow": agent.start_flow,
1044
882
  })
1045
883
  ```
1046
884
 
@@ -1081,8 +919,6 @@ class CxFlow(pulumi.CustomResource):
1081
919
  The Default Start Flow cannot be deleted; deleting the `diagflow.CxFlow` resource does nothing to the underlying GCP resources.
1082
920
 
1083
921
  > Avoid having multiple `diagflow.CxFlow` resources linked to the same agent with `is_default_start_flow = true` because they will compete to control a single Default Start Flow resource in GCP.
1084
- :param pulumi.Input[Union['CxFlowKnowledgeConnectorSettingsArgs', 'CxFlowKnowledgeConnectorSettingsArgsDict']] knowledge_connector_settings: Knowledge connector configuration.
1085
- Structure is documented below.
1086
922
  :param pulumi.Input[builtins.str] language_code: The language of the following fields in flow:
1087
923
  Flow.event_handlers.trigger_fulfillment.messages
1088
924
  Flow.event_handlers.trigger_fulfillment.conditional_cases
@@ -1218,20 +1054,6 @@ class CxFlow(pulumi.CustomResource):
1218
1054
  name="dialogflowcx-bucket",
1219
1055
  location="US",
1220
1056
  uniform_bucket_level_access=True)
1221
- my_datastore = gcp.discoveryengine.DataStore("my_datastore",
1222
- location="global",
1223
- data_store_id="datastore-flow-full",
1224
- display_name="datastore-flow-full",
1225
- industry_vertical="GENERIC",
1226
- content_config="NO_CONTENT",
1227
- solution_types=["SOLUTION_TYPE_CHAT"])
1228
- my_webhook = gcp.diagflow.CxWebhook("my_webhook",
1229
- parent=agent.id,
1230
- display_name="MyWebhook",
1231
- generic_web_service={
1232
- "uri": "https://example.com",
1233
- })
1234
- project = gcp.organizations.get_project()
1235
1057
  basic_flow = gcp.diagflow.CxFlow("basic_flow",
1236
1058
  parent=agent.id,
1237
1059
  display_name="MyFlow",
@@ -1500,117 +1322,6 @@ class CxFlow(pulumi.CustomResource):
1500
1322
  "enable_interaction_logging": True,
1501
1323
  "enable_consent_based_redaction": True,
1502
1324
  },
1503
- },
1504
- knowledge_connector_settings={
1505
- "enabled": True,
1506
- "trigger_fulfillment": {
1507
- "messages": [
1508
- {
1509
- "channel": "some-channel",
1510
- "text": {
1511
- "texts": ["information completed, navigating to page 2"],
1512
- },
1513
- },
1514
- {
1515
- "payload": " {\\"some-key\\": \\"some-value\\", \\"other-key\\": [\\"other-value\\"]}\\n",
1516
- },
1517
- {
1518
- "conversation_success": {
1519
- "metadata": " {\\"some-metadata-key\\": \\"some-value\\", \\"other-metadata-key\\": 1234}\\n",
1520
- },
1521
- },
1522
- {
1523
- "output_audio_text": {
1524
- "text": "some output text",
1525
- },
1526
- },
1527
- {
1528
- "output_audio_text": {
1529
- "ssml": " <speak>Some example <say-as interpret-as=\\"characters\\">SSML XML</say-as></speak>\\n",
1530
- },
1531
- },
1532
- {
1533
- "live_agent_handoff": {
1534
- "metadata": " {\\"some-metadata-key\\": \\"some-value\\", \\"other-metadata-key\\": 1234}\\n",
1535
- },
1536
- },
1537
- {
1538
- "play_audio": {
1539
- "audio_uri": "http://example.com/some-audio-file.mp3",
1540
- },
1541
- },
1542
- {
1543
- "telephony_transfer_call": {
1544
- "phone_number": "1-234-567-8902",
1545
- },
1546
- },
1547
- ],
1548
- "webhook": my_webhook.id,
1549
- "return_partial_responses": True,
1550
- "tag": "some-tag",
1551
- "set_parameter_actions": [{
1552
- "parameter": "some-param",
1553
- "value": "123.45",
1554
- }],
1555
- "conditional_cases": [{
1556
- "cases": json.dumps([
1557
- {
1558
- "condition": "$sys.func.RAND() < 0.5",
1559
- "caseContent": [{
1560
- "message": {
1561
- "text": {
1562
- "text": ["First case"],
1563
- },
1564
- },
1565
- }],
1566
- },
1567
- {
1568
- "caseContent": [{
1569
- "message": {
1570
- "text": {
1571
- "text": ["Final case"],
1572
- },
1573
- },
1574
- }],
1575
- },
1576
- ]),
1577
- }],
1578
- "advanced_settings": {
1579
- "speech_settings": {
1580
- "endpointer_sensitivity": 30,
1581
- "no_speech_timeout": "3.500s",
1582
- "use_timeout_based_endpointing": True,
1583
- "models": {
1584
- "name": "wrench",
1585
- "mass": "1.3kg",
1586
- "count": "3",
1587
- },
1588
- },
1589
- "dtmf_settings": {
1590
- "enabled": True,
1591
- "max_digits": 1,
1592
- "finish_digit": "#",
1593
- "interdigit_timeout_duration": "3.500s",
1594
- "endpointing_timeout_duration": "3.500s",
1595
- },
1596
- "logging_settings": {
1597
- "enable_stackdriver_logging": True,
1598
- "enable_interaction_logging": True,
1599
- "enable_consent_based_redaction": True,
1600
- },
1601
- },
1602
- "enable_generative_fallback": True,
1603
- },
1604
- "data_store_connections": [{
1605
- "data_store_type": "UNSTRUCTURED",
1606
- "data_store": pulumi.Output.all(
1607
- location=agent.location,
1608
- data_store_id=my_datastore.data_store_id
1609
- ).apply(lambda resolved_outputs: f"projects/{project.number}/locations/{resolved_outputs['location']}/collections/default_collection/dataStores/{resolved_outputs['data_store_id']}")
1610
- ,
1611
- "document_processing_mode": "DOCUMENTS",
1612
- }],
1613
- "target_flow": agent.start_flow,
1614
1325
  })
1615
1326
  ```
1616
1327
 
@@ -1652,7 +1363,6 @@ class CxFlow(pulumi.CustomResource):
1652
1363
  display_name: Optional[pulumi.Input[builtins.str]] = None,
1653
1364
  event_handlers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CxFlowEventHandlerArgs', 'CxFlowEventHandlerArgsDict']]]]] = None,
1654
1365
  is_default_start_flow: Optional[pulumi.Input[builtins.bool]] = None,
1655
- knowledge_connector_settings: Optional[pulumi.Input[Union['CxFlowKnowledgeConnectorSettingsArgs', 'CxFlowKnowledgeConnectorSettingsArgsDict']]] = None,
1656
1366
  language_code: Optional[pulumi.Input[builtins.str]] = None,
1657
1367
  nlu_settings: Optional[pulumi.Input[Union['CxFlowNluSettingsArgs', 'CxFlowNluSettingsArgsDict']]] = None,
1658
1368
  parent: Optional[pulumi.Input[builtins.str]] = None,
@@ -1674,7 +1384,6 @@ class CxFlow(pulumi.CustomResource):
1674
1384
  __props__.__dict__["display_name"] = display_name
1675
1385
  __props__.__dict__["event_handlers"] = event_handlers
1676
1386
  __props__.__dict__["is_default_start_flow"] = is_default_start_flow
1677
- __props__.__dict__["knowledge_connector_settings"] = knowledge_connector_settings
1678
1387
  __props__.__dict__["language_code"] = language_code
1679
1388
  __props__.__dict__["nlu_settings"] = nlu_settings
1680
1389
  __props__.__dict__["parent"] = parent
@@ -1696,7 +1405,6 @@ class CxFlow(pulumi.CustomResource):
1696
1405
  display_name: Optional[pulumi.Input[builtins.str]] = None,
1697
1406
  event_handlers: Optional[pulumi.Input[Sequence[pulumi.Input[Union['CxFlowEventHandlerArgs', 'CxFlowEventHandlerArgsDict']]]]] = None,
1698
1407
  is_default_start_flow: Optional[pulumi.Input[builtins.bool]] = None,
1699
- knowledge_connector_settings: Optional[pulumi.Input[Union['CxFlowKnowledgeConnectorSettingsArgs', 'CxFlowKnowledgeConnectorSettingsArgsDict']]] = None,
1700
1408
  language_code: Optional[pulumi.Input[builtins.str]] = None,
1701
1409
  name: Optional[pulumi.Input[builtins.str]] = None,
1702
1410
  nlu_settings: Optional[pulumi.Input[Union['CxFlowNluSettingsArgs', 'CxFlowNluSettingsArgsDict']]] = None,
@@ -1727,8 +1435,6 @@ class CxFlow(pulumi.CustomResource):
1727
1435
  The Default Start Flow cannot be deleted; deleting the `diagflow.CxFlow` resource does nothing to the underlying GCP resources.
1728
1436
 
1729
1437
  > Avoid having multiple `diagflow.CxFlow` resources linked to the same agent with `is_default_start_flow = true` because they will compete to control a single Default Start Flow resource in GCP.
1730
- :param pulumi.Input[Union['CxFlowKnowledgeConnectorSettingsArgs', 'CxFlowKnowledgeConnectorSettingsArgsDict']] knowledge_connector_settings: Knowledge connector configuration.
1731
- Structure is documented below.
1732
1438
  :param pulumi.Input[builtins.str] language_code: The language of the following fields in flow:
1733
1439
  Flow.event_handlers.trigger_fulfillment.messages
1734
1440
  Flow.event_handlers.trigger_fulfillment.conditional_cases
@@ -1763,7 +1469,6 @@ class CxFlow(pulumi.CustomResource):
1763
1469
  __props__.__dict__["display_name"] = display_name
1764
1470
  __props__.__dict__["event_handlers"] = event_handlers
1765
1471
  __props__.__dict__["is_default_start_flow"] = is_default_start_flow
1766
- __props__.__dict__["knowledge_connector_settings"] = knowledge_connector_settings
1767
1472
  __props__.__dict__["language_code"] = language_code
1768
1473
  __props__.__dict__["name"] = name
1769
1474
  __props__.__dict__["nlu_settings"] = nlu_settings
@@ -1824,15 +1529,6 @@ class CxFlow(pulumi.CustomResource):
1824
1529
  """
1825
1530
  return pulumi.get(self, "is_default_start_flow")
1826
1531
 
1827
- @property
1828
- @pulumi.getter(name="knowledgeConnectorSettings")
1829
- def knowledge_connector_settings(self) -> pulumi.Output[Optional['outputs.CxFlowKnowledgeConnectorSettings']]:
1830
- """
1831
- Knowledge connector configuration.
1832
- Structure is documented below.
1833
- """
1834
- return pulumi.get(self, "knowledge_connector_settings")
1835
-
1836
1532
  @property
1837
1533
  @pulumi.getter(name="languageCode")
1838
1534
  def language_code(self) -> pulumi.Output[Optional[builtins.str]]: