pulumiverse-scaleway 1.34.0a1756885226__py3-none-any.whl → 1.34.0a1757664666__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 (52) hide show
  1. pulumiverse_scaleway/__init__.py +8 -0
  2. pulumiverse_scaleway/_inputs.py +235 -34
  3. pulumiverse_scaleway/cockpit.py +14 -0
  4. pulumiverse_scaleway/container_namespace.py +16 -7
  5. pulumiverse_scaleway/containers/namespace.py +16 -7
  6. pulumiverse_scaleway/database_user.py +83 -11
  7. pulumiverse_scaleway/databases/user.py +83 -11
  8. pulumiverse_scaleway/elasticmetal/outputs.py +4 -0
  9. pulumiverse_scaleway/function_namespace.py +16 -7
  10. pulumiverse_scaleway/functions/namespace.py +16 -7
  11. pulumiverse_scaleway/get_mongo_db_instance.py +34 -1
  12. pulumiverse_scaleway/hosting/_inputs.py +42 -0
  13. pulumiverse_scaleway/hosting/outputs.py +84 -0
  14. pulumiverse_scaleway/instance/_inputs.py +107 -13
  15. pulumiverse_scaleway/instance/outputs.py +187 -10
  16. pulumiverse_scaleway/instance/security_group_rules.py +16 -16
  17. pulumiverse_scaleway/instance/snapshot.py +26 -27
  18. pulumiverse_scaleway/instance_security_group_rules.py +16 -16
  19. pulumiverse_scaleway/instance_snapshot.py +26 -27
  20. pulumiverse_scaleway/loadbalancer_backend.py +39 -0
  21. pulumiverse_scaleway/loadbalancers/backend.py +39 -0
  22. pulumiverse_scaleway/loadbalancers/outputs.py +16 -0
  23. pulumiverse_scaleway/mnq/_inputs.py +52 -0
  24. pulumiverse_scaleway/mnq/outputs.py +47 -0
  25. pulumiverse_scaleway/mnq/sqs_queue.py +159 -0
  26. pulumiverse_scaleway/mnq_sqs_queue.py +159 -0
  27. pulumiverse_scaleway/mongo_db_instance.py +171 -23
  28. pulumiverse_scaleway/mongo_db_snapshot.py +2 -2
  29. pulumiverse_scaleway/mongodb/__init__.py +1 -0
  30. pulumiverse_scaleway/mongodb/_inputs.py +73 -0
  31. pulumiverse_scaleway/mongodb/get_instance.py +34 -1
  32. pulumiverse_scaleway/mongodb/instance.py +171 -23
  33. pulumiverse_scaleway/mongodb/outputs.py +62 -0
  34. pulumiverse_scaleway/mongodb/snapshot.py +2 -2
  35. pulumiverse_scaleway/mongodb/user.py +508 -0
  36. pulumiverse_scaleway/network/outputs.py +4 -0
  37. pulumiverse_scaleway/object/_inputs.py +14 -0
  38. pulumiverse_scaleway/object/bucket.py +13 -0
  39. pulumiverse_scaleway/object/outputs.py +30 -0
  40. pulumiverse_scaleway/object_bucket.py +13 -0
  41. pulumiverse_scaleway/observability/__init__.py +1 -0
  42. pulumiverse_scaleway/observability/cockpit.py +14 -0
  43. pulumiverse_scaleway/observability/get_sources.py +376 -0
  44. pulumiverse_scaleway/observability/outputs.py +140 -0
  45. pulumiverse_scaleway/outputs.py +387 -26
  46. pulumiverse_scaleway/pulumi-plugin.json +1 -1
  47. pulumiverse_scaleway/secret.py +8 -0
  48. pulumiverse_scaleway/secrets/secret.py +8 -0
  49. {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757664666.dist-info}/METADATA +1 -1
  50. {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757664666.dist-info}/RECORD +52 -50
  51. {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757664666.dist-info}/WHEEL +0 -0
  52. {pulumiverse_scaleway-1.34.0a1756885226.dist-info → pulumiverse_scaleway-1.34.0a1757664666.dist-info}/top_level.txt +0 -0
@@ -22,6 +22,7 @@ __all__ = [
22
22
  'TokenScopes',
23
23
  'GetInstanceEndpointResult',
24
24
  'GetInstancePushUrlResult',
25
+ 'GetSourcesSourceResult',
25
26
  ]
26
27
 
27
28
  @pulumi.output_type
@@ -424,3 +425,142 @@ class GetInstancePushUrlResult(dict):
424
425
  return pulumi.get(self, "push_metrics_url")
425
426
 
426
427
 
428
+ @pulumi.output_type
429
+ class GetSourcesSourceResult(dict):
430
+ def __init__(__self__, *,
431
+ created_at: builtins.str,
432
+ id: builtins.str,
433
+ name: builtins.str,
434
+ origin: builtins.str,
435
+ project_id: builtins.str,
436
+ push_url: builtins.str,
437
+ region: builtins.str,
438
+ retention_days: builtins.int,
439
+ synchronized_with_grafana: builtins.bool,
440
+ type: builtins.str,
441
+ updated_at: builtins.str,
442
+ url: builtins.str):
443
+ """
444
+ :param builtins.str created_at: The date and time of the creation of the cockpit datasource.
445
+ :param builtins.str id: The ID of the data source.
446
+ :param builtins.str name: Filter sources by name.
447
+ :param builtins.str origin: Filter sources by origin. Possible values are: `scaleway`, `external`, `custom`.
448
+ :param builtins.str project_id: The project ID the cockpit sources are associated with.
449
+ :param builtins.str push_url: The URL endpoint used for pushing data to the cockpit data source.
450
+ :param builtins.str region: The region in which the cockpit sources are located.
451
+ :param builtins.int retention_days: The number of days to retain data.
452
+ :param builtins.bool synchronized_with_grafana: Indicates whether the data source is synchronized with Grafana.
453
+ :param builtins.str type: Filter sources by type. Possible values are: `metrics`, `logs`, `traces`.
454
+ :param builtins.str updated_at: The date and time of the last update of the cockpit datasource.
455
+ :param builtins.str url: The URL of the datasource.
456
+ """
457
+ pulumi.set(__self__, "created_at", created_at)
458
+ pulumi.set(__self__, "id", id)
459
+ pulumi.set(__self__, "name", name)
460
+ pulumi.set(__self__, "origin", origin)
461
+ pulumi.set(__self__, "project_id", project_id)
462
+ pulumi.set(__self__, "push_url", push_url)
463
+ pulumi.set(__self__, "region", region)
464
+ pulumi.set(__self__, "retention_days", retention_days)
465
+ pulumi.set(__self__, "synchronized_with_grafana", synchronized_with_grafana)
466
+ pulumi.set(__self__, "type", type)
467
+ pulumi.set(__self__, "updated_at", updated_at)
468
+ pulumi.set(__self__, "url", url)
469
+
470
+ @property
471
+ @pulumi.getter(name="createdAt")
472
+ def created_at(self) -> builtins.str:
473
+ """
474
+ The date and time of the creation of the cockpit datasource.
475
+ """
476
+ return pulumi.get(self, "created_at")
477
+
478
+ @property
479
+ @pulumi.getter
480
+ def id(self) -> builtins.str:
481
+ """
482
+ The ID of the data source.
483
+ """
484
+ return pulumi.get(self, "id")
485
+
486
+ @property
487
+ @pulumi.getter
488
+ def name(self) -> builtins.str:
489
+ """
490
+ Filter sources by name.
491
+ """
492
+ return pulumi.get(self, "name")
493
+
494
+ @property
495
+ @pulumi.getter
496
+ def origin(self) -> builtins.str:
497
+ """
498
+ Filter sources by origin. Possible values are: `scaleway`, `external`, `custom`.
499
+ """
500
+ return pulumi.get(self, "origin")
501
+
502
+ @property
503
+ @pulumi.getter(name="projectId")
504
+ def project_id(self) -> builtins.str:
505
+ """
506
+ The project ID the cockpit sources are associated with.
507
+ """
508
+ return pulumi.get(self, "project_id")
509
+
510
+ @property
511
+ @pulumi.getter(name="pushUrl")
512
+ def push_url(self) -> builtins.str:
513
+ """
514
+ The URL endpoint used for pushing data to the cockpit data source.
515
+ """
516
+ return pulumi.get(self, "push_url")
517
+
518
+ @property
519
+ @pulumi.getter
520
+ def region(self) -> builtins.str:
521
+ """
522
+ The region in which the cockpit sources are located.
523
+ """
524
+ return pulumi.get(self, "region")
525
+
526
+ @property
527
+ @pulumi.getter(name="retentionDays")
528
+ def retention_days(self) -> builtins.int:
529
+ """
530
+ The number of days to retain data.
531
+ """
532
+ return pulumi.get(self, "retention_days")
533
+
534
+ @property
535
+ @pulumi.getter(name="synchronizedWithGrafana")
536
+ def synchronized_with_grafana(self) -> builtins.bool:
537
+ """
538
+ Indicates whether the data source is synchronized with Grafana.
539
+ """
540
+ return pulumi.get(self, "synchronized_with_grafana")
541
+
542
+ @property
543
+ @pulumi.getter
544
+ def type(self) -> builtins.str:
545
+ """
546
+ Filter sources by type. Possible values are: `metrics`, `logs`, `traces`.
547
+ """
548
+ return pulumi.get(self, "type")
549
+
550
+ @property
551
+ @pulumi.getter(name="updatedAt")
552
+ def updated_at(self) -> builtins.str:
553
+ """
554
+ The date and time of the last update of the cockpit datasource.
555
+ """
556
+ return pulumi.get(self, "updated_at")
557
+
558
+ @property
559
+ @pulumi.getter
560
+ def url(self) -> builtins.str:
561
+ """
562
+ The URL of the datasource.
563
+ """
564
+ return pulumi.get(self, "url")
565
+
566
+