pulumi-azuredevops 3.7.0a1741238592__py3-none-any.whl → 3.8.0__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 +13 -0
- pulumi_azuredevops/_inputs.py +435 -26
- pulumi_azuredevops/build_definition.py +335 -0
- pulumi_azuredevops/dashboard.py +475 -0
- pulumi_azuredevops/feed_retention_policy.py +0 -22
- pulumi_azuredevops/get_build_definition.py +43 -1
- pulumi_azuredevops/get_client_config.py +61 -5
- pulumi_azuredevops/get_descriptor.py +133 -0
- pulumi_azuredevops/get_group_membership.py +131 -0
- pulumi_azuredevops/get_identity_group.py +20 -6
- pulumi_azuredevops/get_identity_groups.py +2 -2
- pulumi_azuredevops/get_identity_users.py +19 -5
- pulumi_azuredevops/get_storage_key.py +133 -0
- pulumi_azuredevops/get_teams.py +2 -2
- pulumi_azuredevops/get_user.py +193 -0
- pulumi_azuredevops/get_users.py +4 -0
- pulumi_azuredevops/outputs.py +558 -19
- pulumi_azuredevops/pulumi-plugin.json +1 -1
- pulumi_azuredevops/service_endpoint_artifactory.py +1 -15
- pulumi_azuredevops/service_endpoint_aws.py +1 -15
- pulumi_azuredevops/service_endpoint_azure_dev_ops.py +1 -15
- pulumi_azuredevops/service_endpoint_azure_ecr.py +13 -27
- pulumi_azuredevops/service_endpoint_azure_rm.py +9 -15
- pulumi_azuredevops/service_endpoint_bit_bucket.py +1 -15
- pulumi_azuredevops/service_endpoint_docker_registry.py +1 -15
- pulumi_azuredevops/service_endpoint_generic.py +1 -15
- pulumi_azuredevops/service_endpoint_generic_git.py +1 -15
- pulumi_azuredevops/service_endpoint_git_hub.py +1 -15
- pulumi_azuredevops/service_endpoint_git_hub_enterprise.py +1 -15
- pulumi_azuredevops/service_endpoint_git_lab.py +1 -15
- pulumi_azuredevops/service_endpoint_kubernetes.py +1 -15
- pulumi_azuredevops/service_endpoint_npm.py +1 -15
- pulumi_azuredevops/service_endpoint_pipeline.py +1 -15
- pulumi_azuredevops/service_endpoint_service_fabric.py +1 -15
- pulumi_azuredevops/service_endpoint_sonar_cloud.py +1 -15
- pulumi_azuredevops/service_endpoint_sonar_qube.py +1 -15
- pulumi_azuredevops/service_endpoint_ssh.py +1 -15
- pulumi_azuredevops/serviceendpoint_argocd.py +1 -15
- pulumi_azuredevops/serviceendpoint_azure_service_bus.py +1 -15
- pulumi_azuredevops/serviceendpoint_checkmarx_one.py +1 -15
- pulumi_azuredevops/serviceendpoint_checkmarx_sast.py +1 -15
- pulumi_azuredevops/serviceendpoint_checkmarx_sca.py +1 -15
- pulumi_azuredevops/serviceendpoint_dynamics_lifecycle_services.py +1 -15
- pulumi_azuredevops/serviceendpoint_externaltfs.py +1 -15
- pulumi_azuredevops/serviceendpoint_gcp_terraform.py +1 -15
- pulumi_azuredevops/serviceendpoint_incomingwebhook.py +1 -15
- pulumi_azuredevops/serviceendpoint_jenkins.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_artifactory_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_distribution_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_platform_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_jfrog_xray_v2.py +1 -15
- pulumi_azuredevops/serviceendpoint_maven.py +1 -15
- pulumi_azuredevops/serviceendpoint_nexus.py +1 -15
- pulumi_azuredevops/serviceendpoint_nuget.py +1 -15
- pulumi_azuredevops/serviceendpoint_octopusdeploy.py +1 -15
- pulumi_azuredevops/serviceendpoint_snyk.py +1 -15
- pulumi_azuredevops/serviceendpoint_visualstudiomarketplace.py +1 -15
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/METADATA +1 -1
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/RECORD +61 -56
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/WHEEL +1 -1
- {pulumi_azuredevops-3.7.0a1741238592.dist-info → pulumi_azuredevops-3.8.0.dist-info}/top_level.txt +0 -0
@@ -25,7 +25,6 @@ class ServiceendpointJenkinsArgs:
|
|
25
25
|
url: pulumi.Input[str],
|
26
26
|
username: pulumi.Input[str],
|
27
27
|
accept_untrusted_certs: Optional[pulumi.Input[bool]] = None,
|
28
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
29
28
|
description: Optional[pulumi.Input[str]] = None):
|
30
29
|
"""
|
31
30
|
The set of arguments for constructing a ServiceendpointJenkins resource.
|
@@ -43,8 +42,6 @@ class ServiceendpointJenkinsArgs:
|
|
43
42
|
pulumi.set(__self__, "username", username)
|
44
43
|
if accept_untrusted_certs is not None:
|
45
44
|
pulumi.set(__self__, "accept_untrusted_certs", accept_untrusted_certs)
|
46
|
-
if authorization is not None:
|
47
|
-
pulumi.set(__self__, "authorization", authorization)
|
48
45
|
if description is not None:
|
49
46
|
pulumi.set(__self__, "description", description)
|
50
47
|
|
@@ -120,15 +117,6 @@ class ServiceendpointJenkinsArgs:
|
|
120
117
|
def accept_untrusted_certs(self, value: Optional[pulumi.Input[bool]]):
|
121
118
|
pulumi.set(self, "accept_untrusted_certs", value)
|
122
119
|
|
123
|
-
@property
|
124
|
-
@pulumi.getter
|
125
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
126
|
-
return pulumi.get(self, "authorization")
|
127
|
-
|
128
|
-
@authorization.setter
|
129
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
130
|
-
pulumi.set(self, "authorization", value)
|
131
|
-
|
132
120
|
@property
|
133
121
|
@pulumi.getter
|
134
122
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -273,7 +261,6 @@ class ServiceendpointJenkins(pulumi.CustomResource):
|
|
273
261
|
resource_name: str,
|
274
262
|
opts: Optional[pulumi.ResourceOptions] = None,
|
275
263
|
accept_untrusted_certs: Optional[pulumi.Input[bool]] = None,
|
276
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
277
264
|
description: Optional[pulumi.Input[str]] = None,
|
278
265
|
password: Optional[pulumi.Input[str]] = None,
|
279
266
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -378,7 +365,6 @@ class ServiceendpointJenkins(pulumi.CustomResource):
|
|
378
365
|
resource_name: str,
|
379
366
|
opts: Optional[pulumi.ResourceOptions] = None,
|
380
367
|
accept_untrusted_certs: Optional[pulumi.Input[bool]] = None,
|
381
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
382
368
|
description: Optional[pulumi.Input[str]] = None,
|
383
369
|
password: Optional[pulumi.Input[str]] = None,
|
384
370
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -395,7 +381,6 @@ class ServiceendpointJenkins(pulumi.CustomResource):
|
|
395
381
|
__props__ = ServiceendpointJenkinsArgs.__new__(ServiceendpointJenkinsArgs)
|
396
382
|
|
397
383
|
__props__.__dict__["accept_untrusted_certs"] = accept_untrusted_certs
|
398
|
-
__props__.__dict__["authorization"] = authorization
|
399
384
|
__props__.__dict__["description"] = description
|
400
385
|
if password is None and not opts.urn:
|
401
386
|
raise TypeError("Missing required property 'password'")
|
@@ -412,6 +397,7 @@ class ServiceendpointJenkins(pulumi.CustomResource):
|
|
412
397
|
if username is None and not opts.urn:
|
413
398
|
raise TypeError("Missing required property 'username'")
|
414
399
|
__props__.__dict__["username"] = username
|
400
|
+
__props__.__dict__["authorization"] = None
|
415
401
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["password"])
|
416
402
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
417
403
|
super(ServiceendpointJenkins, __self__).__init__(
|
@@ -26,7 +26,6 @@ class ServiceendpointJfrogArtifactoryV2Args:
|
|
26
26
|
url: pulumi.Input[str],
|
27
27
|
authentication_basic: Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs']] = None,
|
28
28
|
authentication_token: Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs']] = None,
|
29
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
30
29
|
description: Optional[pulumi.Input[str]] = None):
|
31
30
|
"""
|
32
31
|
The set of arguments for constructing a ServiceendpointJfrogArtifactoryV2 resource.
|
@@ -46,8 +45,6 @@ class ServiceendpointJfrogArtifactoryV2Args:
|
|
46
45
|
pulumi.set(__self__, "authentication_basic", authentication_basic)
|
47
46
|
if authentication_token is not None:
|
48
47
|
pulumi.set(__self__, "authentication_token", authentication_token)
|
49
|
-
if authorization is not None:
|
50
|
-
pulumi.set(__self__, "authorization", authorization)
|
51
48
|
if description is not None:
|
52
49
|
pulumi.set(__self__, "description", description)
|
53
50
|
|
@@ -113,15 +110,6 @@ class ServiceendpointJfrogArtifactoryV2Args:
|
|
113
110
|
def authentication_token(self, value: Optional[pulumi.Input['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs']]):
|
114
111
|
pulumi.set(self, "authentication_token", value)
|
115
112
|
|
116
|
-
@property
|
117
|
-
@pulumi.getter
|
118
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
119
|
-
return pulumi.get(self, "authorization")
|
120
|
-
|
121
|
-
@authorization.setter
|
122
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
123
|
-
pulumi.set(self, "authorization", value)
|
124
|
-
|
125
113
|
@property
|
126
114
|
@pulumi.getter
|
127
115
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -262,7 +250,6 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
262
250
|
opts: Optional[pulumi.ResourceOptions] = None,
|
263
251
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']]] = None,
|
264
252
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']]] = None,
|
265
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
266
253
|
description: Optional[pulumi.Input[str]] = None,
|
267
254
|
project_id: Optional[pulumi.Input[str]] = None,
|
268
255
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
@@ -426,7 +413,6 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
426
413
|
opts: Optional[pulumi.ResourceOptions] = None,
|
427
414
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationBasicArgsDict']]] = None,
|
428
415
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgs', 'ServiceendpointJfrogArtifactoryV2AuthenticationTokenArgsDict']]] = None,
|
429
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
430
416
|
description: Optional[pulumi.Input[str]] = None,
|
431
417
|
project_id: Optional[pulumi.Input[str]] = None,
|
432
418
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
@@ -442,7 +428,6 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
442
428
|
|
443
429
|
__props__.__dict__["authentication_basic"] = authentication_basic
|
444
430
|
__props__.__dict__["authentication_token"] = authentication_token
|
445
|
-
__props__.__dict__["authorization"] = authorization
|
446
431
|
__props__.__dict__["description"] = description
|
447
432
|
if project_id is None and not opts.urn:
|
448
433
|
raise TypeError("Missing required property 'project_id'")
|
@@ -453,6 +438,7 @@ class ServiceendpointJfrogArtifactoryV2(pulumi.CustomResource):
|
|
453
438
|
if url is None and not opts.urn:
|
454
439
|
raise TypeError("Missing required property 'url'")
|
455
440
|
__props__.__dict__["url"] = url
|
441
|
+
__props__.__dict__["authorization"] = None
|
456
442
|
super(ServiceendpointJfrogArtifactoryV2, __self__).__init__(
|
457
443
|
'azuredevops:index/serviceendpointJfrogArtifactoryV2:ServiceendpointJfrogArtifactoryV2',
|
458
444
|
resource_name,
|
@@ -26,7 +26,6 @@ class ServiceendpointJfrogDistributionV2Args:
|
|
26
26
|
url: pulumi.Input[str],
|
27
27
|
authentication_basic: Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs']] = None,
|
28
28
|
authentication_token: Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs']] = None,
|
29
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
30
29
|
description: Optional[pulumi.Input[str]] = None):
|
31
30
|
"""
|
32
31
|
The set of arguments for constructing a ServiceendpointJfrogDistributionV2 resource.
|
@@ -46,8 +45,6 @@ class ServiceendpointJfrogDistributionV2Args:
|
|
46
45
|
pulumi.set(__self__, "authentication_basic", authentication_basic)
|
47
46
|
if authentication_token is not None:
|
48
47
|
pulumi.set(__self__, "authentication_token", authentication_token)
|
49
|
-
if authorization is not None:
|
50
|
-
pulumi.set(__self__, "authorization", authorization)
|
51
48
|
if description is not None:
|
52
49
|
pulumi.set(__self__, "description", description)
|
53
50
|
|
@@ -113,15 +110,6 @@ class ServiceendpointJfrogDistributionV2Args:
|
|
113
110
|
def authentication_token(self, value: Optional[pulumi.Input['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs']]):
|
114
111
|
pulumi.set(self, "authentication_token", value)
|
115
112
|
|
116
|
-
@property
|
117
|
-
@pulumi.getter
|
118
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
119
|
-
return pulumi.get(self, "authorization")
|
120
|
-
|
121
|
-
@authorization.setter
|
122
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
123
|
-
pulumi.set(self, "authorization", value)
|
124
|
-
|
125
113
|
@property
|
126
114
|
@pulumi.getter
|
127
115
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -262,7 +250,6 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
262
250
|
opts: Optional[pulumi.ResourceOptions] = None,
|
263
251
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']]] = None,
|
264
252
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']]] = None,
|
265
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
266
253
|
description: Optional[pulumi.Input[str]] = None,
|
267
254
|
project_id: Optional[pulumi.Input[str]] = None,
|
268
255
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
@@ -426,7 +413,6 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
426
413
|
opts: Optional[pulumi.ResourceOptions] = None,
|
427
414
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationBasicArgs', 'ServiceendpointJfrogDistributionV2AuthenticationBasicArgsDict']]] = None,
|
428
415
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogDistributionV2AuthenticationTokenArgs', 'ServiceendpointJfrogDistributionV2AuthenticationTokenArgsDict']]] = None,
|
429
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
430
416
|
description: Optional[pulumi.Input[str]] = None,
|
431
417
|
project_id: Optional[pulumi.Input[str]] = None,
|
432
418
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
@@ -442,7 +428,6 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
442
428
|
|
443
429
|
__props__.__dict__["authentication_basic"] = authentication_basic
|
444
430
|
__props__.__dict__["authentication_token"] = authentication_token
|
445
|
-
__props__.__dict__["authorization"] = authorization
|
446
431
|
__props__.__dict__["description"] = description
|
447
432
|
if project_id is None and not opts.urn:
|
448
433
|
raise TypeError("Missing required property 'project_id'")
|
@@ -453,6 +438,7 @@ class ServiceendpointJfrogDistributionV2(pulumi.CustomResource):
|
|
453
438
|
if url is None and not opts.urn:
|
454
439
|
raise TypeError("Missing required property 'url'")
|
455
440
|
__props__.__dict__["url"] = url
|
441
|
+
__props__.__dict__["authorization"] = None
|
456
442
|
super(ServiceendpointJfrogDistributionV2, __self__).__init__(
|
457
443
|
'azuredevops:index/serviceendpointJfrogDistributionV2:ServiceendpointJfrogDistributionV2',
|
458
444
|
resource_name,
|
@@ -26,7 +26,6 @@ class ServiceendpointJfrogPlatformV2Args:
|
|
26
26
|
url: pulumi.Input[str],
|
27
27
|
authentication_basic: Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs']] = None,
|
28
28
|
authentication_token: Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs']] = None,
|
29
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
30
29
|
description: Optional[pulumi.Input[str]] = None):
|
31
30
|
"""
|
32
31
|
The set of arguments for constructing a ServiceendpointJfrogPlatformV2 resource.
|
@@ -46,8 +45,6 @@ class ServiceendpointJfrogPlatformV2Args:
|
|
46
45
|
pulumi.set(__self__, "authentication_basic", authentication_basic)
|
47
46
|
if authentication_token is not None:
|
48
47
|
pulumi.set(__self__, "authentication_token", authentication_token)
|
49
|
-
if authorization is not None:
|
50
|
-
pulumi.set(__self__, "authorization", authorization)
|
51
48
|
if description is not None:
|
52
49
|
pulumi.set(__self__, "description", description)
|
53
50
|
|
@@ -113,15 +110,6 @@ class ServiceendpointJfrogPlatformV2Args:
|
|
113
110
|
def authentication_token(self, value: Optional[pulumi.Input['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs']]):
|
114
111
|
pulumi.set(self, "authentication_token", value)
|
115
112
|
|
116
|
-
@property
|
117
|
-
@pulumi.getter
|
118
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
119
|
-
return pulumi.get(self, "authorization")
|
120
|
-
|
121
|
-
@authorization.setter
|
122
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
123
|
-
pulumi.set(self, "authorization", value)
|
124
|
-
|
125
113
|
@property
|
126
114
|
@pulumi.getter
|
127
115
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -262,7 +250,6 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
262
250
|
opts: Optional[pulumi.ResourceOptions] = None,
|
263
251
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']]] = None,
|
264
252
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']]] = None,
|
265
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
266
253
|
description: Optional[pulumi.Input[str]] = None,
|
267
254
|
project_id: Optional[pulumi.Input[str]] = None,
|
268
255
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
@@ -426,7 +413,6 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
426
413
|
opts: Optional[pulumi.ResourceOptions] = None,
|
427
414
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationBasicArgs', 'ServiceendpointJfrogPlatformV2AuthenticationBasicArgsDict']]] = None,
|
428
415
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogPlatformV2AuthenticationTokenArgs', 'ServiceendpointJfrogPlatformV2AuthenticationTokenArgsDict']]] = None,
|
429
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
430
416
|
description: Optional[pulumi.Input[str]] = None,
|
431
417
|
project_id: Optional[pulumi.Input[str]] = None,
|
432
418
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
@@ -442,7 +428,6 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
442
428
|
|
443
429
|
__props__.__dict__["authentication_basic"] = authentication_basic
|
444
430
|
__props__.__dict__["authentication_token"] = authentication_token
|
445
|
-
__props__.__dict__["authorization"] = authorization
|
446
431
|
__props__.__dict__["description"] = description
|
447
432
|
if project_id is None and not opts.urn:
|
448
433
|
raise TypeError("Missing required property 'project_id'")
|
@@ -453,6 +438,7 @@ class ServiceendpointJfrogPlatformV2(pulumi.CustomResource):
|
|
453
438
|
if url is None and not opts.urn:
|
454
439
|
raise TypeError("Missing required property 'url'")
|
455
440
|
__props__.__dict__["url"] = url
|
441
|
+
__props__.__dict__["authorization"] = None
|
456
442
|
super(ServiceendpointJfrogPlatformV2, __self__).__init__(
|
457
443
|
'azuredevops:index/serviceendpointJfrogPlatformV2:ServiceendpointJfrogPlatformV2',
|
458
444
|
resource_name,
|
@@ -26,7 +26,6 @@ class ServiceendpointJfrogXrayV2Args:
|
|
26
26
|
url: pulumi.Input[str],
|
27
27
|
authentication_basic: Optional[pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationBasicArgs']] = None,
|
28
28
|
authentication_token: Optional[pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationTokenArgs']] = None,
|
29
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
30
29
|
description: Optional[pulumi.Input[str]] = None):
|
31
30
|
"""
|
32
31
|
The set of arguments for constructing a ServiceendpointJfrogXrayV2 resource.
|
@@ -46,8 +45,6 @@ class ServiceendpointJfrogXrayV2Args:
|
|
46
45
|
pulumi.set(__self__, "authentication_basic", authentication_basic)
|
47
46
|
if authentication_token is not None:
|
48
47
|
pulumi.set(__self__, "authentication_token", authentication_token)
|
49
|
-
if authorization is not None:
|
50
|
-
pulumi.set(__self__, "authorization", authorization)
|
51
48
|
if description is not None:
|
52
49
|
pulumi.set(__self__, "description", description)
|
53
50
|
|
@@ -113,15 +110,6 @@ class ServiceendpointJfrogXrayV2Args:
|
|
113
110
|
def authentication_token(self, value: Optional[pulumi.Input['ServiceendpointJfrogXrayV2AuthenticationTokenArgs']]):
|
114
111
|
pulumi.set(self, "authentication_token", value)
|
115
112
|
|
116
|
-
@property
|
117
|
-
@pulumi.getter
|
118
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
119
|
-
return pulumi.get(self, "authorization")
|
120
|
-
|
121
|
-
@authorization.setter
|
122
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
123
|
-
pulumi.set(self, "authorization", value)
|
124
|
-
|
125
113
|
@property
|
126
114
|
@pulumi.getter
|
127
115
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -262,7 +250,6 @@ class ServiceendpointJfrogXrayV2(pulumi.CustomResource):
|
|
262
250
|
opts: Optional[pulumi.ResourceOptions] = None,
|
263
251
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogXrayV2AuthenticationBasicArgs', 'ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict']]] = None,
|
264
252
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogXrayV2AuthenticationTokenArgs', 'ServiceendpointJfrogXrayV2AuthenticationTokenArgsDict']]] = None,
|
265
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
266
253
|
description: Optional[pulumi.Input[str]] = None,
|
267
254
|
project_id: Optional[pulumi.Input[str]] = None,
|
268
255
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
@@ -426,7 +413,6 @@ class ServiceendpointJfrogXrayV2(pulumi.CustomResource):
|
|
426
413
|
opts: Optional[pulumi.ResourceOptions] = None,
|
427
414
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointJfrogXrayV2AuthenticationBasicArgs', 'ServiceendpointJfrogXrayV2AuthenticationBasicArgsDict']]] = None,
|
428
415
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointJfrogXrayV2AuthenticationTokenArgs', 'ServiceendpointJfrogXrayV2AuthenticationTokenArgsDict']]] = None,
|
429
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
430
416
|
description: Optional[pulumi.Input[str]] = None,
|
431
417
|
project_id: Optional[pulumi.Input[str]] = None,
|
432
418
|
service_endpoint_name: Optional[pulumi.Input[str]] = None,
|
@@ -442,7 +428,6 @@ class ServiceendpointJfrogXrayV2(pulumi.CustomResource):
|
|
442
428
|
|
443
429
|
__props__.__dict__["authentication_basic"] = authentication_basic
|
444
430
|
__props__.__dict__["authentication_token"] = authentication_token
|
445
|
-
__props__.__dict__["authorization"] = authorization
|
446
431
|
__props__.__dict__["description"] = description
|
447
432
|
if project_id is None and not opts.urn:
|
448
433
|
raise TypeError("Missing required property 'project_id'")
|
@@ -453,6 +438,7 @@ class ServiceendpointJfrogXrayV2(pulumi.CustomResource):
|
|
453
438
|
if url is None and not opts.urn:
|
454
439
|
raise TypeError("Missing required property 'url'")
|
455
440
|
__props__.__dict__["url"] = url
|
441
|
+
__props__.__dict__["authorization"] = None
|
456
442
|
super(ServiceendpointJfrogXrayV2, __self__).__init__(
|
457
443
|
'azuredevops:index/serviceendpointJfrogXrayV2:ServiceendpointJfrogXrayV2',
|
458
444
|
resource_name,
|
@@ -27,7 +27,6 @@ class ServiceendpointMavenArgs:
|
|
27
27
|
url: pulumi.Input[str],
|
28
28
|
authentication_basic: Optional[pulumi.Input['ServiceendpointMavenAuthenticationBasicArgs']] = None,
|
29
29
|
authentication_token: Optional[pulumi.Input['ServiceendpointMavenAuthenticationTokenArgs']] = None,
|
30
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
31
30
|
description: Optional[pulumi.Input[str]] = None):
|
32
31
|
"""
|
33
32
|
The set of arguments for constructing a ServiceendpointMaven resource.
|
@@ -46,8 +45,6 @@ class ServiceendpointMavenArgs:
|
|
46
45
|
pulumi.set(__self__, "authentication_basic", authentication_basic)
|
47
46
|
if authentication_token is not None:
|
48
47
|
pulumi.set(__self__, "authentication_token", authentication_token)
|
49
|
-
if authorization is not None:
|
50
|
-
pulumi.set(__self__, "authorization", authorization)
|
51
48
|
if description is not None:
|
52
49
|
pulumi.set(__self__, "description", description)
|
53
50
|
|
@@ -123,15 +120,6 @@ class ServiceendpointMavenArgs:
|
|
123
120
|
def authentication_token(self, value: Optional[pulumi.Input['ServiceendpointMavenAuthenticationTokenArgs']]):
|
124
121
|
pulumi.set(self, "authentication_token", value)
|
125
122
|
|
126
|
-
@property
|
127
|
-
@pulumi.getter
|
128
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
129
|
-
return pulumi.get(self, "authorization")
|
130
|
-
|
131
|
-
@authorization.setter
|
132
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
133
|
-
pulumi.set(self, "authorization", value)
|
134
|
-
|
135
123
|
@property
|
136
124
|
@pulumi.getter
|
137
125
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -277,7 +265,6 @@ class ServiceendpointMaven(pulumi.CustomResource):
|
|
277
265
|
opts: Optional[pulumi.ResourceOptions] = None,
|
278
266
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointMavenAuthenticationBasicArgs', 'ServiceendpointMavenAuthenticationBasicArgsDict']]] = None,
|
279
267
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointMavenAuthenticationTokenArgs', 'ServiceendpointMavenAuthenticationTokenArgsDict']]] = None,
|
280
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
281
268
|
description: Optional[pulumi.Input[str]] = None,
|
282
269
|
project_id: Optional[pulumi.Input[str]] = None,
|
283
270
|
repository_id: Optional[pulumi.Input[str]] = None,
|
@@ -432,7 +419,6 @@ class ServiceendpointMaven(pulumi.CustomResource):
|
|
432
419
|
opts: Optional[pulumi.ResourceOptions] = None,
|
433
420
|
authentication_basic: Optional[pulumi.Input[Union['ServiceendpointMavenAuthenticationBasicArgs', 'ServiceendpointMavenAuthenticationBasicArgsDict']]] = None,
|
434
421
|
authentication_token: Optional[pulumi.Input[Union['ServiceendpointMavenAuthenticationTokenArgs', 'ServiceendpointMavenAuthenticationTokenArgsDict']]] = None,
|
435
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
436
422
|
description: Optional[pulumi.Input[str]] = None,
|
437
423
|
project_id: Optional[pulumi.Input[str]] = None,
|
438
424
|
repository_id: Optional[pulumi.Input[str]] = None,
|
@@ -449,7 +435,6 @@ class ServiceendpointMaven(pulumi.CustomResource):
|
|
449
435
|
|
450
436
|
__props__.__dict__["authentication_basic"] = authentication_basic
|
451
437
|
__props__.__dict__["authentication_token"] = authentication_token
|
452
|
-
__props__.__dict__["authorization"] = authorization
|
453
438
|
__props__.__dict__["description"] = description
|
454
439
|
if project_id is None and not opts.urn:
|
455
440
|
raise TypeError("Missing required property 'project_id'")
|
@@ -463,6 +448,7 @@ class ServiceendpointMaven(pulumi.CustomResource):
|
|
463
448
|
if url is None and not opts.urn:
|
464
449
|
raise TypeError("Missing required property 'url'")
|
465
450
|
__props__.__dict__["url"] = url
|
451
|
+
__props__.__dict__["authorization"] = None
|
466
452
|
super(ServiceendpointMaven, __self__).__init__(
|
467
453
|
'azuredevops:index/serviceendpointMaven:ServiceendpointMaven',
|
468
454
|
resource_name,
|
@@ -24,7 +24,6 @@ class ServiceendpointNexusArgs:
|
|
24
24
|
service_endpoint_name: pulumi.Input[str],
|
25
25
|
url: pulumi.Input[str],
|
26
26
|
username: pulumi.Input[str],
|
27
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
27
|
description: Optional[pulumi.Input[str]] = None):
|
29
28
|
"""
|
30
29
|
The set of arguments for constructing a ServiceendpointNexus resource.
|
@@ -39,8 +38,6 @@ class ServiceendpointNexusArgs:
|
|
39
38
|
pulumi.set(__self__, "service_endpoint_name", service_endpoint_name)
|
40
39
|
pulumi.set(__self__, "url", url)
|
41
40
|
pulumi.set(__self__, "username", username)
|
42
|
-
if authorization is not None:
|
43
|
-
pulumi.set(__self__, "authorization", authorization)
|
44
41
|
if description is not None:
|
45
42
|
pulumi.set(__self__, "description", description)
|
46
43
|
|
@@ -104,15 +101,6 @@ class ServiceendpointNexusArgs:
|
|
104
101
|
def username(self, value: pulumi.Input[str]):
|
105
102
|
pulumi.set(self, "username", value)
|
106
103
|
|
107
|
-
@property
|
108
|
-
@pulumi.getter
|
109
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
110
|
-
return pulumi.get(self, "authorization")
|
111
|
-
|
112
|
-
@authorization.setter
|
113
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
114
|
-
pulumi.set(self, "authorization", value)
|
115
|
-
|
116
104
|
@property
|
117
105
|
@pulumi.getter
|
118
106
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -240,7 +228,6 @@ class ServiceendpointNexus(pulumi.CustomResource):
|
|
240
228
|
def __init__(__self__,
|
241
229
|
resource_name: str,
|
242
230
|
opts: Optional[pulumi.ResourceOptions] = None,
|
243
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
244
231
|
description: Optional[pulumi.Input[str]] = None,
|
245
232
|
password: Optional[pulumi.Input[str]] = None,
|
246
233
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -343,7 +330,6 @@ class ServiceendpointNexus(pulumi.CustomResource):
|
|
343
330
|
def _internal_init(__self__,
|
344
331
|
resource_name: str,
|
345
332
|
opts: Optional[pulumi.ResourceOptions] = None,
|
346
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
347
333
|
description: Optional[pulumi.Input[str]] = None,
|
348
334
|
password: Optional[pulumi.Input[str]] = None,
|
349
335
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -359,7 +345,6 @@ class ServiceendpointNexus(pulumi.CustomResource):
|
|
359
345
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
360
346
|
__props__ = ServiceendpointNexusArgs.__new__(ServiceendpointNexusArgs)
|
361
347
|
|
362
|
-
__props__.__dict__["authorization"] = authorization
|
363
348
|
__props__.__dict__["description"] = description
|
364
349
|
if password is None and not opts.urn:
|
365
350
|
raise TypeError("Missing required property 'password'")
|
@@ -376,6 +361,7 @@ class ServiceendpointNexus(pulumi.CustomResource):
|
|
376
361
|
if username is None and not opts.urn:
|
377
362
|
raise TypeError("Missing required property 'username'")
|
378
363
|
__props__.__dict__["username"] = username
|
364
|
+
__props__.__dict__["authorization"] = None
|
379
365
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["password"])
|
380
366
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
381
367
|
super(ServiceendpointNexus, __self__).__init__(
|
@@ -23,7 +23,6 @@ class ServiceendpointNugetArgs:
|
|
23
23
|
project_id: pulumi.Input[str],
|
24
24
|
service_endpoint_name: pulumi.Input[str],
|
25
25
|
api_key: Optional[pulumi.Input[str]] = None,
|
26
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
27
26
|
description: Optional[pulumi.Input[str]] = None,
|
28
27
|
password: Optional[pulumi.Input[str]] = None,
|
29
28
|
personal_access_token: Optional[pulumi.Input[str]] = None,
|
@@ -45,8 +44,6 @@ class ServiceendpointNugetArgs:
|
|
45
44
|
pulumi.set(__self__, "service_endpoint_name", service_endpoint_name)
|
46
45
|
if api_key is not None:
|
47
46
|
pulumi.set(__self__, "api_key", api_key)
|
48
|
-
if authorization is not None:
|
49
|
-
pulumi.set(__self__, "authorization", authorization)
|
50
47
|
if description is not None:
|
51
48
|
pulumi.set(__self__, "description", description)
|
52
49
|
if password is not None:
|
@@ -104,15 +101,6 @@ class ServiceendpointNugetArgs:
|
|
104
101
|
def api_key(self, value: Optional[pulumi.Input[str]]):
|
105
102
|
pulumi.set(self, "api_key", value)
|
106
103
|
|
107
|
-
@property
|
108
|
-
@pulumi.getter
|
109
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
110
|
-
return pulumi.get(self, "authorization")
|
111
|
-
|
112
|
-
@authorization.setter
|
113
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
114
|
-
pulumi.set(self, "authorization", value)
|
115
|
-
|
116
104
|
@property
|
117
105
|
@pulumi.getter
|
118
106
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -315,7 +303,6 @@ class ServiceendpointNuget(pulumi.CustomResource):
|
|
315
303
|
resource_name: str,
|
316
304
|
opts: Optional[pulumi.ResourceOptions] = None,
|
317
305
|
api_key: Optional[pulumi.Input[str]] = None,
|
318
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
319
306
|
description: Optional[pulumi.Input[str]] = None,
|
320
307
|
feed_url: Optional[pulumi.Input[str]] = None,
|
321
308
|
password: Optional[pulumi.Input[str]] = None,
|
@@ -426,7 +413,6 @@ class ServiceendpointNuget(pulumi.CustomResource):
|
|
426
413
|
resource_name: str,
|
427
414
|
opts: Optional[pulumi.ResourceOptions] = None,
|
428
415
|
api_key: Optional[pulumi.Input[str]] = None,
|
429
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
430
416
|
description: Optional[pulumi.Input[str]] = None,
|
431
417
|
feed_url: Optional[pulumi.Input[str]] = None,
|
432
418
|
password: Optional[pulumi.Input[str]] = None,
|
@@ -444,7 +430,6 @@ class ServiceendpointNuget(pulumi.CustomResource):
|
|
444
430
|
__props__ = ServiceendpointNugetArgs.__new__(ServiceendpointNugetArgs)
|
445
431
|
|
446
432
|
__props__.__dict__["api_key"] = None if api_key is None else pulumi.Output.secret(api_key)
|
447
|
-
__props__.__dict__["authorization"] = authorization
|
448
433
|
__props__.__dict__["description"] = description
|
449
434
|
if feed_url is None and not opts.urn:
|
450
435
|
raise TypeError("Missing required property 'feed_url'")
|
@@ -458,6 +443,7 @@ class ServiceendpointNuget(pulumi.CustomResource):
|
|
458
443
|
raise TypeError("Missing required property 'service_endpoint_name'")
|
459
444
|
__props__.__dict__["service_endpoint_name"] = service_endpoint_name
|
460
445
|
__props__.__dict__["username"] = username
|
446
|
+
__props__.__dict__["authorization"] = None
|
461
447
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["apiKey", "password", "personalAccessToken"])
|
462
448
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
463
449
|
super(ServiceendpointNuget, __self__).__init__(
|
@@ -23,7 +23,6 @@ class ServiceendpointOctopusdeployArgs:
|
|
23
23
|
project_id: pulumi.Input[str],
|
24
24
|
service_endpoint_name: pulumi.Input[str],
|
25
25
|
url: pulumi.Input[str],
|
26
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
27
26
|
description: Optional[pulumi.Input[str]] = None,
|
28
27
|
ignore_ssl_error: Optional[pulumi.Input[bool]] = None):
|
29
28
|
"""
|
@@ -38,8 +37,6 @@ class ServiceendpointOctopusdeployArgs:
|
|
38
37
|
pulumi.set(__self__, "project_id", project_id)
|
39
38
|
pulumi.set(__self__, "service_endpoint_name", service_endpoint_name)
|
40
39
|
pulumi.set(__self__, "url", url)
|
41
|
-
if authorization is not None:
|
42
|
-
pulumi.set(__self__, "authorization", authorization)
|
43
40
|
if description is not None:
|
44
41
|
pulumi.set(__self__, "description", description)
|
45
42
|
if ignore_ssl_error is not None:
|
@@ -93,15 +90,6 @@ class ServiceendpointOctopusdeployArgs:
|
|
93
90
|
def url(self, value: pulumi.Input[str]):
|
94
91
|
pulumi.set(self, "url", value)
|
95
92
|
|
96
|
-
@property
|
97
|
-
@pulumi.getter
|
98
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
99
|
-
return pulumi.get(self, "authorization")
|
100
|
-
|
101
|
-
@authorization.setter
|
102
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
103
|
-
pulumi.set(self, "authorization", value)
|
104
|
-
|
105
93
|
@property
|
106
94
|
@pulumi.getter
|
107
95
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -242,7 +230,6 @@ class ServiceendpointOctopusdeploy(pulumi.CustomResource):
|
|
242
230
|
resource_name: str,
|
243
231
|
opts: Optional[pulumi.ResourceOptions] = None,
|
244
232
|
api_key: Optional[pulumi.Input[str]] = None,
|
245
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
246
233
|
description: Optional[pulumi.Input[str]] = None,
|
247
234
|
ignore_ssl_error: Optional[pulumi.Input[bool]] = None,
|
248
235
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -349,7 +336,6 @@ class ServiceendpointOctopusdeploy(pulumi.CustomResource):
|
|
349
336
|
resource_name: str,
|
350
337
|
opts: Optional[pulumi.ResourceOptions] = None,
|
351
338
|
api_key: Optional[pulumi.Input[str]] = None,
|
352
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
353
339
|
description: Optional[pulumi.Input[str]] = None,
|
354
340
|
ignore_ssl_error: Optional[pulumi.Input[bool]] = None,
|
355
341
|
project_id: Optional[pulumi.Input[str]] = None,
|
@@ -367,7 +353,6 @@ class ServiceendpointOctopusdeploy(pulumi.CustomResource):
|
|
367
353
|
if api_key is None and not opts.urn:
|
368
354
|
raise TypeError("Missing required property 'api_key'")
|
369
355
|
__props__.__dict__["api_key"] = api_key
|
370
|
-
__props__.__dict__["authorization"] = authorization
|
371
356
|
__props__.__dict__["description"] = description
|
372
357
|
__props__.__dict__["ignore_ssl_error"] = ignore_ssl_error
|
373
358
|
if project_id is None and not opts.urn:
|
@@ -379,6 +364,7 @@ class ServiceendpointOctopusdeploy(pulumi.CustomResource):
|
|
379
364
|
if url is None and not opts.urn:
|
380
365
|
raise TypeError("Missing required property 'url'")
|
381
366
|
__props__.__dict__["url"] = url
|
367
|
+
__props__.__dict__["authorization"] = None
|
382
368
|
super(ServiceendpointOctopusdeploy, __self__).__init__(
|
383
369
|
'azuredevops:index/serviceendpointOctopusdeploy:ServiceendpointOctopusdeploy',
|
384
370
|
resource_name,
|
@@ -23,7 +23,6 @@ class ServiceendpointSnykArgs:
|
|
23
23
|
project_id: pulumi.Input[str],
|
24
24
|
server_url: pulumi.Input[str],
|
25
25
|
service_endpoint_name: pulumi.Input[str],
|
26
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
27
26
|
description: Optional[pulumi.Input[str]] = None):
|
28
27
|
"""
|
29
28
|
The set of arguments for constructing a ServiceendpointSnyk resource.
|
@@ -36,8 +35,6 @@ class ServiceendpointSnykArgs:
|
|
36
35
|
pulumi.set(__self__, "project_id", project_id)
|
37
36
|
pulumi.set(__self__, "server_url", server_url)
|
38
37
|
pulumi.set(__self__, "service_endpoint_name", service_endpoint_name)
|
39
|
-
if authorization is not None:
|
40
|
-
pulumi.set(__self__, "authorization", authorization)
|
41
38
|
if description is not None:
|
42
39
|
pulumi.set(__self__, "description", description)
|
43
40
|
|
@@ -89,15 +86,6 @@ class ServiceendpointSnykArgs:
|
|
89
86
|
def service_endpoint_name(self, value: pulumi.Input[str]):
|
90
87
|
pulumi.set(self, "service_endpoint_name", value)
|
91
88
|
|
92
|
-
@property
|
93
|
-
@pulumi.getter
|
94
|
-
def authorization(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
95
|
-
return pulumi.get(self, "authorization")
|
96
|
-
|
97
|
-
@authorization.setter
|
98
|
-
def authorization(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
99
|
-
pulumi.set(self, "authorization", value)
|
100
|
-
|
101
89
|
@property
|
102
90
|
@pulumi.getter
|
103
91
|
def description(self) -> Optional[pulumi.Input[str]]:
|
@@ -210,7 +198,6 @@ class ServiceendpointSnyk(pulumi.CustomResource):
|
|
210
198
|
resource_name: str,
|
211
199
|
opts: Optional[pulumi.ResourceOptions] = None,
|
212
200
|
api_token: Optional[pulumi.Input[str]] = None,
|
213
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
214
201
|
description: Optional[pulumi.Input[str]] = None,
|
215
202
|
project_id: Optional[pulumi.Input[str]] = None,
|
216
203
|
server_url: Optional[pulumi.Input[str]] = None,
|
@@ -315,7 +302,6 @@ class ServiceendpointSnyk(pulumi.CustomResource):
|
|
315
302
|
resource_name: str,
|
316
303
|
opts: Optional[pulumi.ResourceOptions] = None,
|
317
304
|
api_token: Optional[pulumi.Input[str]] = None,
|
318
|
-
authorization: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
319
305
|
description: Optional[pulumi.Input[str]] = None,
|
320
306
|
project_id: Optional[pulumi.Input[str]] = None,
|
321
307
|
server_url: Optional[pulumi.Input[str]] = None,
|
@@ -332,7 +318,6 @@ class ServiceendpointSnyk(pulumi.CustomResource):
|
|
332
318
|
if api_token is None and not opts.urn:
|
333
319
|
raise TypeError("Missing required property 'api_token'")
|
334
320
|
__props__.__dict__["api_token"] = None if api_token is None else pulumi.Output.secret(api_token)
|
335
|
-
__props__.__dict__["authorization"] = authorization
|
336
321
|
__props__.__dict__["description"] = description
|
337
322
|
if project_id is None and not opts.urn:
|
338
323
|
raise TypeError("Missing required property 'project_id'")
|
@@ -343,6 +328,7 @@ class ServiceendpointSnyk(pulumi.CustomResource):
|
|
343
328
|
if service_endpoint_name is None and not opts.urn:
|
344
329
|
raise TypeError("Missing required property 'service_endpoint_name'")
|
345
330
|
__props__.__dict__["service_endpoint_name"] = service_endpoint_name
|
331
|
+
__props__.__dict__["authorization"] = None
|
346
332
|
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["apiToken"])
|
347
333
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
348
334
|
super(ServiceendpointSnyk, __self__).__init__(
|