@pulumi/cloudamqp 3.24.1 → 3.24.2

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.
@@ -57,6 +57,32 @@ import * as pulumi from "@pulumi/pulumi";
57
57
  * <details>
58
58
  * <summary>
59
59
  * <b>
60
+ * <i>Cloudwatch log integration with retention and tags (from [v1.38.0])</i>
61
+ * </b>
62
+ * </summary>
63
+ *
64
+ * Use retention and/or tags on the integration to make changes to `CloudAMQP` Log Group.
65
+ *
66
+ * ```typescript
67
+ * import * as pulumi from "@pulumi/pulumi";
68
+ * import * as cloudamqp from "@pulumi/cloudamqp";
69
+ *
70
+ * const cloudwatch = new cloudamqp.IntegrationLog("cloudwatch", {
71
+ * instanceId: instance.id,
72
+ * name: "cloudwatchlog",
73
+ * accessKeyId: awsAccessKeyId,
74
+ * secretAccessKey: awsSecretAccessKey,
75
+ * region: awsRegion,
76
+ * retention: 14,
77
+ * tags: "Project=A,Environment=Development",
78
+ * });
79
+ * ```
80
+ *
81
+ * </details>
82
+ *
83
+ * <details>
84
+ * <summary>
85
+ * <b>
60
86
  * <i>Coralogix log integration</i>
61
87
  * </b>
62
88
  * </summary>
@@ -102,7 +128,7 @@ import * as pulumi from "@pulumi/pulumi";
102
128
  * <details>
103
129
  * <summary>
104
130
  * <b>
105
- * <i>Logentries log integration</i>
131
+ * <i>Log entries log integration</i>
106
132
  * </b>
107
133
  * </summary>
108
134
  *
@@ -326,29 +352,6 @@ import * as pulumi from "@pulumi/pulumi";
326
352
  *
327
353
  * </details>
328
354
  *
329
- * ## Integration type reference
330
- *
331
- * Valid arguments for third party log integrations. See more information at
332
- * [CloudAMQP API add integration].
333
- *
334
- * Required arguments for all integrations: name
335
- *
336
- * | Integration | name | Required arguments |
337
- * | ---- | ---- | ---- |
338
- * | Azure monitor | azureMonitor | tenant_id, application_id, application_secret, dce_uri, table, dcrId |
339
- * | CloudWatch | cloudwatchlog | access_key_id, secret_access_key, region |
340
- * | Coralogix | coralogix | private_key, endpoint, application, subsystem |
341
- * | Data Dog | datadog | region, api_keys, tags |
342
- * | Log Entries | logentries | token |
343
- * | Loggly | loggly | token |
344
- * | Papertrail | papertrail | url |
345
- * | Scalyr | scalyr | token, host |
346
- * | Splunk | splunk | token, host_port, sourcetype |
347
- * | Stackdriver | stackdriver | credentials |
348
- *
349
- * ***Note:*** Stackdriver (v1.20.2 or earlier versions) required arguments: project_id, private_key,
350
- * clientEmail
351
- *
352
355
  * ## Dependency
353
356
  *
354
357
  * This resource depends on CloudAMQP instance identifier, `cloudamqp_instance.instance.id`.
@@ -377,13 +380,25 @@ import * as pulumi from "@pulumi/pulumi";
377
380
  * $ pulumi import cloudamqp:index/integrationLog:IntegrationLog this <id>,<instance_id>`
378
381
  * ```
379
382
  *
380
- * [CloudAMQP API add integration]: https://docs.cloudamqp.com/cloudamqp_api.html#add-log-integration
383
+ * [v1.38.0]: https://github.com/cloudamqp/terraform-provider-cloudamqp/releases/tag/v1.38.0
381
384
  *
382
- * [CloudAMQP API list integration]: https://docs.cloudamqp.com/cloudamqp_api.html#list-log-integrations
385
+ * [CloudAMQP API add integration]: https://docs.cloudamqp.com/instance-api.html#tag/integrations/post/integrations/logs/{system}
386
+ *
387
+ * [Tutorial to find/create all arguments]: https://learn.microsoft.com/en-us/azure/azure-monitor/logs/tutorial-logs-ingestion-portal
388
+ *
389
+ * [Cloudwatch Log retention]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_PutRetentionPolicy.html#API_PutRetentionPolicy_RequestSyntax
390
+ *
391
+ * [Cloudwatch Log tags]: https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_TagLogGroup.html#API_TagLogGroup_RequestSyntax
392
+ *
393
+ * [Coralogix documentation]: https://coralogix.com/docs/send-your-data-api-key/
394
+ *
395
+ * [app.datadoghq.com]: https://app.datadoghq.com/
383
396
  *
384
397
  * [Datadog documentation]: https://docs.datadoghq.com/getting_started/tagging/#define-tags
385
398
  *
386
- * [integration type reference]: #integration-type-reference
399
+ * [logentries add-log]: https://logentries.com/app#/add-log/manual
400
+ *
401
+ * [CloudAMQP API list integration]: https://docs.cloudamqp.com/instance-api.html#tag/integrations/get/integrations/logs
387
402
  */
388
403
  export declare class IntegrationLog extends pulumi.CustomResource {
389
404
  /**
@@ -406,65 +421,69 @@ export declare class IntegrationLog extends pulumi.CustomResource {
406
421
  */
407
422
  readonly accessKeyId: pulumi.Output<string | undefined>;
408
423
  /**
409
- * The API key.
424
+ * The API key for the integration service. (Datadog)
410
425
  */
411
426
  readonly apiKey: pulumi.Output<string | undefined>;
412
427
  /**
413
- * The application name for Coralogix.
428
+ * The name of the application. (Azure Monitor)
414
429
  */
415
430
  readonly application: pulumi.Output<string | undefined>;
416
431
  /**
417
- * The application identifier for Azure monitor.
432
+ * The application identifier.
418
433
  */
419
434
  readonly applicationId: pulumi.Output<string | undefined>;
420
435
  /**
421
- * The application secret for Azure monitor.
436
+ * The application secret.
422
437
  */
423
438
  readonly applicationSecret: pulumi.Output<string | undefined>;
424
439
  /**
425
- * The client email registered for the integration service.
440
+ * The client email. (Stackdriver)
426
441
  */
427
442
  readonly clientEmail: pulumi.Output<string>;
428
443
  /**
429
- * Google Service Account private key credentials.
444
+ * Base64Encoded credentials. (Stackdriver)
430
445
  */
431
446
  readonly credentials: pulumi.Output<string | undefined>;
432
447
  /**
433
- * The data collection endpoint for Azure monitor.
448
+ * The data collection endpoint.
434
449
  */
435
450
  readonly dceUri: pulumi.Output<string | undefined>;
436
451
  /**
437
- * ID of data collection rule that your DCE is linked to for Azure
438
- * Monitor.
439
- *
440
- * This is the full list of all arguments. Only a subset of arguments are used based on which type of
441
- * integration used. See [integration type reference] table below for more information.
452
+ * ID of data collection rule that your DCE is linked to.
442
453
  */
443
454
  readonly dcrId: pulumi.Output<string | undefined>;
444
455
  /**
445
- * The syslog destination to send the logs to for Coralogix.
456
+ * The syslog destination to send the logs to. (Papertrail)
446
457
  */
447
458
  readonly endpoint: pulumi.Output<string | undefined>;
448
459
  /**
449
- * The host for Scalyr integration. (app.scalyr.com,
450
- * app.eu.scalyr.com)
460
+ * The host information. (Scalyr)
451
461
  */
452
462
  readonly host: pulumi.Output<string | undefined>;
453
463
  /**
454
- * Destination to send the logs.
464
+ * Destination to send the logs. (Splunk)
455
465
  */
456
466
  readonly hostPort: pulumi.Output<string | undefined>;
457
467
  /**
458
- * Instance identifier used to make proxy calls
468
+ * Instance identifier for the CloudAMQP instance.
469
+ *
470
+ * Valid arguments for each third party log integrations below. Corresponding API backend documentation can be
471
+ * found here [CloudAMQP API add integration].
472
+ *
473
+ * <details>
474
+ * <summary>
475
+ * <b>Azure monitoring</b>
476
+ * </summary>
477
+ *
478
+ * The following arguments used by Azure monitoring.
459
479
  */
460
480
  readonly instanceId: pulumi.Output<number>;
461
481
  /**
462
- * The name of the third party log integration. See
463
- * [integration type reference]
482
+ * The name of the third party log integration (`cloudwatchlog`).
464
483
  */
465
484
  readonly name: pulumi.Output<string>;
466
485
  /**
467
- * The private access key.
486
+ * The private API key used for authentication. (Stackdriver, Coralogix)
468
487
  */
469
488
  readonly privateKey: pulumi.Output<string>;
470
489
  /**
@@ -472,47 +491,66 @@ export declare class IntegrationLog extends pulumi.CustomResource {
472
491
  */
473
492
  readonly privateKeyId: pulumi.Output<string>;
474
493
  /**
475
- * The project identifier.
494
+ * The project ID for the integration service. (Stackdriver)
476
495
  */
477
496
  readonly projectId: pulumi.Output<string>;
478
497
  /**
479
- * Region hosting the integration service.
498
+ * AWS region hosting the integration service.
499
+ *
500
+ * Optional arguments introduced in version [v1.38.0].
480
501
  */
481
502
  readonly region: pulumi.Output<string | undefined>;
503
+ /**
504
+ * Number of days to retain log events in `CloudAMQP` log group.
505
+ *
506
+ * ***Note:*** Possible values are: 0 (never expire) or between 1-3653, read more about valid values in
507
+ * the [Cloudwatch Log retention].
508
+ */
509
+ readonly retention: pulumi.Output<number | undefined>;
482
510
  /**
483
511
  * AWS secret access key.
484
512
  */
485
513
  readonly secretAccessKey: pulumi.Output<string | undefined>;
486
514
  /**
487
- * Assign source type to the data exported, eg. generic_single_line.
488
- * (Splunk)
515
+ * Assign source type to the data exported, eg. generic_single_line. (Splunk)
489
516
  */
490
517
  readonly sourcetype: pulumi.Output<string | undefined>;
491
518
  /**
492
- * The subsystem name for Coralogix.
519
+ * The name of the subsystem. (Azure Monitor)
493
520
  */
494
521
  readonly subsystem: pulumi.Output<string | undefined>;
495
522
  /**
496
- * The table name for Azure monitor.
523
+ * The table name.
524
+ *
525
+ * Use Azure portal to configure external access for Azure Monitor. [Tutorial to find/create all arguments]
526
+ *
527
+ * </details>
528
+ *
529
+ * <details>
530
+ * <summary>
531
+ * <b>Cloudwatch</b>
532
+ * </summary>
533
+ *
534
+ * The following arguments used by CloudWatch.
497
535
  */
498
536
  readonly table: pulumi.Output<string | undefined>;
499
537
  /**
500
- * Tags. e.g. `env=prod,region=europe`.
538
+ * Enter tags to `CloudAMQP` log group like this: `Project=A,Environment=Development`.
501
539
  *
502
- * ***Note:*** If tags are used with Datadog. The value part (prod, europe, ...) must start with a
503
- * letter, read more about tags format in the [Datadog documentation].
540
+ * ***Note:*** Tags are only added, unwanted tags needs to be removed manually in the AWS console.
541
+ * Read more about tags format in the [Cloudwatch Log tags]
504
542
  */
505
543
  readonly tags: pulumi.Output<string | undefined>;
506
544
  /**
507
- * The tenant identifier for Azure monitor.
545
+ * The tenant identifier.
508
546
  */
509
547
  readonly tenantId: pulumi.Output<string | undefined>;
510
548
  /**
511
- * Token used for authentication.
549
+ * The token used for authentication. (Loggly, Logentries, Splunk, Scalyr)
512
550
  */
513
551
  readonly token: pulumi.Output<string | undefined>;
514
552
  /**
515
- * Endpoint to log integration.
553
+ * The URL to push the logs to. (Papertrail)
516
554
  */
517
555
  readonly url: pulumi.Output<string | undefined>;
518
556
  /**
@@ -533,65 +571,69 @@ export interface IntegrationLogState {
533
571
  */
534
572
  accessKeyId?: pulumi.Input<string>;
535
573
  /**
536
- * The API key.
574
+ * The API key for the integration service. (Datadog)
537
575
  */
538
576
  apiKey?: pulumi.Input<string>;
539
577
  /**
540
- * The application name for Coralogix.
578
+ * The name of the application. (Azure Monitor)
541
579
  */
542
580
  application?: pulumi.Input<string>;
543
581
  /**
544
- * The application identifier for Azure monitor.
582
+ * The application identifier.
545
583
  */
546
584
  applicationId?: pulumi.Input<string>;
547
585
  /**
548
- * The application secret for Azure monitor.
586
+ * The application secret.
549
587
  */
550
588
  applicationSecret?: pulumi.Input<string>;
551
589
  /**
552
- * The client email registered for the integration service.
590
+ * The client email. (Stackdriver)
553
591
  */
554
592
  clientEmail?: pulumi.Input<string>;
555
593
  /**
556
- * Google Service Account private key credentials.
594
+ * Base64Encoded credentials. (Stackdriver)
557
595
  */
558
596
  credentials?: pulumi.Input<string>;
559
597
  /**
560
- * The data collection endpoint for Azure monitor.
598
+ * The data collection endpoint.
561
599
  */
562
600
  dceUri?: pulumi.Input<string>;
563
601
  /**
564
- * ID of data collection rule that your DCE is linked to for Azure
565
- * Monitor.
566
- *
567
- * This is the full list of all arguments. Only a subset of arguments are used based on which type of
568
- * integration used. See [integration type reference] table below for more information.
602
+ * ID of data collection rule that your DCE is linked to.
569
603
  */
570
604
  dcrId?: pulumi.Input<string>;
571
605
  /**
572
- * The syslog destination to send the logs to for Coralogix.
606
+ * The syslog destination to send the logs to. (Papertrail)
573
607
  */
574
608
  endpoint?: pulumi.Input<string>;
575
609
  /**
576
- * The host for Scalyr integration. (app.scalyr.com,
577
- * app.eu.scalyr.com)
610
+ * The host information. (Scalyr)
578
611
  */
579
612
  host?: pulumi.Input<string>;
580
613
  /**
581
- * Destination to send the logs.
614
+ * Destination to send the logs. (Splunk)
582
615
  */
583
616
  hostPort?: pulumi.Input<string>;
584
617
  /**
585
- * Instance identifier used to make proxy calls
618
+ * Instance identifier for the CloudAMQP instance.
619
+ *
620
+ * Valid arguments for each third party log integrations below. Corresponding API backend documentation can be
621
+ * found here [CloudAMQP API add integration].
622
+ *
623
+ * <details>
624
+ * <summary>
625
+ * <b>Azure monitoring</b>
626
+ * </summary>
627
+ *
628
+ * The following arguments used by Azure monitoring.
586
629
  */
587
630
  instanceId?: pulumi.Input<number>;
588
631
  /**
589
- * The name of the third party log integration. See
590
- * [integration type reference]
632
+ * The name of the third party log integration (`cloudwatchlog`).
591
633
  */
592
634
  name?: pulumi.Input<string>;
593
635
  /**
594
- * The private access key.
636
+ * The private API key used for authentication. (Stackdriver, Coralogix)
595
637
  */
596
638
  privateKey?: pulumi.Input<string>;
597
639
  /**
@@ -599,47 +641,66 @@ export interface IntegrationLogState {
599
641
  */
600
642
  privateKeyId?: pulumi.Input<string>;
601
643
  /**
602
- * The project identifier.
644
+ * The project ID for the integration service. (Stackdriver)
603
645
  */
604
646
  projectId?: pulumi.Input<string>;
605
647
  /**
606
- * Region hosting the integration service.
648
+ * AWS region hosting the integration service.
649
+ *
650
+ * Optional arguments introduced in version [v1.38.0].
607
651
  */
608
652
  region?: pulumi.Input<string>;
653
+ /**
654
+ * Number of days to retain log events in `CloudAMQP` log group.
655
+ *
656
+ * ***Note:*** Possible values are: 0 (never expire) or between 1-3653, read more about valid values in
657
+ * the [Cloudwatch Log retention].
658
+ */
659
+ retention?: pulumi.Input<number>;
609
660
  /**
610
661
  * AWS secret access key.
611
662
  */
612
663
  secretAccessKey?: pulumi.Input<string>;
613
664
  /**
614
- * Assign source type to the data exported, eg. generic_single_line.
615
- * (Splunk)
665
+ * Assign source type to the data exported, eg. generic_single_line. (Splunk)
616
666
  */
617
667
  sourcetype?: pulumi.Input<string>;
618
668
  /**
619
- * The subsystem name for Coralogix.
669
+ * The name of the subsystem. (Azure Monitor)
620
670
  */
621
671
  subsystem?: pulumi.Input<string>;
622
672
  /**
623
- * The table name for Azure monitor.
673
+ * The table name.
674
+ *
675
+ * Use Azure portal to configure external access for Azure Monitor. [Tutorial to find/create all arguments]
676
+ *
677
+ * </details>
678
+ *
679
+ * <details>
680
+ * <summary>
681
+ * <b>Cloudwatch</b>
682
+ * </summary>
683
+ *
684
+ * The following arguments used by CloudWatch.
624
685
  */
625
686
  table?: pulumi.Input<string>;
626
687
  /**
627
- * Tags. e.g. `env=prod,region=europe`.
688
+ * Enter tags to `CloudAMQP` log group like this: `Project=A,Environment=Development`.
628
689
  *
629
- * ***Note:*** If tags are used with Datadog. The value part (prod, europe, ...) must start with a
630
- * letter, read more about tags format in the [Datadog documentation].
690
+ * ***Note:*** Tags are only added, unwanted tags needs to be removed manually in the AWS console.
691
+ * Read more about tags format in the [Cloudwatch Log tags]
631
692
  */
632
693
  tags?: pulumi.Input<string>;
633
694
  /**
634
- * The tenant identifier for Azure monitor.
695
+ * The tenant identifier.
635
696
  */
636
697
  tenantId?: pulumi.Input<string>;
637
698
  /**
638
- * Token used for authentication.
699
+ * The token used for authentication. (Loggly, Logentries, Splunk, Scalyr)
639
700
  */
640
701
  token?: pulumi.Input<string>;
641
702
  /**
642
- * Endpoint to log integration.
703
+ * The URL to push the logs to. (Papertrail)
643
704
  */
644
705
  url?: pulumi.Input<string>;
645
706
  }
@@ -652,65 +713,69 @@ export interface IntegrationLogArgs {
652
713
  */
653
714
  accessKeyId?: pulumi.Input<string>;
654
715
  /**
655
- * The API key.
716
+ * The API key for the integration service. (Datadog)
656
717
  */
657
718
  apiKey?: pulumi.Input<string>;
658
719
  /**
659
- * The application name for Coralogix.
720
+ * The name of the application. (Azure Monitor)
660
721
  */
661
722
  application?: pulumi.Input<string>;
662
723
  /**
663
- * The application identifier for Azure monitor.
724
+ * The application identifier.
664
725
  */
665
726
  applicationId?: pulumi.Input<string>;
666
727
  /**
667
- * The application secret for Azure monitor.
728
+ * The application secret.
668
729
  */
669
730
  applicationSecret?: pulumi.Input<string>;
670
731
  /**
671
- * The client email registered for the integration service.
732
+ * The client email. (Stackdriver)
672
733
  */
673
734
  clientEmail?: pulumi.Input<string>;
674
735
  /**
675
- * Google Service Account private key credentials.
736
+ * Base64Encoded credentials. (Stackdriver)
676
737
  */
677
738
  credentials?: pulumi.Input<string>;
678
739
  /**
679
- * The data collection endpoint for Azure monitor.
740
+ * The data collection endpoint.
680
741
  */
681
742
  dceUri?: pulumi.Input<string>;
682
743
  /**
683
- * ID of data collection rule that your DCE is linked to for Azure
684
- * Monitor.
685
- *
686
- * This is the full list of all arguments. Only a subset of arguments are used based on which type of
687
- * integration used. See [integration type reference] table below for more information.
744
+ * ID of data collection rule that your DCE is linked to.
688
745
  */
689
746
  dcrId?: pulumi.Input<string>;
690
747
  /**
691
- * The syslog destination to send the logs to for Coralogix.
748
+ * The syslog destination to send the logs to. (Papertrail)
692
749
  */
693
750
  endpoint?: pulumi.Input<string>;
694
751
  /**
695
- * The host for Scalyr integration. (app.scalyr.com,
696
- * app.eu.scalyr.com)
752
+ * The host information. (Scalyr)
697
753
  */
698
754
  host?: pulumi.Input<string>;
699
755
  /**
700
- * Destination to send the logs.
756
+ * Destination to send the logs. (Splunk)
701
757
  */
702
758
  hostPort?: pulumi.Input<string>;
703
759
  /**
704
- * Instance identifier used to make proxy calls
760
+ * Instance identifier for the CloudAMQP instance.
761
+ *
762
+ * Valid arguments for each third party log integrations below. Corresponding API backend documentation can be
763
+ * found here [CloudAMQP API add integration].
764
+ *
765
+ * <details>
766
+ * <summary>
767
+ * <b>Azure monitoring</b>
768
+ * </summary>
769
+ *
770
+ * The following arguments used by Azure monitoring.
705
771
  */
706
772
  instanceId: pulumi.Input<number>;
707
773
  /**
708
- * The name of the third party log integration. See
709
- * [integration type reference]
774
+ * The name of the third party log integration (`cloudwatchlog`).
710
775
  */
711
776
  name?: pulumi.Input<string>;
712
777
  /**
713
- * The private access key.
778
+ * The private API key used for authentication. (Stackdriver, Coralogix)
714
779
  */
715
780
  privateKey?: pulumi.Input<string>;
716
781
  /**
@@ -718,47 +783,66 @@ export interface IntegrationLogArgs {
718
783
  */
719
784
  privateKeyId?: pulumi.Input<string>;
720
785
  /**
721
- * The project identifier.
786
+ * The project ID for the integration service. (Stackdriver)
722
787
  */
723
788
  projectId?: pulumi.Input<string>;
724
789
  /**
725
- * Region hosting the integration service.
790
+ * AWS region hosting the integration service.
791
+ *
792
+ * Optional arguments introduced in version [v1.38.0].
726
793
  */
727
794
  region?: pulumi.Input<string>;
795
+ /**
796
+ * Number of days to retain log events in `CloudAMQP` log group.
797
+ *
798
+ * ***Note:*** Possible values are: 0 (never expire) or between 1-3653, read more about valid values in
799
+ * the [Cloudwatch Log retention].
800
+ */
801
+ retention?: pulumi.Input<number>;
728
802
  /**
729
803
  * AWS secret access key.
730
804
  */
731
805
  secretAccessKey?: pulumi.Input<string>;
732
806
  /**
733
- * Assign source type to the data exported, eg. generic_single_line.
734
- * (Splunk)
807
+ * Assign source type to the data exported, eg. generic_single_line. (Splunk)
735
808
  */
736
809
  sourcetype?: pulumi.Input<string>;
737
810
  /**
738
- * The subsystem name for Coralogix.
811
+ * The name of the subsystem. (Azure Monitor)
739
812
  */
740
813
  subsystem?: pulumi.Input<string>;
741
814
  /**
742
- * The table name for Azure monitor.
815
+ * The table name.
816
+ *
817
+ * Use Azure portal to configure external access for Azure Monitor. [Tutorial to find/create all arguments]
818
+ *
819
+ * </details>
820
+ *
821
+ * <details>
822
+ * <summary>
823
+ * <b>Cloudwatch</b>
824
+ * </summary>
825
+ *
826
+ * The following arguments used by CloudWatch.
743
827
  */
744
828
  table?: pulumi.Input<string>;
745
829
  /**
746
- * Tags. e.g. `env=prod,region=europe`.
830
+ * Enter tags to `CloudAMQP` log group like this: `Project=A,Environment=Development`.
747
831
  *
748
- * ***Note:*** If tags are used with Datadog. The value part (prod, europe, ...) must start with a
749
- * letter, read more about tags format in the [Datadog documentation].
832
+ * ***Note:*** Tags are only added, unwanted tags needs to be removed manually in the AWS console.
833
+ * Read more about tags format in the [Cloudwatch Log tags]
750
834
  */
751
835
  tags?: pulumi.Input<string>;
752
836
  /**
753
- * The tenant identifier for Azure monitor.
837
+ * The tenant identifier.
754
838
  */
755
839
  tenantId?: pulumi.Input<string>;
756
840
  /**
757
- * Token used for authentication.
841
+ * The token used for authentication. (Loggly, Logentries, Splunk, Scalyr)
758
842
  */
759
843
  token?: pulumi.Input<string>;
760
844
  /**
761
- * Endpoint to log integration.
845
+ * The URL to push the logs to. (Papertrail)
762
846
  */
763
847
  url?: pulumi.Input<string>;
764
848
  }