pulumi-azuredevops 3.5.0a1734499270__py3-none-any.whl → 3.5.0a1735036089__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.
- pulumi_azuredevops/__init__.py +45 -0
- pulumi_azuredevops/_inputs.py +345 -68
- pulumi_azuredevops/build_definition.py +189 -16
- pulumi_azuredevops/get_service_endpoint_azure_rm.py +27 -13
- pulumi_azuredevops/git_permissions.py +7 -7
- pulumi_azuredevops/outputs.py +231 -48
- pulumi_azuredevops/pulumi-plugin.json +1 -1
- pulumi_azuredevops/securityrole_assignment.py +7 -7
- pulumi_azuredevops/service_endpoint_aws.py +84 -39
- pulumi_azuredevops/service_endpoint_azure_rm.py +75 -28
- pulumi_azuredevops/service_endpoint_bit_bucket.py +2 -2
- pulumi_azuredevops/service_endpoint_generic.py +2 -6
- pulumi_azuredevops/service_endpoint_git_lab.py +479 -0
- pulumi_azuredevops/serviceendpoint_azure_service_bus.py +429 -0
- pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +579 -0
- pulumi_azuredevops/serviceendpoint_snyk.py +429 -0
- pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +543 -0
- pulumi_azuredevops/user.py +22 -2
- {pulumi_azuredevops-3.5.0a1734499270.dist-info → pulumi_azuredevops-3.5.0a1735036089.dist-info}/METADATA +1 -1
- {pulumi_azuredevops-3.5.0a1734499270.dist-info → pulumi_azuredevops-3.5.0a1735036089.dist-info}/RECORD +22 -17
- {pulumi_azuredevops-3.5.0a1734499270.dist-info → pulumi_azuredevops-3.5.0a1735036089.dist-info}/WHEEL +0 -0
- {pulumi_azuredevops-3.5.0a1734499270.dist-info → pulumi_azuredevops-3.5.0a1735036089.dist-info}/top_level.txt +0 -0
pulumi_azuredevops/__init__.py
CHANGED
@@ -93,6 +93,7 @@ from .service_endpoint_generic import *
|
|
93
93
|
from .service_endpoint_generic_git import *
|
94
94
|
from .service_endpoint_git_hub import *
|
95
95
|
from .service_endpoint_git_hub_enterprise import *
|
96
|
+
from .service_endpoint_git_lab import *
|
96
97
|
from .service_endpoint_kubernetes import *
|
97
98
|
from .service_endpoint_npm import *
|
98
99
|
from .service_endpoint_pipeline import *
|
@@ -101,6 +102,8 @@ from .service_endpoint_sonar_cloud import *
|
|
101
102
|
from .service_endpoint_sonar_qube import *
|
102
103
|
from .service_endpoint_ssh import *
|
103
104
|
from .serviceendpoint_argocd import *
|
105
|
+
from .serviceendpoint_azure_service_bus import *
|
106
|
+
from .serviceendpoint_dynamics_lifecycle_services import *
|
104
107
|
from .serviceendpoint_externaltfs import *
|
105
108
|
from .serviceendpoint_gcp_terraform import *
|
106
109
|
from .serviceendpoint_incomingwebhook import *
|
@@ -114,6 +117,8 @@ from .serviceendpoint_nexus import *
|
|
114
117
|
from .serviceendpoint_nuget import *
|
115
118
|
from .serviceendpoint_octopusdeploy import *
|
116
119
|
from .serviceendpoint_permissions import *
|
120
|
+
from .serviceendpoint_snyk import *
|
121
|
+
from .serviceendpoint_visualstudiomarketplace import *
|
117
122
|
from .servicehook_permissions import *
|
118
123
|
from .servicehook_storage_queue_pipelines import *
|
119
124
|
from .tagging_permissions import *
|
@@ -604,6 +609,14 @@ _utilities.register(
|
|
604
609
|
"azuredevops:index/serviceEndpointGitHubEnterprise:ServiceEndpointGitHubEnterprise": "ServiceEndpointGitHubEnterprise"
|
605
610
|
}
|
606
611
|
},
|
612
|
+
{
|
613
|
+
"pkg": "azuredevops",
|
614
|
+
"mod": "index/serviceEndpointGitLab",
|
615
|
+
"fqn": "pulumi_azuredevops",
|
616
|
+
"classes": {
|
617
|
+
"azuredevops:index/serviceEndpointGitLab:ServiceEndpointGitLab": "ServiceEndpointGitLab"
|
618
|
+
}
|
619
|
+
},
|
607
620
|
{
|
608
621
|
"pkg": "azuredevops",
|
609
622
|
"mod": "index/serviceEndpointKubernetes",
|
@@ -668,6 +681,22 @@ _utilities.register(
|
|
668
681
|
"azuredevops:index/serviceendpointArgocd:ServiceendpointArgocd": "ServiceendpointArgocd"
|
669
682
|
}
|
670
683
|
},
|
684
|
+
{
|
685
|
+
"pkg": "azuredevops",
|
686
|
+
"mod": "index/serviceendpointAzureServiceBus",
|
687
|
+
"fqn": "pulumi_azuredevops",
|
688
|
+
"classes": {
|
689
|
+
"azuredevops:index/serviceendpointAzureServiceBus:ServiceendpointAzureServiceBus": "ServiceendpointAzureServiceBus"
|
690
|
+
}
|
691
|
+
},
|
692
|
+
{
|
693
|
+
"pkg": "azuredevops",
|
694
|
+
"mod": "index/serviceendpointDynamicsLifecycleServices",
|
695
|
+
"fqn": "pulumi_azuredevops",
|
696
|
+
"classes": {
|
697
|
+
"azuredevops:index/serviceendpointDynamicsLifecycleServices:ServiceendpointDynamicsLifecycleServices": "ServiceendpointDynamicsLifecycleServices"
|
698
|
+
}
|
699
|
+
},
|
671
700
|
{
|
672
701
|
"pkg": "azuredevops",
|
673
702
|
"mod": "index/serviceendpointExternaltfs",
|
@@ -772,6 +801,22 @@ _utilities.register(
|
|
772
801
|
"azuredevops:index/serviceendpointPermissions:ServiceendpointPermissions": "ServiceendpointPermissions"
|
773
802
|
}
|
774
803
|
},
|
804
|
+
{
|
805
|
+
"pkg": "azuredevops",
|
806
|
+
"mod": "index/serviceendpointSnyk",
|
807
|
+
"fqn": "pulumi_azuredevops",
|
808
|
+
"classes": {
|
809
|
+
"azuredevops:index/serviceendpointSnyk:ServiceendpointSnyk": "ServiceendpointSnyk"
|
810
|
+
}
|
811
|
+
},
|
812
|
+
{
|
813
|
+
"pkg": "azuredevops",
|
814
|
+
"mod": "index/serviceendpointVisualstudiomarketplace",
|
815
|
+
"fqn": "pulumi_azuredevops",
|
816
|
+
"classes": {
|
817
|
+
"azuredevops:index/serviceendpointVisualstudiomarketplace:ServiceendpointVisualstudiomarketplace": "ServiceendpointVisualstudiomarketplace"
|
818
|
+
}
|
819
|
+
},
|
775
820
|
{
|
776
821
|
"pkg": "azuredevops",
|
777
822
|
"mod": "index/servicehookPermissions",
|