@pulumi/azure-native 3.2.0 → 3.3.0-alpha.1745626403
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/advisor/assessment.d.ts +2 -0
- package/advisor/assessment.js +4 -2
- package/advisor/getAssessment.d.ts +4 -0
- package/advisor/getAssessment.js +5 -1
- package/advisor/getSuppression.d.ts +2 -2
- package/advisor/getSuppression.js +2 -2
- package/advisor/suppression.d.ts +1 -1
- package/advisor/suppression.js +3 -3
- package/containerregistry/cacheRule.d.ts +1 -1
- package/containerregistry/cacheRule.js +3 -3
- package/containerregistry/connectedRegistry.d.ts +1 -1
- package/containerregistry/connectedRegistry.js +3 -3
- package/containerregistry/credentialSet.d.ts +1 -1
- package/containerregistry/credentialSet.js +3 -3
- package/containerregistry/getCacheRule.d.ts +2 -2
- package/containerregistry/getCacheRule.js +2 -2
- package/containerregistry/getConnectedRegistry.d.ts +2 -2
- package/containerregistry/getConnectedRegistry.js +2 -2
- package/containerregistry/getCredentialSet.d.ts +2 -2
- package/containerregistry/getCredentialSet.js +2 -2
- package/containerregistry/getPrivateEndpointConnection.d.ts +2 -2
- package/containerregistry/getPrivateEndpointConnection.js +2 -2
- package/containerregistry/getRegistry.d.ts +2 -2
- package/containerregistry/getRegistry.js +2 -2
- package/containerregistry/getReplication.d.ts +2 -2
- package/containerregistry/getReplication.js +2 -2
- package/containerregistry/getScopeMap.d.ts +2 -2
- package/containerregistry/getScopeMap.js +2 -2
- package/containerregistry/getToken.d.ts +2 -2
- package/containerregistry/getToken.js +2 -2
- package/containerregistry/getWebhook.d.ts +2 -2
- package/containerregistry/getWebhook.js +2 -2
- package/containerregistry/getWebhookCallbackConfig.d.ts +2 -2
- package/containerregistry/getWebhookCallbackConfig.js +2 -2
- package/containerregistry/listRegistryCredentials.d.ts +2 -2
- package/containerregistry/listRegistryCredentials.js +2 -2
- package/containerregistry/listWebhookEvents.d.ts +2 -2
- package/containerregistry/listWebhookEvents.js +2 -2
- package/containerregistry/privateEndpointConnection.d.ts +1 -1
- package/containerregistry/privateEndpointConnection.js +3 -3
- package/containerregistry/registry.d.ts +1 -1
- package/containerregistry/registry.js +3 -3
- package/containerregistry/replication.d.ts +1 -1
- package/containerregistry/replication.js +3 -3
- package/containerregistry/scopeMap.d.ts +1 -1
- package/containerregistry/scopeMap.js +3 -3
- package/containerregistry/token.d.ts +1 -1
- package/containerregistry/token.js +3 -3
- package/containerregistry/webhook.d.ts +1 -1
- package/containerregistry/webhook.js +3 -3
- package/dbforpostgresql/getServerGroupCluster.d.ts +3 -3
- package/dbforpostgresql/server.js +2 -2
- package/dbforpostgresql/serverGroupCluster.d.ts +6 -6
- package/dbforpostgresql/serverGroupCluster.js +2 -3
- package/index.d.ts +2 -1
- package/index.js +6 -3
- package/monitor/azureMonitorWorkspace.d.ts +17 -12
- package/monitor/azureMonitorWorkspace.js +5 -5
- package/monitor/getAzureMonitorWorkspace.d.ts +18 -18
- package/monitor/getAzureMonitorWorkspace.js +6 -6
- package/onlineexperimentation/getOnlineExperimentWorkspace.d.ts +81 -0
- package/onlineexperimentation/getOnlineExperimentWorkspace.js +34 -0
- package/onlineexperimentation/index.d.ts +7 -0
- package/onlineexperimentation/index.js +41 -0
- package/onlineexperimentation/onlineExperimentWorkspace.d.ts +105 -0
- package/onlineexperimentation/onlineExperimentWorkspace.js +81 -0
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
- package/types/enums/durabletask/index.d.ts +1 -1
- package/types/enums/durabletask/index.js +1 -1
- package/types/enums/index.d.ts +2 -1
- package/types/enums/index.js +5 -3
- package/types/enums/migrate/index.d.ts +22 -0
- package/types/enums/migrate/index.js +21 -3
- package/types/enums/monitor/index.d.ts +8 -0
- package/types/enums/monitor/index.js +6 -2
- package/types/enums/onlineexperimentation/index.d.ts +46 -0
- package/types/enums/onlineexperimentation/index.js +40 -0
- package/types/input.d.ts +154 -15
- package/types/input.js +11 -3
- package/types/output.d.ts +245 -38
- package/types/output.js +11 -3
package/types/output.d.ts
CHANGED
|
@@ -109317,10 +109317,16 @@ export declare namespace dbformysql {
|
|
|
109317
109317
|
}
|
|
109318
109318
|
export declare namespace dbforpostgresql {
|
|
109319
109319
|
/**
|
|
109320
|
-
* Authentication configuration of a
|
|
109320
|
+
* Authentication configuration properties of a server
|
|
109321
109321
|
*/
|
|
109322
109322
|
interface AuthConfigResponse {
|
|
109323
|
+
/**
|
|
109324
|
+
* If Enabled, Azure Active Directory authentication is enabled.
|
|
109325
|
+
*/
|
|
109323
109326
|
activeDirectoryAuth?: string;
|
|
109327
|
+
/**
|
|
109328
|
+
* If Enabled, Password authentication is enabled.
|
|
109329
|
+
*/
|
|
109324
109330
|
passwordAuth?: string;
|
|
109325
109331
|
/**
|
|
109326
109332
|
* Tenant id of the server.
|
|
@@ -109353,7 +109359,7 @@ export declare namespace dbforpostgresql {
|
|
|
109353
109359
|
*/
|
|
109354
109360
|
function backupResponseProvideDefaults(val: BackupResponse): BackupResponse;
|
|
109355
109361
|
/**
|
|
109356
|
-
*
|
|
109362
|
+
* Data encryption properties of a server
|
|
109357
109363
|
*/
|
|
109358
109364
|
interface DataEncryptionResponse {
|
|
109359
109365
|
/**
|
|
@@ -109376,14 +109382,13 @@ export declare namespace dbforpostgresql {
|
|
|
109376
109382
|
* URI for the key in keyvault for data encryption of the primary server.
|
|
109377
109383
|
*/
|
|
109378
109384
|
primaryKeyURI?: string;
|
|
109379
|
-
/**
|
|
109380
|
-
* URI for the key in keyvault for data encryption of the primary server.
|
|
109381
|
-
*/
|
|
109382
|
-
primaryKeyUri?: string;
|
|
109383
109385
|
/**
|
|
109384
109386
|
* Resource Id for the User assigned identity to be used for data encryption of the primary server.
|
|
109385
109387
|
*/
|
|
109386
109388
|
primaryUserAssignedIdentityId?: string;
|
|
109389
|
+
/**
|
|
109390
|
+
* Data encryption type to depict if it is System Managed vs Azure Key vault.
|
|
109391
|
+
*/
|
|
109387
109392
|
type?: string;
|
|
109388
109393
|
}
|
|
109389
109394
|
/**
|
|
@@ -109531,26 +109536,30 @@ export declare namespace dbforpostgresql {
|
|
|
109531
109536
|
};
|
|
109532
109537
|
}
|
|
109533
109538
|
/**
|
|
109534
|
-
*
|
|
109539
|
+
* Maintenance window properties of a server.
|
|
109535
109540
|
*/
|
|
109536
109541
|
interface MaintenanceWindowResponse {
|
|
109537
109542
|
/**
|
|
109538
|
-
*
|
|
109543
|
+
* indicates whether custom window is enabled or disabled
|
|
109539
109544
|
*/
|
|
109540
109545
|
customWindow?: string;
|
|
109541
109546
|
/**
|
|
109542
|
-
*
|
|
109547
|
+
* day of week for maintenance window
|
|
109543
109548
|
*/
|
|
109544
109549
|
dayOfWeek?: number;
|
|
109545
109550
|
/**
|
|
109546
|
-
*
|
|
109551
|
+
* start hour for maintenance window
|
|
109547
109552
|
*/
|
|
109548
109553
|
startHour?: number;
|
|
109549
109554
|
/**
|
|
109550
|
-
*
|
|
109555
|
+
* start minute for maintenance window
|
|
109551
109556
|
*/
|
|
109552
109557
|
startMinute?: number;
|
|
109553
109558
|
}
|
|
109559
|
+
/**
|
|
109560
|
+
* maintenanceWindowResponseProvideDefaults sets the appropriate defaults for MaintenanceWindowResponse
|
|
109561
|
+
*/
|
|
109562
|
+
function maintenanceWindowResponseProvideDefaults(val: MaintenanceWindowResponse): MaintenanceWindowResponse;
|
|
109554
109563
|
/**
|
|
109555
109564
|
* Migration status.
|
|
109556
109565
|
*/
|
|
@@ -109704,6 +109713,48 @@ export declare namespace dbforpostgresql {
|
|
|
109704
109713
|
*/
|
|
109705
109714
|
type?: string;
|
|
109706
109715
|
}
|
|
109716
|
+
/**
|
|
109717
|
+
* Authentication configuration of a cluster.
|
|
109718
|
+
*/
|
|
109719
|
+
interface ServerGroupClusterAuthConfigResponse {
|
|
109720
|
+
activeDirectoryAuth?: string;
|
|
109721
|
+
passwordAuth?: string;
|
|
109722
|
+
}
|
|
109723
|
+
/**
|
|
109724
|
+
* The data encryption properties of a cluster.
|
|
109725
|
+
*/
|
|
109726
|
+
interface ServerGroupClusterDataEncryptionResponse {
|
|
109727
|
+
/**
|
|
109728
|
+
* URI for the key in keyvault for data encryption of the primary server.
|
|
109729
|
+
*/
|
|
109730
|
+
primaryKeyUri?: string;
|
|
109731
|
+
/**
|
|
109732
|
+
* Resource Id for the User assigned identity to be used for data encryption of the primary server.
|
|
109733
|
+
*/
|
|
109734
|
+
primaryUserAssignedIdentityId?: string;
|
|
109735
|
+
type?: string;
|
|
109736
|
+
}
|
|
109737
|
+
/**
|
|
109738
|
+
* Schedule settings for regular cluster updates.
|
|
109739
|
+
*/
|
|
109740
|
+
interface ServerGroupClusterMaintenanceWindowResponse {
|
|
109741
|
+
/**
|
|
109742
|
+
* Indicates whether custom maintenance window is enabled or not.
|
|
109743
|
+
*/
|
|
109744
|
+
customWindow?: string;
|
|
109745
|
+
/**
|
|
109746
|
+
* Preferred day of the week for maintenance window.
|
|
109747
|
+
*/
|
|
109748
|
+
dayOfWeek?: number;
|
|
109749
|
+
/**
|
|
109750
|
+
* Start hour within preferred day of the week for maintenance window.
|
|
109751
|
+
*/
|
|
109752
|
+
startHour?: number;
|
|
109753
|
+
/**
|
|
109754
|
+
* Start minute within the start hour for maintenance window.
|
|
109755
|
+
*/
|
|
109756
|
+
startMinute?: number;
|
|
109757
|
+
}
|
|
109707
109758
|
/**
|
|
109708
109759
|
* The name object for a server.
|
|
109709
109760
|
*/
|
|
@@ -134800,7 +134851,7 @@ export declare namespace loadtestservice {
|
|
|
134800
134851
|
*/
|
|
134801
134852
|
interface EncryptionPropertiesIdentityResponse {
|
|
134802
134853
|
/**
|
|
134803
|
-
* User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/
|
|
134854
|
+
* User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/a0a0a0a0-bbbb-cccd-dddd-e1e1e1e1e1e1/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
|
|
134804
134855
|
*/
|
|
134805
134856
|
resourceId?: string;
|
|
134806
134857
|
/**
|
|
@@ -156299,6 +156350,10 @@ export declare namespace migrate {
|
|
|
156299
156350
|
* Gets or sets the Azure VM families.
|
|
156300
156351
|
*/
|
|
156301
156352
|
azureVmFamilies?: string[];
|
|
156353
|
+
/**
|
|
156354
|
+
* Gets or sets the Azure VM security options.
|
|
156355
|
+
*/
|
|
156356
|
+
azureVmSecurityOptions?: string[];
|
|
156302
156357
|
/**
|
|
156303
156358
|
* Gets or sets the billing settings.
|
|
156304
156359
|
*/
|
|
@@ -160086,6 +160141,32 @@ export declare namespace monitor {
|
|
|
160086
160141
|
* azureMonitorWorkspaceLogsExporterResponseProvideDefaults sets the appropriate defaults for AzureMonitorWorkspaceLogsExporterResponse
|
|
160087
160142
|
*/
|
|
160088
160143
|
function azureMonitorWorkspaceLogsExporterResponseProvideDefaults(val: AzureMonitorWorkspaceLogsExporterResponse): AzureMonitorWorkspaceLogsExporterResponse;
|
|
160144
|
+
/**
|
|
160145
|
+
* The Data Collection Rule and Endpoint used for ingestion by default.
|
|
160146
|
+
*/
|
|
160147
|
+
interface AzureMonitorWorkspaceResponseDefaultIngestionSettings {
|
|
160148
|
+
/**
|
|
160149
|
+
* The Azure resource Id of the default data collection endpoint for this Azure Monitor Workspace.
|
|
160150
|
+
*/
|
|
160151
|
+
dataCollectionEndpointResourceId: string;
|
|
160152
|
+
/**
|
|
160153
|
+
* The Azure resource Id of the default data collection rule for this Azure Monitor Workspace.
|
|
160154
|
+
*/
|
|
160155
|
+
dataCollectionRuleResourceId: string;
|
|
160156
|
+
}
|
|
160157
|
+
/**
|
|
160158
|
+
* Properties related to the metrics container in the Azure Monitor Workspace
|
|
160159
|
+
*/
|
|
160160
|
+
interface AzureMonitorWorkspaceResponseMetrics {
|
|
160161
|
+
/**
|
|
160162
|
+
* An internal identifier for the metrics container. Only to be used by the system
|
|
160163
|
+
*/
|
|
160164
|
+
internalId: string;
|
|
160165
|
+
/**
|
|
160166
|
+
* The Prometheus query endpoint for the Azure Monitor Workspace
|
|
160167
|
+
*/
|
|
160168
|
+
prometheusQueryEndpoint: string;
|
|
160169
|
+
}
|
|
160089
160170
|
/**
|
|
160090
160171
|
* The complex type of the extended location.
|
|
160091
160172
|
*/
|
|
@@ -160943,19 +161024,6 @@ export declare namespace monitor {
|
|
|
160943
161024
|
*/
|
|
160944
161025
|
name: string;
|
|
160945
161026
|
}
|
|
160946
|
-
/**
|
|
160947
|
-
* Settings for data ingestion
|
|
160948
|
-
*/
|
|
160949
|
-
interface IngestionSettingsResponse {
|
|
160950
|
-
/**
|
|
160951
|
-
* The Azure resource Id of the default data collection endpoint for this workspace.
|
|
160952
|
-
*/
|
|
160953
|
-
dataCollectionEndpointResourceId: string;
|
|
160954
|
-
/**
|
|
160955
|
-
* The Azure resource Id of the default data collection rule for this workspace.
|
|
160956
|
-
*/
|
|
160957
|
-
dataCollectionRuleResourceId: string;
|
|
160958
|
-
}
|
|
160959
161027
|
/**
|
|
160960
161028
|
* An Itsm receiver.
|
|
160961
161029
|
*/
|
|
@@ -161367,19 +161435,6 @@ export declare namespace monitor {
|
|
|
161367
161435
|
*/
|
|
161368
161436
|
timeWindow: string;
|
|
161369
161437
|
}
|
|
161370
|
-
/**
|
|
161371
|
-
* Information about metrics for the workspace
|
|
161372
|
-
*/
|
|
161373
|
-
interface MetricsResponse {
|
|
161374
|
-
/**
|
|
161375
|
-
* An internal identifier for the metrics container. Only to be used by the system
|
|
161376
|
-
*/
|
|
161377
|
-
internalId: string;
|
|
161378
|
-
/**
|
|
161379
|
-
* The Prometheus query endpoint for the workspace
|
|
161380
|
-
*/
|
|
161381
|
-
prometheusQueryEndpoint: string;
|
|
161382
|
-
}
|
|
161383
161438
|
/**
|
|
161384
161439
|
* Monitoring account destination.
|
|
161385
161440
|
*/
|
|
@@ -175896,6 +175951,158 @@ export declare namespace offazurespringboot {
|
|
|
175896
175951
|
lastModifiedByType?: string;
|
|
175897
175952
|
}
|
|
175898
175953
|
}
|
|
175954
|
+
export declare namespace onlineexperimentation {
|
|
175955
|
+
/**
|
|
175956
|
+
* Customer-managed key encryption properties for the resource.
|
|
175957
|
+
*/
|
|
175958
|
+
interface CustomerManagedKeyEncryptionResponse {
|
|
175959
|
+
/**
|
|
175960
|
+
* All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
|
|
175961
|
+
*/
|
|
175962
|
+
keyEncryptionKeyIdentity?: outputs.onlineexperimentation.KeyEncryptionKeyIdentityResponse;
|
|
175963
|
+
/**
|
|
175964
|
+
* key encryption key Url, versioned or non-versioned. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78 or https://contosovault.vault.azure.net/keys/contosokek.
|
|
175965
|
+
*/
|
|
175966
|
+
keyEncryptionKeyUrl?: string;
|
|
175967
|
+
}
|
|
175968
|
+
/**
|
|
175969
|
+
* All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
|
|
175970
|
+
*/
|
|
175971
|
+
interface KeyEncryptionKeyIdentityResponse {
|
|
175972
|
+
/**
|
|
175973
|
+
* application client identity to use for accessing key encryption key Url in a different tenant. Ex: f83c6b1b-4d34-47e4-bb34-9d83df58b540
|
|
175974
|
+
*/
|
|
175975
|
+
federatedClientId?: string;
|
|
175976
|
+
/**
|
|
175977
|
+
* The type of identity to use. Values can be systemAssignedIdentity, userAssignedIdentity, or delegatedResourceIdentity.
|
|
175978
|
+
*/
|
|
175979
|
+
identityType?: string;
|
|
175980
|
+
/**
|
|
175981
|
+
* User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions/fa5fc227-a624-475e-b696-cdd604c735bc/resourceGroups/<resource group>/providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId. Mutually exclusive with identityType systemAssignedIdentity.
|
|
175982
|
+
*/
|
|
175983
|
+
userAssignedIdentityResourceId?: string;
|
|
175984
|
+
}
|
|
175985
|
+
/**
|
|
175986
|
+
* Managed service identity (system assigned and/or user assigned identities)
|
|
175987
|
+
*/
|
|
175988
|
+
interface ManagedServiceIdentityResponse {
|
|
175989
|
+
/**
|
|
175990
|
+
* The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
175991
|
+
*/
|
|
175992
|
+
principalId: string;
|
|
175993
|
+
/**
|
|
175994
|
+
* The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
|
|
175995
|
+
*/
|
|
175996
|
+
tenantId: string;
|
|
175997
|
+
/**
|
|
175998
|
+
* Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
|
|
175999
|
+
*/
|
|
176000
|
+
type: string;
|
|
176001
|
+
/**
|
|
176002
|
+
* 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.
|
|
176003
|
+
*/
|
|
176004
|
+
userAssignedIdentities?: {
|
|
176005
|
+
[key: string]: outputs.onlineexperimentation.UserAssignedIdentityResponse;
|
|
176006
|
+
};
|
|
176007
|
+
}
|
|
176008
|
+
/**
|
|
176009
|
+
* The properties of an online experiment workspace.
|
|
176010
|
+
*/
|
|
176011
|
+
interface OnlineExperimentWorkspacePropertiesResponse {
|
|
176012
|
+
/**
|
|
176013
|
+
* The resource identifier of App Configuration with which this online experiment workspace is tied for experimentation. This is a required field for creating an online experiment workspace.
|
|
176014
|
+
*/
|
|
176015
|
+
appConfigurationResourceId: string;
|
|
176016
|
+
/**
|
|
176017
|
+
* The encryption configuration for the online experiment workspace resource.
|
|
176018
|
+
*/
|
|
176019
|
+
encryption?: outputs.onlineexperimentation.ResourceEncryptionConfigurationResponse;
|
|
176020
|
+
/**
|
|
176021
|
+
* The data plane endpoint for the online experiment workspace resource.
|
|
176022
|
+
*/
|
|
176023
|
+
endpoint: string;
|
|
176024
|
+
/**
|
|
176025
|
+
* The resource identifier of the Log Analytics workspace which online experiment workspace uses for generating experiment analysis results.
|
|
176026
|
+
*/
|
|
176027
|
+
logAnalyticsWorkspaceResourceId: string;
|
|
176028
|
+
/**
|
|
176029
|
+
* The resource identifier of storage account where logs are exported from Log Analytics workspace. Online Experiment workspace uses it generating experiment analysis results.
|
|
176030
|
+
*/
|
|
176031
|
+
logsExporterStorageAccountResourceId: string;
|
|
176032
|
+
/**
|
|
176033
|
+
* The provisioning state for the resource
|
|
176034
|
+
*/
|
|
176035
|
+
provisioningState: string;
|
|
176036
|
+
/**
|
|
176037
|
+
* The Id of the workspace.
|
|
176038
|
+
*/
|
|
176039
|
+
workspaceId: string;
|
|
176040
|
+
}
|
|
176041
|
+
/**
|
|
176042
|
+
* The SKU (Stock Keeping Unit) assigned to this resource.
|
|
176043
|
+
*/
|
|
176044
|
+
interface OnlineExperimentationWorkspaceSkuResponse {
|
|
176045
|
+
/**
|
|
176046
|
+
* The name of the SKU. Ex - F0, P0. It is typically a letter+number code
|
|
176047
|
+
*/
|
|
176048
|
+
name: string;
|
|
176049
|
+
/**
|
|
176050
|
+
* The name of the SKU tier
|
|
176051
|
+
*/
|
|
176052
|
+
tier: string;
|
|
176053
|
+
}
|
|
176054
|
+
/**
|
|
176055
|
+
* The encryption configuration for the online experiment workspace resource.
|
|
176056
|
+
*/
|
|
176057
|
+
interface ResourceEncryptionConfigurationResponse {
|
|
176058
|
+
/**
|
|
176059
|
+
* All Customer-managed key encryption properties for the resource.
|
|
176060
|
+
*/
|
|
176061
|
+
customerManagedKeyEncryption?: outputs.onlineexperimentation.CustomerManagedKeyEncryptionResponse;
|
|
176062
|
+
}
|
|
176063
|
+
/**
|
|
176064
|
+
* Metadata pertaining to creation and last modification of the resource.
|
|
176065
|
+
*/
|
|
176066
|
+
interface SystemDataResponse {
|
|
176067
|
+
/**
|
|
176068
|
+
* The timestamp of resource creation (UTC).
|
|
176069
|
+
*/
|
|
176070
|
+
createdAt?: string;
|
|
176071
|
+
/**
|
|
176072
|
+
* The identity that created the resource.
|
|
176073
|
+
*/
|
|
176074
|
+
createdBy?: string;
|
|
176075
|
+
/**
|
|
176076
|
+
* The type of identity that created the resource.
|
|
176077
|
+
*/
|
|
176078
|
+
createdByType?: string;
|
|
176079
|
+
/**
|
|
176080
|
+
* The timestamp of resource last modification (UTC)
|
|
176081
|
+
*/
|
|
176082
|
+
lastModifiedAt?: string;
|
|
176083
|
+
/**
|
|
176084
|
+
* The identity that last modified the resource.
|
|
176085
|
+
*/
|
|
176086
|
+
lastModifiedBy?: string;
|
|
176087
|
+
/**
|
|
176088
|
+
* The type of identity that last modified the resource.
|
|
176089
|
+
*/
|
|
176090
|
+
lastModifiedByType?: string;
|
|
176091
|
+
}
|
|
176092
|
+
/**
|
|
176093
|
+
* User assigned identity properties
|
|
176094
|
+
*/
|
|
176095
|
+
interface UserAssignedIdentityResponse {
|
|
176096
|
+
/**
|
|
176097
|
+
* The client ID of the assigned identity.
|
|
176098
|
+
*/
|
|
176099
|
+
clientId: string;
|
|
176100
|
+
/**
|
|
176101
|
+
* The principal ID of the assigned identity.
|
|
176102
|
+
*/
|
|
176103
|
+
principalId: string;
|
|
176104
|
+
}
|
|
176105
|
+
}
|
|
175899
176106
|
export declare namespace openenergyplatform {
|
|
175900
176107
|
/**
|
|
175901
176108
|
* The list of Energy services resource's Data Partition Names.
|