@pulumi/azuredevops 3.11.0-alpha.1761111055 → 3.11.0-alpha.1761583183
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.
- package/package.json +2 -2
- package/types/input.d.ts +7 -0
- package/types/output.d.ts +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/azuredevops",
|
|
3
|
-
"version": "3.11.0-alpha.
|
|
3
|
+
"version": "3.11.0-alpha.1761583183",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Azure DevOps.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "azuredevops",
|
|
26
|
-
"version": "3.11.0-alpha.
|
|
26
|
+
"version": "3.11.0-alpha.1761583183"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -776,6 +776,13 @@ export interface GitInitialization {
|
|
|
776
776
|
* The type of repository to create. Valid values: `Uninitialized`, `Clean` or `Import`.
|
|
777
777
|
*/
|
|
778
778
|
initType: pulumi.Input<string>;
|
|
779
|
+
/**
|
|
780
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
781
|
+
* The password used to authenticate to a private repository for import initialization. Conflicts with `serviceConnectionId`. Note: This is a write-only attribute, which allows ephemeral resources to be used.
|
|
782
|
+
*
|
|
783
|
+
* ~>**Note** At least `serviceConnectionId` or `username/password` needs to be set to import private repository.
|
|
784
|
+
*/
|
|
785
|
+
password?: pulumi.Input<string>;
|
|
779
786
|
/**
|
|
780
787
|
* The ID of service connection used to authenticate to a private repository for import initialization. Conflicts with `username` and `password`.
|
|
781
788
|
*/
|
package/types/output.d.ts
CHANGED
|
@@ -1374,6 +1374,13 @@ export interface GitInitialization {
|
|
|
1374
1374
|
* The type of repository to create. Valid values: `Uninitialized`, `Clean` or `Import`.
|
|
1375
1375
|
*/
|
|
1376
1376
|
initType: string;
|
|
1377
|
+
/**
|
|
1378
|
+
* **NOTE:** This field is write-only and its value will not be updated in state as part of read operations.
|
|
1379
|
+
* The password used to authenticate to a private repository for import initialization. Conflicts with `serviceConnectionId`. Note: This is a write-only attribute, which allows ephemeral resources to be used.
|
|
1380
|
+
*
|
|
1381
|
+
* ~>**Note** At least `serviceConnectionId` or `username/password` needs to be set to import private repository.
|
|
1382
|
+
*/
|
|
1383
|
+
password?: string;
|
|
1377
1384
|
/**
|
|
1378
1385
|
* The ID of service connection used to authenticate to a private repository for import initialization. Conflicts with `username` and `password`.
|
|
1379
1386
|
*/
|