pulumi-gcp 7.30.2a1720626904__py3-none-any.whl → 7.31.0__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 (86) hide show
  1. pulumi_gcp/__init__.py +40 -0
  2. pulumi_gcp/applicationintegration/auth_config.py +2 -2
  3. pulumi_gcp/bigquery/reservation_assignment.py +48 -30
  4. pulumi_gcp/certificateauthority/certificate_template.py +2 -2
  5. pulumi_gcp/certificatemanager/_inputs.py +33 -0
  6. pulumi_gcp/certificatemanager/outputs.py +36 -0
  7. pulumi_gcp/certificatemanager/trust_config.py +107 -0
  8. pulumi_gcp/compute/_inputs.py +3 -6
  9. pulumi_gcp/compute/ca_external_account_key.py +2 -2
  10. pulumi_gcp/compute/get_health_check.py +11 -1
  11. pulumi_gcp/compute/global_forwarding_rule.py +2 -4
  12. pulumi_gcp/compute/health_check.py +124 -0
  13. pulumi_gcp/compute/instance.py +14 -14
  14. pulumi_gcp/compute/instance_group_membership.py +2 -2
  15. pulumi_gcp/compute/outputs.py +4 -8
  16. pulumi_gcp/compute/region_network_endpoint.py +2 -2
  17. pulumi_gcp/compute/region_network_endpoint_group.py +2 -2
  18. pulumi_gcp/compute/subnetwork.py +2 -2
  19. pulumi_gcp/config/__init__.pyi +2 -0
  20. pulumi_gcp/config/vars.py +4 -0
  21. pulumi_gcp/container/_inputs.py +3 -3
  22. pulumi_gcp/container/outputs.py +4 -4
  23. pulumi_gcp/containeranalysis/note.py +2 -2
  24. pulumi_gcp/dataloss/_inputs.py +3 -0
  25. pulumi_gcp/dataloss/outputs.py +2 -0
  26. pulumi_gcp/dataloss/prevention_job_trigger.py +90 -0
  27. pulumi_gcp/dataplex/_inputs.py +56 -0
  28. pulumi_gcp/dataplex/datascan.py +12 -0
  29. pulumi_gcp/dataplex/outputs.py +52 -0
  30. pulumi_gcp/filestore/backup.py +2 -2
  31. pulumi_gcp/filestore/instance.py +2 -2
  32. pulumi_gcp/filestore/snapshot.py +2 -2
  33. pulumi_gcp/gkehub/_inputs.py +20 -0
  34. pulumi_gcp/gkehub/outputs.py +12 -0
  35. pulumi_gcp/kms/__init__.py +2 -0
  36. pulumi_gcp/kms/crypto_key.py +7 -7
  37. pulumi_gcp/kms/get_crypto_keys.py +143 -0
  38. pulumi_gcp/kms/get_key_rings.py +119 -0
  39. pulumi_gcp/kms/outputs.py +270 -0
  40. pulumi_gcp/logging/_inputs.py +12 -12
  41. pulumi_gcp/logging/folder_bucket_config.py +6 -6
  42. pulumi_gcp/logging/organization_bucket_config.py +6 -6
  43. pulumi_gcp/logging/outputs.py +8 -8
  44. pulumi_gcp/logging/project_bucket_config.py +6 -6
  45. pulumi_gcp/looker/instance.py +2 -2
  46. pulumi_gcp/monitoring/custom_service.py +2 -2
  47. pulumi_gcp/monitoring/generic_service.py +2 -2
  48. pulumi_gcp/monitoring/notification_channel.py +2 -2
  49. pulumi_gcp/monitoring/slo.py +2 -2
  50. pulumi_gcp/netapp/storage_pool.py +132 -53
  51. pulumi_gcp/netapp/volume.py +60 -4
  52. pulumi_gcp/networksecurity/address_group.py +85 -1
  53. pulumi_gcp/networksecurity/firewall_endpoint.py +2 -2
  54. pulumi_gcp/networksecurity/firewall_endpoint_association.py +2 -2
  55. pulumi_gcp/networksecurity/security_profile_group.py +2 -2
  56. pulumi_gcp/orgpolicy/_inputs.py +40 -10
  57. pulumi_gcp/orgpolicy/outputs.py +28 -8
  58. pulumi_gcp/orgpolicy/policy.py +52 -35
  59. pulumi_gcp/provider.py +20 -0
  60. pulumi_gcp/pubsub/_inputs.py +3 -3
  61. pulumi_gcp/pubsub/outputs.py +4 -4
  62. pulumi_gcp/pulumi-plugin.json +1 -1
  63. pulumi_gcp/securesourcemanager/__init__.py +5 -0
  64. pulumi_gcp/securesourcemanager/_inputs.py +284 -0
  65. pulumi_gcp/securesourcemanager/get_repository_iam_policy.py +177 -0
  66. pulumi_gcp/securesourcemanager/outputs.py +202 -0
  67. pulumi_gcp/securesourcemanager/repository.py +715 -0
  68. pulumi_gcp/securesourcemanager/repository_iam_binding.py +804 -0
  69. pulumi_gcp/securesourcemanager/repository_iam_member.py +804 -0
  70. pulumi_gcp/securesourcemanager/repository_iam_policy.py +643 -0
  71. pulumi_gcp/securitycenter/__init__.py +1 -0
  72. pulumi_gcp/securitycenter/_inputs.py +93 -0
  73. pulumi_gcp/securitycenter/outputs.py +59 -0
  74. pulumi_gcp/securitycenter/v2_organization_notification_config.py +576 -0
  75. pulumi_gcp/securityposture/posture_deployment.py +0 -78
  76. pulumi_gcp/servicenetworking/vpc_service_controls.py +2 -2
  77. pulumi_gcp/vertex/_inputs.py +21 -1
  78. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +222 -0
  79. pulumi_gcp/vertex/outputs.py +15 -1
  80. pulumi_gcp/workstations/_inputs.py +33 -1
  81. pulumi_gcp/workstations/outputs.py +23 -1
  82. pulumi_gcp/workstations/workstation_config.py +18 -0
  83. {pulumi_gcp-7.30.2a1720626904.dist-info → pulumi_gcp-7.31.0.dist-info}/METADATA +1 -1
  84. {pulumi_gcp-7.30.2a1720626904.dist-info → pulumi_gcp-7.31.0.dist-info}/RECORD +86 -78
  85. {pulumi_gcp-7.30.2a1720626904.dist-info → pulumi_gcp-7.31.0.dist-info}/WHEEL +0 -0
  86. {pulumi_gcp-7.30.2a1720626904.dist-info → pulumi_gcp-7.31.0.dist-info}/top_level.txt +0 -0
@@ -201,7 +201,7 @@ if not MYPY:
201
201
  field_path: pulumi.Input[str]
202
202
  """
203
203
  The LogEntry field path to index.
204
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
204
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
205
205
  """
206
206
  type: pulumi.Input[str]
207
207
  """
@@ -217,7 +217,7 @@ class BillingAccountBucketConfigIndexConfigArgs:
217
217
  type: pulumi.Input[str]):
218
218
  """
219
219
  :param pulumi.Input[str] field_path: The LogEntry field path to index.
220
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
220
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
221
221
  :param pulumi.Input[str] type: The type of data in this index. Allowed types include `INDEX_TYPE_UNSPECIFIED`, `INDEX_TYPE_STRING` and `INDEX_TYPE_INTEGER`.
222
222
  """
223
223
  pulumi.set(__self__, "field_path", field_path)
@@ -228,7 +228,7 @@ class BillingAccountBucketConfigIndexConfigArgs:
228
228
  def field_path(self) -> pulumi.Input[str]:
229
229
  """
230
230
  The LogEntry field path to index.
231
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
231
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
232
232
  """
233
233
  return pulumi.get(self, "field_path")
234
234
 
@@ -514,7 +514,7 @@ if not MYPY:
514
514
  field_path: pulumi.Input[str]
515
515
  """
516
516
  The LogEntry field path to index.
517
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
517
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
518
518
  """
519
519
  type: pulumi.Input[str]
520
520
  """
@@ -530,7 +530,7 @@ class FolderBucketConfigIndexConfigArgs:
530
530
  type: pulumi.Input[str]):
531
531
  """
532
532
  :param pulumi.Input[str] field_path: The LogEntry field path to index.
533
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
533
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
534
534
  :param pulumi.Input[str] type: The type of data in this index. Allowed types include `INDEX_TYPE_UNSPECIFIED`, `INDEX_TYPE_STRING` and `INDEX_TYPE_INTEGER`.
535
535
  """
536
536
  pulumi.set(__self__, "field_path", field_path)
@@ -541,7 +541,7 @@ class FolderBucketConfigIndexConfigArgs:
541
541
  def field_path(self) -> pulumi.Input[str]:
542
542
  """
543
543
  The LogEntry field path to index.
544
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
544
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
545
545
  """
546
546
  return pulumi.get(self, "field_path")
547
547
 
@@ -1482,7 +1482,7 @@ if not MYPY:
1482
1482
  field_path: pulumi.Input[str]
1483
1483
  """
1484
1484
  The LogEntry field path to index.
1485
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
1485
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
1486
1486
  """
1487
1487
  type: pulumi.Input[str]
1488
1488
  """
@@ -1498,7 +1498,7 @@ class OrganizationBucketConfigIndexConfigArgs:
1498
1498
  type: pulumi.Input[str]):
1499
1499
  """
1500
1500
  :param pulumi.Input[str] field_path: The LogEntry field path to index.
1501
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
1501
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
1502
1502
  :param pulumi.Input[str] type: The type of data in this index. Allowed types include `INDEX_TYPE_UNSPECIFIED`, `INDEX_TYPE_STRING` and `INDEX_TYPE_INTEGER`.
1503
1503
  """
1504
1504
  pulumi.set(__self__, "field_path", field_path)
@@ -1509,7 +1509,7 @@ class OrganizationBucketConfigIndexConfigArgs:
1509
1509
  def field_path(self) -> pulumi.Input[str]:
1510
1510
  """
1511
1511
  The LogEntry field path to index.
1512
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
1512
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
1513
1513
  """
1514
1514
  return pulumi.get(self, "field_path")
1515
1515
 
@@ -1795,7 +1795,7 @@ if not MYPY:
1795
1795
  field_path: pulumi.Input[str]
1796
1796
  """
1797
1797
  The LogEntry field path to index.
1798
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
1798
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
1799
1799
  """
1800
1800
  type: pulumi.Input[str]
1801
1801
  """
@@ -1811,7 +1811,7 @@ class ProjectBucketConfigIndexConfigArgs:
1811
1811
  type: pulumi.Input[str]):
1812
1812
  """
1813
1813
  :param pulumi.Input[str] field_path: The LogEntry field path to index.
1814
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
1814
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
1815
1815
  :param pulumi.Input[str] type: The type of data in this index. Allowed types include `INDEX_TYPE_UNSPECIFIED`, `INDEX_TYPE_STRING` and `INDEX_TYPE_INTEGER`.
1816
1816
  """
1817
1817
  pulumi.set(__self__, "field_path", field_path)
@@ -1822,7 +1822,7 @@ class ProjectBucketConfigIndexConfigArgs:
1822
1822
  def field_path(self) -> pulumi.Input[str]:
1823
1823
  """
1824
1824
  The LogEntry field path to index.
1825
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
1825
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
1826
1826
  """
1827
1827
  return pulumi.get(self, "field_path")
1828
1828
 
@@ -329,10 +329,10 @@ class FolderBucketConfig(pulumi.CustomResource):
329
329
  location="global",
330
330
  retention_days=30,
331
331
  bucket_id="_Default",
332
- index_configs={
333
- "filePath": "jsonPayload.request.status",
332
+ index_configs=[{
333
+ "fieldPath": "jsonPayload.request.status",
334
334
  "type": "INDEX_TYPE_STRING",
335
- })
335
+ }])
336
336
  ```
337
337
 
338
338
  ## Import
@@ -386,10 +386,10 @@ class FolderBucketConfig(pulumi.CustomResource):
386
386
  location="global",
387
387
  retention_days=30,
388
388
  bucket_id="_Default",
389
- index_configs={
390
- "filePath": "jsonPayload.request.status",
389
+ index_configs=[{
390
+ "fieldPath": "jsonPayload.request.status",
391
391
  "type": "INDEX_TYPE_STRING",
392
- })
392
+ }])
393
393
  ```
394
394
 
395
395
  ## Import
@@ -327,10 +327,10 @@ class OrganizationBucketConfig(pulumi.CustomResource):
327
327
  location="global",
328
328
  retention_days=30,
329
329
  bucket_id="_Default",
330
- index_configs={
331
- "filePath": "jsonPayload.request.status",
330
+ index_configs=[{
331
+ "fieldPath": "jsonPayload.request.status",
332
332
  "type": "INDEX_TYPE_STRING",
333
- })
333
+ }])
334
334
  ```
335
335
 
336
336
  ## Import
@@ -382,10 +382,10 @@ class OrganizationBucketConfig(pulumi.CustomResource):
382
382
  location="global",
383
383
  retention_days=30,
384
384
  bucket_id="_Default",
385
- index_configs={
386
- "filePath": "jsonPayload.request.status",
385
+ index_configs=[{
386
+ "fieldPath": "jsonPayload.request.status",
387
387
  "type": "INDEX_TYPE_STRING",
388
- })
388
+ }])
389
389
  ```
390
390
 
391
391
  ## Import
@@ -168,7 +168,7 @@ class BillingAccountBucketConfigIndexConfig(dict):
168
168
  type: str):
169
169
  """
170
170
  :param str field_path: The LogEntry field path to index.
171
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
171
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
172
172
  :param str type: The type of data in this index. Allowed types include `INDEX_TYPE_UNSPECIFIED`, `INDEX_TYPE_STRING` and `INDEX_TYPE_INTEGER`.
173
173
  """
174
174
  pulumi.set(__self__, "field_path", field_path)
@@ -179,7 +179,7 @@ class BillingAccountBucketConfigIndexConfig(dict):
179
179
  def field_path(self) -> str:
180
180
  """
181
181
  The LogEntry field path to index.
182
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
182
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
183
183
  """
184
184
  return pulumi.get(self, "field_path")
185
185
 
@@ -411,7 +411,7 @@ class FolderBucketConfigIndexConfig(dict):
411
411
  type: str):
412
412
  """
413
413
  :param str field_path: The LogEntry field path to index.
414
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
414
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
415
415
  :param str type: The type of data in this index. Allowed types include `INDEX_TYPE_UNSPECIFIED`, `INDEX_TYPE_STRING` and `INDEX_TYPE_INTEGER`.
416
416
  """
417
417
  pulumi.set(__self__, "field_path", field_path)
@@ -422,7 +422,7 @@ class FolderBucketConfigIndexConfig(dict):
422
422
  def field_path(self) -> str:
423
423
  """
424
424
  The LogEntry field path to index.
425
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
425
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
426
426
  """
427
427
  return pulumi.get(self, "field_path")
428
428
 
@@ -1157,7 +1157,7 @@ class OrganizationBucketConfigIndexConfig(dict):
1157
1157
  type: str):
1158
1158
  """
1159
1159
  :param str field_path: The LogEntry field path to index.
1160
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
1160
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
1161
1161
  :param str type: The type of data in this index. Allowed types include `INDEX_TYPE_UNSPECIFIED`, `INDEX_TYPE_STRING` and `INDEX_TYPE_INTEGER`.
1162
1162
  """
1163
1163
  pulumi.set(__self__, "field_path", field_path)
@@ -1168,7 +1168,7 @@ class OrganizationBucketConfigIndexConfig(dict):
1168
1168
  def field_path(self) -> str:
1169
1169
  """
1170
1170
  The LogEntry field path to index.
1171
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
1171
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
1172
1172
  """
1173
1173
  return pulumi.get(self, "field_path")
1174
1174
 
@@ -1400,7 +1400,7 @@ class ProjectBucketConfigIndexConfig(dict):
1400
1400
  type: str):
1401
1401
  """
1402
1402
  :param str field_path: The LogEntry field path to index.
1403
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
1403
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
1404
1404
  :param str type: The type of data in this index. Allowed types include `INDEX_TYPE_UNSPECIFIED`, `INDEX_TYPE_STRING` and `INDEX_TYPE_INTEGER`.
1405
1405
  """
1406
1406
  pulumi.set(__self__, "field_path", field_path)
@@ -1411,7 +1411,7 @@ class ProjectBucketConfigIndexConfig(dict):
1411
1411
  def field_path(self) -> str:
1412
1412
  """
1413
1413
  The LogEntry field path to index.
1414
- Note that some paths are automatically indexed, and other paths are not eligible for indexing. See indexing documentation for details.
1414
+ Note that some paths are automatically indexed, and other paths are not eligible for indexing. See [indexing documentation](https://cloud.google.com/logging/docs/analyze/custom-index) for details.
1415
1415
  """
1416
1416
  return pulumi.get(self, "field_path")
1417
1417
 
@@ -457,10 +457,10 @@ class ProjectBucketConfig(pulumi.CustomResource):
457
457
  location="global",
458
458
  retention_days=30,
459
459
  bucket_id="custom-bucket",
460
- index_configs={
461
- "filePath": "jsonPayload.request.status",
460
+ index_configs=[{
461
+ "fieldPath": "jsonPayload.request.status",
462
462
  "type": "INDEX_TYPE_STRING",
463
- })
463
+ }])
464
464
  ```
465
465
 
466
466
  ## Import
@@ -584,10 +584,10 @@ class ProjectBucketConfig(pulumi.CustomResource):
584
584
  location="global",
585
585
  retention_days=30,
586
586
  bucket_id="custom-bucket",
587
- index_configs={
588
- "filePath": "jsonPayload.request.status",
587
+ index_configs=[{
588
+ "fieldPath": "jsonPayload.request.status",
589
589
  "type": "INDEX_TYPE_STRING",
590
- })
590
+ }])
591
591
  ```
592
592
 
593
593
  ## Import
@@ -786,8 +786,8 @@ class Instance(pulumi.CustomResource):
786
786
 
787
787
  * [API documentation](https://cloud.google.com/looker/docs/reference/rest/v1/projects.locations.instances)
788
788
  * How-to Guides
789
- * [Create a Looker (Google Cloud core) instance](https://cloud.google.com/looker/docs/looker-core-instance-create)
790
789
  * [Configure a Looker (Google Cloud core) instance](https://cloud.google.com/looker/docs/looker-core-instance-setup)
790
+ * [Create a Looker (Google Cloud core) instance](https://cloud.google.com/looker/docs/looker-core-instance-create)
791
791
 
792
792
  ## Example Usage
793
793
 
@@ -1033,8 +1033,8 @@ class Instance(pulumi.CustomResource):
1033
1033
 
1034
1034
  * [API documentation](https://cloud.google.com/looker/docs/reference/rest/v1/projects.locations.instances)
1035
1035
  * How-to Guides
1036
- * [Create a Looker (Google Cloud core) instance](https://cloud.google.com/looker/docs/looker-core-instance-create)
1037
1036
  * [Configure a Looker (Google Cloud core) instance](https://cloud.google.com/looker/docs/looker-core-instance-setup)
1037
+ * [Create a Looker (Google Cloud core) instance](https://cloud.google.com/looker/docs/looker-core-instance-create)
1038
1038
 
1039
1039
  ## Example Usage
1040
1040
 
@@ -265,8 +265,8 @@ class CustomService(pulumi.CustomResource):
265
265
 
266
266
  * [API documentation](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/services)
267
267
  * How-to Guides
268
- * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
269
268
  * [Monitoring API Documentation](https://cloud.google.com/monitoring/api/v3/)
269
+ * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
270
270
  * [Service-orientation on Wikipedia](https://en.wikipedia.org/wiki/Service-orientation)
271
271
 
272
272
  ## Example Usage
@@ -333,8 +333,8 @@ class CustomService(pulumi.CustomResource):
333
333
 
334
334
  * [API documentation](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/services)
335
335
  * How-to Guides
336
- * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
337
336
  * [Monitoring API Documentation](https://cloud.google.com/monitoring/api/v3/)
337
+ * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
338
338
  * [Service-orientation on Wikipedia](https://en.wikipedia.org/wiki/Service-orientation)
339
339
 
340
340
  ## Example Usage
@@ -302,8 +302,8 @@ class GenericService(pulumi.CustomResource):
302
302
 
303
303
  * [API documentation](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/services)
304
304
  * How-to Guides
305
- * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
306
305
  * [Monitoring API Documentation](https://cloud.google.com/monitoring/api/v3/)
306
+ * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
307
307
  * [Service-orientation on Wikipedia](https://en.wikipedia.org/wiki/Service-orientation)
308
308
 
309
309
  ## Example Usage
@@ -390,8 +390,8 @@ class GenericService(pulumi.CustomResource):
390
390
 
391
391
  * [API documentation](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/services)
392
392
  * How-to Guides
393
- * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
394
393
  * [Monitoring API Documentation](https://cloud.google.com/monitoring/api/v3/)
394
+ * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
395
395
  * [Service-orientation on Wikipedia](https://en.wikipedia.org/wiki/Service-orientation)
396
396
 
397
397
  ## Example Usage
@@ -470,8 +470,8 @@ class NotificationChannel(pulumi.CustomResource):
470
470
 
471
471
  * [API documentation](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.notificationChannels)
472
472
  * How-to Guides
473
- * [Notification Options](https://cloud.google.com/monitoring/support/notification-options)
474
473
  * [Monitoring API Documentation](https://cloud.google.com/monitoring/api/v3/)
474
+ * [Notification Options](https://cloud.google.com/monitoring/support/notification-options)
475
475
 
476
476
  ## Example Usage
477
477
 
@@ -577,8 +577,8 @@ class NotificationChannel(pulumi.CustomResource):
577
577
 
578
578
  * [API documentation](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/projects.notificationChannels)
579
579
  * How-to Guides
580
- * [Notification Options](https://cloud.google.com/monitoring/support/notification-options)
581
580
  * [Monitoring API Documentation](https://cloud.google.com/monitoring/api/v3/)
581
+ * [Notification Options](https://cloud.google.com/monitoring/support/notification-options)
582
582
 
583
583
  ## Example Usage
584
584
 
@@ -564,8 +564,8 @@ class Slo(pulumi.CustomResource):
564
564
 
565
565
  * [API documentation](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/services.serviceLevelObjectives)
566
566
  * How-to Guides
567
- * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
568
567
  * [Monitoring API Documentation](https://cloud.google.com/monitoring/api/v3/)
568
+ * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
569
569
 
570
570
  ## Example Usage
571
571
 
@@ -812,8 +812,8 @@ class Slo(pulumi.CustomResource):
812
812
 
813
813
  * [API documentation](https://cloud.google.com/monitoring/api/ref_v3/rest/v3/services.serviceLevelObjectives)
814
814
  * How-to Guides
815
- * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
816
815
  * [Monitoring API Documentation](https://cloud.google.com/monitoring/api/v3/)
816
+ * [Service Monitoring](https://cloud.google.com/monitoring/service-monitoring)
817
817
 
818
818
  ## Example Usage
819
819