@pulumi/azure-native 1.69.0 → 1.70.0-alpha.1661325540

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.
Files changed (38) hide show
  1. package/containerinstance/v20210901/containerGroup.d.ts +1 -1
  2. package/containerinstance/v20210901/getContainerGroup.d.ts +1 -1
  3. package/datafactory/getLinkedService.d.ts +1 -1
  4. package/datafactory/linkedService.d.ts +2 -2
  5. package/datafactory/v20180601/getLinkedService.d.ts +1 -1
  6. package/datafactory/v20180601/linkedService.d.ts +2 -2
  7. package/package.json +2 -2
  8. package/package.json.dev +2 -2
  9. package/synapse/v20210601/bigDataPool.d.ts +8 -0
  10. package/synapse/v20210601/bigDataPool.js +3 -1
  11. package/synapse/v20210601/getBigDataPool.d.ts +4 -0
  12. package/synapse/v20210601/getBigDataPool.js +1 -1
  13. package/synapse/v20210601preview/bigDataPool.d.ts +8 -0
  14. package/synapse/v20210601preview/bigDataPool.js +3 -1
  15. package/synapse/v20210601preview/getBigDataPool.d.ts +4 -0
  16. package/synapse/v20210601preview/getBigDataPool.js +1 -1
  17. package/types/enums/videoindexer/index.d.ts +2 -1
  18. package/types/enums/videoindexer/index.js +4 -2
  19. package/types/enums/videoindexer/v20220720preview/index.d.ts +10 -0
  20. package/types/enums/videoindexer/v20220720preview/index.js +12 -0
  21. package/types/input.d.ts +108 -2
  22. package/types/input.js +1 -1
  23. package/types/output.d.ts +170 -15
  24. package/types/output.js +1 -1
  25. package/videoindexer/account.js +2 -2
  26. package/videoindexer/index.d.ts +2 -1
  27. package/videoindexer/index.js +4 -2
  28. package/videoindexer/v20211018preview/account.js +2 -2
  29. package/videoindexer/v20211027preview/account.js +2 -2
  30. package/videoindexer/v20211110preview/account.js +2 -2
  31. package/videoindexer/v20220413preview/account.js +2 -2
  32. package/videoindexer/v20220720preview/account.d.ts +114 -0
  33. package/videoindexer/v20220720preview/account.js +85 -0
  34. package/videoindexer/v20220720preview/getAccount.d.ts +86 -0
  35. package/videoindexer/v20220720preview/getAccount.js +26 -0
  36. package/videoindexer/v20220720preview/index.d.ts +3 -0
  37. package/videoindexer/v20220720preview/index.js +40 -0
  38. package/videoindexer/v20220801/account.js +2 -2
package/types/input.d.ts CHANGED
@@ -91634,7 +91634,7 @@ export declare namespace containerinstance {
91634
91634
  */
91635
91635
  type?: pulumi.Input<enums.containerinstance.v20210901.ResourceIdentityType>;
91636
91636
  /**
91637
- * The list of user identities associated with the container group. The user identity dictionary key references will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
91637
+ * The list of user identities associated with the container group.
91638
91638
  */
91639
91639
  userAssignedIdentities?: pulumi.Input<{
91640
91640
  [key: string]: any;
@@ -91837,7 +91837,7 @@ export declare namespace containerinstance {
91837
91837
  /**
91838
91838
  * The username for the private registry.
91839
91839
  */
91840
- username: pulumi.Input<string>;
91840
+ username?: pulumi.Input<string>;
91841
91841
  }
91842
91842
  /**
91843
91843
  * The init container definition.
@@ -154237,6 +154237,42 @@ export declare namespace datafactory {
154237
154237
  */
154238
154238
  wildcardFolderPath?: any;
154239
154239
  }
154240
+ /**
154241
+ * Linked service for GoogleSheets.
154242
+ */
154243
+ interface GoogleSheetsLinkedServiceArgs {
154244
+ /**
154245
+ * List of tags that can be used for describing the linked service.
154246
+ */
154247
+ annotations?: pulumi.Input<any[]>;
154248
+ /**
154249
+ * The api token for the GoogleSheets source.
154250
+ */
154251
+ apiToken: pulumi.Input<inputs.datafactory.AzureKeyVaultSecretReferenceArgs | inputs.datafactory.SecureStringArgs>;
154252
+ /**
154253
+ * The integration runtime reference.
154254
+ */
154255
+ connectVia?: pulumi.Input<inputs.datafactory.IntegrationRuntimeReferenceArgs>;
154256
+ /**
154257
+ * Linked service description.
154258
+ */
154259
+ description?: pulumi.Input<string>;
154260
+ /**
154261
+ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
154262
+ */
154263
+ encryptedCredential?: any;
154264
+ /**
154265
+ * Parameters for linked service.
154266
+ */
154267
+ parameters?: pulumi.Input<{
154268
+ [key: string]: pulumi.Input<inputs.datafactory.ParameterSpecificationArgs>;
154269
+ }>;
154270
+ /**
154271
+ * Type of linked service.
154272
+ * Expected value is 'GoogleSheets'.
154273
+ */
154274
+ type: pulumi.Input<"GoogleSheets">;
154275
+ }
154240
154276
  /**
154241
154277
  * Greenplum Database linked service.
154242
154278
  */
@@ -186681,6 +186717,42 @@ export declare namespace datafactory {
186681
186717
  */
186682
186718
  wildcardFolderPath?: any;
186683
186719
  }
186720
+ /**
186721
+ * Linked service for GoogleSheets.
186722
+ */
186723
+ interface GoogleSheetsLinkedServiceArgs {
186724
+ /**
186725
+ * List of tags that can be used for describing the linked service.
186726
+ */
186727
+ annotations?: pulumi.Input<any[]>;
186728
+ /**
186729
+ * The api token for the GoogleSheets source.
186730
+ */
186731
+ apiToken: pulumi.Input<inputs.datafactory.v20180601.AzureKeyVaultSecretReferenceArgs | inputs.datafactory.v20180601.SecureStringArgs>;
186732
+ /**
186733
+ * The integration runtime reference.
186734
+ */
186735
+ connectVia?: pulumi.Input<inputs.datafactory.v20180601.IntegrationRuntimeReferenceArgs>;
186736
+ /**
186737
+ * Linked service description.
186738
+ */
186739
+ description?: pulumi.Input<string>;
186740
+ /**
186741
+ * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string (or Expression with resultType string).
186742
+ */
186743
+ encryptedCredential?: any;
186744
+ /**
186745
+ * Parameters for linked service.
186746
+ */
186747
+ parameters?: pulumi.Input<{
186748
+ [key: string]: pulumi.Input<inputs.datafactory.v20180601.ParameterSpecificationArgs>;
186749
+ }>;
186750
+ /**
186751
+ * Type of linked service.
186752
+ * Expected value is 'GoogleSheets'.
186753
+ */
186754
+ type: pulumi.Input<"GoogleSheets">;
186755
+ }
186684
186756
  /**
186685
186757
  * Greenplum Database linked service.
186686
186758
  */
@@ -690099,6 +690171,10 @@ export declare namespace synapse {
690099
690171
  * Type of the library.
690100
690172
  */
690101
690173
  type?: pulumi.Input<string>;
690174
+ /**
690175
+ * The last update time of the library.
690176
+ */
690177
+ uploadedTimestamp?: pulumi.Input<string>;
690102
690178
  }
690103
690179
  /**
690104
690180
  * Library requirements for a Big Data pool powered by Apache Spark
@@ -693645,6 +693721,36 @@ export declare namespace videoindexer {
693645
693721
  userAssignedIdentity?: pulumi.Input<string>;
693646
693722
  }
693647
693723
  }
693724
+ namespace v20220720preview {
693725
+ /**
693726
+ * Managed service identity (system assigned and/or user assigned identities)
693727
+ */
693728
+ interface ManagedServiceIdentityArgs {
693729
+ /**
693730
+ * Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
693731
+ */
693732
+ type: pulumi.Input<string | enums.videoindexer.v20220720preview.ManagedServiceIdentityType>;
693733
+ /**
693734
+ * The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
693735
+ */
693736
+ userAssignedIdentities?: pulumi.Input<{
693737
+ [key: string]: any;
693738
+ }>;
693739
+ }
693740
+ /**
693741
+ * The media services details
693742
+ */
693743
+ interface MediaServicesForPutRequestArgs {
693744
+ /**
693745
+ * The media services resource id
693746
+ */
693747
+ resourceId?: pulumi.Input<string>;
693748
+ /**
693749
+ * The user assigned identity to be used to grant permissions
693750
+ */
693751
+ userAssignedIdentity?: pulumi.Input<string>;
693752
+ }
693753
+ }
693648
693754
  namespace v20220801 {
693649
693755
  /**
693650
693756
  * Managed service identity (system assigned and/or user assigned identities)