pulumi-cloudamqp 3.18.0a1705470056__py3-none-any.whl → 3.18.0a1705602074__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.

Potentially problematic release.


This version of pulumi-cloudamqp might be problematic. Click here for more details.

@@ -17,8 +17,10 @@ class IntegrationLogArgs:
17
17
  instance_id: pulumi.Input[int],
18
18
  access_key_id: Optional[pulumi.Input[str]] = None,
19
19
  api_key: Optional[pulumi.Input[str]] = None,
20
+ application: Optional[pulumi.Input[str]] = None,
20
21
  client_email: Optional[pulumi.Input[str]] = None,
21
22
  credentials: Optional[pulumi.Input[str]] = None,
23
+ endpoint: Optional[pulumi.Input[str]] = None,
22
24
  host: Optional[pulumi.Input[str]] = None,
23
25
  host_port: Optional[pulumi.Input[str]] = None,
24
26
  name: Optional[pulumi.Input[str]] = None,
@@ -28,6 +30,7 @@ class IntegrationLogArgs:
28
30
  region: Optional[pulumi.Input[str]] = None,
29
31
  secret_access_key: Optional[pulumi.Input[str]] = None,
30
32
  sourcetype: Optional[pulumi.Input[str]] = None,
33
+ subsystem: Optional[pulumi.Input[str]] = None,
31
34
  tags: Optional[pulumi.Input[str]] = None,
32
35
  token: Optional[pulumi.Input[str]] = None,
33
36
  url: Optional[pulumi.Input[str]] = None):
@@ -36,8 +39,10 @@ class IntegrationLogArgs:
36
39
  :param pulumi.Input[int] instance_id: Instance identifier used to make proxy calls
37
40
  :param pulumi.Input[str] access_key_id: AWS access key identifier.
38
41
  :param pulumi.Input[str] api_key: The API key.
42
+ :param pulumi.Input[str] application: The application name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
39
43
  :param pulumi.Input[str] client_email: The client email registered for the integration service.
40
44
  :param pulumi.Input[str] credentials: Google Service Account private key credentials.
45
+ :param pulumi.Input[str] endpoint: The syslog destination to send the logs to for Coralogix. See endpoint [documentations](https://coralogix.com/docs/coralogix-endpoints/).
41
46
  :param pulumi.Input[str] host: The host for Scalyr integration. (app.scalyr.com, app.eu.scalyr.com)
42
47
  :param pulumi.Input[str] host_port: Destination to send the logs.
43
48
  :param pulumi.Input[str] name: The name of the third party log integration. See
@@ -47,6 +52,7 @@ class IntegrationLogArgs:
47
52
  :param pulumi.Input[str] region: Region hosting the integration service.
48
53
  :param pulumi.Input[str] secret_access_key: AWS secret access key.
49
54
  :param pulumi.Input[str] sourcetype: Assign source type to the data exported, eg. generic_single_line. (Splunk)
55
+ :param pulumi.Input[str] subsystem: The subsystem name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
50
56
 
51
57
  This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
52
58
  :param pulumi.Input[str] tags: Tag the integration, e.g. env=prod, region=europe.
@@ -58,10 +64,14 @@ class IntegrationLogArgs:
58
64
  pulumi.set(__self__, "access_key_id", access_key_id)
59
65
  if api_key is not None:
60
66
  pulumi.set(__self__, "api_key", api_key)
67
+ if application is not None:
68
+ pulumi.set(__self__, "application", application)
61
69
  if client_email is not None:
62
70
  pulumi.set(__self__, "client_email", client_email)
63
71
  if credentials is not None:
64
72
  pulumi.set(__self__, "credentials", credentials)
73
+ if endpoint is not None:
74
+ pulumi.set(__self__, "endpoint", endpoint)
65
75
  if host is not None:
66
76
  pulumi.set(__self__, "host", host)
67
77
  if host_port is not None:
@@ -80,6 +90,8 @@ class IntegrationLogArgs:
80
90
  pulumi.set(__self__, "secret_access_key", secret_access_key)
81
91
  if sourcetype is not None:
82
92
  pulumi.set(__self__, "sourcetype", sourcetype)
93
+ if subsystem is not None:
94
+ pulumi.set(__self__, "subsystem", subsystem)
83
95
  if tags is not None:
84
96
  pulumi.set(__self__, "tags", tags)
85
97
  if token is not None:
@@ -123,6 +135,18 @@ class IntegrationLogArgs:
123
135
  def api_key(self, value: Optional[pulumi.Input[str]]):
124
136
  pulumi.set(self, "api_key", value)
125
137
 
138
+ @property
139
+ @pulumi.getter
140
+ def application(self) -> Optional[pulumi.Input[str]]:
141
+ """
142
+ The application name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
143
+ """
144
+ return pulumi.get(self, "application")
145
+
146
+ @application.setter
147
+ def application(self, value: Optional[pulumi.Input[str]]):
148
+ pulumi.set(self, "application", value)
149
+
126
150
  @property
127
151
  @pulumi.getter(name="clientEmail")
128
152
  def client_email(self) -> Optional[pulumi.Input[str]]:
@@ -147,6 +171,18 @@ class IntegrationLogArgs:
147
171
  def credentials(self, value: Optional[pulumi.Input[str]]):
148
172
  pulumi.set(self, "credentials", value)
149
173
 
174
+ @property
175
+ @pulumi.getter
176
+ def endpoint(self) -> Optional[pulumi.Input[str]]:
177
+ """
178
+ The syslog destination to send the logs to for Coralogix. See endpoint [documentations](https://coralogix.com/docs/coralogix-endpoints/).
179
+ """
180
+ return pulumi.get(self, "endpoint")
181
+
182
+ @endpoint.setter
183
+ def endpoint(self, value: Optional[pulumi.Input[str]]):
184
+ pulumi.set(self, "endpoint", value)
185
+
150
186
  @property
151
187
  @pulumi.getter
152
188
  def host(self) -> Optional[pulumi.Input[str]]:
@@ -248,8 +284,6 @@ class IntegrationLogArgs:
248
284
  def sourcetype(self) -> Optional[pulumi.Input[str]]:
249
285
  """
250
286
  Assign source type to the data exported, eg. generic_single_line. (Splunk)
251
-
252
- This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
253
287
  """
254
288
  return pulumi.get(self, "sourcetype")
255
289
 
@@ -257,6 +291,20 @@ class IntegrationLogArgs:
257
291
  def sourcetype(self, value: Optional[pulumi.Input[str]]):
258
292
  pulumi.set(self, "sourcetype", value)
259
293
 
294
+ @property
295
+ @pulumi.getter
296
+ def subsystem(self) -> Optional[pulumi.Input[str]]:
297
+ """
298
+ The subsystem name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
299
+
300
+ This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
301
+ """
302
+ return pulumi.get(self, "subsystem")
303
+
304
+ @subsystem.setter
305
+ def subsystem(self, value: Optional[pulumi.Input[str]]):
306
+ pulumi.set(self, "subsystem", value)
307
+
260
308
  @property
261
309
  @pulumi.getter
262
310
  def tags(self) -> Optional[pulumi.Input[str]]:
@@ -299,8 +347,10 @@ class _IntegrationLogState:
299
347
  def __init__(__self__, *,
300
348
  access_key_id: Optional[pulumi.Input[str]] = None,
301
349
  api_key: Optional[pulumi.Input[str]] = None,
350
+ application: Optional[pulumi.Input[str]] = None,
302
351
  client_email: Optional[pulumi.Input[str]] = None,
303
352
  credentials: Optional[pulumi.Input[str]] = None,
353
+ endpoint: Optional[pulumi.Input[str]] = None,
304
354
  host: Optional[pulumi.Input[str]] = None,
305
355
  host_port: Optional[pulumi.Input[str]] = None,
306
356
  instance_id: Optional[pulumi.Input[int]] = None,
@@ -311,6 +361,7 @@ class _IntegrationLogState:
311
361
  region: Optional[pulumi.Input[str]] = None,
312
362
  secret_access_key: Optional[pulumi.Input[str]] = None,
313
363
  sourcetype: Optional[pulumi.Input[str]] = None,
364
+ subsystem: Optional[pulumi.Input[str]] = None,
314
365
  tags: Optional[pulumi.Input[str]] = None,
315
366
  token: Optional[pulumi.Input[str]] = None,
316
367
  url: Optional[pulumi.Input[str]] = None):
@@ -318,8 +369,10 @@ class _IntegrationLogState:
318
369
  Input properties used for looking up and filtering IntegrationLog resources.
319
370
  :param pulumi.Input[str] access_key_id: AWS access key identifier.
320
371
  :param pulumi.Input[str] api_key: The API key.
372
+ :param pulumi.Input[str] application: The application name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
321
373
  :param pulumi.Input[str] client_email: The client email registered for the integration service.
322
374
  :param pulumi.Input[str] credentials: Google Service Account private key credentials.
375
+ :param pulumi.Input[str] endpoint: The syslog destination to send the logs to for Coralogix. See endpoint [documentations](https://coralogix.com/docs/coralogix-endpoints/).
323
376
  :param pulumi.Input[str] host: The host for Scalyr integration. (app.scalyr.com, app.eu.scalyr.com)
324
377
  :param pulumi.Input[str] host_port: Destination to send the logs.
325
378
  :param pulumi.Input[int] instance_id: Instance identifier used to make proxy calls
@@ -330,6 +383,7 @@ class _IntegrationLogState:
330
383
  :param pulumi.Input[str] region: Region hosting the integration service.
331
384
  :param pulumi.Input[str] secret_access_key: AWS secret access key.
332
385
  :param pulumi.Input[str] sourcetype: Assign source type to the data exported, eg. generic_single_line. (Splunk)
386
+ :param pulumi.Input[str] subsystem: The subsystem name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
333
387
 
334
388
  This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
335
389
  :param pulumi.Input[str] tags: Tag the integration, e.g. env=prod, region=europe.
@@ -340,10 +394,14 @@ class _IntegrationLogState:
340
394
  pulumi.set(__self__, "access_key_id", access_key_id)
341
395
  if api_key is not None:
342
396
  pulumi.set(__self__, "api_key", api_key)
397
+ if application is not None:
398
+ pulumi.set(__self__, "application", application)
343
399
  if client_email is not None:
344
400
  pulumi.set(__self__, "client_email", client_email)
345
401
  if credentials is not None:
346
402
  pulumi.set(__self__, "credentials", credentials)
403
+ if endpoint is not None:
404
+ pulumi.set(__self__, "endpoint", endpoint)
347
405
  if host is not None:
348
406
  pulumi.set(__self__, "host", host)
349
407
  if host_port is not None:
@@ -364,6 +422,8 @@ class _IntegrationLogState:
364
422
  pulumi.set(__self__, "secret_access_key", secret_access_key)
365
423
  if sourcetype is not None:
366
424
  pulumi.set(__self__, "sourcetype", sourcetype)
425
+ if subsystem is not None:
426
+ pulumi.set(__self__, "subsystem", subsystem)
367
427
  if tags is not None:
368
428
  pulumi.set(__self__, "tags", tags)
369
429
  if token is not None:
@@ -395,6 +455,18 @@ class _IntegrationLogState:
395
455
  def api_key(self, value: Optional[pulumi.Input[str]]):
396
456
  pulumi.set(self, "api_key", value)
397
457
 
458
+ @property
459
+ @pulumi.getter
460
+ def application(self) -> Optional[pulumi.Input[str]]:
461
+ """
462
+ The application name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
463
+ """
464
+ return pulumi.get(self, "application")
465
+
466
+ @application.setter
467
+ def application(self, value: Optional[pulumi.Input[str]]):
468
+ pulumi.set(self, "application", value)
469
+
398
470
  @property
399
471
  @pulumi.getter(name="clientEmail")
400
472
  def client_email(self) -> Optional[pulumi.Input[str]]:
@@ -419,6 +491,18 @@ class _IntegrationLogState:
419
491
  def credentials(self, value: Optional[pulumi.Input[str]]):
420
492
  pulumi.set(self, "credentials", value)
421
493
 
494
+ @property
495
+ @pulumi.getter
496
+ def endpoint(self) -> Optional[pulumi.Input[str]]:
497
+ """
498
+ The syslog destination to send the logs to for Coralogix. See endpoint [documentations](https://coralogix.com/docs/coralogix-endpoints/).
499
+ """
500
+ return pulumi.get(self, "endpoint")
501
+
502
+ @endpoint.setter
503
+ def endpoint(self, value: Optional[pulumi.Input[str]]):
504
+ pulumi.set(self, "endpoint", value)
505
+
422
506
  @property
423
507
  @pulumi.getter
424
508
  def host(self) -> Optional[pulumi.Input[str]]:
@@ -532,8 +616,6 @@ class _IntegrationLogState:
532
616
  def sourcetype(self) -> Optional[pulumi.Input[str]]:
533
617
  """
534
618
  Assign source type to the data exported, eg. generic_single_line. (Splunk)
535
-
536
- This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
537
619
  """
538
620
  return pulumi.get(self, "sourcetype")
539
621
 
@@ -541,6 +623,20 @@ class _IntegrationLogState:
541
623
  def sourcetype(self, value: Optional[pulumi.Input[str]]):
542
624
  pulumi.set(self, "sourcetype", value)
543
625
 
626
+ @property
627
+ @pulumi.getter
628
+ def subsystem(self) -> Optional[pulumi.Input[str]]:
629
+ """
630
+ The subsystem name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
631
+
632
+ This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
633
+ """
634
+ return pulumi.get(self, "subsystem")
635
+
636
+ @subsystem.setter
637
+ def subsystem(self, value: Optional[pulumi.Input[str]]):
638
+ pulumi.set(self, "subsystem", value)
639
+
544
640
  @property
545
641
  @pulumi.getter
546
642
  def tags(self) -> Optional[pulumi.Input[str]]:
@@ -585,8 +681,10 @@ class IntegrationLog(pulumi.CustomResource):
585
681
  opts: Optional[pulumi.ResourceOptions] = None,
586
682
  access_key_id: Optional[pulumi.Input[str]] = None,
587
683
  api_key: Optional[pulumi.Input[str]] = None,
684
+ application: Optional[pulumi.Input[str]] = None,
588
685
  client_email: Optional[pulumi.Input[str]] = None,
589
686
  credentials: Optional[pulumi.Input[str]] = None,
687
+ endpoint: Optional[pulumi.Input[str]] = None,
590
688
  host: Optional[pulumi.Input[str]] = None,
591
689
  host_port: Optional[pulumi.Input[str]] = None,
592
690
  instance_id: Optional[pulumi.Input[int]] = None,
@@ -597,6 +695,7 @@ class IntegrationLog(pulumi.CustomResource):
597
695
  region: Optional[pulumi.Input[str]] = None,
598
696
  secret_access_key: Optional[pulumi.Input[str]] = None,
599
697
  sourcetype: Optional[pulumi.Input[str]] = None,
698
+ subsystem: Optional[pulumi.Input[str]] = None,
600
699
  tags: Optional[pulumi.Input[str]] = None,
601
700
  token: Optional[pulumi.Input[str]] = None,
602
701
  url: Optional[pulumi.Input[str]] = None,
@@ -630,6 +729,7 @@ class IntegrationLog(pulumi.CustomResource):
630
729
  | datadog | Create a Datadog API key at app.datadoghq.com |
631
730
  | stackdriver | Create a service account and add 'monitor metrics writer' role from your Google Cloud Account |
632
731
  | scalyr | Create a Log write token at https://app.scalyr.com/keys |
732
+ | coralogix | Create Send-Your-Data API key https://coralogix.com/docs/send-your-data-api-key/ |
633
733
 
634
734
  ## Integration Type reference
635
735
 
@@ -647,6 +747,7 @@ class IntegrationLog(pulumi.CustomResource):
647
747
  | Data Dog | datadog | region, api_keys, tags |
648
748
  | Stackdriver | stackdriver | credentials |
649
749
  | Scalyr | scalyr | token, host |
750
+ | Coralogix | coralogix | private_key, endpoint, application, subsystem |
650
751
 
651
752
  ***Note:*** Stackdriver (v1.20.2 or earlier versions) required arguments : project_id, private_key, client_email
652
753
 
@@ -666,8 +767,10 @@ class IntegrationLog(pulumi.CustomResource):
666
767
  :param pulumi.ResourceOptions opts: Options for the resource.
667
768
  :param pulumi.Input[str] access_key_id: AWS access key identifier.
668
769
  :param pulumi.Input[str] api_key: The API key.
770
+ :param pulumi.Input[str] application: The application name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
669
771
  :param pulumi.Input[str] client_email: The client email registered for the integration service.
670
772
  :param pulumi.Input[str] credentials: Google Service Account private key credentials.
773
+ :param pulumi.Input[str] endpoint: The syslog destination to send the logs to for Coralogix. See endpoint [documentations](https://coralogix.com/docs/coralogix-endpoints/).
671
774
  :param pulumi.Input[str] host: The host for Scalyr integration. (app.scalyr.com, app.eu.scalyr.com)
672
775
  :param pulumi.Input[str] host_port: Destination to send the logs.
673
776
  :param pulumi.Input[int] instance_id: Instance identifier used to make proxy calls
@@ -678,6 +781,7 @@ class IntegrationLog(pulumi.CustomResource):
678
781
  :param pulumi.Input[str] region: Region hosting the integration service.
679
782
  :param pulumi.Input[str] secret_access_key: AWS secret access key.
680
783
  :param pulumi.Input[str] sourcetype: Assign source type to the data exported, eg. generic_single_line. (Splunk)
784
+ :param pulumi.Input[str] subsystem: The subsystem name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
681
785
 
682
786
  This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
683
787
  :param pulumi.Input[str] tags: Tag the integration, e.g. env=prod, region=europe.
@@ -719,6 +823,7 @@ class IntegrationLog(pulumi.CustomResource):
719
823
  | datadog | Create a Datadog API key at app.datadoghq.com |
720
824
  | stackdriver | Create a service account and add 'monitor metrics writer' role from your Google Cloud Account |
721
825
  | scalyr | Create a Log write token at https://app.scalyr.com/keys |
826
+ | coralogix | Create Send-Your-Data API key https://coralogix.com/docs/send-your-data-api-key/ |
722
827
 
723
828
  ## Integration Type reference
724
829
 
@@ -736,6 +841,7 @@ class IntegrationLog(pulumi.CustomResource):
736
841
  | Data Dog | datadog | region, api_keys, tags |
737
842
  | Stackdriver | stackdriver | credentials |
738
843
  | Scalyr | scalyr | token, host |
844
+ | Coralogix | coralogix | private_key, endpoint, application, subsystem |
739
845
 
740
846
  ***Note:*** Stackdriver (v1.20.2 or earlier versions) required arguments : project_id, private_key, client_email
741
847
 
@@ -768,8 +874,10 @@ class IntegrationLog(pulumi.CustomResource):
768
874
  opts: Optional[pulumi.ResourceOptions] = None,
769
875
  access_key_id: Optional[pulumi.Input[str]] = None,
770
876
  api_key: Optional[pulumi.Input[str]] = None,
877
+ application: Optional[pulumi.Input[str]] = None,
771
878
  client_email: Optional[pulumi.Input[str]] = None,
772
879
  credentials: Optional[pulumi.Input[str]] = None,
880
+ endpoint: Optional[pulumi.Input[str]] = None,
773
881
  host: Optional[pulumi.Input[str]] = None,
774
882
  host_port: Optional[pulumi.Input[str]] = None,
775
883
  instance_id: Optional[pulumi.Input[int]] = None,
@@ -780,6 +888,7 @@ class IntegrationLog(pulumi.CustomResource):
780
888
  region: Optional[pulumi.Input[str]] = None,
781
889
  secret_access_key: Optional[pulumi.Input[str]] = None,
782
890
  sourcetype: Optional[pulumi.Input[str]] = None,
891
+ subsystem: Optional[pulumi.Input[str]] = None,
783
892
  tags: Optional[pulumi.Input[str]] = None,
784
893
  token: Optional[pulumi.Input[str]] = None,
785
894
  url: Optional[pulumi.Input[str]] = None,
@@ -794,8 +903,10 @@ class IntegrationLog(pulumi.CustomResource):
794
903
 
795
904
  __props__.__dict__["access_key_id"] = None if access_key_id is None else pulumi.Output.secret(access_key_id)
796
905
  __props__.__dict__["api_key"] = None if api_key is None else pulumi.Output.secret(api_key)
906
+ __props__.__dict__["application"] = application
797
907
  __props__.__dict__["client_email"] = client_email
798
908
  __props__.__dict__["credentials"] = None if credentials is None else pulumi.Output.secret(credentials)
909
+ __props__.__dict__["endpoint"] = endpoint
799
910
  __props__.__dict__["host"] = host
800
911
  __props__.__dict__["host_port"] = host_port
801
912
  if instance_id is None and not opts.urn:
@@ -808,6 +919,7 @@ class IntegrationLog(pulumi.CustomResource):
808
919
  __props__.__dict__["region"] = region
809
920
  __props__.__dict__["secret_access_key"] = None if secret_access_key is None else pulumi.Output.secret(secret_access_key)
810
921
  __props__.__dict__["sourcetype"] = sourcetype
922
+ __props__.__dict__["subsystem"] = subsystem
811
923
  __props__.__dict__["tags"] = tags
812
924
  __props__.__dict__["token"] = None if token is None else pulumi.Output.secret(token)
813
925
  __props__.__dict__["url"] = url
@@ -825,8 +937,10 @@ class IntegrationLog(pulumi.CustomResource):
825
937
  opts: Optional[pulumi.ResourceOptions] = None,
826
938
  access_key_id: Optional[pulumi.Input[str]] = None,
827
939
  api_key: Optional[pulumi.Input[str]] = None,
940
+ application: Optional[pulumi.Input[str]] = None,
828
941
  client_email: Optional[pulumi.Input[str]] = None,
829
942
  credentials: Optional[pulumi.Input[str]] = None,
943
+ endpoint: Optional[pulumi.Input[str]] = None,
830
944
  host: Optional[pulumi.Input[str]] = None,
831
945
  host_port: Optional[pulumi.Input[str]] = None,
832
946
  instance_id: Optional[pulumi.Input[int]] = None,
@@ -837,6 +951,7 @@ class IntegrationLog(pulumi.CustomResource):
837
951
  region: Optional[pulumi.Input[str]] = None,
838
952
  secret_access_key: Optional[pulumi.Input[str]] = None,
839
953
  sourcetype: Optional[pulumi.Input[str]] = None,
954
+ subsystem: Optional[pulumi.Input[str]] = None,
840
955
  tags: Optional[pulumi.Input[str]] = None,
841
956
  token: Optional[pulumi.Input[str]] = None,
842
957
  url: Optional[pulumi.Input[str]] = None) -> 'IntegrationLog':
@@ -849,8 +964,10 @@ class IntegrationLog(pulumi.CustomResource):
849
964
  :param pulumi.ResourceOptions opts: Options for the resource.
850
965
  :param pulumi.Input[str] access_key_id: AWS access key identifier.
851
966
  :param pulumi.Input[str] api_key: The API key.
967
+ :param pulumi.Input[str] application: The application name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
852
968
  :param pulumi.Input[str] client_email: The client email registered for the integration service.
853
969
  :param pulumi.Input[str] credentials: Google Service Account private key credentials.
970
+ :param pulumi.Input[str] endpoint: The syslog destination to send the logs to for Coralogix. See endpoint [documentations](https://coralogix.com/docs/coralogix-endpoints/).
854
971
  :param pulumi.Input[str] host: The host for Scalyr integration. (app.scalyr.com, app.eu.scalyr.com)
855
972
  :param pulumi.Input[str] host_port: Destination to send the logs.
856
973
  :param pulumi.Input[int] instance_id: Instance identifier used to make proxy calls
@@ -861,6 +978,7 @@ class IntegrationLog(pulumi.CustomResource):
861
978
  :param pulumi.Input[str] region: Region hosting the integration service.
862
979
  :param pulumi.Input[str] secret_access_key: AWS secret access key.
863
980
  :param pulumi.Input[str] sourcetype: Assign source type to the data exported, eg. generic_single_line. (Splunk)
981
+ :param pulumi.Input[str] subsystem: The subsystem name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
864
982
 
865
983
  This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
866
984
  :param pulumi.Input[str] tags: Tag the integration, e.g. env=prod, region=europe.
@@ -873,8 +991,10 @@ class IntegrationLog(pulumi.CustomResource):
873
991
 
874
992
  __props__.__dict__["access_key_id"] = access_key_id
875
993
  __props__.__dict__["api_key"] = api_key
994
+ __props__.__dict__["application"] = application
876
995
  __props__.__dict__["client_email"] = client_email
877
996
  __props__.__dict__["credentials"] = credentials
997
+ __props__.__dict__["endpoint"] = endpoint
878
998
  __props__.__dict__["host"] = host
879
999
  __props__.__dict__["host_port"] = host_port
880
1000
  __props__.__dict__["instance_id"] = instance_id
@@ -885,6 +1005,7 @@ class IntegrationLog(pulumi.CustomResource):
885
1005
  __props__.__dict__["region"] = region
886
1006
  __props__.__dict__["secret_access_key"] = secret_access_key
887
1007
  __props__.__dict__["sourcetype"] = sourcetype
1008
+ __props__.__dict__["subsystem"] = subsystem
888
1009
  __props__.__dict__["tags"] = tags
889
1010
  __props__.__dict__["token"] = token
890
1011
  __props__.__dict__["url"] = url
@@ -906,6 +1027,14 @@ class IntegrationLog(pulumi.CustomResource):
906
1027
  """
907
1028
  return pulumi.get(self, "api_key")
908
1029
 
1030
+ @property
1031
+ @pulumi.getter
1032
+ def application(self) -> pulumi.Output[Optional[str]]:
1033
+ """
1034
+ The application name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
1035
+ """
1036
+ return pulumi.get(self, "application")
1037
+
909
1038
  @property
910
1039
  @pulumi.getter(name="clientEmail")
911
1040
  def client_email(self) -> pulumi.Output[str]:
@@ -922,6 +1051,14 @@ class IntegrationLog(pulumi.CustomResource):
922
1051
  """
923
1052
  return pulumi.get(self, "credentials")
924
1053
 
1054
+ @property
1055
+ @pulumi.getter
1056
+ def endpoint(self) -> pulumi.Output[Optional[str]]:
1057
+ """
1058
+ The syslog destination to send the logs to for Coralogix. See endpoint [documentations](https://coralogix.com/docs/coralogix-endpoints/).
1059
+ """
1060
+ return pulumi.get(self, "endpoint")
1061
+
925
1062
  @property
926
1063
  @pulumi.getter
927
1064
  def host(self) -> pulumi.Output[Optional[str]]:
@@ -999,10 +1136,18 @@ class IntegrationLog(pulumi.CustomResource):
999
1136
  def sourcetype(self) -> pulumi.Output[Optional[str]]:
1000
1137
  """
1001
1138
  Assign source type to the data exported, eg. generic_single_line. (Splunk)
1139
+ """
1140
+ return pulumi.get(self, "sourcetype")
1141
+
1142
+ @property
1143
+ @pulumi.getter
1144
+ def subsystem(self) -> pulumi.Output[Optional[str]]:
1145
+ """
1146
+ The subsystem name for Coralogix. See application [documentations](https://coralogix.com/docs/application-and-subsystem-names/)
1002
1147
 
1003
1148
  This is the full list of all arguments. Only a subset of arguments are used based on which type of integration used. See Integration Type reference table below for more information.
1004
1149
  """
1005
- return pulumi.get(self, "sourcetype")
1150
+ return pulumi.get(self, "subsystem")
1006
1151
 
1007
1152
  @property
1008
1153
  @pulumi.getter
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_cloudamqp
3
- Version: 3.18.0a1705470056
3
+ Version: 3.18.0a1705602074
4
4
  Summary: A Pulumi package for creating and managing CloudAMQP resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io
@@ -19,7 +19,7 @@ pulumi_cloudamqp/get_vpc_gcp_info.py,sha256=nLozPcHsK7uR-x1AfSCIbc01JqJETEPxdIIl
19
19
  pulumi_cloudamqp/get_vpc_info.py,sha256=Z9F1cNJE4A7t7y7zuKTg8zGjVAse5aunfvjzvfi30po,8240
20
20
  pulumi_cloudamqp/instance.py,sha256=RyOdw265YAjEc7EuSGUZzEVGVIFl_3LLgUHWGDWjEbo,60467
21
21
  pulumi_cloudamqp/integration_aws_eventbridge.py,sha256=G0vW89_SICyQb_oRYeGSM0fq1Qy7YsA3s1-k5K5xckw,22213
22
- pulumi_cloudamqp/integration_log.py,sha256=e5GReameDkibHiC0kOGJCzNjtrN6sZ1KMWe9HT0wP00,42621
22
+ pulumi_cloudamqp/integration_log.py,sha256=Ha1k6AVRksOmA_ogn34sRABgVq5KEdp8kvD4JXeSXz0,50429
23
23
  pulumi_cloudamqp/integration_metric.py,sha256=Fx0mo6dmztZiGek3WIJ0cTVcVLyzcJSkFNHU2Pztabo,45257
24
24
  pulumi_cloudamqp/node_actions.py,sha256=gGaKlB6oM78zEmBEOs3ZrFtlj7j9HAU0XwtT2COi_cs,18537
25
25
  pulumi_cloudamqp/notification.py,sha256=e5MmTON4tQXZ6HduWDp4UFkuFQtsUmWMTFQ4SrDjRds,20672
@@ -42,7 +42,7 @@ pulumi_cloudamqp/webhook.py,sha256=1lwTnaixOjy5K0ODjRM30Jn2GEzWAV9Z7E2CiZm_Lqc,1
42
42
  pulumi_cloudamqp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
43
43
  pulumi_cloudamqp/config/__init__.pyi,sha256=iAe4czNsV1QWTP_5dpfwWJUZykmDcnTZMI9M3sJrj_g,615
44
44
  pulumi_cloudamqp/config/vars.py,sha256=5mP52CHvnTtGeEXq5P4rNTKeN6BeekCf_wZbwfMdmzE,1029
45
- pulumi_cloudamqp-3.18.0a1705470056.dist-info/METADATA,sha256=XcE49NQZz3jbKxsRonyfg5QXcFSRZ7ghnXd1QeYsjgk,2755
46
- pulumi_cloudamqp-3.18.0a1705470056.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
47
- pulumi_cloudamqp-3.18.0a1705470056.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
48
- pulumi_cloudamqp-3.18.0a1705470056.dist-info/RECORD,,
45
+ pulumi_cloudamqp-3.18.0a1705602074.dist-info/METADATA,sha256=-PAuvXrsH22LyQ-7-qZVm0JX8fXbN6yMxwgy-2r-gaw,2755
46
+ pulumi_cloudamqp-3.18.0a1705602074.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
47
+ pulumi_cloudamqp-3.18.0a1705602074.dist-info/top_level.txt,sha256=GzOcAz5c3r2TOma1_ftIXuXYIElI_XHfdRiJARoRz2g,17
48
+ pulumi_cloudamqp-3.18.0a1705602074.dist-info/RECORD,,