pulumi-harness 0.8.4a1757561435__py3-none-any.whl → 0.8.5a1759808387__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.

@@ -46,6 +46,7 @@ __all__ = [
46
46
  'AzureCloudProviderConnectorCredentialsAzureManualDetailsAuth',
47
47
  'AzureCloudProviderConnectorCredentialsAzureManualDetailsAuthAzureClientKeyCert',
48
48
  'AzureCloudProviderConnectorCredentialsAzureManualDetailsAuthAzureClientSecretKey',
49
+ 'AzureCloudProviderConnectorCredentialsAzureOidcSpec',
49
50
  'BitbucketConnectorApiAuthentication',
50
51
  'BitbucketConnectorCredentials',
51
52
  'BitbucketConnectorCredentialsHttp',
@@ -1579,6 +1580,11 @@ __all__ = [
1579
1580
  'NotificationRuleRequestNotificationMethod',
1580
1581
  'OciHelmConnectorCredentials',
1581
1582
  'OverridesGitDetails',
1583
+ 'PipelineCentralNotificationRuleCustomNotificationTemplateRef',
1584
+ 'PipelineCentralNotificationRuleCustomNotificationTemplateRefVariable',
1585
+ 'PipelineCentralNotificationRuleNotificationCondition',
1586
+ 'PipelineCentralNotificationRuleNotificationConditionNotificationEventConfig',
1587
+ 'PipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventData',
1582
1588
  'PipelineFiltersFilterProperties',
1583
1589
  'PipelineFiltersFilterPropertiesModuleProperties',
1584
1590
  'PipelineFiltersFilterPropertiesModulePropertiesCd',
@@ -1665,6 +1671,7 @@ __all__ = [
1665
1671
  'GetAzureCloudProviderConnectorCredentialAzureManualDetailAuthResult',
1666
1672
  'GetAzureCloudProviderConnectorCredentialAzureManualDetailAuthAzureClientKeyCertResult',
1667
1673
  'GetAzureCloudProviderConnectorCredentialAzureManualDetailAuthAzureClientSecretKeyResult',
1674
+ 'GetAzureCloudProviderConnectorCredentialAzureOidcSpecResult',
1668
1675
  'GetBitbucketConnectorApiAuthenticationResult',
1669
1676
  'GetBitbucketConnectorCredentialResult',
1670
1677
  'GetBitbucketConnectorCredentialHttpResult',
@@ -1795,6 +1802,11 @@ __all__ = [
1795
1802
  'GetOciHelmConnectorCredentialResult',
1796
1803
  'GetOverridesGitDetailsResult',
1797
1804
  'GetPermissionsPermissionResult',
1805
+ 'GetPipelineCentralNotificationRuleCustomNotificationTemplateRefResult',
1806
+ 'GetPipelineCentralNotificationRuleCustomNotificationTemplateRefVariableResult',
1807
+ 'GetPipelineCentralNotificationRuleNotificationConditionResult',
1808
+ 'GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfigResult',
1809
+ 'GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventDataResult',
1798
1810
  'GetPipelineFiltersFilterPropertyResult',
1799
1811
  'GetPipelineFiltersFilterPropertyModulePropertiesResult',
1800
1812
  'GetPipelineFiltersFilterPropertyModulePropertiesCdResult',
@@ -3198,6 +3210,8 @@ class AzureCloudProviderConnectorCredentials(dict):
3198
3210
  suggest = "azure_inherit_from_delegate_details"
3199
3211
  elif key == "azureManualDetails":
3200
3212
  suggest = "azure_manual_details"
3213
+ elif key == "azureOidcSpec":
3214
+ suggest = "azure_oidc_spec"
3201
3215
 
3202
3216
  if suggest:
3203
3217
  pulumi.log.warn(f"Key '{key}' not found in AzureCloudProviderConnectorCredentials. Access the value via the '{suggest}' property getter instead.")
@@ -3213,23 +3227,27 @@ class AzureCloudProviderConnectorCredentials(dict):
3213
3227
  def __init__(__self__, *,
3214
3228
  type: _builtins.str,
3215
3229
  azure_inherit_from_delegate_details: Optional['outputs.AzureCloudProviderConnectorCredentialsAzureInheritFromDelegateDetails'] = None,
3216
- azure_manual_details: Optional['outputs.AzureCloudProviderConnectorCredentialsAzureManualDetails'] = None):
3230
+ azure_manual_details: Optional['outputs.AzureCloudProviderConnectorCredentialsAzureManualDetails'] = None,
3231
+ azure_oidc_spec: Optional['outputs.AzureCloudProviderConnectorCredentialsAzureOidcSpec'] = None):
3217
3232
  """
3218
- :param _builtins.str type: Type can either be InheritFromDelegate or ManualConfig.
3233
+ :param _builtins.str type: Type can be InheritFromDelegate, ManualConfig or OidcAuthentication
3219
3234
  :param 'AzureCloudProviderConnectorCredentialsAzureInheritFromDelegateDetailsArgs' azure_inherit_from_delegate_details: Authenticate to Azure Cloud Provider using details inheriting from delegate.
3220
3235
  :param 'AzureCloudProviderConnectorCredentialsAzureManualDetailsArgs' azure_manual_details: Authenticate to Azure Cloud Provider using manual details.
3236
+ :param 'AzureCloudProviderConnectorCredentialsAzureOidcSpecArgs' azure_oidc_spec: Authenticate to Azure Cloud Provider using OIDC.
3221
3237
  """
3222
3238
  pulumi.set(__self__, "type", type)
3223
3239
  if azure_inherit_from_delegate_details is not None:
3224
3240
  pulumi.set(__self__, "azure_inherit_from_delegate_details", azure_inherit_from_delegate_details)
3225
3241
  if azure_manual_details is not None:
3226
3242
  pulumi.set(__self__, "azure_manual_details", azure_manual_details)
3243
+ if azure_oidc_spec is not None:
3244
+ pulumi.set(__self__, "azure_oidc_spec", azure_oidc_spec)
3227
3245
 
3228
3246
  @_builtins.property
3229
3247
  @pulumi.getter
3230
3248
  def type(self) -> _builtins.str:
3231
3249
  """
3232
- Type can either be InheritFromDelegate or ManualConfig.
3250
+ Type can be InheritFromDelegate, ManualConfig or OidcAuthentication
3233
3251
  """
3234
3252
  return pulumi.get(self, "type")
3235
3253
 
@@ -3249,6 +3267,14 @@ class AzureCloudProviderConnectorCredentials(dict):
3249
3267
  """
3250
3268
  return pulumi.get(self, "azure_manual_details")
3251
3269
 
3270
+ @_builtins.property
3271
+ @pulumi.getter(name="azureOidcSpec")
3272
+ def azure_oidc_spec(self) -> Optional['outputs.AzureCloudProviderConnectorCredentialsAzureOidcSpec']:
3273
+ """
3274
+ Authenticate to Azure Cloud Provider using OIDC.
3275
+ """
3276
+ return pulumi.get(self, "azure_oidc_spec")
3277
+
3252
3278
 
3253
3279
  @pulumi.output_type
3254
3280
  class AzureCloudProviderConnectorCredentialsAzureInheritFromDelegateDetails(dict):
@@ -3548,6 +3574,68 @@ class AzureCloudProviderConnectorCredentialsAzureManualDetailsAuthAzureClientSec
3548
3574
  return pulumi.get(self, "secret_ref")
3549
3575
 
3550
3576
 
3577
+ @pulumi.output_type
3578
+ class AzureCloudProviderConnectorCredentialsAzureOidcSpec(dict):
3579
+ @staticmethod
3580
+ def __key_warning(key: str):
3581
+ suggest = None
3582
+ if key == "applicationId":
3583
+ suggest = "application_id"
3584
+ elif key == "tenantId":
3585
+ suggest = "tenant_id"
3586
+
3587
+ if suggest:
3588
+ pulumi.log.warn(f"Key '{key}' not found in AzureCloudProviderConnectorCredentialsAzureOidcSpec. Access the value via the '{suggest}' property getter instead.")
3589
+
3590
+ def __getitem__(self, key: str) -> Any:
3591
+ AzureCloudProviderConnectorCredentialsAzureOidcSpec.__key_warning(key)
3592
+ return super().__getitem__(key)
3593
+
3594
+ def get(self, key: str, default = None) -> Any:
3595
+ AzureCloudProviderConnectorCredentialsAzureOidcSpec.__key_warning(key)
3596
+ return super().get(key, default)
3597
+
3598
+ def __init__(__self__, *,
3599
+ application_id: Optional[_builtins.str] = None,
3600
+ audience: Optional[_builtins.str] = None,
3601
+ tenant_id: Optional[_builtins.str] = None):
3602
+ """
3603
+ :param _builtins.str application_id: Application ID of the Azure App.
3604
+ :param _builtins.str audience: The Azure Audience.
3605
+ :param _builtins.str tenant_id: The Azure Active Directory (AAD) directory ID where you created your application.
3606
+ """
3607
+ if application_id is not None:
3608
+ pulumi.set(__self__, "application_id", application_id)
3609
+ if audience is not None:
3610
+ pulumi.set(__self__, "audience", audience)
3611
+ if tenant_id is not None:
3612
+ pulumi.set(__self__, "tenant_id", tenant_id)
3613
+
3614
+ @_builtins.property
3615
+ @pulumi.getter(name="applicationId")
3616
+ def application_id(self) -> Optional[_builtins.str]:
3617
+ """
3618
+ Application ID of the Azure App.
3619
+ """
3620
+ return pulumi.get(self, "application_id")
3621
+
3622
+ @_builtins.property
3623
+ @pulumi.getter
3624
+ def audience(self) -> Optional[_builtins.str]:
3625
+ """
3626
+ The Azure Audience.
3627
+ """
3628
+ return pulumi.get(self, "audience")
3629
+
3630
+ @_builtins.property
3631
+ @pulumi.getter(name="tenantId")
3632
+ def tenant_id(self) -> Optional[_builtins.str]:
3633
+ """
3634
+ The Azure Active Directory (AAD) directory ID where you created your application.
3635
+ """
3636
+ return pulumi.get(self, "tenant_id")
3637
+
3638
+
3551
3639
  @pulumi.output_type
3552
3640
  class BitbucketConnectorApiAuthentication(dict):
3553
3641
  @staticmethod
@@ -101282,6 +101370,213 @@ class OverridesGitDetails(dict):
101282
101370
  return pulumi.get(self, "store_type")
101283
101371
 
101284
101372
 
101373
+ @pulumi.output_type
101374
+ class PipelineCentralNotificationRuleCustomNotificationTemplateRef(dict):
101375
+ @staticmethod
101376
+ def __key_warning(key: str):
101377
+ suggest = None
101378
+ if key == "templateRef":
101379
+ suggest = "template_ref"
101380
+ elif key == "versionLabel":
101381
+ suggest = "version_label"
101382
+
101383
+ if suggest:
101384
+ pulumi.log.warn(f"Key '{key}' not found in PipelineCentralNotificationRuleCustomNotificationTemplateRef. Access the value via the '{suggest}' property getter instead.")
101385
+
101386
+ def __getitem__(self, key: str) -> Any:
101387
+ PipelineCentralNotificationRuleCustomNotificationTemplateRef.__key_warning(key)
101388
+ return super().__getitem__(key)
101389
+
101390
+ def get(self, key: str, default = None) -> Any:
101391
+ PipelineCentralNotificationRuleCustomNotificationTemplateRef.__key_warning(key)
101392
+ return super().get(key, default)
101393
+
101394
+ def __init__(__self__, *,
101395
+ template_ref: _builtins.str,
101396
+ version_label: _builtins.str,
101397
+ variables: Optional[Sequence['outputs.PipelineCentralNotificationRuleCustomNotificationTemplateRefVariable']] = None):
101398
+ pulumi.set(__self__, "template_ref", template_ref)
101399
+ pulumi.set(__self__, "version_label", version_label)
101400
+ if variables is not None:
101401
+ pulumi.set(__self__, "variables", variables)
101402
+
101403
+ @_builtins.property
101404
+ @pulumi.getter(name="templateRef")
101405
+ def template_ref(self) -> _builtins.str:
101406
+ return pulumi.get(self, "template_ref")
101407
+
101408
+ @_builtins.property
101409
+ @pulumi.getter(name="versionLabel")
101410
+ def version_label(self) -> _builtins.str:
101411
+ return pulumi.get(self, "version_label")
101412
+
101413
+ @_builtins.property
101414
+ @pulumi.getter
101415
+ def variables(self) -> Optional[Sequence['outputs.PipelineCentralNotificationRuleCustomNotificationTemplateRefVariable']]:
101416
+ return pulumi.get(self, "variables")
101417
+
101418
+
101419
+ @pulumi.output_type
101420
+ class PipelineCentralNotificationRuleCustomNotificationTemplateRefVariable(dict):
101421
+ def __init__(__self__, *,
101422
+ name: _builtins.str,
101423
+ value: _builtins.str,
101424
+ type: Optional[_builtins.str] = None):
101425
+ pulumi.set(__self__, "name", name)
101426
+ pulumi.set(__self__, "value", value)
101427
+ if type is not None:
101428
+ pulumi.set(__self__, "type", type)
101429
+
101430
+ @_builtins.property
101431
+ @pulumi.getter
101432
+ def name(self) -> _builtins.str:
101433
+ return pulumi.get(self, "name")
101434
+
101435
+ @_builtins.property
101436
+ @pulumi.getter
101437
+ def value(self) -> _builtins.str:
101438
+ return pulumi.get(self, "value")
101439
+
101440
+ @_builtins.property
101441
+ @pulumi.getter
101442
+ def type(self) -> Optional[_builtins.str]:
101443
+ return pulumi.get(self, "type")
101444
+
101445
+
101446
+ @pulumi.output_type
101447
+ class PipelineCentralNotificationRuleNotificationCondition(dict):
101448
+ @staticmethod
101449
+ def __key_warning(key: str):
101450
+ suggest = None
101451
+ if key == "conditionName":
101452
+ suggest = "condition_name"
101453
+ elif key == "notificationEventConfigs":
101454
+ suggest = "notification_event_configs"
101455
+
101456
+ if suggest:
101457
+ pulumi.log.warn(f"Key '{key}' not found in PipelineCentralNotificationRuleNotificationCondition. Access the value via the '{suggest}' property getter instead.")
101458
+
101459
+ def __getitem__(self, key: str) -> Any:
101460
+ PipelineCentralNotificationRuleNotificationCondition.__key_warning(key)
101461
+ return super().__getitem__(key)
101462
+
101463
+ def get(self, key: str, default = None) -> Any:
101464
+ PipelineCentralNotificationRuleNotificationCondition.__key_warning(key)
101465
+ return super().get(key, default)
101466
+
101467
+ def __init__(__self__, *,
101468
+ condition_name: _builtins.str,
101469
+ notification_event_configs: Sequence['outputs.PipelineCentralNotificationRuleNotificationConditionNotificationEventConfig']):
101470
+ pulumi.set(__self__, "condition_name", condition_name)
101471
+ pulumi.set(__self__, "notification_event_configs", notification_event_configs)
101472
+
101473
+ @_builtins.property
101474
+ @pulumi.getter(name="conditionName")
101475
+ def condition_name(self) -> _builtins.str:
101476
+ return pulumi.get(self, "condition_name")
101477
+
101478
+ @_builtins.property
101479
+ @pulumi.getter(name="notificationEventConfigs")
101480
+ def notification_event_configs(self) -> Sequence['outputs.PipelineCentralNotificationRuleNotificationConditionNotificationEventConfig']:
101481
+ return pulumi.get(self, "notification_event_configs")
101482
+
101483
+
101484
+ @pulumi.output_type
101485
+ class PipelineCentralNotificationRuleNotificationConditionNotificationEventConfig(dict):
101486
+ @staticmethod
101487
+ def __key_warning(key: str):
101488
+ suggest = None
101489
+ if key == "notificationEntity":
101490
+ suggest = "notification_entity"
101491
+ elif key == "notificationEvent":
101492
+ suggest = "notification_event"
101493
+ elif key == "entityIdentifiers":
101494
+ suggest = "entity_identifiers"
101495
+ elif key == "notificationEventDatas":
101496
+ suggest = "notification_event_datas"
101497
+
101498
+ if suggest:
101499
+ pulumi.log.warn(f"Key '{key}' not found in PipelineCentralNotificationRuleNotificationConditionNotificationEventConfig. Access the value via the '{suggest}' property getter instead.")
101500
+
101501
+ def __getitem__(self, key: str) -> Any:
101502
+ PipelineCentralNotificationRuleNotificationConditionNotificationEventConfig.__key_warning(key)
101503
+ return super().__getitem__(key)
101504
+
101505
+ def get(self, key: str, default = None) -> Any:
101506
+ PipelineCentralNotificationRuleNotificationConditionNotificationEventConfig.__key_warning(key)
101507
+ return super().get(key, default)
101508
+
101509
+ def __init__(__self__, *,
101510
+ notification_entity: _builtins.str,
101511
+ notification_event: _builtins.str,
101512
+ entity_identifiers: Optional[Sequence[_builtins.str]] = None,
101513
+ notification_event_datas: Optional[Sequence['outputs.PipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventData']] = None):
101514
+ pulumi.set(__self__, "notification_entity", notification_entity)
101515
+ pulumi.set(__self__, "notification_event", notification_event)
101516
+ if entity_identifiers is not None:
101517
+ pulumi.set(__self__, "entity_identifiers", entity_identifiers)
101518
+ if notification_event_datas is not None:
101519
+ pulumi.set(__self__, "notification_event_datas", notification_event_datas)
101520
+
101521
+ @_builtins.property
101522
+ @pulumi.getter(name="notificationEntity")
101523
+ def notification_entity(self) -> _builtins.str:
101524
+ return pulumi.get(self, "notification_entity")
101525
+
101526
+ @_builtins.property
101527
+ @pulumi.getter(name="notificationEvent")
101528
+ def notification_event(self) -> _builtins.str:
101529
+ return pulumi.get(self, "notification_event")
101530
+
101531
+ @_builtins.property
101532
+ @pulumi.getter(name="entityIdentifiers")
101533
+ def entity_identifiers(self) -> Optional[Sequence[_builtins.str]]:
101534
+ return pulumi.get(self, "entity_identifiers")
101535
+
101536
+ @_builtins.property
101537
+ @pulumi.getter(name="notificationEventDatas")
101538
+ def notification_event_datas(self) -> Optional[Sequence['outputs.PipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventData']]:
101539
+ return pulumi.get(self, "notification_event_datas")
101540
+
101541
+
101542
+ @pulumi.output_type
101543
+ class PipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventData(dict):
101544
+ @staticmethod
101545
+ def __key_warning(key: str):
101546
+ suggest = None
101547
+ if key == "scopeIdentifiers":
101548
+ suggest = "scope_identifiers"
101549
+
101550
+ if suggest:
101551
+ pulumi.log.warn(f"Key '{key}' not found in PipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventData. Access the value via the '{suggest}' property getter instead.")
101552
+
101553
+ def __getitem__(self, key: str) -> Any:
101554
+ PipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventData.__key_warning(key)
101555
+ return super().__getitem__(key)
101556
+
101557
+ def get(self, key: str, default = None) -> Any:
101558
+ PipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventData.__key_warning(key)
101559
+ return super().get(key, default)
101560
+
101561
+ def __init__(__self__, *,
101562
+ scope_identifiers: Optional[Sequence[_builtins.str]] = None,
101563
+ type: Optional[_builtins.str] = None):
101564
+ if scope_identifiers is not None:
101565
+ pulumi.set(__self__, "scope_identifiers", scope_identifiers)
101566
+ if type is not None:
101567
+ pulumi.set(__self__, "type", type)
101568
+
101569
+ @_builtins.property
101570
+ @pulumi.getter(name="scopeIdentifiers")
101571
+ def scope_identifiers(self) -> Optional[Sequence[_builtins.str]]:
101572
+ return pulumi.get(self, "scope_identifiers")
101573
+
101574
+ @_builtins.property
101575
+ @pulumi.getter
101576
+ def type(self) -> Optional[_builtins.str]:
101577
+ return pulumi.get(self, "type")
101578
+
101579
+
101285
101580
  @pulumi.output_type
101286
101581
  class PipelineFiltersFilterProperties(dict):
101287
101582
  @staticmethod
@@ -106290,14 +106585,17 @@ class GetAzureCloudProviderConnectorCredentialResult(dict):
106290
106585
  def __init__(__self__, *,
106291
106586
  azure_inherit_from_delegate_details: Sequence['outputs.GetAzureCloudProviderConnectorCredentialAzureInheritFromDelegateDetailResult'],
106292
106587
  azure_manual_details: Sequence['outputs.GetAzureCloudProviderConnectorCredentialAzureManualDetailResult'],
106588
+ azure_oidc_specs: Sequence['outputs.GetAzureCloudProviderConnectorCredentialAzureOidcSpecResult'],
106293
106589
  type: _builtins.str):
106294
106590
  """
106295
106591
  :param Sequence['GetAzureCloudProviderConnectorCredentialAzureInheritFromDelegateDetailArgs'] azure_inherit_from_delegate_details: Authenticate to Azure Cloud Provider using details inheriting from delegate.
106296
106592
  :param Sequence['GetAzureCloudProviderConnectorCredentialAzureManualDetailArgs'] azure_manual_details: Authenticate to Azure Cloud Provider using manual details.
106297
- :param _builtins.str type: Type can either be InheritFromDelegate or ManualConfig.
106593
+ :param Sequence['GetAzureCloudProviderConnectorCredentialAzureOidcSpecArgs'] azure_oidc_specs: Authenticate to Azure Cloud Provider using OIDC Authentication.
106594
+ :param _builtins.str type: Type can be InheritFromDelegate, ManualConfig or OidcAuthentication.
106298
106595
  """
106299
106596
  pulumi.set(__self__, "azure_inherit_from_delegate_details", azure_inherit_from_delegate_details)
106300
106597
  pulumi.set(__self__, "azure_manual_details", azure_manual_details)
106598
+ pulumi.set(__self__, "azure_oidc_specs", azure_oidc_specs)
106301
106599
  pulumi.set(__self__, "type", type)
106302
106600
 
106303
106601
  @_builtins.property
@@ -106316,11 +106614,19 @@ class GetAzureCloudProviderConnectorCredentialResult(dict):
106316
106614
  """
106317
106615
  return pulumi.get(self, "azure_manual_details")
106318
106616
 
106617
+ @_builtins.property
106618
+ @pulumi.getter(name="azureOidcSpecs")
106619
+ def azure_oidc_specs(self) -> Sequence['outputs.GetAzureCloudProviderConnectorCredentialAzureOidcSpecResult']:
106620
+ """
106621
+ Authenticate to Azure Cloud Provider using OIDC Authentication.
106622
+ """
106623
+ return pulumi.get(self, "azure_oidc_specs")
106624
+
106319
106625
  @_builtins.property
106320
106626
  @pulumi.getter
106321
106627
  def type(self) -> _builtins.str:
106322
106628
  """
106323
- Type can either be InheritFromDelegate or ManualConfig.
106629
+ Type can be InheritFromDelegate, ManualConfig or OidcAuthentication.
106324
106630
  """
106325
106631
  return pulumi.get(self, "type")
106326
106632
 
@@ -106506,6 +106812,46 @@ class GetAzureCloudProviderConnectorCredentialAzureManualDetailAuthAzureClientSe
106506
106812
  return pulumi.get(self, "secret_ref")
106507
106813
 
106508
106814
 
106815
+ @pulumi.output_type
106816
+ class GetAzureCloudProviderConnectorCredentialAzureOidcSpecResult(dict):
106817
+ def __init__(__self__, *,
106818
+ application_id: _builtins.str,
106819
+ audience: _builtins.str,
106820
+ tenant_id: _builtins.str):
106821
+ """
106822
+ :param _builtins.str application_id: Application ID of the Azure App.
106823
+ :param _builtins.str audience: The Azure Audience.
106824
+ :param _builtins.str tenant_id: The Azure Active Directory (AAD) directory ID where you created your application.
106825
+ """
106826
+ pulumi.set(__self__, "application_id", application_id)
106827
+ pulumi.set(__self__, "audience", audience)
106828
+ pulumi.set(__self__, "tenant_id", tenant_id)
106829
+
106830
+ @_builtins.property
106831
+ @pulumi.getter(name="applicationId")
106832
+ def application_id(self) -> _builtins.str:
106833
+ """
106834
+ Application ID of the Azure App.
106835
+ """
106836
+ return pulumi.get(self, "application_id")
106837
+
106838
+ @_builtins.property
106839
+ @pulumi.getter
106840
+ def audience(self) -> _builtins.str:
106841
+ """
106842
+ The Azure Audience.
106843
+ """
106844
+ return pulumi.get(self, "audience")
106845
+
106846
+ @_builtins.property
106847
+ @pulumi.getter(name="tenantId")
106848
+ def tenant_id(self) -> _builtins.str:
106849
+ """
106850
+ The Azure Active Directory (AAD) directory ID where you created your application.
106851
+ """
106852
+ return pulumi.get(self, "tenant_id")
106853
+
106854
+
106509
106855
  @pulumi.output_type
106510
106856
  class GetBitbucketConnectorApiAuthenticationResult(dict):
106511
106857
  def __init__(__self__, *,
@@ -112637,6 +112983,127 @@ class GetPermissionsPermissionResult(dict):
112637
112983
  return pulumi.get(self, "status")
112638
112984
 
112639
112985
 
112986
+ @pulumi.output_type
112987
+ class GetPipelineCentralNotificationRuleCustomNotificationTemplateRefResult(dict):
112988
+ def __init__(__self__, *,
112989
+ template_ref: _builtins.str,
112990
+ version_label: _builtins.str,
112991
+ variables: Optional[Sequence['outputs.GetPipelineCentralNotificationRuleCustomNotificationTemplateRefVariableResult']] = None):
112992
+ pulumi.set(__self__, "template_ref", template_ref)
112993
+ pulumi.set(__self__, "version_label", version_label)
112994
+ if variables is not None:
112995
+ pulumi.set(__self__, "variables", variables)
112996
+
112997
+ @_builtins.property
112998
+ @pulumi.getter(name="templateRef")
112999
+ def template_ref(self) -> _builtins.str:
113000
+ return pulumi.get(self, "template_ref")
113001
+
113002
+ @_builtins.property
113003
+ @pulumi.getter(name="versionLabel")
113004
+ def version_label(self) -> _builtins.str:
113005
+ return pulumi.get(self, "version_label")
113006
+
113007
+ @_builtins.property
113008
+ @pulumi.getter
113009
+ def variables(self) -> Optional[Sequence['outputs.GetPipelineCentralNotificationRuleCustomNotificationTemplateRefVariableResult']]:
113010
+ return pulumi.get(self, "variables")
113011
+
113012
+
113013
+ @pulumi.output_type
113014
+ class GetPipelineCentralNotificationRuleCustomNotificationTemplateRefVariableResult(dict):
113015
+ def __init__(__self__, *,
113016
+ name: _builtins.str,
113017
+ value: _builtins.str,
113018
+ type: Optional[_builtins.str] = None):
113019
+ pulumi.set(__self__, "name", name)
113020
+ pulumi.set(__self__, "value", value)
113021
+ if type is not None:
113022
+ pulumi.set(__self__, "type", type)
113023
+
113024
+ @_builtins.property
113025
+ @pulumi.getter
113026
+ def name(self) -> _builtins.str:
113027
+ return pulumi.get(self, "name")
113028
+
113029
+ @_builtins.property
113030
+ @pulumi.getter
113031
+ def value(self) -> _builtins.str:
113032
+ return pulumi.get(self, "value")
113033
+
113034
+ @_builtins.property
113035
+ @pulumi.getter
113036
+ def type(self) -> Optional[_builtins.str]:
113037
+ return pulumi.get(self, "type")
113038
+
113039
+
113040
+ @pulumi.output_type
113041
+ class GetPipelineCentralNotificationRuleNotificationConditionResult(dict):
113042
+ def __init__(__self__, *,
113043
+ condition_name: _builtins.str,
113044
+ notification_event_configs: Sequence['outputs.GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfigResult']):
113045
+ pulumi.set(__self__, "condition_name", condition_name)
113046
+ pulumi.set(__self__, "notification_event_configs", notification_event_configs)
113047
+
113048
+ @_builtins.property
113049
+ @pulumi.getter(name="conditionName")
113050
+ def condition_name(self) -> _builtins.str:
113051
+ return pulumi.get(self, "condition_name")
113052
+
113053
+ @_builtins.property
113054
+ @pulumi.getter(name="notificationEventConfigs")
113055
+ def notification_event_configs(self) -> Sequence['outputs.GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfigResult']:
113056
+ return pulumi.get(self, "notification_event_configs")
113057
+
113058
+
113059
+ @pulumi.output_type
113060
+ class GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfigResult(dict):
113061
+ def __init__(__self__, *,
113062
+ notification_entity: _builtins.str,
113063
+ notification_event: _builtins.str,
113064
+ notification_event_datas: Optional[Sequence['outputs.GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventDataResult']] = None):
113065
+ pulumi.set(__self__, "notification_entity", notification_entity)
113066
+ pulumi.set(__self__, "notification_event", notification_event)
113067
+ if notification_event_datas is not None:
113068
+ pulumi.set(__self__, "notification_event_datas", notification_event_datas)
113069
+
113070
+ @_builtins.property
113071
+ @pulumi.getter(name="notificationEntity")
113072
+ def notification_entity(self) -> _builtins.str:
113073
+ return pulumi.get(self, "notification_entity")
113074
+
113075
+ @_builtins.property
113076
+ @pulumi.getter(name="notificationEvent")
113077
+ def notification_event(self) -> _builtins.str:
113078
+ return pulumi.get(self, "notification_event")
113079
+
113080
+ @_builtins.property
113081
+ @pulumi.getter(name="notificationEventDatas")
113082
+ def notification_event_datas(self) -> Optional[Sequence['outputs.GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventDataResult']]:
113083
+ return pulumi.get(self, "notification_event_datas")
113084
+
113085
+
113086
+ @pulumi.output_type
113087
+ class GetPipelineCentralNotificationRuleNotificationConditionNotificationEventConfigNotificationEventDataResult(dict):
113088
+ def __init__(__self__, *,
113089
+ scope_identifiers: Optional[Sequence[_builtins.str]] = None,
113090
+ type: Optional[_builtins.str] = None):
113091
+ if scope_identifiers is not None:
113092
+ pulumi.set(__self__, "scope_identifiers", scope_identifiers)
113093
+ if type is not None:
113094
+ pulumi.set(__self__, "type", type)
113095
+
113096
+ @_builtins.property
113097
+ @pulumi.getter(name="scopeIdentifiers")
113098
+ def scope_identifiers(self) -> Optional[Sequence[_builtins.str]]:
113099
+ return pulumi.get(self, "scope_identifiers")
113100
+
113101
+ @_builtins.property
113102
+ @pulumi.getter
113103
+ def type(self) -> Optional[_builtins.str]:
113104
+ return pulumi.get(self, "type")
113105
+
113106
+
112640
113107
  @pulumi.output_type
112641
113108
  class GetPipelineFiltersFilterPropertyResult(dict):
112642
113109
  def __init__(__self__, *,