pulumi-gcp 7.38.0__py3-none-any.whl → 7.38.0a1723822337__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 (46) hide show
  1. pulumi_gcp/__init__.py +0 -32
  2. pulumi_gcp/appengine/flexible_app_version.py +0 -8
  3. pulumi_gcp/applicationintegration/client.py +2 -2
  4. pulumi_gcp/artifactregistry/__init__.py +0 -1
  5. pulumi_gcp/bigquery/connection.py +0 -12
  6. pulumi_gcp/clouddeploy/_inputs.py +1 -41
  7. pulumi_gcp/clouddeploy/outputs.py +1 -29
  8. pulumi_gcp/cloudfunctionsv2/function.py +0 -2
  9. pulumi_gcp/cloudidentity/__init__.py +0 -1
  10. pulumi_gcp/cloudidentity/get_group_memberships.py +0 -12
  11. pulumi_gcp/cloudidentity/outputs.py +0 -131
  12. pulumi_gcp/compute/_inputs.py +30 -36
  13. pulumi_gcp/compute/outputs.py +38 -48
  14. pulumi_gcp/compute/region_network_endpoint_group.py +0 -8
  15. pulumi_gcp/compute/subnetwork.py +0 -82
  16. pulumi_gcp/container/_inputs.py +18 -15
  17. pulumi_gcp/container/attached_cluster.py +7 -14
  18. pulumi_gcp/container/outputs.py +12 -10
  19. pulumi_gcp/discoveryengine/__init__.py +0 -1
  20. pulumi_gcp/dns/_inputs.py +76 -80
  21. pulumi_gcp/dns/outputs.py +52 -56
  22. pulumi_gcp/managedkafka/_inputs.py +6 -6
  23. pulumi_gcp/managedkafka/cluster.py +7 -7
  24. pulumi_gcp/managedkafka/outputs.py +4 -4
  25. pulumi_gcp/managedkafka/topic.py +7 -7
  26. pulumi_gcp/parallelstore/instance.py +15 -215
  27. pulumi_gcp/pulumi-plugin.json +1 -1
  28. pulumi_gcp/securitycenter/__init__.py +0 -2
  29. pulumi_gcp/securitycenter/_inputs.py +0 -186
  30. pulumi_gcp/securitycenter/outputs.py +0 -118
  31. pulumi_gcp/servicenetworking/connection.py +3 -50
  32. pulumi_gcp/sql/_inputs.py +0 -20
  33. pulumi_gcp/sql/outputs.py +0 -36
  34. pulumi_gcp/vertex/__init__.py +0 -1
  35. pulumi_gcp/vertex/_inputs.py +0 -438
  36. pulumi_gcp/vertex/outputs.py +0 -393
  37. {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/METADATA +1 -1
  38. {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/RECORD +40 -46
  39. {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/WHEEL +1 -1
  40. pulumi_gcp/artifactregistry/get_locations.py +0 -167
  41. pulumi_gcp/cloudidentity/get_group_transitive_memberships.py +0 -93
  42. pulumi_gcp/discoveryengine/schema.py +0 -524
  43. pulumi_gcp/securitycenter/folder_notification_config.py +0 -486
  44. pulumi_gcp/securitycenter/v2_folder_notification_config.py +0 -575
  45. pulumi_gcp/vertex/ai_index_endpoint_deployed_index.py +0 -1170
  46. {pulumi_gcp-7.38.0.dist-info → pulumi_gcp-7.38.0a1723822337.dist-info}/top_level.txt +0 -0
@@ -27,8 +27,6 @@ __all__ = [
27
27
  'FolderCustomModuleCustomConfigPredicateArgsDict',
28
28
  'FolderCustomModuleCustomConfigResourceSelectorArgs',
29
29
  'FolderCustomModuleCustomConfigResourceSelectorArgsDict',
30
- 'FolderNotificationConfigStreamingConfigArgs',
31
- 'FolderNotificationConfigStreamingConfigArgsDict',
32
30
  'InstanceIamBindingConditionArgs',
33
31
  'InstanceIamBindingConditionArgsDict',
34
32
  'InstanceIamMemberConditionArgs',
@@ -101,8 +99,6 @@ __all__ = [
101
99
  'SourceIamBindingConditionArgsDict',
102
100
  'SourceIamMemberConditionArgs',
103
101
  'SourceIamMemberConditionArgsDict',
104
- 'V2FolderNotificationConfigStreamingConfigArgs',
105
- 'V2FolderNotificationConfigStreamingConfigArgsDict',
106
102
  'V2OrganizationNotificationConfigStreamingConfigArgs',
107
103
  'V2OrganizationNotificationConfigStreamingConfigArgsDict',
108
104
  'V2OrganizationSourceIamBindingConditionArgs',
@@ -603,97 +599,6 @@ class FolderCustomModuleCustomConfigResourceSelectorArgs:
603
599
  pulumi.set(self, "resource_types", value)
604
600
 
605
601
 
606
- if not MYPY:
607
- class FolderNotificationConfigStreamingConfigArgsDict(TypedDict):
608
- filter: pulumi.Input[str]
609
- """
610
- Expression that defines the filter to apply across create/update
611
- events of assets or findings as specified by the event type. The
612
- expression is a list of zero or more restrictions combined via
613
- logical operators AND and OR. Parentheses are supported, and OR
614
- has higher precedence than AND.
615
- Restrictions have the form <field> <operator> <value> and may have
616
- a - character in front of them to indicate negation. The fields
617
- map to those defined in the corresponding resource.
618
- The supported operators are:
619
- * = for all value types.
620
- * >, <, >=, <= for integer values.
621
- * :, meaning substring matching, for strings.
622
- The supported value types are:
623
- * string literals in quotes.
624
- * integer literals without quotes.
625
- * boolean literals true and false without quotes.
626
- See
627
- [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
628
- for information on how to write a filter.
629
-
630
- - - -
631
- """
632
- elif False:
633
- FolderNotificationConfigStreamingConfigArgsDict: TypeAlias = Mapping[str, Any]
634
-
635
- @pulumi.input_type
636
- class FolderNotificationConfigStreamingConfigArgs:
637
- def __init__(__self__, *,
638
- filter: pulumi.Input[str]):
639
- """
640
- :param pulumi.Input[str] filter: Expression that defines the filter to apply across create/update
641
- events of assets or findings as specified by the event type. The
642
- expression is a list of zero or more restrictions combined via
643
- logical operators AND and OR. Parentheses are supported, and OR
644
- has higher precedence than AND.
645
- Restrictions have the form <field> <operator> <value> and may have
646
- a - character in front of them to indicate negation. The fields
647
- map to those defined in the corresponding resource.
648
- The supported operators are:
649
- * = for all value types.
650
- * >, <, >=, <= for integer values.
651
- * :, meaning substring matching, for strings.
652
- The supported value types are:
653
- * string literals in quotes.
654
- * integer literals without quotes.
655
- * boolean literals true and false without quotes.
656
- See
657
- [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
658
- for information on how to write a filter.
659
-
660
- - - -
661
- """
662
- pulumi.set(__self__, "filter", filter)
663
-
664
- @property
665
- @pulumi.getter
666
- def filter(self) -> pulumi.Input[str]:
667
- """
668
- Expression that defines the filter to apply across create/update
669
- events of assets or findings as specified by the event type. The
670
- expression is a list of zero or more restrictions combined via
671
- logical operators AND and OR. Parentheses are supported, and OR
672
- has higher precedence than AND.
673
- Restrictions have the form <field> <operator> <value> and may have
674
- a - character in front of them to indicate negation. The fields
675
- map to those defined in the corresponding resource.
676
- The supported operators are:
677
- * = for all value types.
678
- * >, <, >=, <= for integer values.
679
- * :, meaning substring matching, for strings.
680
- The supported value types are:
681
- * string literals in quotes.
682
- * integer literals without quotes.
683
- * boolean literals true and false without quotes.
684
- See
685
- [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
686
- for information on how to write a filter.
687
-
688
- - - -
689
- """
690
- return pulumi.get(self, "filter")
691
-
692
- @filter.setter
693
- def filter(self, value: pulumi.Input[str]):
694
- pulumi.set(self, "filter", value)
695
-
696
-
697
602
  if not MYPY:
698
603
  class InstanceIamBindingConditionArgsDict(TypedDict):
699
604
  expression: pulumi.Input[str]
@@ -3526,97 +3431,6 @@ class SourceIamMemberConditionArgs:
3526
3431
  pulumi.set(self, "description", value)
3527
3432
 
3528
3433
 
3529
- if not MYPY:
3530
- class V2FolderNotificationConfigStreamingConfigArgsDict(TypedDict):
3531
- filter: pulumi.Input[str]
3532
- """
3533
- Expression that defines the filter to apply across create/update
3534
- events of assets or findings as specified by the event type. The
3535
- expression is a list of zero or more restrictions combined via
3536
- logical operators AND and OR. Parentheses are supported, and OR
3537
- has higher precedence than AND.
3538
- Restrictions have the form <field> <operator> <value> and may have
3539
- a - character in front of them to indicate negation. The fields
3540
- map to those defined in the corresponding resource.
3541
- The supported operators are:
3542
- * = for all value types.
3543
- * >, <, >=, <= for integer values.
3544
- * :, meaning substring matching, for strings.
3545
- The supported value types are:
3546
- * string literals in quotes.
3547
- * integer literals without quotes.
3548
- * boolean literals true and false without quotes.
3549
- See
3550
- [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3551
- for information on how to write a filter.
3552
-
3553
- - - -
3554
- """
3555
- elif False:
3556
- V2FolderNotificationConfigStreamingConfigArgsDict: TypeAlias = Mapping[str, Any]
3557
-
3558
- @pulumi.input_type
3559
- class V2FolderNotificationConfigStreamingConfigArgs:
3560
- def __init__(__self__, *,
3561
- filter: pulumi.Input[str]):
3562
- """
3563
- :param pulumi.Input[str] filter: Expression that defines the filter to apply across create/update
3564
- events of assets or findings as specified by the event type. The
3565
- expression is a list of zero or more restrictions combined via
3566
- logical operators AND and OR. Parentheses are supported, and OR
3567
- has higher precedence than AND.
3568
- Restrictions have the form <field> <operator> <value> and may have
3569
- a - character in front of them to indicate negation. The fields
3570
- map to those defined in the corresponding resource.
3571
- The supported operators are:
3572
- * = for all value types.
3573
- * >, <, >=, <= for integer values.
3574
- * :, meaning substring matching, for strings.
3575
- The supported value types are:
3576
- * string literals in quotes.
3577
- * integer literals without quotes.
3578
- * boolean literals true and false without quotes.
3579
- See
3580
- [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3581
- for information on how to write a filter.
3582
-
3583
- - - -
3584
- """
3585
- pulumi.set(__self__, "filter", filter)
3586
-
3587
- @property
3588
- @pulumi.getter
3589
- def filter(self) -> pulumi.Input[str]:
3590
- """
3591
- Expression that defines the filter to apply across create/update
3592
- events of assets or findings as specified by the event type. The
3593
- expression is a list of zero or more restrictions combined via
3594
- logical operators AND and OR. Parentheses are supported, and OR
3595
- has higher precedence than AND.
3596
- Restrictions have the form <field> <operator> <value> and may have
3597
- a - character in front of them to indicate negation. The fields
3598
- map to those defined in the corresponding resource.
3599
- The supported operators are:
3600
- * = for all value types.
3601
- * >, <, >=, <= for integer values.
3602
- * :, meaning substring matching, for strings.
3603
- The supported value types are:
3604
- * string literals in quotes.
3605
- * integer literals without quotes.
3606
- * boolean literals true and false without quotes.
3607
- See
3608
- [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
3609
- for information on how to write a filter.
3610
-
3611
- - - -
3612
- """
3613
- return pulumi.get(self, "filter")
3614
-
3615
- @filter.setter
3616
- def filter(self, value: pulumi.Input[str]):
3617
- pulumi.set(self, "filter", value)
3618
-
3619
-
3620
3434
  if not MYPY:
3621
3435
  class V2OrganizationNotificationConfigStreamingConfigArgsDict(TypedDict):
3622
3436
  filter: pulumi.Input[str]
@@ -22,7 +22,6 @@ __all__ = [
22
22
  'FolderCustomModuleCustomConfigCustomOutputPropertyValueExpression',
23
23
  'FolderCustomModuleCustomConfigPredicate',
24
24
  'FolderCustomModuleCustomConfigResourceSelector',
25
- 'FolderNotificationConfigStreamingConfig',
26
25
  'InstanceIamBindingCondition',
27
26
  'InstanceIamMemberCondition',
28
27
  'ManagementFolderSecurityHealthAnalyticsCustomModuleCustomConfig',
@@ -59,7 +58,6 @@ __all__ = [
59
58
  'ProjectNotificationConfigStreamingConfig',
60
59
  'SourceIamBindingCondition',
61
60
  'SourceIamMemberCondition',
62
- 'V2FolderNotificationConfigStreamingConfig',
63
61
  'V2OrganizationNotificationConfigStreamingConfig',
64
62
  'V2OrganizationSourceIamBindingCondition',
65
63
  'V2OrganizationSourceIamMemberCondition',
@@ -412,64 +410,6 @@ class FolderCustomModuleCustomConfigResourceSelector(dict):
412
410
  return pulumi.get(self, "resource_types")
413
411
 
414
412
 
415
- @pulumi.output_type
416
- class FolderNotificationConfigStreamingConfig(dict):
417
- def __init__(__self__, *,
418
- filter: str):
419
- """
420
- :param str filter: Expression that defines the filter to apply across create/update
421
- events of assets or findings as specified by the event type. The
422
- expression is a list of zero or more restrictions combined via
423
- logical operators AND and OR. Parentheses are supported, and OR
424
- has higher precedence than AND.
425
- Restrictions have the form <field> <operator> <value> and may have
426
- a - character in front of them to indicate negation. The fields
427
- map to those defined in the corresponding resource.
428
- The supported operators are:
429
- * = for all value types.
430
- * >, <, >=, <= for integer values.
431
- * :, meaning substring matching, for strings.
432
- The supported value types are:
433
- * string literals in quotes.
434
- * integer literals without quotes.
435
- * boolean literals true and false without quotes.
436
- See
437
- [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
438
- for information on how to write a filter.
439
-
440
- - - -
441
- """
442
- pulumi.set(__self__, "filter", filter)
443
-
444
- @property
445
- @pulumi.getter
446
- def filter(self) -> str:
447
- """
448
- Expression that defines the filter to apply across create/update
449
- events of assets or findings as specified by the event type. The
450
- expression is a list of zero or more restrictions combined via
451
- logical operators AND and OR. Parentheses are supported, and OR
452
- has higher precedence than AND.
453
- Restrictions have the form <field> <operator> <value> and may have
454
- a - character in front of them to indicate negation. The fields
455
- map to those defined in the corresponding resource.
456
- The supported operators are:
457
- * = for all value types.
458
- * >, <, >=, <= for integer values.
459
- * :, meaning substring matching, for strings.
460
- The supported value types are:
461
- * string literals in quotes.
462
- * integer literals without quotes.
463
- * boolean literals true and false without quotes.
464
- See
465
- [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
466
- for information on how to write a filter.
467
-
468
- - - -
469
- """
470
- return pulumi.get(self, "filter")
471
-
472
-
473
413
  @pulumi.output_type
474
414
  class InstanceIamBindingCondition(dict):
475
415
  def __init__(__self__, *,
@@ -2440,64 +2380,6 @@ class SourceIamMemberCondition(dict):
2440
2380
  return pulumi.get(self, "description")
2441
2381
 
2442
2382
 
2443
- @pulumi.output_type
2444
- class V2FolderNotificationConfigStreamingConfig(dict):
2445
- def __init__(__self__, *,
2446
- filter: str):
2447
- """
2448
- :param str filter: Expression that defines the filter to apply across create/update
2449
- events of assets or findings as specified by the event type. The
2450
- expression is a list of zero or more restrictions combined via
2451
- logical operators AND and OR. Parentheses are supported, and OR
2452
- has higher precedence than AND.
2453
- Restrictions have the form <field> <operator> <value> and may have
2454
- a - character in front of them to indicate negation. The fields
2455
- map to those defined in the corresponding resource.
2456
- The supported operators are:
2457
- * = for all value types.
2458
- * >, <, >=, <= for integer values.
2459
- * :, meaning substring matching, for strings.
2460
- The supported value types are:
2461
- * string literals in quotes.
2462
- * integer literals without quotes.
2463
- * boolean literals true and false without quotes.
2464
- See
2465
- [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
2466
- for information on how to write a filter.
2467
-
2468
- - - -
2469
- """
2470
- pulumi.set(__self__, "filter", filter)
2471
-
2472
- @property
2473
- @pulumi.getter
2474
- def filter(self) -> str:
2475
- """
2476
- Expression that defines the filter to apply across create/update
2477
- events of assets or findings as specified by the event type. The
2478
- expression is a list of zero or more restrictions combined via
2479
- logical operators AND and OR. Parentheses are supported, and OR
2480
- has higher precedence than AND.
2481
- Restrictions have the form <field> <operator> <value> and may have
2482
- a - character in front of them to indicate negation. The fields
2483
- map to those defined in the corresponding resource.
2484
- The supported operators are:
2485
- * = for all value types.
2486
- * >, <, >=, <= for integer values.
2487
- * :, meaning substring matching, for strings.
2488
- The supported value types are:
2489
- * string literals in quotes.
2490
- * integer literals without quotes.
2491
- * boolean literals true and false without quotes.
2492
- See
2493
- [Filtering notifications](https://cloud.google.com/security-command-center/docs/how-to-api-filter-notifications)
2494
- for information on how to write a filter.
2495
-
2496
- - - -
2497
- """
2498
- return pulumi.get(self, "filter")
2499
-
2500
-
2501
2383
  @pulumi.output_type
2502
2384
  class V2OrganizationNotificationConfigStreamingConfig(dict):
2503
2385
  def __init__(__self__, *,
@@ -22,8 +22,7 @@ class ConnectionArgs:
22
22
  network: pulumi.Input[str],
23
23
  reserved_peering_ranges: pulumi.Input[Sequence[pulumi.Input[str]]],
24
24
  service: pulumi.Input[str],
25
- deletion_policy: Optional[pulumi.Input[str]] = None,
26
- update_on_creation_fail: Optional[pulumi.Input[bool]] = None):
25
+ deletion_policy: Optional[pulumi.Input[str]] = None):
27
26
  """
28
27
  The set of arguments for constructing a Connection resource.
29
28
  :param pulumi.Input[str] network: Name of VPC network connected with service producers using VPC peering.
@@ -33,15 +32,12 @@ class ConnectionArgs:
33
32
  :param pulumi.Input[str] service: Provider peering service that is managing peering connectivity for a
34
33
  service provider organization. For Google services that support this functionality it is
35
34
  'servicenetworking.googleapis.com'.
36
- :param pulumi.Input[bool] update_on_creation_fail: When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
37
35
  """
38
36
  pulumi.set(__self__, "network", network)
39
37
  pulumi.set(__self__, "reserved_peering_ranges", reserved_peering_ranges)
40
38
  pulumi.set(__self__, "service", service)
41
39
  if deletion_policy is not None:
42
40
  pulumi.set(__self__, "deletion_policy", deletion_policy)
43
- if update_on_creation_fail is not None:
44
- pulumi.set(__self__, "update_on_creation_fail", update_on_creation_fail)
45
41
 
46
42
  @property
47
43
  @pulumi.getter
@@ -92,18 +88,6 @@ class ConnectionArgs:
92
88
  def deletion_policy(self, value: Optional[pulumi.Input[str]]):
93
89
  pulumi.set(self, "deletion_policy", value)
94
90
 
95
- @property
96
- @pulumi.getter(name="updateOnCreationFail")
97
- def update_on_creation_fail(self) -> Optional[pulumi.Input[bool]]:
98
- """
99
- When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
100
- """
101
- return pulumi.get(self, "update_on_creation_fail")
102
-
103
- @update_on_creation_fail.setter
104
- def update_on_creation_fail(self, value: Optional[pulumi.Input[bool]]):
105
- pulumi.set(self, "update_on_creation_fail", value)
106
-
107
91
 
108
92
  @pulumi.input_type
109
93
  class _ConnectionState:
@@ -112,8 +96,7 @@ class _ConnectionState:
112
96
  network: Optional[pulumi.Input[str]] = None,
113
97
  peering: Optional[pulumi.Input[str]] = None,
114
98
  reserved_peering_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
115
- service: Optional[pulumi.Input[str]] = None,
116
- update_on_creation_fail: Optional[pulumi.Input[bool]] = None):
99
+ service: Optional[pulumi.Input[str]] = None):
117
100
  """
118
101
  Input properties used for looking up and filtering Connection resources.
119
102
  :param pulumi.Input[str] network: Name of VPC network connected with service producers using VPC peering.
@@ -124,7 +107,6 @@ class _ConnectionState:
124
107
  :param pulumi.Input[str] service: Provider peering service that is managing peering connectivity for a
125
108
  service provider organization. For Google services that support this functionality it is
126
109
  'servicenetworking.googleapis.com'.
127
- :param pulumi.Input[bool] update_on_creation_fail: When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
128
110
  """
129
111
  if deletion_policy is not None:
130
112
  pulumi.set(__self__, "deletion_policy", deletion_policy)
@@ -136,8 +118,6 @@ class _ConnectionState:
136
118
  pulumi.set(__self__, "reserved_peering_ranges", reserved_peering_ranges)
137
119
  if service is not None:
138
120
  pulumi.set(__self__, "service", service)
139
- if update_on_creation_fail is not None:
140
- pulumi.set(__self__, "update_on_creation_fail", update_on_creation_fail)
141
121
 
142
122
  @property
143
123
  @pulumi.getter(name="deletionPolicy")
@@ -200,18 +180,6 @@ class _ConnectionState:
200
180
  def service(self, value: Optional[pulumi.Input[str]]):
201
181
  pulumi.set(self, "service", value)
202
182
 
203
- @property
204
- @pulumi.getter(name="updateOnCreationFail")
205
- def update_on_creation_fail(self) -> Optional[pulumi.Input[bool]]:
206
- """
207
- When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
208
- """
209
- return pulumi.get(self, "update_on_creation_fail")
210
-
211
- @update_on_creation_fail.setter
212
- def update_on_creation_fail(self, value: Optional[pulumi.Input[bool]]):
213
- pulumi.set(self, "update_on_creation_fail", value)
214
-
215
183
 
216
184
  class Connection(pulumi.CustomResource):
217
185
  @overload
@@ -222,7 +190,6 @@ class Connection(pulumi.CustomResource):
222
190
  network: Optional[pulumi.Input[str]] = None,
223
191
  reserved_peering_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
224
192
  service: Optional[pulumi.Input[str]] = None,
225
- update_on_creation_fail: Optional[pulumi.Input[bool]] = None,
226
193
  __props__=None):
227
194
  """
228
195
  Manages a private VPC connection with a GCP service provider. For more information see
@@ -285,7 +252,6 @@ class Connection(pulumi.CustomResource):
285
252
  :param pulumi.Input[str] service: Provider peering service that is managing peering connectivity for a
286
253
  service provider organization. For Google services that support this functionality it is
287
254
  'servicenetworking.googleapis.com'.
288
- :param pulumi.Input[bool] update_on_creation_fail: When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
289
255
  """
290
256
  ...
291
257
  @overload
@@ -364,7 +330,6 @@ class Connection(pulumi.CustomResource):
364
330
  network: Optional[pulumi.Input[str]] = None,
365
331
  reserved_peering_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
366
332
  service: Optional[pulumi.Input[str]] = None,
367
- update_on_creation_fail: Optional[pulumi.Input[bool]] = None,
368
333
  __props__=None):
369
334
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
370
335
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -384,7 +349,6 @@ class Connection(pulumi.CustomResource):
384
349
  if service is None and not opts.urn:
385
350
  raise TypeError("Missing required property 'service'")
386
351
  __props__.__dict__["service"] = service
387
- __props__.__dict__["update_on_creation_fail"] = update_on_creation_fail
388
352
  __props__.__dict__["peering"] = None
389
353
  super(Connection, __self__).__init__(
390
354
  'gcp:servicenetworking/connection:Connection',
@@ -400,8 +364,7 @@ class Connection(pulumi.CustomResource):
400
364
  network: Optional[pulumi.Input[str]] = None,
401
365
  peering: Optional[pulumi.Input[str]] = None,
402
366
  reserved_peering_ranges: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
403
- service: Optional[pulumi.Input[str]] = None,
404
- update_on_creation_fail: Optional[pulumi.Input[bool]] = None) -> 'Connection':
367
+ service: Optional[pulumi.Input[str]] = None) -> 'Connection':
405
368
  """
406
369
  Get an existing Connection resource's state with the given name, id, and optional extra
407
370
  properties used to qualify the lookup.
@@ -417,7 +380,6 @@ class Connection(pulumi.CustomResource):
417
380
  :param pulumi.Input[str] service: Provider peering service that is managing peering connectivity for a
418
381
  service provider organization. For Google services that support this functionality it is
419
382
  'servicenetworking.googleapis.com'.
420
- :param pulumi.Input[bool] update_on_creation_fail: When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
421
383
  """
422
384
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
423
385
 
@@ -428,7 +390,6 @@ class Connection(pulumi.CustomResource):
428
390
  __props__.__dict__["peering"] = peering
429
391
  __props__.__dict__["reserved_peering_ranges"] = reserved_peering_ranges
430
392
  __props__.__dict__["service"] = service
431
- __props__.__dict__["update_on_creation_fail"] = update_on_creation_fail
432
393
  return Connection(resource_name, opts=opts, __props__=__props__)
433
394
 
434
395
  @property
@@ -472,11 +433,3 @@ class Connection(pulumi.CustomResource):
472
433
  """
473
434
  return pulumi.get(self, "service")
474
435
 
475
- @property
476
- @pulumi.getter(name="updateOnCreationFail")
477
- def update_on_creation_fail(self) -> pulumi.Output[Optional[bool]]:
478
- """
479
- When set to true, enforce an update of the reserved peering ranges on the existing service networking connection in case of a new connection creation failure.
480
- """
481
- return pulumi.get(self, "update_on_creation_fail")
482
-
pulumi_gcp/sql/_inputs.py CHANGED
@@ -1839,10 +1839,6 @@ if not MYPY:
1839
1839
  """
1840
1840
  Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in `ssl_mode`. It will be fully deprecated in a future major release. For now, please use `ssl_mode` with a compatible `require_ssl` value instead.
1841
1841
  """
1842
- server_ca_mode: NotRequired[pulumi.Input[str]]
1843
- """
1844
- Specify how the server certificate's Certificate Authority is hosted. Supported value is `GOOGLE_MANAGED_INTERNAL_CA`.
1845
- """
1846
1842
  ssl_mode: NotRequired[pulumi.Input[str]]
1847
1843
  """
1848
1844
  Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to `require_ssl`. To change this field, also set the correspoding value in `require_ssl`.
@@ -1863,7 +1859,6 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1863
1859
  private_network: Optional[pulumi.Input[str]] = None,
1864
1860
  psc_configs: Optional[pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsIpConfigurationPscConfigArgs']]]] = None,
1865
1861
  require_ssl: Optional[pulumi.Input[bool]] = None,
1866
- server_ca_mode: Optional[pulumi.Input[str]] = None,
1867
1862
  ssl_mode: Optional[pulumi.Input[str]] = None):
1868
1863
  """
1869
1864
  :param pulumi.Input[str] allocated_ip_range: The name of the allocated ip range for the private ip CloudSQL instance. For example: "google-managed-services-default". If set, the instance ip will be created in the allocated range. The range name must comply with [RFC 1035](https://datatracker.ietf.org/doc/html/rfc1035). Specifically, the name must be 1-63 characters long and match the regular expression a-z?.
@@ -1878,7 +1873,6 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1878
1873
  This setting can be updated, but it cannot be removed after it is set.
1879
1874
  :param pulumi.Input[Sequence[pulumi.Input['DatabaseInstanceSettingsIpConfigurationPscConfigArgs']]] psc_configs: PSC settings for a Cloud SQL instance.
1880
1875
  :param pulumi.Input[bool] require_ssl: Whether SSL connections over IP are enforced or not. To change this field, also set the corresponding value in `ssl_mode`. It will be fully deprecated in a future major release. For now, please use `ssl_mode` with a compatible `require_ssl` value instead.
1881
- :param pulumi.Input[str] server_ca_mode: Specify how the server certificate's Certificate Authority is hosted. Supported value is `GOOGLE_MANAGED_INTERNAL_CA`.
1882
1876
  :param pulumi.Input[str] ssl_mode: Specify how SSL connection should be enforced in DB connections. This field provides more SSL enforcement options compared to `require_ssl`. To change this field, also set the correspoding value in `require_ssl`.
1883
1877
  * For PostgreSQL instances, the value pairs are listed in the [API reference doc](https://cloud.google.com/sql/docs/postgres/admin-api/rest/v1beta4/instances#ipconfiguration) for `ssl_mode` field.
1884
1878
  * For MySQL instances, use the same value pairs as the PostgreSQL instances.
@@ -1901,8 +1895,6 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1901
1895
  pulumi.log.warn("""require_ssl is deprecated: `require_ssl` will be fully deprecated in a future major release. For now, please use `ssl_mode` with a compatible `require_ssl` value instead.""")
1902
1896
  if require_ssl is not None:
1903
1897
  pulumi.set(__self__, "require_ssl", require_ssl)
1904
- if server_ca_mode is not None:
1905
- pulumi.set(__self__, "server_ca_mode", server_ca_mode)
1906
1898
  if ssl_mode is not None:
1907
1899
  pulumi.set(__self__, "ssl_mode", ssl_mode)
1908
1900
 
@@ -1994,18 +1986,6 @@ class DatabaseInstanceSettingsIpConfigurationArgs:
1994
1986
  def require_ssl(self, value: Optional[pulumi.Input[bool]]):
1995
1987
  pulumi.set(self, "require_ssl", value)
1996
1988
 
1997
- @property
1998
- @pulumi.getter(name="serverCaMode")
1999
- def server_ca_mode(self) -> Optional[pulumi.Input[str]]:
2000
- """
2001
- Specify how the server certificate's Certificate Authority is hosted. Supported value is `GOOGLE_MANAGED_INTERNAL_CA`.
2002
- """
2003
- return pulumi.get(self, "server_ca_mode")
2004
-
2005
- @server_ca_mode.setter
2006
- def server_ca_mode(self, value: Optional[pulumi.Input[str]]):
2007
- pulumi.set(self, "server_ca_mode", value)
2008
-
2009
1989
  @property
2010
1990
  @pulumi.getter(name="sslMode")
2011
1991
  def ssl_mode(self) -> Optional[pulumi.Input[str]]: