diff --git a/azps-15.4.0/Az.SecurityInsights/Get-AzSentinelEntityInsight.md b/azps-15.4.0/Az.SecurityInsights/Get-AzSentinelEntityInsight.md index 9b34f54ad9..686e7a98d2 100644 --- a/azps-15.4.0/Az.SecurityInsights/Get-AzSentinelEntityInsight.md +++ b/azps-15.4.0/Az.SecurityInsights/Get-AzSentinelEntityInsight.md @@ -47,7 +47,7 @@ This command gets insights for an Entity for a given time range. ```powershell $startTime = (Get-Date).AddDays(-7).ToUniversalTime() | Get-Date -Format "yyyy-MM-ddThh:00:00.000Z" $endTime = (Get-Date).ToUniversalTime() | Get-Date -Format "yyyy-MM-ddThh:00:00.000Z" - $Entity = Get-AzSentinelEntity -ResourceGroupName "myResourceGroupName" -workspaceName "myWorkspaceName" -EntityId "00001111-aaaa-2222-bbbb-3333cccc4444" + $Entity = Get-AzSentinelEntity -ResourceGroupName "myResourceGroupName" -workspaceName "myWorkspaceName" -EntityId "00aa00aa-bb11-cc22-dd33-44ee44ee44ee" $Entity | Get-AzSentinelEntityInsight -EndTime $endTime -StartTime $startTime ``` diff --git a/azps-15.4.0/Az.SecurityInsights/New-AzSentinelIncidentTeam.md b/azps-15.4.0/Az.SecurityInsights/New-AzSentinelIncidentTeam.md index 2a80597f21..4216f052da 100644 --- a/azps-15.4.0/Az.SecurityInsights/New-AzSentinelIncidentTeam.md +++ b/azps-15.4.0/Az.SecurityInsights/New-AzSentinelIncidentTeam.md @@ -44,7 +44,7 @@ $incident = Get-AzSentinelIncident -ResourceGroupName "myResourceGroup" -Workspa Description : Name : Incident : NewIncident3 PrimaryChannelUrl : https://teams.microsoft.com/l/team/19:vYoGjeGlZmTEDmu0gTbrk9T_eDS4pKIkEU7UuM1IyZk1%40thread.tacv2/conversations?groupId=3c637cc5-caf1-46c7-93ac-069c6 - 4b05395&tenantId=00001111-aaaa-2222-bbbb-3333cccc4444 + 4b05395&tenantId=aaaabbbb-0000-cccc-1111-dddd2222eeee TeamCreationTimeUtc : 2/4/2022 3:02:03 PM TeamId : 3c637cc5-caf1-46c7-93ac-069c64b05395 ``` diff --git a/azps-15.4.0/Az.SelfHelp/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md b/azps-15.4.0/Az.SelfHelp/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md index 48a49140ce..e33b6a5530 100644 --- a/azps-15.4.0/Az.SelfHelp/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md +++ b/azps-15.4.0/Az.SelfHelp/Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope.md @@ -48,7 +48,7 @@ Solution discovery using natural language processing. ### Example 1: Discover Solution using natural language at subscription scope ```powershell -Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -SubscriptionId "6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba" -IssueSummary "Billing Issues" +Invoke-AzSelfHelpDiscoverySolutionNlpSubscriptionScope -SubscriptionId "aaaa0a0a-bb1b-cc2c-dd3d-eeeeee4e4e4e" -IssueSummary "Billing Issues" ``` ```output @@ -242,4 +242,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable ## NOTES ## RELATED LINKS - diff --git a/azps-15.4.0/Az.ServiceFabric/Add-AzServiceFabricClientCertificate.md b/azps-15.4.0/Az.ServiceFabric/Add-AzServiceFabricClientCertificate.md index 8604e9a6e6..a9c8cba30f 100644 --- a/azps-15.4.0/Az.ServiceFabric/Add-AzServiceFabricClientCertificate.md +++ b/azps-15.4.0/Az.ServiceFabric/Add-AzServiceFabricClientCertificate.md @@ -48,17 +48,17 @@ Use **Add-AzServiceFabricClientCertificate** to add a common name and issuer thu ### Example 1 ```powershell -Add-AzServiceFabricClientCertificate -ResourceGroupName 'Group1' -Name 'Contoso01SFCluster' -Thumbprint 5F3660C715EBBDA31DB1FFDCF508302348DE8E7A -Admin +Add-AzServiceFabricClientCertificate -ResourceGroupName 'Group1' -Name 'Contoso01SFCluster' -Thumbprint AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00 -Admin ``` -This command will add the certificate with thumbprint '5F3660C715EBBDA31DB1FFDCF508302348DE8E7A' to the cluster, so the client can use the certificate as admin to communicate with the cluster. +This command will add the certificate with thumbprint 'AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00' to the cluster, so the client can use the certificate as admin to communicate with the cluster. ### Example 2 ```powershell -Add-AzServiceFabricClientCertificate -ResourceGroupName 'Group2' -Name 'Contoso02SFCluster' -CommonName 'Contoso.com' -IssuerThumbprint 5F3660C715EBBDA31DB1FFDCF508302348DE8E7A +Add-AzServiceFabricClientCertificate -ResourceGroupName 'Group2' -Name 'Contoso02SFCluster' -CommonName 'Contoso.com' -IssuerThumbprint AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00 ``` -This command will add a read only client certificate that's common name is 'Contoso.com' and issuer thumbprint is '5F3660C715EBBDA31DB1FFDCF508302348DE8E7A' to the cluster. +This command will add a read only client certificate that's common name is 'Contoso.com' and issuer thumbprint is 'AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00' to the cluster. ## PARAMETERS diff --git a/azps-15.4.0/Az.ServiceFabric/Add-AzServiceFabricManagedClusterClientCertificate.md b/azps-15.4.0/Az.ServiceFabric/Add-AzServiceFabricManagedClusterClientCertificate.md index bb488f4e6d..b8fd51cf1e 100644 --- a/azps-15.4.0/Az.ServiceFabric/Add-AzServiceFabricManagedClusterClientCertificate.md +++ b/azps-15.4.0/Az.ServiceFabric/Add-AzServiceFabricManagedClusterClientCertificate.md @@ -51,16 +51,16 @@ Add certificate common name or thumbprint to the cluster. This will register the ```powershell $rgName = "testRG" $clusterName = "testCluster" -Add-AzServiceFabricManagedClusterClientCertificate -ResourceGroupName $rgName -ClusterName $clusterName -Thumbprint 5F3660C715EBBDA31DB1FFDCF508302348DE8E7A -Admin +Add-AzServiceFabricManagedClusterClientCertificate -ResourceGroupName $rgName -ClusterName $clusterName -Thumbprint AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00 -Admin ``` -This command will add the certificate with thumbprint '5F3660C715EBBDA31DB1FFDCF508302348DE8E7A' to the cluster, so the client can use the certificate as admin to communicate with the cluster. +This command will add the certificate with thumbprint 'AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00' to the cluster, so the client can use the certificate as admin to communicate with the cluster. ### Example 2 ```powershell $rgName = "testRG" $clusterName = "testCluster" -Add-AzServiceFabricManagedClusterClientCertificate -ResourceGroupName $rgName -ClusterName $clusterName -CommonName 'Contoso.com' -IssuerThumbprint 5F3660C715EBBDA31DB1FFDCF508302348DE8E7A, 5F3660C715EBBDA31DB1FFDCF508302348DE8E7B +Add-AzServiceFabricManagedClusterClientCertificate -ResourceGroupName $rgName -ClusterName $clusterName -CommonName 'Contoso.com' -IssuerThumbprint AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00, 5F3660C715EBBDA31DB1FFDCF508302348DE8E7B ``` This command will add a read only client certificate with common name 'Contoso.com' and 2 issuers. @@ -70,7 +70,7 @@ This command will add a read only client certificate with common name 'Contoso.c $rgName = "testRG" $clusterName = "testCluster" $cluster = Get-AzServiceFabricManagedCluster -ResourceGroupName $rgName -Name $clusterName -$cluster | Add-AzServiceFabricManagedClusterClientCertificate -CommonName 'Contoso.com' -IssuerThumbprint 5F3660C715EBBDA31DB1FFDCF508302348DE8E7A, 5F3660C715EBBDA31DB1FFDCF508302348DE8E7B +$cluster | Add-AzServiceFabricManagedClusterClientCertificate -CommonName 'Contoso.com' -IssuerThumbprint AA11BB22CC33DD44EE55FF66AA77BB88CC99DD00, 5F3660C715EBBDA31DB1FFDCF508302348DE8E7B ``` This command will add a read only client certificate with common name 'Contoso.com' and 2 issuers, with piping. diff --git a/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplication.md b/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplication.md index 6fec9acde8..c555a5b66c 100644 --- a/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplication.md +++ b/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplication.md @@ -58,7 +58,7 @@ This example gets a list of the managed applications under the cluster "testClus ### Example 3 ```powershell -$resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applications/testApp" +$resourceId = "/subscriptions/a0a0a0a0-bbbb-cccc-dddd-e1e1e1e1e1e1/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applications/testApp" Get-AzServiceFabricManagedClusterApplication -ResourceId $resourceId ``` diff --git a/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplicationType.md b/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplicationType.md index a3007c76e7..4d46e4c7b2 100644 --- a/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplicationType.md +++ b/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplicationType.md @@ -58,7 +58,7 @@ This example will get a list of the managed application types defined under the ### Example 3 ```powershell -$resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applicationTypes/testAppType" +$resourceId = "/subscriptions/a0a0a0a0-bbbb-cccc-dddd-e1e1e1e1e1e1/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applicationTypes/testAppType" Get-AzServiceFabricManagedClusterApplicationType -ResourceId $resourceId ``` diff --git a/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md b/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md index 932abdb6b5..7101f43992 100644 --- a/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md +++ b/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterApplicationTypeVersion.md @@ -60,7 +60,7 @@ This example gets a list of the managed application type versions defined under ### Example 3 ```powershell -$resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applicationTypes/testAppType/versions/v1" +$resourceId = "/subscriptions/a0a0a0a0-bbbb-cccc-dddd-e1e1e1e1e1e1/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applicationTypes/testAppType/versions/v1" Get-AzServiceFabricManagedClusterApplicationTypeVersion -ResourceId $resourceId ``` diff --git a/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterService.md b/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterService.md index 076d9ee558..218d2f7eb1 100644 --- a/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterService.md +++ b/azps-15.4.0/Az.ServiceFabric/Get-AzServiceFabricManagedClusterService.md @@ -60,7 +60,7 @@ This example gets a list of the managed services under the application "testApp" ### Example 3 ```powershell -$resourceId = "/subscriptions/13ad2c84-84fa-4798-ad71-e70c07af873f/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applications/testApp/services/testService" +$resourceId = "/subscriptions/a0a0a0a0-bbbb-cccc-dddd-e1e1e1e1e1e1/resourcegroups/testRG/providers/Microsoft.ServiceFabric/managedClusters/testCluster/applications/testApp/services/testService" Get-AzServiceFabricManagedClusterService -ResourceId $resourceId ```