pulumi-harness 0.8.0a1750480667__py3-none-any.whl → 0.8.0a1752731737__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-harness might be problematic. Click here for more details.
- pulumi_harness/__init__.py +16 -0
- pulumi_harness/platform/__init__.py +4 -0
- pulumi_harness/platform/_inputs.py +913 -0
- pulumi_harness/platform/central_notification_channel.py +432 -0
- pulumi_harness/platform/central_notification_rule.py +467 -0
- pulumi_harness/platform/delegatetoken.py +148 -89
- pulumi_harness/platform/get_central_notification_channel.py +277 -0
- pulumi_harness/platform/get_central_notification_rule.py +254 -0
- pulumi_harness/platform/get_delegatetoken.py +87 -31
- pulumi_harness/platform/get_workspace.py +16 -1
- pulumi_harness/platform/outputs.py +628 -0
- pulumi_harness/pulumi-plugin.json +1 -1
- {pulumi_harness-0.8.0a1750480667.dist-info → pulumi_harness-0.8.0a1752731737.dist-info}/METADATA +1 -1
- {pulumi_harness-0.8.0a1750480667.dist-info → pulumi_harness-0.8.0a1752731737.dist-info}/RECORD +16 -12
- {pulumi_harness-0.8.0a1750480667.dist-info → pulumi_harness-0.8.0a1752731737.dist-info}/WHEEL +0 -0
- {pulumi_harness-0.8.0a1750480667.dist-info → pulumi_harness-0.8.0a1752731737.dist-info}/top_level.txt +0 -0
|
@@ -50,6 +50,13 @@ __all__ = [
|
|
|
50
50
|
'BitbucketConnectorCredentials',
|
|
51
51
|
'BitbucketConnectorCredentialsHttp',
|
|
52
52
|
'BitbucketConnectorCredentialsSsh',
|
|
53
|
+
'CentralNotificationChannelChannel',
|
|
54
|
+
'CentralNotificationChannelChannelHeader',
|
|
55
|
+
'CentralNotificationChannelChannelUserGroup',
|
|
56
|
+
'CentralNotificationRuleCustomNotificationTemplateRef',
|
|
57
|
+
'CentralNotificationRuleCustomNotificationTemplateRefVariable',
|
|
58
|
+
'CentralNotificationRuleNotificationCondition',
|
|
59
|
+
'CentralNotificationRuleNotificationConditionNotificationEventConfig',
|
|
53
60
|
'ConnectorAzureArtifactsCredentials',
|
|
54
61
|
'ConnectorAzureRepoApiAuthentication',
|
|
55
62
|
'ConnectorAzureRepoCredentials',
|
|
@@ -1658,6 +1665,13 @@ __all__ = [
|
|
|
1658
1665
|
'GetBitbucketConnectorCredentialHttpResult',
|
|
1659
1666
|
'GetBitbucketConnectorCredentialSshResult',
|
|
1660
1667
|
'GetCcmFiltersFilterPropertyResult',
|
|
1668
|
+
'GetCentralNotificationChannelChannelResult',
|
|
1669
|
+
'GetCentralNotificationChannelChannelHeaderResult',
|
|
1670
|
+
'GetCentralNotificationChannelChannelUserGroupResult',
|
|
1671
|
+
'GetCentralNotificationRuleCustomNotificationTemplateRefResult',
|
|
1672
|
+
'GetCentralNotificationRuleCustomNotificationTemplateRefVariableResult',
|
|
1673
|
+
'GetCentralNotificationRuleNotificationConditionResult',
|
|
1674
|
+
'GetCentralNotificationRuleNotificationConditionNotificationEventConfigResult',
|
|
1661
1675
|
'GetConnectorAzureRepoApiAuthenticationResult',
|
|
1662
1676
|
'GetConnectorAzureRepoCredentialResult',
|
|
1663
1677
|
'GetConnectorAzureRepoCredentialHttpResult',
|
|
@@ -3602,6 +3616,334 @@ class BitbucketConnectorCredentialsSsh(dict):
|
|
|
3602
3616
|
return pulumi.get(self, "ssh_key_ref")
|
|
3603
3617
|
|
|
3604
3618
|
|
|
3619
|
+
@pulumi.output_type
|
|
3620
|
+
class CentralNotificationChannelChannel(dict):
|
|
3621
|
+
@staticmethod
|
|
3622
|
+
def __key_warning(key: str):
|
|
3623
|
+
suggest = None
|
|
3624
|
+
if key == "apiKey":
|
|
3625
|
+
suggest = "api_key"
|
|
3626
|
+
elif key == "datadogUrls":
|
|
3627
|
+
suggest = "datadog_urls"
|
|
3628
|
+
elif key == "delegateSelectors":
|
|
3629
|
+
suggest = "delegate_selectors"
|
|
3630
|
+
elif key == "emailIds":
|
|
3631
|
+
suggest = "email_ids"
|
|
3632
|
+
elif key == "executeOnDelegate":
|
|
3633
|
+
suggest = "execute_on_delegate"
|
|
3634
|
+
elif key == "msTeamKeys":
|
|
3635
|
+
suggest = "ms_team_keys"
|
|
3636
|
+
elif key == "pagerDutyIntegrationKeys":
|
|
3637
|
+
suggest = "pager_duty_integration_keys"
|
|
3638
|
+
elif key == "slackWebhookUrls":
|
|
3639
|
+
suggest = "slack_webhook_urls"
|
|
3640
|
+
elif key == "userGroups":
|
|
3641
|
+
suggest = "user_groups"
|
|
3642
|
+
elif key == "webhookUrls":
|
|
3643
|
+
suggest = "webhook_urls"
|
|
3644
|
+
|
|
3645
|
+
if suggest:
|
|
3646
|
+
pulumi.log.warn(f"Key '{key}' not found in CentralNotificationChannelChannel. Access the value via the '{suggest}' property getter instead.")
|
|
3647
|
+
|
|
3648
|
+
def __getitem__(self, key: str) -> Any:
|
|
3649
|
+
CentralNotificationChannelChannel.__key_warning(key)
|
|
3650
|
+
return super().__getitem__(key)
|
|
3651
|
+
|
|
3652
|
+
def get(self, key: str, default = None) -> Any:
|
|
3653
|
+
CentralNotificationChannelChannel.__key_warning(key)
|
|
3654
|
+
return super().get(key, default)
|
|
3655
|
+
|
|
3656
|
+
def __init__(__self__, *,
|
|
3657
|
+
api_key: Optional[builtins.str] = None,
|
|
3658
|
+
datadog_urls: Optional[Sequence[builtins.str]] = None,
|
|
3659
|
+
delegate_selectors: Optional[Sequence[builtins.str]] = None,
|
|
3660
|
+
email_ids: Optional[Sequence[builtins.str]] = None,
|
|
3661
|
+
execute_on_delegate: Optional[builtins.bool] = None,
|
|
3662
|
+
headers: Optional[Sequence['outputs.CentralNotificationChannelChannelHeader']] = None,
|
|
3663
|
+
ms_team_keys: Optional[Sequence[builtins.str]] = None,
|
|
3664
|
+
pager_duty_integration_keys: Optional[Sequence[builtins.str]] = None,
|
|
3665
|
+
slack_webhook_urls: Optional[Sequence[builtins.str]] = None,
|
|
3666
|
+
user_groups: Optional[Sequence['outputs.CentralNotificationChannelChannelUserGroup']] = None,
|
|
3667
|
+
webhook_urls: Optional[Sequence[builtins.str]] = None):
|
|
3668
|
+
if api_key is not None:
|
|
3669
|
+
pulumi.set(__self__, "api_key", api_key)
|
|
3670
|
+
if datadog_urls is not None:
|
|
3671
|
+
pulumi.set(__self__, "datadog_urls", datadog_urls)
|
|
3672
|
+
if delegate_selectors is not None:
|
|
3673
|
+
pulumi.set(__self__, "delegate_selectors", delegate_selectors)
|
|
3674
|
+
if email_ids is not None:
|
|
3675
|
+
pulumi.set(__self__, "email_ids", email_ids)
|
|
3676
|
+
if execute_on_delegate is not None:
|
|
3677
|
+
pulumi.set(__self__, "execute_on_delegate", execute_on_delegate)
|
|
3678
|
+
if headers is not None:
|
|
3679
|
+
pulumi.set(__self__, "headers", headers)
|
|
3680
|
+
if ms_team_keys is not None:
|
|
3681
|
+
pulumi.set(__self__, "ms_team_keys", ms_team_keys)
|
|
3682
|
+
if pager_duty_integration_keys is not None:
|
|
3683
|
+
pulumi.set(__self__, "pager_duty_integration_keys", pager_duty_integration_keys)
|
|
3684
|
+
if slack_webhook_urls is not None:
|
|
3685
|
+
pulumi.set(__self__, "slack_webhook_urls", slack_webhook_urls)
|
|
3686
|
+
if user_groups is not None:
|
|
3687
|
+
pulumi.set(__self__, "user_groups", user_groups)
|
|
3688
|
+
if webhook_urls is not None:
|
|
3689
|
+
pulumi.set(__self__, "webhook_urls", webhook_urls)
|
|
3690
|
+
|
|
3691
|
+
@property
|
|
3692
|
+
@pulumi.getter(name="apiKey")
|
|
3693
|
+
def api_key(self) -> Optional[builtins.str]:
|
|
3694
|
+
return pulumi.get(self, "api_key")
|
|
3695
|
+
|
|
3696
|
+
@property
|
|
3697
|
+
@pulumi.getter(name="datadogUrls")
|
|
3698
|
+
def datadog_urls(self) -> Optional[Sequence[builtins.str]]:
|
|
3699
|
+
return pulumi.get(self, "datadog_urls")
|
|
3700
|
+
|
|
3701
|
+
@property
|
|
3702
|
+
@pulumi.getter(name="delegateSelectors")
|
|
3703
|
+
def delegate_selectors(self) -> Optional[Sequence[builtins.str]]:
|
|
3704
|
+
return pulumi.get(self, "delegate_selectors")
|
|
3705
|
+
|
|
3706
|
+
@property
|
|
3707
|
+
@pulumi.getter(name="emailIds")
|
|
3708
|
+
def email_ids(self) -> Optional[Sequence[builtins.str]]:
|
|
3709
|
+
return pulumi.get(self, "email_ids")
|
|
3710
|
+
|
|
3711
|
+
@property
|
|
3712
|
+
@pulumi.getter(name="executeOnDelegate")
|
|
3713
|
+
def execute_on_delegate(self) -> Optional[builtins.bool]:
|
|
3714
|
+
return pulumi.get(self, "execute_on_delegate")
|
|
3715
|
+
|
|
3716
|
+
@property
|
|
3717
|
+
@pulumi.getter
|
|
3718
|
+
def headers(self) -> Optional[Sequence['outputs.CentralNotificationChannelChannelHeader']]:
|
|
3719
|
+
return pulumi.get(self, "headers")
|
|
3720
|
+
|
|
3721
|
+
@property
|
|
3722
|
+
@pulumi.getter(name="msTeamKeys")
|
|
3723
|
+
def ms_team_keys(self) -> Optional[Sequence[builtins.str]]:
|
|
3724
|
+
return pulumi.get(self, "ms_team_keys")
|
|
3725
|
+
|
|
3726
|
+
@property
|
|
3727
|
+
@pulumi.getter(name="pagerDutyIntegrationKeys")
|
|
3728
|
+
def pager_duty_integration_keys(self) -> Optional[Sequence[builtins.str]]:
|
|
3729
|
+
return pulumi.get(self, "pager_duty_integration_keys")
|
|
3730
|
+
|
|
3731
|
+
@property
|
|
3732
|
+
@pulumi.getter(name="slackWebhookUrls")
|
|
3733
|
+
def slack_webhook_urls(self) -> Optional[Sequence[builtins.str]]:
|
|
3734
|
+
return pulumi.get(self, "slack_webhook_urls")
|
|
3735
|
+
|
|
3736
|
+
@property
|
|
3737
|
+
@pulumi.getter(name="userGroups")
|
|
3738
|
+
def user_groups(self) -> Optional[Sequence['outputs.CentralNotificationChannelChannelUserGroup']]:
|
|
3739
|
+
return pulumi.get(self, "user_groups")
|
|
3740
|
+
|
|
3741
|
+
@property
|
|
3742
|
+
@pulumi.getter(name="webhookUrls")
|
|
3743
|
+
def webhook_urls(self) -> Optional[Sequence[builtins.str]]:
|
|
3744
|
+
return pulumi.get(self, "webhook_urls")
|
|
3745
|
+
|
|
3746
|
+
|
|
3747
|
+
@pulumi.output_type
|
|
3748
|
+
class CentralNotificationChannelChannelHeader(dict):
|
|
3749
|
+
def __init__(__self__, *,
|
|
3750
|
+
key: builtins.str,
|
|
3751
|
+
value: builtins.str):
|
|
3752
|
+
pulumi.set(__self__, "key", key)
|
|
3753
|
+
pulumi.set(__self__, "value", value)
|
|
3754
|
+
|
|
3755
|
+
@property
|
|
3756
|
+
@pulumi.getter
|
|
3757
|
+
def key(self) -> builtins.str:
|
|
3758
|
+
return pulumi.get(self, "key")
|
|
3759
|
+
|
|
3760
|
+
@property
|
|
3761
|
+
@pulumi.getter
|
|
3762
|
+
def value(self) -> builtins.str:
|
|
3763
|
+
return pulumi.get(self, "value")
|
|
3764
|
+
|
|
3765
|
+
|
|
3766
|
+
@pulumi.output_type
|
|
3767
|
+
class CentralNotificationChannelChannelUserGroup(dict):
|
|
3768
|
+
def __init__(__self__, *,
|
|
3769
|
+
identifier: builtins.str):
|
|
3770
|
+
pulumi.set(__self__, "identifier", identifier)
|
|
3771
|
+
|
|
3772
|
+
@property
|
|
3773
|
+
@pulumi.getter
|
|
3774
|
+
def identifier(self) -> builtins.str:
|
|
3775
|
+
return pulumi.get(self, "identifier")
|
|
3776
|
+
|
|
3777
|
+
|
|
3778
|
+
@pulumi.output_type
|
|
3779
|
+
class CentralNotificationRuleCustomNotificationTemplateRef(dict):
|
|
3780
|
+
@staticmethod
|
|
3781
|
+
def __key_warning(key: str):
|
|
3782
|
+
suggest = None
|
|
3783
|
+
if key == "templateRef":
|
|
3784
|
+
suggest = "template_ref"
|
|
3785
|
+
elif key == "versionLabel":
|
|
3786
|
+
suggest = "version_label"
|
|
3787
|
+
|
|
3788
|
+
if suggest:
|
|
3789
|
+
pulumi.log.warn(f"Key '{key}' not found in CentralNotificationRuleCustomNotificationTemplateRef. Access the value via the '{suggest}' property getter instead.")
|
|
3790
|
+
|
|
3791
|
+
def __getitem__(self, key: str) -> Any:
|
|
3792
|
+
CentralNotificationRuleCustomNotificationTemplateRef.__key_warning(key)
|
|
3793
|
+
return super().__getitem__(key)
|
|
3794
|
+
|
|
3795
|
+
def get(self, key: str, default = None) -> Any:
|
|
3796
|
+
CentralNotificationRuleCustomNotificationTemplateRef.__key_warning(key)
|
|
3797
|
+
return super().get(key, default)
|
|
3798
|
+
|
|
3799
|
+
def __init__(__self__, *,
|
|
3800
|
+
template_ref: builtins.str,
|
|
3801
|
+
version_label: builtins.str,
|
|
3802
|
+
variables: Optional[Sequence['outputs.CentralNotificationRuleCustomNotificationTemplateRefVariable']] = None):
|
|
3803
|
+
pulumi.set(__self__, "template_ref", template_ref)
|
|
3804
|
+
pulumi.set(__self__, "version_label", version_label)
|
|
3805
|
+
if variables is not None:
|
|
3806
|
+
pulumi.set(__self__, "variables", variables)
|
|
3807
|
+
|
|
3808
|
+
@property
|
|
3809
|
+
@pulumi.getter(name="templateRef")
|
|
3810
|
+
def template_ref(self) -> builtins.str:
|
|
3811
|
+
return pulumi.get(self, "template_ref")
|
|
3812
|
+
|
|
3813
|
+
@property
|
|
3814
|
+
@pulumi.getter(name="versionLabel")
|
|
3815
|
+
def version_label(self) -> builtins.str:
|
|
3816
|
+
return pulumi.get(self, "version_label")
|
|
3817
|
+
|
|
3818
|
+
@property
|
|
3819
|
+
@pulumi.getter
|
|
3820
|
+
def variables(self) -> Optional[Sequence['outputs.CentralNotificationRuleCustomNotificationTemplateRefVariable']]:
|
|
3821
|
+
return pulumi.get(self, "variables")
|
|
3822
|
+
|
|
3823
|
+
|
|
3824
|
+
@pulumi.output_type
|
|
3825
|
+
class CentralNotificationRuleCustomNotificationTemplateRefVariable(dict):
|
|
3826
|
+
def __init__(__self__, *,
|
|
3827
|
+
name: builtins.str,
|
|
3828
|
+
value: builtins.str,
|
|
3829
|
+
type: Optional[builtins.str] = None):
|
|
3830
|
+
pulumi.set(__self__, "name", name)
|
|
3831
|
+
pulumi.set(__self__, "value", value)
|
|
3832
|
+
if type is not None:
|
|
3833
|
+
pulumi.set(__self__, "type", type)
|
|
3834
|
+
|
|
3835
|
+
@property
|
|
3836
|
+
@pulumi.getter
|
|
3837
|
+
def name(self) -> builtins.str:
|
|
3838
|
+
return pulumi.get(self, "name")
|
|
3839
|
+
|
|
3840
|
+
@property
|
|
3841
|
+
@pulumi.getter
|
|
3842
|
+
def value(self) -> builtins.str:
|
|
3843
|
+
return pulumi.get(self, "value")
|
|
3844
|
+
|
|
3845
|
+
@property
|
|
3846
|
+
@pulumi.getter
|
|
3847
|
+
def type(self) -> Optional[builtins.str]:
|
|
3848
|
+
return pulumi.get(self, "type")
|
|
3849
|
+
|
|
3850
|
+
|
|
3851
|
+
@pulumi.output_type
|
|
3852
|
+
class CentralNotificationRuleNotificationCondition(dict):
|
|
3853
|
+
@staticmethod
|
|
3854
|
+
def __key_warning(key: str):
|
|
3855
|
+
suggest = None
|
|
3856
|
+
if key == "conditionName":
|
|
3857
|
+
suggest = "condition_name"
|
|
3858
|
+
elif key == "notificationEventConfigs":
|
|
3859
|
+
suggest = "notification_event_configs"
|
|
3860
|
+
|
|
3861
|
+
if suggest:
|
|
3862
|
+
pulumi.log.warn(f"Key '{key}' not found in CentralNotificationRuleNotificationCondition. Access the value via the '{suggest}' property getter instead.")
|
|
3863
|
+
|
|
3864
|
+
def __getitem__(self, key: str) -> Any:
|
|
3865
|
+
CentralNotificationRuleNotificationCondition.__key_warning(key)
|
|
3866
|
+
return super().__getitem__(key)
|
|
3867
|
+
|
|
3868
|
+
def get(self, key: str, default = None) -> Any:
|
|
3869
|
+
CentralNotificationRuleNotificationCondition.__key_warning(key)
|
|
3870
|
+
return super().get(key, default)
|
|
3871
|
+
|
|
3872
|
+
def __init__(__self__, *,
|
|
3873
|
+
condition_name: builtins.str,
|
|
3874
|
+
notification_event_configs: Sequence['outputs.CentralNotificationRuleNotificationConditionNotificationEventConfig']):
|
|
3875
|
+
pulumi.set(__self__, "condition_name", condition_name)
|
|
3876
|
+
pulumi.set(__self__, "notification_event_configs", notification_event_configs)
|
|
3877
|
+
|
|
3878
|
+
@property
|
|
3879
|
+
@pulumi.getter(name="conditionName")
|
|
3880
|
+
def condition_name(self) -> builtins.str:
|
|
3881
|
+
return pulumi.get(self, "condition_name")
|
|
3882
|
+
|
|
3883
|
+
@property
|
|
3884
|
+
@pulumi.getter(name="notificationEventConfigs")
|
|
3885
|
+
def notification_event_configs(self) -> Sequence['outputs.CentralNotificationRuleNotificationConditionNotificationEventConfig']:
|
|
3886
|
+
return pulumi.get(self, "notification_event_configs")
|
|
3887
|
+
|
|
3888
|
+
|
|
3889
|
+
@pulumi.output_type
|
|
3890
|
+
class CentralNotificationRuleNotificationConditionNotificationEventConfig(dict):
|
|
3891
|
+
@staticmethod
|
|
3892
|
+
def __key_warning(key: str):
|
|
3893
|
+
suggest = None
|
|
3894
|
+
if key == "notificationEntity":
|
|
3895
|
+
suggest = "notification_entity"
|
|
3896
|
+
elif key == "notificationEvent":
|
|
3897
|
+
suggest = "notification_event"
|
|
3898
|
+
elif key == "entityIdentifiers":
|
|
3899
|
+
suggest = "entity_identifiers"
|
|
3900
|
+
elif key == "notificationEventData":
|
|
3901
|
+
suggest = "notification_event_data"
|
|
3902
|
+
|
|
3903
|
+
if suggest:
|
|
3904
|
+
pulumi.log.warn(f"Key '{key}' not found in CentralNotificationRuleNotificationConditionNotificationEventConfig. Access the value via the '{suggest}' property getter instead.")
|
|
3905
|
+
|
|
3906
|
+
def __getitem__(self, key: str) -> Any:
|
|
3907
|
+
CentralNotificationRuleNotificationConditionNotificationEventConfig.__key_warning(key)
|
|
3908
|
+
return super().__getitem__(key)
|
|
3909
|
+
|
|
3910
|
+
def get(self, key: str, default = None) -> Any:
|
|
3911
|
+
CentralNotificationRuleNotificationConditionNotificationEventConfig.__key_warning(key)
|
|
3912
|
+
return super().get(key, default)
|
|
3913
|
+
|
|
3914
|
+
def __init__(__self__, *,
|
|
3915
|
+
notification_entity: builtins.str,
|
|
3916
|
+
notification_event: builtins.str,
|
|
3917
|
+
entity_identifiers: Optional[Sequence[builtins.str]] = None,
|
|
3918
|
+
notification_event_data: Optional[Mapping[str, builtins.str]] = None):
|
|
3919
|
+
pulumi.set(__self__, "notification_entity", notification_entity)
|
|
3920
|
+
pulumi.set(__self__, "notification_event", notification_event)
|
|
3921
|
+
if entity_identifiers is not None:
|
|
3922
|
+
pulumi.set(__self__, "entity_identifiers", entity_identifiers)
|
|
3923
|
+
if notification_event_data is not None:
|
|
3924
|
+
pulumi.set(__self__, "notification_event_data", notification_event_data)
|
|
3925
|
+
|
|
3926
|
+
@property
|
|
3927
|
+
@pulumi.getter(name="notificationEntity")
|
|
3928
|
+
def notification_entity(self) -> builtins.str:
|
|
3929
|
+
return pulumi.get(self, "notification_entity")
|
|
3930
|
+
|
|
3931
|
+
@property
|
|
3932
|
+
@pulumi.getter(name="notificationEvent")
|
|
3933
|
+
def notification_event(self) -> builtins.str:
|
|
3934
|
+
return pulumi.get(self, "notification_event")
|
|
3935
|
+
|
|
3936
|
+
@property
|
|
3937
|
+
@pulumi.getter(name="entityIdentifiers")
|
|
3938
|
+
def entity_identifiers(self) -> Optional[Sequence[builtins.str]]:
|
|
3939
|
+
return pulumi.get(self, "entity_identifiers")
|
|
3940
|
+
|
|
3941
|
+
@property
|
|
3942
|
+
@pulumi.getter(name="notificationEventData")
|
|
3943
|
+
def notification_event_data(self) -> Optional[Mapping[str, builtins.str]]:
|
|
3944
|
+
return pulumi.get(self, "notification_event_data")
|
|
3945
|
+
|
|
3946
|
+
|
|
3605
3947
|
@pulumi.output_type
|
|
3606
3948
|
class ConnectorAzureArtifactsCredentials(dict):
|
|
3607
3949
|
@staticmethod
|
|
@@ -104536,6 +104878,292 @@ class GetCcmFiltersFilterPropertyResult(dict):
|
|
|
104536
104878
|
return pulumi.get(self, "tags")
|
|
104537
104879
|
|
|
104538
104880
|
|
|
104881
|
+
@pulumi.output_type
|
|
104882
|
+
class GetCentralNotificationChannelChannelResult(dict):
|
|
104883
|
+
def __init__(__self__, *,
|
|
104884
|
+
headers: Sequence['outputs.GetCentralNotificationChannelChannelHeaderResult'],
|
|
104885
|
+
api_key: Optional[builtins.str] = None,
|
|
104886
|
+
datadog_urls: Optional[Sequence[builtins.str]] = None,
|
|
104887
|
+
delegate_selectors: Optional[Sequence[builtins.str]] = None,
|
|
104888
|
+
email_ids: Optional[Sequence[builtins.str]] = None,
|
|
104889
|
+
execute_on_delegate: Optional[builtins.bool] = None,
|
|
104890
|
+
ms_team_keys: Optional[Sequence[builtins.str]] = None,
|
|
104891
|
+
pager_duty_integration_keys: Optional[Sequence[builtins.str]] = None,
|
|
104892
|
+
slack_webhook_urls: Optional[Sequence[builtins.str]] = None,
|
|
104893
|
+
user_groups: Optional[Sequence['outputs.GetCentralNotificationChannelChannelUserGroupResult']] = None,
|
|
104894
|
+
webhook_urls: Optional[Sequence[builtins.str]] = None):
|
|
104895
|
+
"""
|
|
104896
|
+
:param Sequence['GetCentralNotificationChannelChannelHeaderArgs'] headers: Custom HTTP headers to include in webhook requests.
|
|
104897
|
+
:param builtins.str api_key: API key for the webhook or integration.
|
|
104898
|
+
:param Sequence[builtins.str] datadog_urls: List of Datadog webhook URLs.
|
|
104899
|
+
:param Sequence[builtins.str] delegate_selectors: List of delegate selectors to use for sending notifications.
|
|
104900
|
+
:param Sequence[builtins.str] email_ids: List of email addresses to notify.
|
|
104901
|
+
:param builtins.bool execute_on_delegate: Whether to execute the notification logic on delegate.
|
|
104902
|
+
:param Sequence[builtins.str] ms_team_keys: List of Microsoft Teams integration keys.
|
|
104903
|
+
:param Sequence[builtins.str] pager_duty_integration_keys: List of PagerDuty integration keys.
|
|
104904
|
+
:param Sequence[builtins.str] slack_webhook_urls: List of Slack webhook URLs to send notifications to.
|
|
104905
|
+
:param Sequence['GetCentralNotificationChannelChannelUserGroupArgs'] user_groups: List of user groups to notify.
|
|
104906
|
+
:param Sequence[builtins.str] webhook_urls: List of generic webhook URLs.
|
|
104907
|
+
"""
|
|
104908
|
+
pulumi.set(__self__, "headers", headers)
|
|
104909
|
+
if api_key is not None:
|
|
104910
|
+
pulumi.set(__self__, "api_key", api_key)
|
|
104911
|
+
if datadog_urls is not None:
|
|
104912
|
+
pulumi.set(__self__, "datadog_urls", datadog_urls)
|
|
104913
|
+
if delegate_selectors is not None:
|
|
104914
|
+
pulumi.set(__self__, "delegate_selectors", delegate_selectors)
|
|
104915
|
+
if email_ids is not None:
|
|
104916
|
+
pulumi.set(__self__, "email_ids", email_ids)
|
|
104917
|
+
if execute_on_delegate is not None:
|
|
104918
|
+
pulumi.set(__self__, "execute_on_delegate", execute_on_delegate)
|
|
104919
|
+
if ms_team_keys is not None:
|
|
104920
|
+
pulumi.set(__self__, "ms_team_keys", ms_team_keys)
|
|
104921
|
+
if pager_duty_integration_keys is not None:
|
|
104922
|
+
pulumi.set(__self__, "pager_duty_integration_keys", pager_duty_integration_keys)
|
|
104923
|
+
if slack_webhook_urls is not None:
|
|
104924
|
+
pulumi.set(__self__, "slack_webhook_urls", slack_webhook_urls)
|
|
104925
|
+
if user_groups is not None:
|
|
104926
|
+
pulumi.set(__self__, "user_groups", user_groups)
|
|
104927
|
+
if webhook_urls is not None:
|
|
104928
|
+
pulumi.set(__self__, "webhook_urls", webhook_urls)
|
|
104929
|
+
|
|
104930
|
+
@property
|
|
104931
|
+
@pulumi.getter
|
|
104932
|
+
def headers(self) -> Sequence['outputs.GetCentralNotificationChannelChannelHeaderResult']:
|
|
104933
|
+
"""
|
|
104934
|
+
Custom HTTP headers to include in webhook requests.
|
|
104935
|
+
"""
|
|
104936
|
+
return pulumi.get(self, "headers")
|
|
104937
|
+
|
|
104938
|
+
@property
|
|
104939
|
+
@pulumi.getter(name="apiKey")
|
|
104940
|
+
def api_key(self) -> Optional[builtins.str]:
|
|
104941
|
+
"""
|
|
104942
|
+
API key for the webhook or integration.
|
|
104943
|
+
"""
|
|
104944
|
+
return pulumi.get(self, "api_key")
|
|
104945
|
+
|
|
104946
|
+
@property
|
|
104947
|
+
@pulumi.getter(name="datadogUrls")
|
|
104948
|
+
def datadog_urls(self) -> Optional[Sequence[builtins.str]]:
|
|
104949
|
+
"""
|
|
104950
|
+
List of Datadog webhook URLs.
|
|
104951
|
+
"""
|
|
104952
|
+
return pulumi.get(self, "datadog_urls")
|
|
104953
|
+
|
|
104954
|
+
@property
|
|
104955
|
+
@pulumi.getter(name="delegateSelectors")
|
|
104956
|
+
def delegate_selectors(self) -> Optional[Sequence[builtins.str]]:
|
|
104957
|
+
"""
|
|
104958
|
+
List of delegate selectors to use for sending notifications.
|
|
104959
|
+
"""
|
|
104960
|
+
return pulumi.get(self, "delegate_selectors")
|
|
104961
|
+
|
|
104962
|
+
@property
|
|
104963
|
+
@pulumi.getter(name="emailIds")
|
|
104964
|
+
def email_ids(self) -> Optional[Sequence[builtins.str]]:
|
|
104965
|
+
"""
|
|
104966
|
+
List of email addresses to notify.
|
|
104967
|
+
"""
|
|
104968
|
+
return pulumi.get(self, "email_ids")
|
|
104969
|
+
|
|
104970
|
+
@property
|
|
104971
|
+
@pulumi.getter(name="executeOnDelegate")
|
|
104972
|
+
def execute_on_delegate(self) -> Optional[builtins.bool]:
|
|
104973
|
+
"""
|
|
104974
|
+
Whether to execute the notification logic on delegate.
|
|
104975
|
+
"""
|
|
104976
|
+
return pulumi.get(self, "execute_on_delegate")
|
|
104977
|
+
|
|
104978
|
+
@property
|
|
104979
|
+
@pulumi.getter(name="msTeamKeys")
|
|
104980
|
+
def ms_team_keys(self) -> Optional[Sequence[builtins.str]]:
|
|
104981
|
+
"""
|
|
104982
|
+
List of Microsoft Teams integration keys.
|
|
104983
|
+
"""
|
|
104984
|
+
return pulumi.get(self, "ms_team_keys")
|
|
104985
|
+
|
|
104986
|
+
@property
|
|
104987
|
+
@pulumi.getter(name="pagerDutyIntegrationKeys")
|
|
104988
|
+
def pager_duty_integration_keys(self) -> Optional[Sequence[builtins.str]]:
|
|
104989
|
+
"""
|
|
104990
|
+
List of PagerDuty integration keys.
|
|
104991
|
+
"""
|
|
104992
|
+
return pulumi.get(self, "pager_duty_integration_keys")
|
|
104993
|
+
|
|
104994
|
+
@property
|
|
104995
|
+
@pulumi.getter(name="slackWebhookUrls")
|
|
104996
|
+
def slack_webhook_urls(self) -> Optional[Sequence[builtins.str]]:
|
|
104997
|
+
"""
|
|
104998
|
+
List of Slack webhook URLs to send notifications to.
|
|
104999
|
+
"""
|
|
105000
|
+
return pulumi.get(self, "slack_webhook_urls")
|
|
105001
|
+
|
|
105002
|
+
@property
|
|
105003
|
+
@pulumi.getter(name="userGroups")
|
|
105004
|
+
def user_groups(self) -> Optional[Sequence['outputs.GetCentralNotificationChannelChannelUserGroupResult']]:
|
|
105005
|
+
"""
|
|
105006
|
+
List of user groups to notify.
|
|
105007
|
+
"""
|
|
105008
|
+
return pulumi.get(self, "user_groups")
|
|
105009
|
+
|
|
105010
|
+
@property
|
|
105011
|
+
@pulumi.getter(name="webhookUrls")
|
|
105012
|
+
def webhook_urls(self) -> Optional[Sequence[builtins.str]]:
|
|
105013
|
+
"""
|
|
105014
|
+
List of generic webhook URLs.
|
|
105015
|
+
"""
|
|
105016
|
+
return pulumi.get(self, "webhook_urls")
|
|
105017
|
+
|
|
105018
|
+
|
|
105019
|
+
@pulumi.output_type
|
|
105020
|
+
class GetCentralNotificationChannelChannelHeaderResult(dict):
|
|
105021
|
+
def __init__(__self__, *,
|
|
105022
|
+
key: builtins.str,
|
|
105023
|
+
value: builtins.str):
|
|
105024
|
+
"""
|
|
105025
|
+
:param builtins.str key: Header key name.
|
|
105026
|
+
:param builtins.str value: Header value.
|
|
105027
|
+
"""
|
|
105028
|
+
pulumi.set(__self__, "key", key)
|
|
105029
|
+
pulumi.set(__self__, "value", value)
|
|
105030
|
+
|
|
105031
|
+
@property
|
|
105032
|
+
@pulumi.getter
|
|
105033
|
+
def key(self) -> builtins.str:
|
|
105034
|
+
"""
|
|
105035
|
+
Header key name.
|
|
105036
|
+
"""
|
|
105037
|
+
return pulumi.get(self, "key")
|
|
105038
|
+
|
|
105039
|
+
@property
|
|
105040
|
+
@pulumi.getter
|
|
105041
|
+
def value(self) -> builtins.str:
|
|
105042
|
+
"""
|
|
105043
|
+
Header value.
|
|
105044
|
+
"""
|
|
105045
|
+
return pulumi.get(self, "value")
|
|
105046
|
+
|
|
105047
|
+
|
|
105048
|
+
@pulumi.output_type
|
|
105049
|
+
class GetCentralNotificationChannelChannelUserGroupResult(dict):
|
|
105050
|
+
def __init__(__self__, *,
|
|
105051
|
+
identifier: Optional[builtins.str] = None):
|
|
105052
|
+
"""
|
|
105053
|
+
:param builtins.str identifier: Identifier of the user group.
|
|
105054
|
+
"""
|
|
105055
|
+
if identifier is not None:
|
|
105056
|
+
pulumi.set(__self__, "identifier", identifier)
|
|
105057
|
+
|
|
105058
|
+
@property
|
|
105059
|
+
@pulumi.getter
|
|
105060
|
+
def identifier(self) -> Optional[builtins.str]:
|
|
105061
|
+
"""
|
|
105062
|
+
Identifier of the user group.
|
|
105063
|
+
"""
|
|
105064
|
+
return pulumi.get(self, "identifier")
|
|
105065
|
+
|
|
105066
|
+
|
|
105067
|
+
@pulumi.output_type
|
|
105068
|
+
class GetCentralNotificationRuleCustomNotificationTemplateRefResult(dict):
|
|
105069
|
+
def __init__(__self__, *,
|
|
105070
|
+
template_ref: builtins.str,
|
|
105071
|
+
version_label: builtins.str,
|
|
105072
|
+
variables: Optional[Sequence['outputs.GetCentralNotificationRuleCustomNotificationTemplateRefVariableResult']] = None):
|
|
105073
|
+
pulumi.set(__self__, "template_ref", template_ref)
|
|
105074
|
+
pulumi.set(__self__, "version_label", version_label)
|
|
105075
|
+
if variables is not None:
|
|
105076
|
+
pulumi.set(__self__, "variables", variables)
|
|
105077
|
+
|
|
105078
|
+
@property
|
|
105079
|
+
@pulumi.getter(name="templateRef")
|
|
105080
|
+
def template_ref(self) -> builtins.str:
|
|
105081
|
+
return pulumi.get(self, "template_ref")
|
|
105082
|
+
|
|
105083
|
+
@property
|
|
105084
|
+
@pulumi.getter(name="versionLabel")
|
|
105085
|
+
def version_label(self) -> builtins.str:
|
|
105086
|
+
return pulumi.get(self, "version_label")
|
|
105087
|
+
|
|
105088
|
+
@property
|
|
105089
|
+
@pulumi.getter
|
|
105090
|
+
def variables(self) -> Optional[Sequence['outputs.GetCentralNotificationRuleCustomNotificationTemplateRefVariableResult']]:
|
|
105091
|
+
return pulumi.get(self, "variables")
|
|
105092
|
+
|
|
105093
|
+
|
|
105094
|
+
@pulumi.output_type
|
|
105095
|
+
class GetCentralNotificationRuleCustomNotificationTemplateRefVariableResult(dict):
|
|
105096
|
+
def __init__(__self__, *,
|
|
105097
|
+
name: builtins.str,
|
|
105098
|
+
value: builtins.str,
|
|
105099
|
+
type: Optional[builtins.str] = None):
|
|
105100
|
+
pulumi.set(__self__, "name", name)
|
|
105101
|
+
pulumi.set(__self__, "value", value)
|
|
105102
|
+
if type is not None:
|
|
105103
|
+
pulumi.set(__self__, "type", type)
|
|
105104
|
+
|
|
105105
|
+
@property
|
|
105106
|
+
@pulumi.getter
|
|
105107
|
+
def name(self) -> builtins.str:
|
|
105108
|
+
return pulumi.get(self, "name")
|
|
105109
|
+
|
|
105110
|
+
@property
|
|
105111
|
+
@pulumi.getter
|
|
105112
|
+
def value(self) -> builtins.str:
|
|
105113
|
+
return pulumi.get(self, "value")
|
|
105114
|
+
|
|
105115
|
+
@property
|
|
105116
|
+
@pulumi.getter
|
|
105117
|
+
def type(self) -> Optional[builtins.str]:
|
|
105118
|
+
return pulumi.get(self, "type")
|
|
105119
|
+
|
|
105120
|
+
|
|
105121
|
+
@pulumi.output_type
|
|
105122
|
+
class GetCentralNotificationRuleNotificationConditionResult(dict):
|
|
105123
|
+
def __init__(__self__, *,
|
|
105124
|
+
condition_name: builtins.str,
|
|
105125
|
+
notification_event_configs: Sequence['outputs.GetCentralNotificationRuleNotificationConditionNotificationEventConfigResult']):
|
|
105126
|
+
pulumi.set(__self__, "condition_name", condition_name)
|
|
105127
|
+
pulumi.set(__self__, "notification_event_configs", notification_event_configs)
|
|
105128
|
+
|
|
105129
|
+
@property
|
|
105130
|
+
@pulumi.getter(name="conditionName")
|
|
105131
|
+
def condition_name(self) -> builtins.str:
|
|
105132
|
+
return pulumi.get(self, "condition_name")
|
|
105133
|
+
|
|
105134
|
+
@property
|
|
105135
|
+
@pulumi.getter(name="notificationEventConfigs")
|
|
105136
|
+
def notification_event_configs(self) -> Sequence['outputs.GetCentralNotificationRuleNotificationConditionNotificationEventConfigResult']:
|
|
105137
|
+
return pulumi.get(self, "notification_event_configs")
|
|
105138
|
+
|
|
105139
|
+
|
|
105140
|
+
@pulumi.output_type
|
|
105141
|
+
class GetCentralNotificationRuleNotificationConditionNotificationEventConfigResult(dict):
|
|
105142
|
+
def __init__(__self__, *,
|
|
105143
|
+
notification_entity: builtins.str,
|
|
105144
|
+
notification_event: builtins.str,
|
|
105145
|
+
notification_event_data: Optional[Mapping[str, builtins.str]] = None):
|
|
105146
|
+
pulumi.set(__self__, "notification_entity", notification_entity)
|
|
105147
|
+
pulumi.set(__self__, "notification_event", notification_event)
|
|
105148
|
+
if notification_event_data is not None:
|
|
105149
|
+
pulumi.set(__self__, "notification_event_data", notification_event_data)
|
|
105150
|
+
|
|
105151
|
+
@property
|
|
105152
|
+
@pulumi.getter(name="notificationEntity")
|
|
105153
|
+
def notification_entity(self) -> builtins.str:
|
|
105154
|
+
return pulumi.get(self, "notification_entity")
|
|
105155
|
+
|
|
105156
|
+
@property
|
|
105157
|
+
@pulumi.getter(name="notificationEvent")
|
|
105158
|
+
def notification_event(self) -> builtins.str:
|
|
105159
|
+
return pulumi.get(self, "notification_event")
|
|
105160
|
+
|
|
105161
|
+
@property
|
|
105162
|
+
@pulumi.getter(name="notificationEventData")
|
|
105163
|
+
def notification_event_data(self) -> Optional[Mapping[str, builtins.str]]:
|
|
105164
|
+
return pulumi.get(self, "notification_event_data")
|
|
105165
|
+
|
|
105166
|
+
|
|
104539
105167
|
@pulumi.output_type
|
|
104540
105168
|
class GetConnectorAzureRepoApiAuthenticationResult(dict):
|
|
104541
105169
|
def __init__(__self__, *,
|