Skip to content

Commit 4e8cd3b

Browse files
Migrate DigitalTwins from generation to main (#20548)
* Move DigitalTwins to main * update changelog Co-authored-by: Jinpei Li (Wicresoft North America Ltd) <[email protected]>
1 parent 5574456 commit 4e8cd3b

File tree

413 files changed

+47970
-9729
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

413 files changed

+47970
-9729
lines changed

src/DigitalTwins/Az.DigitalTwins.format.ps1xml

Lines changed: 619 additions & 57 deletions
Large diffs are not rendered by default.

src/DigitalTwins/Az.DigitalTwins.psd1

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 2020/10/29
6+
# Generated on: 1/3/2023
77
#
88

99
@{
@@ -45,7 +45,7 @@ PowerShellVersion = '5.1'
4545
DotNetFrameworkVersion = '4.7.2'
4646

4747
# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
48-
# CLRVersion = ''
48+
# ClrVersion = ''
4949

5050
# Processor architecture (None, X86, Amd64) required by this module
5151
# ProcessorArchitecture = ''
@@ -70,10 +70,15 @@ FormatsToProcess = './Az.DigitalTwins.format.ps1xml'
7070

7171
# Functions to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no functions to export.
7272
FunctionsToExport = 'Get-AzDigitalTwinsEndpoint', 'Get-AzDigitalTwinsInstance',
73-
'New-AzDigitalTwinsCheckNameRequestObject',
74-
'New-AzDigitalTwinsDigitalTwinsIdentityObject',
73+
'Get-AzDigitalTwinsPrivateEndpointConnection',
74+
'Get-AzDigitalTwinsPrivateLinkResource',
75+
'Get-AzDigitalTwinsTimeSeriesDatabaseConnection',
7576
'New-AzDigitalTwinsEndpoint', 'New-AzDigitalTwinsInstance',
77+
'New-AzDigitalTwinsPrivateEndpointConnection',
78+
'New-AzDigitalTwinsTimeSeriesDatabaseConnection',
7679
'Remove-AzDigitalTwinsEndpoint', 'Remove-AzDigitalTwinsInstance',
80+
'Remove-AzDigitalTwinsPrivateEndpointConnection',
81+
'Remove-AzDigitalTwinsTimeSeriesDatabaseConnection',
7782
'Test-AzDigitalTwinsInstanceNameAvailability',
7883
'Update-AzDigitalTwinsInstance'
7984

@@ -113,7 +118,7 @@ PrivateData = @{
113118
# IconUri = ''
114119

115120
# ReleaseNotes of this module
116-
ReleaseNotes = '* First preview release for module Az.DigitalTwins'
121+
# ReleaseNotes = ''
117122

118123
# Prerelease string of this module
119124
# Prerelease = ''

src/DigitalTwins/Az.DigitalTwins.psm1

Lines changed: 22 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
# region Generated
22
# ----------------------------------------------------------------------------------
3-
#
4-
# Copyright Microsoft Corporation
5-
# Licensed under the Apache License, Version 2.0 (the "License");
6-
# you may not use this file except in compliance with the License.
7-
# You may obtain a copy of the License at
8-
# http://www.apache.org/licenses/LICENSE-2.0
9-
# Unless required by applicable law or agreed to in writing, software
10-
# distributed under the License is distributed on an "AS IS" BASIS,
11-
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12-
# See the License for the specific language governing permissions and
13-
# limitations under the License.
3+
# Copyright (c) Microsoft Corporation. All rights reserved.
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
# Unless required by applicable law or agreed to in writing, software
9+
# distributed under the License is distributed on an "AS IS" BASIS,
10+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
# See the License for the specific language governing permissions and
12+
# limitations under the License.
13+
# Code generated by Microsoft (R) AutoRest Code Generator.Changes may cause incorrect behavior and will be lost if the code
14+
# is regenerated.
1415
# ----------------------------------------------------------------------------------
1516
# Load required Az.Accounts module
1617
$accountsName = 'Az.Accounts'
@@ -24,17 +25,17 @@
2425
}
2526
}
2627
if(-not $accountsModule) {
27-
$hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'1.8.1' } | Measure-Object).Count -gt 0
28+
$hasAdequateVersion = (Get-Module -Name $accountsName -ListAvailable | Where-Object { $_.Version -ge [System.Version]'2.7.5' } | Measure-Object).Count -gt 0
2829
if($hasAdequateVersion) {
29-
$accountsModule = Import-Module -Name $accountsName -MinimumVersion 1.8.1 -Scope Global -PassThru
30+
$accountsModule = Import-Module -Name $accountsName -MinimumVersion 2.7.5 -Scope Global -PassThru
3031
}
3132
}
3233
}
3334

3435
if(-not $accountsModule) {
35-
Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. For installation instructions, please see: https://docs.microsoft.com/en-us/powershell/azure/install-az-ps" -ErrorAction Stop
36-
} elseif (($accountsModule.Version -lt [System.Version]'1.8.1') -and (-not $localAccounts)) {
37-
Write-Error "`nThis module requires $accountsName version 1.8.1 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to remove '.PSSharedModules' in your home directory. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop
36+
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. For installation instructions, please see: https://docs.microsoft.com/powershell/azure/install-az-ps" -ErrorAction Stop
37+
} elseif (($accountsModule.Version -lt [System.Version]'2.7.5') -and (-not $localAccounts)) {
38+
Write-Error "`nThis module requires $accountsName version 2.7.5 or greater. An earlier version of Az.Accounts is imported in the current PowerShell session. If you are running test, please try to add the switch '-RegenerateSupportModule' when executing 'test-module.ps1'. Otherwise please open a new PowerShell session and import this module again.`nAdditionally, this error could indicate that multiple incompatible versions of Azure PowerShell modules are installed on your system. For troubleshooting information, please see: https://aka.ms/azps-version-error" -ErrorAction Stop
3839
}
3940
Write-Information "Loaded Module '$($accountsModule.Name)'"
4041

@@ -49,7 +50,12 @@
4950

5051
# Tweaks the pipeline on module load
5152
$instance.OnModuleLoad = $VTable.OnModuleLoad
53+
54+
# Following two delegates are added for telemetry
55+
$instance.GetTelemetryId = $VTable.GetTelemetryId
56+
$instance.Telemetry = $VTable.Telemetry
5257

58+
5359
# Tweaks the pipeline per call
5460
$instance.OnNewRequest = $VTable.OnNewRequest
5561

src/DigitalTwins/Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Upgraded api version to 2022-05-31
2122

2223
## Version 0.1.0
2324
* First preview release for module Az.DigitalTwins

src/DigitalTwins/DigitalTwins.sln

Lines changed: 41 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1,48 +1,58 @@
1+
12
Microsoft Visual Studio Solution File, Format Version 12.00
2-
# Visual Studio Version 16
3-
VisualStudioVersion = 16.0.29709.97
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.0.31903.59
45
MinimumVisualStudioVersion = 10.0.40219.1
5-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Accounts", "..\Accounts\Accounts\Accounts.csproj", "{2F396860-3D24-4D9A-B578-84A728AA0A85}"
67
EndProject
7-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{62843FE6-7575-4D88-B989-7DF7EEC0BC01}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AssemblyLoading", "..\Accounts\AssemblyLoading\AssemblyLoading.csproj", "{90B63190-8439-4B6F-B616-39174A72204A}"
89
EndProject
9-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{442C609B-A431-4A71-B289-08F0B63C83E5}"
10+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication", "..\Accounts\Authentication\Authentication.csproj", "{F3DC9B11-CA21-44CB-AA2F-F232AB363D2E}"
1011
EndProject
11-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}"
12+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authentication.ResourceManager", "..\Accounts\Authentication.ResourceManager\Authentication.ResourceManager.csproj", "{15EE96F0-DEC4-4C56-AA19-F57417958005}"
1213
EndProject
13-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Az.DigitalTwins", "Az.DigitalTwins.csproj", "{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}"
14+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AuthenticationAssemblyLoadContext", "..\Accounts\AuthenticationAssemblyLoadContext\AuthenticationAssemblyLoadContext.csproj", "{8E2504BF-E353-473C-8360-9EF614A6F775}"
15+
EndProject
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Authenticators", "..\Accounts\Authenticators\Authenticators.csproj", "{477CE783-0D0D-4A7A-8F48-C2E9CE22F7D3}"
17+
EndProject
18+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Az.DigitalTwins", "Az.DigitalTwins.csproj", "{EA5892B6-D660-4580-B9E0-518AB8F822F2}"
1419
EndProject
1520
Global
1621
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1722
Debug|Any CPU = Debug|Any CPU
1823
Release|Any CPU = Release|Any CPU
1924
EndGlobalSection
20-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
21-
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
22-
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
23-
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
24-
{142D7B0B-388A-4CEB-A228-7F6D423C5C2E}.Release|Any CPU.Build.0 = Release|Any CPU
25-
{62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
26-
{62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Debug|Any CPU.Build.0 = Debug|Any CPU
27-
{62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Release|Any CPU.ActiveCfg = Release|Any CPU
28-
{62843FE6-7575-4D88-B989-7DF7EEC0BC01}.Release|Any CPU.Build.0 = Release|Any CPU
29-
{442C609B-A431-4A71-B289-08F0B63C83E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30-
{442C609B-A431-4A71-B289-08F0B63C83E5}.Debug|Any CPU.Build.0 = Debug|Any CPU
31-
{442C609B-A431-4A71-B289-08F0B63C83E5}.Release|Any CPU.ActiveCfg = Release|Any CPU
32-
{442C609B-A431-4A71-B289-08F0B63C83E5}.Release|Any CPU.Build.0 = Release|Any CPU
33-
{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
34-
{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Debug|Any CPU.Build.0 = Debug|Any CPU
35-
{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Release|Any CPU.ActiveCfg = Release|Any CPU
36-
{59E8F6B8-8F0E-403F-B88B-9736DBC396D9}.Release|Any CPU.Build.0 = Release|Any CPU
37-
{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
38-
{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Debug|Any CPU.Build.0 = Debug|Any CPU
39-
{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Release|Any CPU.ActiveCfg = Release|Any CPU
40-
{1C203C0C-E0FD-40D2-B79E-C6DA52E4E350}.Release|Any CPU.Build.0 = Release|Any CPU
41-
EndGlobalSection
4225
GlobalSection(SolutionProperties) = preSolution
4326
HideSolutionNode = FALSE
4427
EndGlobalSection
45-
GlobalSection(ExtensibilityGlobals) = postSolution
46-
SolutionGuid = {F9B3D96E-9680-40BE-A917-02EE655D6030}
28+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
29+
{2F396860-3D24-4D9A-B578-84A728AA0A85}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
30+
{2F396860-3D24-4D9A-B578-84A728AA0A85}.Debug|Any CPU.Build.0 = Debug|Any CPU
31+
{2F396860-3D24-4D9A-B578-84A728AA0A85}.Release|Any CPU.ActiveCfg = Release|Any CPU
32+
{2F396860-3D24-4D9A-B578-84A728AA0A85}.Release|Any CPU.Build.0 = Release|Any CPU
33+
{90B63190-8439-4B6F-B616-39174A72204A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
34+
{90B63190-8439-4B6F-B616-39174A72204A}.Debug|Any CPU.Build.0 = Debug|Any CPU
35+
{90B63190-8439-4B6F-B616-39174A72204A}.Release|Any CPU.ActiveCfg = Release|Any CPU
36+
{90B63190-8439-4B6F-B616-39174A72204A}.Release|Any CPU.Build.0 = Release|Any CPU
37+
{F3DC9B11-CA21-44CB-AA2F-F232AB363D2E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
38+
{F3DC9B11-CA21-44CB-AA2F-F232AB363D2E}.Debug|Any CPU.Build.0 = Debug|Any CPU
39+
{F3DC9B11-CA21-44CB-AA2F-F232AB363D2E}.Release|Any CPU.ActiveCfg = Release|Any CPU
40+
{F3DC9B11-CA21-44CB-AA2F-F232AB363D2E}.Release|Any CPU.Build.0 = Release|Any CPU
41+
{15EE96F0-DEC4-4C56-AA19-F57417958005}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
42+
{15EE96F0-DEC4-4C56-AA19-F57417958005}.Debug|Any CPU.Build.0 = Debug|Any CPU
43+
{15EE96F0-DEC4-4C56-AA19-F57417958005}.Release|Any CPU.ActiveCfg = Release|Any CPU
44+
{15EE96F0-DEC4-4C56-AA19-F57417958005}.Release|Any CPU.Build.0 = Release|Any CPU
45+
{8E2504BF-E353-473C-8360-9EF614A6F775}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
46+
{8E2504BF-E353-473C-8360-9EF614A6F775}.Debug|Any CPU.Build.0 = Debug|Any CPU
47+
{8E2504BF-E353-473C-8360-9EF614A6F775}.Release|Any CPU.ActiveCfg = Release|Any CPU
48+
{8E2504BF-E353-473C-8360-9EF614A6F775}.Release|Any CPU.Build.0 = Release|Any CPU
49+
{477CE783-0D0D-4A7A-8F48-C2E9CE22F7D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
50+
{477CE783-0D0D-4A7A-8F48-C2E9CE22F7D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
51+
{477CE783-0D0D-4A7A-8F48-C2E9CE22F7D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
52+
{477CE783-0D0D-4A7A-8F48-C2E9CE22F7D3}.Release|Any CPU.Build.0 = Release|Any CPU
53+
{EA5892B6-D660-4580-B9E0-518AB8F822F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
54+
{EA5892B6-D660-4580-B9E0-518AB8F822F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
55+
{EA5892B6-D660-4580-B9E0-518AB8F822F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
56+
{EA5892B6-D660-4580-B9E0-518AB8F822F2}.Release|Any CPU.Build.0 = Release|Any CPU
4757
EndGlobalSection
4858
EndGlobal

src/DigitalTwins/README.md

Lines changed: 73 additions & 56 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ This directory contains the PowerShell module for the DigitalTwins service.
1717
This module was primarily generated via [AutoRest](https://github.com/Azure/autorest) using the [PowerShell](https://github.com/Azure/autorest.powershell) extension.
1818

1919
## Module Requirements
20-
- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 1.8.1 or greater
20+
- [Az.Accounts module](https://www.powershellgallery.com/packages/Az.Accounts/), version 2.7.5 or greater
2121

2222
## Authentication
2323
AutoRest does not generate authentication code for the module. Authentication is handled via Az.Accounts by altering the HTTP payload before it is sent.
@@ -30,92 +30,109 @@ For information on how to develop for `Az.DigitalTwins`, see [how-to.md](how-to.
3030
> see https://aka.ms/autorest
3131
3232
``` yaml
33+
branch: 9a312bb730561b8e8e3c0ea7c224de38a9d05238
3334
require:
3435
- $(this-folder)/../readme.azure.noprofile.md
3536
input-file:
36-
- $(repo)/specification/digitaltwins/resource-manager/Microsoft.DigitalTwins/stable/2020-10-31/digitaltwins.json
37+
- $(repo)/specification/digitaltwins/resource-manager/Microsoft.DigitalTwins/stable/2022-05-31/digitaltwins.json
3738

38-
module-version: 0.2.0
39+
module-version: 0.3.0
3940
title: DigitalTwins
4041
subject-prefix: $(service-name)
42+
4143
identity-correction-for-post: true
44+
resourcegroup-append: true
45+
nested-object-to-string: true
46+
4247
directive:
43-
- select: command
44-
where:
45-
verb: Get
46-
parameter-name: VirtualMachine
47-
set:
48-
alias: Get-VM
49-
- select: command
50-
where:
51-
verb: New
52-
subject: DigitalTwin
53-
set:
54-
subject: Instance
55-
- select: command
56-
where:
57-
verb: Remove
58-
subject: DigitalTwin
59-
set:
60-
subject: Instance
61-
- select: command
62-
where:
63-
verb: Update
64-
subject: DigitalTwin
65-
set:
66-
subject: Instance
67-
- select: command
68-
where:
69-
verb: Get
48+
- where:
7049
subject: DigitalTwin
7150
set:
7251
subject: Instance
73-
- select: command
74-
where:
75-
verb: New
52+
- where:
7653
subject: DigitalTwinEndpoint
7754
set:
7855
subject: Endpoint
79-
- select: command
80-
where:
81-
verb: Test
56+
- where:
8257
subject: DigitalTwinNameAvailability
8358
set:
8459
subject: InstanceNameAvailability
8560
- where:
8661
verb: Set
87-
subject: DigitalTwin
88-
hide: true
89-
- where:
90-
verb: Set
91-
subject: DigitalTwinEndpoint
9262
hide: true
63+
9364
- where:
94-
verb: New
9565
subject: Instance
96-
variant: ^CreateViaIdentity$|^CreateViaIdentityExpanded$
97-
hide: true
66+
variant: ^Create$|^CreateViaIdentity$
67+
remove: true
68+
9869
- where:
99-
verb: New
100-
subject: Endpoint
101-
variant: ^CreateExpanded$|^Create$|^CreateViaIdentity$|^CreateViaIdentityExpanded$
102-
hide: true
70+
subject: PrivateEndpointConnection
71+
variant: ^Create$|^CreateViaIdentity$
72+
remove: true
73+
10374
- where:
104-
verb: Test
105-
subject: InstanceNameAvailability
106-
hide: true
75+
variant: ^Update$|^UpdateViaIdentity$|^Check$|^CheckViaIdentity$
76+
remove: true
77+
10778
- where:
10879
verb: New
109-
subject: CheckNameRequestObject
80+
subject: Endpoint
11081
hide: true
11182
- where:
11283
verb: New
113-
subject: DigitalTwinsIdentityObject
84+
subject: TimeSeriesDatabaseConnection
11485
hide: true
115-
116-
# Correct some generated code
86+
87+
- where:
88+
model-name: DigitalTwinsEndpointResource
89+
set:
90+
format-table:
91+
properties:
92+
- Name
93+
- EndpointType
94+
- AuthenticationType
95+
- ResourceGroupName
96+
- where:
97+
model-name: DigitalTwinsDescription
98+
set:
99+
format-table:
100+
properties:
101+
- Name
102+
- Location
103+
- ResourceGroupName
104+
- where:
105+
model-name: PrivateEndpointConnection
106+
set:
107+
format-table:
108+
properties:
109+
- Name
110+
- GroupId
111+
- PrivateLinkServiceConnectionStateStatus
112+
- ResourceGroupName
113+
- where:
114+
model-name: GroupIdInformation
115+
set:
116+
format-table:
117+
properties:
118+
- GroupId
119+
- Name
120+
- ResourceGroupName
121+
- where:
122+
model-name: TimeSeriesDatabaseConnection
123+
set:
124+
format-table:
125+
properties:
126+
- Name
127+
- ConnectionType
128+
- ProvisioningState
129+
- ResourceGroupName
130+
117131
- from: source-file-csharp
118132
where: $
119-
transform: $ = $.replace('internal Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResourceProperties Property', 'public Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20201031.IDigitalTwinsEndpointResourceProperties Property');
133+
transform: $ = $.replace('internal Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResourceProperties Property', 'public Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.IDigitalTwinsEndpointResourceProperties Property');
120134

135+
- from: source-file-csharp
136+
where: $
137+
transform: $ = $.replace('internal Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnectionProperties Property', 'public Microsoft.Azure.PowerShell.Cmdlets.DigitalTwins.Models.Api20220531.ITimeSeriesDatabaseConnectionProperties Property');
121138
```

0 commit comments

Comments
 (0)