From 1afc824c182abcb56501fe60f5831c5153377123 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 08:21:53 -0700 Subject: [PATCH 01/16] changes to dataflowendpoint and auth to bring authentication properties to each setting --- .../IoTOperations.Management/models/auth.tsp | 13 ++- .../models/dataflows/dataflowEndpoints.tsp | 84 +++++++++++++------ 2 files changed, 68 insertions(+), 29 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/models/auth.tsp b/specification/iotoperations/IoTOperations.Management/models/auth.tsp index 884cb4db542c..5888ab1f8b75 100644 --- a/specification/iotoperations/IoTOperations.Management/models/auth.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/auth.tsp @@ -31,8 +31,7 @@ model DataflowEndpointAuthenticationSasl { @doc("Type of SASL authentication. Can be PLAIN, SCRAM-SHA-256, or SCRAM-SHA-512.") saslType: DataflowEndpointAuthenticationSaslType; - @doc("Token secret name.") - secretRef: string; + ...DataflowEndpointAuthenticationAccessToken; } @doc("DataflowEndpoint Authentication Access Token properties") @@ -125,3 +124,13 @@ model BrokerAuthenticatorMethodX509Attributes { @doc("Subject of the X509 attribute.") subject: string; } + + +@doc("System and Use Assigned Managed Identity properties") +model ManagedIdentity { + @doc("System-assigned managed identity authentication.") + systemAssignedManagedIdentitySettings?: DataflowEndpointAuthenticationSystemAssignedManagedIdentity; + + @doc("User-assigned managed identity authentication.") + userAssignedManagedIdentitySettings?: DataflowEndpointAuthenticationUserAssignedManagedIdentity; +} diff --git a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp index b93d556eaadd..1813de9fa090 100644 --- a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp @@ -34,12 +34,6 @@ model DataflowEndpointResource is ProxyResource { @doc("DataflowEndpoint Resource properties. NOTE - Only one type of endpoint is supported for one Resource") model DataflowEndpointProperties { - @doc("Endpoint Type.") - endpointType: EndpointType; - - @doc("Authentication configuration.") - authentication: DataflowEndpointAuthentication; - @doc("Azure Data Explorer endpoint.") dataExplorerSettings?: DataflowEndpointDataExplorer; @@ -88,6 +82,9 @@ union EndpointType { @doc("Azure Data Explorer endpoint properties") model DataflowEndpointDataExplorer { + @doc("Authentication configuration. NOTE - only authentication property is allowed per entry.") + authentication: DataflowEndpointDataExplorerAuthentication; + @doc("Database name.") database: string; @@ -100,27 +97,8 @@ model DataflowEndpointDataExplorer { } @doc("Azure Data Explorer Authentication properties. NOTE - only authentication property is allowed per entry.") -model DataflowEndpointAuthentication { - @doc("Mode of Authentication.") - method: AuthenticationMethod; - - @doc("System-assigned managed identity authentication.") - systemAssignedManagedIdentitySettings?: DataflowEndpointAuthenticationSystemAssignedManagedIdentity; - - @doc("User-assigned managed identity authentication.") - userAssignedManagedIdentitySettings?: DataflowEndpointAuthenticationUserAssignedManagedIdentity; - - @doc("SAS token authentication.") - accessTokenSettings?: DataflowEndpointAuthenticationAccessToken; - - @doc("SASL authentication.") - saslSettings?: DataflowEndpointAuthenticationSasl; - - @doc("Service Account Token authentication.") - serviceAccountTokenSettings?: DataflowEndpointAuthenticationServiceAccountToken; - - @doc("X.509 certificate authentication.") - x509Settings?: DataflowEndpointAuthenticationX509; +model DataflowEndpointDataExplorerAuthentication { + ...ManagedIdentity; } @doc("Authentication Mode properties") @@ -145,6 +123,9 @@ union AuthenticationMethod { @doc("Azure Data Lake endpoint properties") model DataflowEndpointDataLakeStorage { + @doc("Authentication configuration. NOTE - only authentication property is allowed per entry.") + authentication: DataflowEndpointDataLakeStorageAuthentication; + @doc("Host of the Azure Data Lake in the form of .blob.core.windows.net .") @pattern(".+\\.blob\\.core\\.windows\\.net") host: string; @@ -153,8 +134,20 @@ model DataflowEndpointDataLakeStorage { batching?: BatchingConfiguration; } +@doc("Azure Data Lake endpoint Authentication properties. NOTE Enum - Only one method is supported for one entry") +model DataflowEndpointDataLakeStorageAuthentication { + // What is accessTokenSecretName now? + @doc("SAS token authentication.") + accessTokenSettings?: DataflowEndpointAuthenticationAccessToken; + + ...ManagedIdentity; +} + @doc("Microsoft Fabric endpoint properties") model DataflowEndpointFabricOneLake { + @doc("Authentication configuration. NOTE - only one authentication property is allowed per entry.") + authentication: DataFlowEndpointFabricOneLakeAuthentication; + @doc("Names of the workspace and lakehouse.") names: DataflowEndpointFabricOneLakeNames; @@ -169,6 +162,15 @@ model DataflowEndpointFabricOneLake { batching?: BatchingConfiguration; } +@doc("Microsoft Fabric endpoint. Authentication properties. NOTE - Only one method is supported for one entry") +model DataFlowEndpointFabricOneLakeAuthentication { + // What is accessTokenSecretName now? + @doc("SAS token authentication.") + accessTokenSettings?: DataflowEndpointAuthenticationAccessToken; + + ...ManagedIdentity; +} + @doc("Microsoft Fabric endpoint Names properties") model DataflowEndpointFabricOneLakeNames { @doc("Lakehouse name.") @@ -191,6 +193,9 @@ union DataflowEndpointFabricPathType { @doc("Kafka endpoint properties") model DataflowEndpointKafka { + @doc("Authentication configuration. NOTE - only authentication property is allowed per entry.") + authentication?: DataFlowEndpointKafkaAuthentication; + @doc("Consumer group ID.") consumerGroupId?: string; @@ -219,6 +224,17 @@ model DataflowEndpointKafka { cloudEventMapping?: CloudEventMappingType; } +@doc("Kafka endpoint Authentication properties. NOTE - only authentication property is allowed per entry") +model DataFlowEndpointKafkaAuthentication { + ...ManagedIdentity; + + @doc("SASL authentication.") + saslSettings?: DataflowEndpointAuthenticationSasl; + + @doc("X.509 certificate authentication.") + x509Settings?: DataflowEndpointAuthenticationX509; +} + @doc("Kafka endpoint Batching properties") model DataflowEndpointKafkaBatching { @doc("Mode for batching.") @@ -296,6 +312,9 @@ model DataflowEndpointLocalStorage { @doc("Broker endpoint properties") model DataflowEndpointMqtt { + @doc("authentication properties. DEFAULT: kubernetes.audience=aio-mq-internal. NOTE - Enum field only property is allowed") + authentication?: DataflowEndpointMqttAuthentication; + @doc("Client ID prefix. Client ID generated by the dataflow is -TBD. Optional; no prefix if omitted.") clientIdPrefix?: string; @@ -332,6 +351,17 @@ model DataflowEndpointMqtt { cloudEventMapping?: CloudEventMappingType; } +@doc("Mqtt endpoint Authentication properties. NOTE - only authentication property is allowed per entry. Default Kubernetes authentication with audience set to aio-mq-internal") +model DataflowEndpointMqttAuthentication { + ...ManagedIdentity; + + @doc("Kubernetes service account token authentication. Default audience if not set is aio-mq-internal") + saslSettings?: DataflowEndpointAuthenticationSasl; + + @doc("X.509 certificate authentication.") + x509Settings?: DataflowEndpointAuthenticationX509; +} + @doc("Broker Retain types") union MqttRetainType { string, From 472c91ab3a160a4987936fe5bd3bd594b69a5944 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 08:24:40 -0700 Subject: [PATCH 02/16] ran script --- ...ication_CreateOrUpdate_MaximumSet_Gen.json | 86 ++-- ...rAuthentication_Delete_MaximumSet_Gen.json | 2 +- ...okerAuthentication_Get_MaximumSet_Gen.json | 34 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ization_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- ...erAuthorization_Delete_MaximumSet_Gen.json | 2 +- ...rokerAuthorization_Get_MaximumSet_Gen.json | 26 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 28 +- ...istener_CreateOrUpdate_MaximumSet_Gen.json | 116 ++--- .../BrokerListener_Delete_MaximumSet_Gen.json | 2 +- .../BrokerListener_Get_MaximumSet_Gen.json | 44 +- ...er_ListByResourceGroup_MaximumSet_Gen.json | 44 +- .../Broker_CreateOrUpdate_MaximumSet_Gen.json | 374 +++++++-------- .../Broker_Delete_MaximumSet_Gen.json | 2 +- .../Broker_Get_MaximumSet_Gen.json | 130 +++--- ...er_ListByResourceGroup_MaximumSet_Gen.json | 130 +++--- ...ndpoint_CreateOrUpdate_MaximumSet_Gen.json | 431 ++++++++++++------ ...ataflowEndpoint_Delete_MaximumSet_Gen.json | 2 +- .../DataflowEndpoint_Get_MaximumSet_Gen.json | 149 +++--- ...nt_ListByResourceGroup_MaximumSet_Gen.json | 149 +++--- ...Profile_CreateOrUpdate_MaximumSet_Gen.json | 80 ++-- ...DataflowProfile_Delete_MaximumSet_Gen.json | 2 +- .../DataflowProfile_Get_MaximumSet_Gen.json | 32 +- ...le_ListByResourceGroup_MaximumSet_Gen.json | 32 +- ...ataflow_CreateOrUpdate_MaximumSet_Gen.json | 134 +++--- .../Dataflow_Delete_MaximumSet_Gen.json | 2 +- .../Dataflow_Get_MaximumSet_Gen.json | 50 +- ..._ListByProfileResource_MaximumSet_Gen.json | 50 +- ...nstance_CreateOrUpdate_MaximumSet_Gen.json | 54 +-- .../Instance_Delete_MaximumSet_Gen.json | 2 +- .../Instance_Get_MaximumSet_Gen.json | 24 +- ...ce_ListByResourceGroup_MaximumSet_Gen.json | 24 +- ...nce_ListBySubscription_MaximumSet_Gen.json | 24 +- .../Instance_Update_MaximumSet_Gen.json | 26 +- .../Operations_List_MaximumSet_Gen.json | 10 +- ...ication_CreateOrUpdate_MaximumSet_Gen.json | 86 ++-- ...rAuthentication_Delete_MaximumSet_Gen.json | 2 +- ...okerAuthentication_Get_MaximumSet_Gen.json | 34 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ization_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- ...erAuthorization_Delete_MaximumSet_Gen.json | 2 +- ...rokerAuthorization_Get_MaximumSet_Gen.json | 26 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 28 +- ...istener_CreateOrUpdate_MaximumSet_Gen.json | 116 ++--- .../BrokerListener_Delete_MaximumSet_Gen.json | 2 +- .../BrokerListener_Get_MaximumSet_Gen.json | 44 +- ...er_ListByResourceGroup_MaximumSet_Gen.json | 44 +- .../Broker_CreateOrUpdate_MaximumSet_Gen.json | 374 +++++++-------- .../Broker_Delete_MaximumSet_Gen.json | 2 +- .../examples/Broker_Get_MaximumSet_Gen.json | 130 +++--- ...er_ListByResourceGroup_MaximumSet_Gen.json | 130 +++--- ...ndpoint_CreateOrUpdate_MaximumSet_Gen.json | 431 ++++++++++++------ ...ataflowEndpoint_Delete_MaximumSet_Gen.json | 2 +- .../DataflowEndpoint_Get_MaximumSet_Gen.json | 149 +++--- ...nt_ListByResourceGroup_MaximumSet_Gen.json | 149 +++--- ...Profile_CreateOrUpdate_MaximumSet_Gen.json | 80 ++-- ...DataflowProfile_Delete_MaximumSet_Gen.json | 2 +- .../DataflowProfile_Get_MaximumSet_Gen.json | 32 +- ...le_ListByResourceGroup_MaximumSet_Gen.json | 32 +- ...ataflow_CreateOrUpdate_MaximumSet_Gen.json | 134 +++--- .../Dataflow_Delete_MaximumSet_Gen.json | 2 +- .../examples/Dataflow_Get_MaximumSet_Gen.json | 50 +- ..._ListByProfileResource_MaximumSet_Gen.json | 50 +- ...nstance_CreateOrUpdate_MaximumSet_Gen.json | 54 +-- .../Instance_Delete_MaximumSet_Gen.json | 2 +- .../examples/Instance_Get_MaximumSet_Gen.json | 24 +- ...ce_ListByResourceGroup_MaximumSet_Gen.json | 24 +- ...nce_ListBySubscription_MaximumSet_Gen.json | 24 +- .../Instance_Update_MaximumSet_Gen.json | 26 +- .../Operations_List_MaximumSet_Gen.json | 10 +- .../2024-08-15-preview/iotoperations.json | 182 ++++++-- 71 files changed, 2750 insertions(+), 2218 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json index 190f66c0f229..483a2fc78d76 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -17,38 +17,38 @@ "auth": { "x509": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } }, - "caCertConfigMap": "mrpwfdpr", + "caCertConfigMap": "bmo", "endpoint": "https://www.example.com", "headers": { - "key2442": "ai" + "key3464": "fzozntvasduuizrxrciskmfua" } }, "serviceAccountTokenSettings": { "audiences": [ - "cdjry" + "equincajliyhwyoqzhn" ] }, "x509Settings": { "authorizationAttributes": { - "key375": { + "key6570": { "attributes": { - "key2704": "iqosfxflycmbz" + "key9417": "zgilmkufwcnnulvdt" }, - "subject": "r" + "subject": "iduvdtbrragdrmoe" } }, - "trustedClientCaCert": "wjkflqatfdqksgjynkvawu" + "trustedClientCaCert": "odlumjulsuogdmuh" } } ] }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -64,51 +64,51 @@ "auth": { "x509": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } }, - "caCertConfigMap": "mrpwfdpr", + "caCertConfigMap": "bmo", "endpoint": "https://www.example.com", "headers": { - "key2442": "ai" + "key3464": "fzozntvasduuizrxrciskmfua" } }, "serviceAccountTokenSettings": { "audiences": [ - "cdjry" + "equincajliyhwyoqzhn" ] }, "x509Settings": { "authorizationAttributes": { - "key375": { + "key6570": { "attributes": { - "key2704": "iqosfxflycmbz" + "key9417": "zgilmkufwcnnulvdt" }, - "subject": "r" + "subject": "iduvdtbrragdrmoe" } }, - "trustedClientCaCert": "wjkflqatfdqksgjynkvawu" + "trustedClientCaCert": "odlumjulsuogdmuh" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qrthzmybvufdblrozlacpqmwcih", - "type": "wynlwxlawchtdpdg", + "name": "q", + "type": "lkkdri", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -125,51 +125,51 @@ "auth": { "x509": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } }, - "caCertConfigMap": "mrpwfdpr", + "caCertConfigMap": "bmo", "endpoint": "https://www.example.com", "headers": { - "key2442": "ai" + "key3464": "fzozntvasduuizrxrciskmfua" } }, "serviceAccountTokenSettings": { "audiences": [ - "cdjry" + "equincajliyhwyoqzhn" ] }, "x509Settings": { "authorizationAttributes": { - "key375": { + "key6570": { "attributes": { - "key2704": "iqosfxflycmbz" + "key9417": "zgilmkufwcnnulvdt" }, - "subject": "r" + "subject": "iduvdtbrragdrmoe" } }, - "trustedClientCaCert": "wjkflqatfdqksgjynkvawu" + "trustedClientCaCert": "odlumjulsuogdmuh" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qrthzmybvufdblrozlacpqmwcih", - "type": "wynlwxlawchtdpdg", + "name": "q", + "type": "lkkdri", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json index 2a14382dfec6..87a5dc4745b0 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json index 3fad986a68f3..e395e7b0da1e 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -20,51 +20,51 @@ "auth": { "x509": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } }, - "caCertConfigMap": "mrpwfdpr", + "caCertConfigMap": "bmo", "endpoint": "https://www.example.com", "headers": { - "key2442": "ai" + "key3464": "fzozntvasduuizrxrciskmfua" } }, "serviceAccountTokenSettings": { "audiences": [ - "cdjry" + "equincajliyhwyoqzhn" ] }, "x509Settings": { "authorizationAttributes": { - "key375": { + "key6570": { "attributes": { - "key2704": "iqosfxflycmbz" + "key9417": "zgilmkufwcnnulvdt" }, - "subject": "r" + "subject": "iduvdtbrragdrmoe" } }, - "trustedClientCaCert": "wjkflqatfdqksgjynkvawu" + "trustedClientCaCert": "odlumjulsuogdmuh" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qrthzmybvufdblrozlacpqmwcih", - "type": "wynlwxlawchtdpdg", + "name": "q", + "type": "lkkdri", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json index 19915fadbf15..5b72400a541a 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -21,51 +21,51 @@ "auth": { "x509": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } }, - "caCertConfigMap": "mrpwfdpr", + "caCertConfigMap": "bmo", "endpoint": "https://www.example.com", "headers": { - "key2442": "ai" + "key3464": "fzozntvasduuizrxrciskmfua" } }, "serviceAccountTokenSettings": { "audiences": [ - "cdjry" + "equincajliyhwyoqzhn" ] }, "x509Settings": { "authorizationAttributes": { - "key375": { + "key6570": { "attributes": { - "key2704": "iqosfxflycmbz" + "key9417": "zgilmkufwcnnulvdt" }, - "subject": "r" + "subject": "iduvdtbrragdrmoe" } }, - "trustedClientCaCert": "wjkflqatfdqksgjynkvawu" + "trustedClientCaCert": "odlumjulsuogdmuh" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qrthzmybvufdblrozlacpqmwcih", - "type": "wynlwxlawchtdpdg", + "name": "q", + "type": "lkkdri", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json index 58d82488c859..fe36151bbc17 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -18,28 +18,28 @@ { "method": "Connect", "topics": [ - "ty" + "ogzwimxnhd" ] } ], "principals": { "attributes": [ { - "key1374": "biigedhmlihopypsoylehajgrwm" + "key3648": "kjfazjuc" } ], "clientIds": [ - "fhozoykaxkofjlfrrtvklm" + "qpnkqcunkqawtthcsnwywejh" ], "usernames": [ - "zdicwzp" + "vwahelbubfmiu" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "tffhkmo" + "cmxuscaalpbprjj" ], "method": "Read" } @@ -49,7 +49,7 @@ } }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -66,28 +66,28 @@ { "method": "Connect", "topics": [ - "ty" + "ogzwimxnhd" ] } ], "principals": { "attributes": [ { - "key1374": "biigedhmlihopypsoylehajgrwm" + "key3648": "kjfazjuc" } ], "clientIds": [ - "fhozoykaxkofjlfrrtvklm" + "qpnkqcunkqawtthcsnwywejh" ], "usernames": [ - "zdicwzp" + "vwahelbubfmiu" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "tffhkmo" + "cmxuscaalpbprjj" ], "method": "Read" } @@ -98,19 +98,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "ajxvruhmiyj", - "type": "xnmjwqodcbnzeuslhuicurqquiovp", + "name": "xtwcafmzyu", + "type": "agjwjflgaiobqbscdibwzqcdoysq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -128,28 +128,28 @@ { "method": "Connect", "topics": [ - "ty" + "ogzwimxnhd" ] } ], "principals": { "attributes": [ { - "key1374": "biigedhmlihopypsoylehajgrwm" + "key3648": "kjfazjuc" } ], "clientIds": [ - "fhozoykaxkofjlfrrtvklm" + "qpnkqcunkqawtthcsnwywejh" ], "usernames": [ - "zdicwzp" + "vwahelbubfmiu" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "tffhkmo" + "cmxuscaalpbprjj" ], "method": "Read" } @@ -160,19 +160,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "ajxvruhmiyj", - "type": "xnmjwqodcbnzeuslhuicurqquiovp", + "name": "xtwcafmzyu", + "type": "agjwjflgaiobqbscdibwzqcdoysq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json index 43a81b166ee8..b4d80bf55895 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json index 2d1efae2bbaf..333fc7eb7582 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -21,28 +21,28 @@ { "method": "Connect", "topics": [ - "ty" + "ogzwimxnhd" ] } ], "principals": { "attributes": [ { - "key1374": "biigedhmlihopypsoylehajgrwm" + "key3648": "kjfazjuc" } ], "clientIds": [ - "fhozoykaxkofjlfrrtvklm" + "qpnkqcunkqawtthcsnwywejh" ], "usernames": [ - "zdicwzp" + "vwahelbubfmiu" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "tffhkmo" + "cmxuscaalpbprjj" ], "method": "Read" } @@ -53,19 +53,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "ajxvruhmiyj", - "type": "xnmjwqodcbnzeuslhuicurqquiovp", + "name": "xtwcafmzyu", + "type": "agjwjflgaiobqbscdibwzqcdoysq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json index 57d5974a4b1f..19554ce6b78a 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -22,28 +22,28 @@ { "method": "Connect", "topics": [ - "ty" + "ogzwimxnhd" ] } ], "principals": { "attributes": [ { - "key1374": "biigedhmlihopypsoylehajgrwm" + "key3648": "kjfazjuc" } ], "clientIds": [ - "fhozoykaxkofjlfrrtvklm" + "qpnkqcunkqawtthcsnwywejh" ], "usernames": [ - "zdicwzp" + "vwahelbubfmiu" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "tffhkmo" + "cmxuscaalpbprjj" ], "method": "Read" } @@ -54,23 +54,23 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "ajxvruhmiyj", - "type": "xnmjwqodcbnzeuslhuicurqquiovp", + "name": "xtwcafmzyu", + "type": "agjwjflgaiobqbscdibwzqcdoysq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/aydg" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json index 77ed069fe4f9..d7d5f1d41d28 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json @@ -3,31 +3,31 @@ "operationId": "BrokerListener_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", "listenerName": "resource-name123", "resource": { "properties": { - "serviceName": "s", + "serviceName": "tukmie", "ports": [ { - "authenticationRef": "y", - "authorizationRef": "urvprtjopdthssykbmwpxreocvry", - "nodePort": 2113, - "port": 4978, + "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", + "authorizationRef": "gsedztspmrndyovxcukspnke", + "nodePort": 1813, + "port": 6178, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dhblifqsxmijhe", - "secretName": "viwuqlqncwkikraxgcwotlqvv", - "renewBefore": "rjn", + "duration": "khtolpival", + "secretName": "oqfiirkfuvuevtbomgfuciqyy", + "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", "issuerRef": { - "group": "mjaqeaqpwkftswfimdrogzocx", + "group": "jbndulvftsgtlr", "kind": "Issuer", - "name": "fgdpxfxkdejwcqyjyiowelfaqyofwi" + "name": "epgodivyvbhzcnihztvxvhxxy" }, "privateKey": { "algorithm": "Ec256", @@ -35,17 +35,17 @@ }, "san": { "dns": [ - "mkmiarduyrrvkpmytwxqtqozghj" + "gfayir" ], "ip": [ - "rzaopecjqodqbliupnzymig" + "yy" ] } }, "manual": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } } @@ -54,7 +54,7 @@ "serviceType": "ClusterIp" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -63,24 +63,24 @@ "200": { "body": { "properties": { - "serviceName": "s", + "serviceName": "tukmie", "ports": [ { - "authenticationRef": "y", - "authorizationRef": "urvprtjopdthssykbmwpxreocvry", - "nodePort": 2113, - "port": 4978, + "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", + "authorizationRef": "gsedztspmrndyovxcukspnke", + "nodePort": 1813, + "port": 6178, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dhblifqsxmijhe", - "secretName": "viwuqlqncwkikraxgcwotlqvv", - "renewBefore": "rjn", + "duration": "khtolpival", + "secretName": "oqfiirkfuvuevtbomgfuciqyy", + "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", "issuerRef": { - "group": "mjaqeaqpwkftswfimdrogzocx", + "group": "jbndulvftsgtlr", "kind": "Issuer", - "name": "fgdpxfxkdejwcqyjyiowelfaqyofwi" + "name": "epgodivyvbhzcnihztvxvhxxy" }, "privateKey": { "algorithm": "Ec256", @@ -88,17 +88,17 @@ }, "san": { "dns": [ - "mkmiarduyrrvkpmytwxqtqozghj" + "gfayir" ], "ip": [ - "rzaopecjqodqbliupnzymig" + "yy" ] } }, "manual": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } } @@ -108,19 +108,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "h", - "type": "kxhqpqtgpyg", + "name": "innpmgcbbbpacsxob", + "type": "oatlxapvaklszmk", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -130,24 +130,24 @@ }, "body": { "properties": { - "serviceName": "s", + "serviceName": "tukmie", "ports": [ { - "authenticationRef": "y", - "authorizationRef": "urvprtjopdthssykbmwpxreocvry", - "nodePort": 2113, - "port": 4978, + "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", + "authorizationRef": "gsedztspmrndyovxcukspnke", + "nodePort": 1813, + "port": 6178, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dhblifqsxmijhe", - "secretName": "viwuqlqncwkikraxgcwotlqvv", - "renewBefore": "rjn", + "duration": "khtolpival", + "secretName": "oqfiirkfuvuevtbomgfuciqyy", + "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", "issuerRef": { - "group": "mjaqeaqpwkftswfimdrogzocx", + "group": "jbndulvftsgtlr", "kind": "Issuer", - "name": "fgdpxfxkdejwcqyjyiowelfaqyofwi" + "name": "epgodivyvbhzcnihztvxvhxxy" }, "privateKey": { "algorithm": "Ec256", @@ -155,17 +155,17 @@ }, "san": { "dns": [ - "mkmiarduyrrvkpmytwxqtqozghj" + "gfayir" ], "ip": [ - "rzaopecjqodqbliupnzymig" + "yy" ] } }, "manual": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } } @@ -175,19 +175,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "h", - "type": "kxhqpqtgpyg", + "name": "innpmgcbbbpacsxob", + "type": "oatlxapvaklszmk", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json index bf58f4251d99..de42bbd16fec 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json index 560043c6f8b1..60c30529c4b5 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -13,24 +13,24 @@ "200": { "body": { "properties": { - "serviceName": "s", + "serviceName": "tukmie", "ports": [ { - "authenticationRef": "y", - "authorizationRef": "urvprtjopdthssykbmwpxreocvry", - "nodePort": 2113, - "port": 4978, + "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", + "authorizationRef": "gsedztspmrndyovxcukspnke", + "nodePort": 1813, + "port": 6178, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dhblifqsxmijhe", - "secretName": "viwuqlqncwkikraxgcwotlqvv", - "renewBefore": "rjn", + "duration": "khtolpival", + "secretName": "oqfiirkfuvuevtbomgfuciqyy", + "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", "issuerRef": { - "group": "mjaqeaqpwkftswfimdrogzocx", + "group": "jbndulvftsgtlr", "kind": "Issuer", - "name": "fgdpxfxkdejwcqyjyiowelfaqyofwi" + "name": "epgodivyvbhzcnihztvxvhxxy" }, "privateKey": { "algorithm": "Ec256", @@ -38,17 +38,17 @@ }, "san": { "dns": [ - "mkmiarduyrrvkpmytwxqtqozghj" + "gfayir" ], "ip": [ - "rzaopecjqodqbliupnzymig" + "yy" ] } }, "manual": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } } @@ -58,19 +58,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "h", - "type": "kxhqpqtgpyg", + "name": "innpmgcbbbpacsxob", + "type": "oatlxapvaklszmk", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json index 39863ce415eb..2ecd9fb6fad5 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,24 +14,24 @@ "value": [ { "properties": { - "serviceName": "s", + "serviceName": "tukmie", "ports": [ { - "authenticationRef": "y", - "authorizationRef": "urvprtjopdthssykbmwpxreocvry", - "nodePort": 2113, - "port": 4978, + "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", + "authorizationRef": "gsedztspmrndyovxcukspnke", + "nodePort": 1813, + "port": 6178, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dhblifqsxmijhe", - "secretName": "viwuqlqncwkikraxgcwotlqvv", - "renewBefore": "rjn", + "duration": "khtolpival", + "secretName": "oqfiirkfuvuevtbomgfuciqyy", + "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", "issuerRef": { - "group": "mjaqeaqpwkftswfimdrogzocx", + "group": "jbndulvftsgtlr", "kind": "Issuer", - "name": "fgdpxfxkdejwcqyjyiowelfaqyofwi" + "name": "epgodivyvbhzcnihztvxvhxxy" }, "privateKey": { "algorithm": "Ec256", @@ -39,17 +39,17 @@ }, "san": { "dns": [ - "mkmiarduyrrvkpmytwxqtqozghj" + "gfayir" ], "ip": [ - "rzaopecjqodqbliupnzymig" + "yy" ] } }, "manual": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } } @@ -59,19 +59,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "h", - "type": "kxhqpqtgpyg", + "name": "innpmgcbbbpacsxob", + "type": "oatlxapvaklszmk", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json index 02075759b405..27e34ff8c9b2 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -11,20 +11,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 8637, - "maxMessageExpirySeconds": 4409, - "maxPacketSizeBytes": 7561, + "maxSessionExpirySeconds": 4195, + "maxMessageExpirySeconds": 7100, + "maxPacketSizeBytes": 2146, "subscriberQueueLimit": { - "length": 27, + "length": 4, "strategy": "None" }, - "maxReceiveMaximum": 1292, - "maxKeepAliveSeconds": 9825 + "maxReceiveMaximum": 5035, + "maxKeepAliveSeconds": 9492 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujzwssmtvswuvqwderx", - "renewBefore": "ivshoscxqcdcuzbequjhudhehgubdd", + "duration": "ujxlaqjlmmip", + "renewBefore": "fqyeylcj", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -33,46 +33,46 @@ }, "cardinality": { "backendChain": { - "partitions": 14, + "partitions": 16, "redundancyFactor": 4, - "workers": 11 + "workers": 7 }, "frontend": { - "replicas": 3, - "workers": 10 + "replicas": 11, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 210, - "timeoutSeconds": 92 + "intervalSeconds": 56, + "timeoutSeconds": 78 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "cacheSizeMegabytes": 128, + "cacheSizeMegabytes": 18, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 97 + "intervalSeconds": 119 }, "spanChannelCapacity": 1000 } @@ -80,84 +80,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } } @@ -168,7 +168,7 @@ "memoryProfile": "Tiny" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -179,20 +179,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 8637, - "maxMessageExpirySeconds": 4409, - "maxPacketSizeBytes": 7561, + "maxSessionExpirySeconds": 4195, + "maxMessageExpirySeconds": 7100, + "maxPacketSizeBytes": 2146, "subscriberQueueLimit": { - "length": 27, + "length": 4, "strategy": "None" }, - "maxReceiveMaximum": 1292, - "maxKeepAliveSeconds": 9825 + "maxReceiveMaximum": 5035, + "maxKeepAliveSeconds": 9492 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujzwssmtvswuvqwderx", - "renewBefore": "ivshoscxqcdcuzbequjhudhehgubdd", + "duration": "ujxlaqjlmmip", + "renewBefore": "fqyeylcj", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -201,46 +201,46 @@ }, "cardinality": { "backendChain": { - "partitions": 14, + "partitions": 16, "redundancyFactor": 4, - "workers": 11 + "workers": 7 }, "frontend": { - "replicas": 3, - "workers": 10 + "replicas": 11, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 210, - "timeoutSeconds": 92 + "intervalSeconds": 56, + "timeoutSeconds": 78 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "cacheSizeMegabytes": 128, + "cacheSizeMegabytes": 18, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 97 + "intervalSeconds": 119 }, "spanChannelCapacity": 1000 } @@ -248,84 +248,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } } @@ -337,19 +337,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "xeiorrkzs", - "type": "hkoxuxbf", + "name": "ehgbpsukxkovanfzwcr", + "type": "xjvnpkouehsdjyruvouqpjbiqifwi", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -361,20 +361,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 8637, - "maxMessageExpirySeconds": 4409, - "maxPacketSizeBytes": 7561, + "maxSessionExpirySeconds": 4195, + "maxMessageExpirySeconds": 7100, + "maxPacketSizeBytes": 2146, "subscriberQueueLimit": { - "length": 27, + "length": 4, "strategy": "None" }, - "maxReceiveMaximum": 1292, - "maxKeepAliveSeconds": 9825 + "maxReceiveMaximum": 5035, + "maxKeepAliveSeconds": 9492 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujzwssmtvswuvqwderx", - "renewBefore": "ivshoscxqcdcuzbequjhudhehgubdd", + "duration": "ujxlaqjlmmip", + "renewBefore": "fqyeylcj", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -383,46 +383,46 @@ }, "cardinality": { "backendChain": { - "partitions": 14, + "partitions": 16, "redundancyFactor": 4, - "workers": 11 + "workers": 7 }, "frontend": { - "replicas": 3, - "workers": 10 + "replicas": 11, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 210, - "timeoutSeconds": 92 + "intervalSeconds": 56, + "timeoutSeconds": 78 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "cacheSizeMegabytes": 128, + "cacheSizeMegabytes": 18, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 97 + "intervalSeconds": 119 }, "spanChannelCapacity": 1000 } @@ -430,84 +430,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } } @@ -519,19 +519,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "xeiorrkzs", - "type": "hkoxuxbf", + "name": "ehgbpsukxkovanfzwcr", + "type": "xjvnpkouehsdjyruvouqpjbiqifwi", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json index 0c3d821f971d..0e3c82687a5b 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json index 69fb6404a156..e0e1b0cbdda8 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,20 +14,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 8637, - "maxMessageExpirySeconds": 4409, - "maxPacketSizeBytes": 7561, + "maxSessionExpirySeconds": 4195, + "maxMessageExpirySeconds": 7100, + "maxPacketSizeBytes": 2146, "subscriberQueueLimit": { - "length": 27, + "length": 4, "strategy": "None" }, - "maxReceiveMaximum": 1292, - "maxKeepAliveSeconds": 9825 + "maxReceiveMaximum": 5035, + "maxKeepAliveSeconds": 9492 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujzwssmtvswuvqwderx", - "renewBefore": "ivshoscxqcdcuzbequjhudhehgubdd", + "duration": "ujxlaqjlmmip", + "renewBefore": "fqyeylcj", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -36,46 +36,46 @@ }, "cardinality": { "backendChain": { - "partitions": 14, + "partitions": 16, "redundancyFactor": 4, - "workers": 11 + "workers": 7 }, "frontend": { - "replicas": 3, - "workers": 10 + "replicas": 11, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 210, - "timeoutSeconds": 92 + "intervalSeconds": 56, + "timeoutSeconds": 78 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "cacheSizeMegabytes": 128, + "cacheSizeMegabytes": 18, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 97 + "intervalSeconds": 119 }, "spanChannelCapacity": 1000 } @@ -83,84 +83,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } } @@ -172,19 +172,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "xeiorrkzs", - "type": "hkoxuxbf", + "name": "ehgbpsukxkovanfzwcr", + "type": "xjvnpkouehsdjyruvouqpjbiqifwi", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json index 134462d84b64..b616beec8cf0 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -15,20 +15,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 8637, - "maxMessageExpirySeconds": 4409, - "maxPacketSizeBytes": 7561, + "maxSessionExpirySeconds": 4195, + "maxMessageExpirySeconds": 7100, + "maxPacketSizeBytes": 2146, "subscriberQueueLimit": { - "length": 27, + "length": 4, "strategy": "None" }, - "maxReceiveMaximum": 1292, - "maxKeepAliveSeconds": 9825 + "maxReceiveMaximum": 5035, + "maxKeepAliveSeconds": 9492 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujzwssmtvswuvqwderx", - "renewBefore": "ivshoscxqcdcuzbequjhudhehgubdd", + "duration": "ujxlaqjlmmip", + "renewBefore": "fqyeylcj", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -37,46 +37,46 @@ }, "cardinality": { "backendChain": { - "partitions": 14, + "partitions": 16, "redundancyFactor": 4, - "workers": 11 + "workers": 7 }, "frontend": { - "replicas": 3, - "workers": 10 + "replicas": 11, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 210, - "timeoutSeconds": 92 + "intervalSeconds": 56, + "timeoutSeconds": 78 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "cacheSizeMegabytes": 128, + "cacheSizeMegabytes": 18, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 97 + "intervalSeconds": 119 }, "spanChannelCapacity": 1000 } @@ -84,84 +84,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } } @@ -173,19 +173,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "xeiorrkzs", - "type": "hkoxuxbf", + "name": "ehgbpsukxkovanfzwcr", + "type": "xjvnpkouehsdjyruvouqpjbiqifwi", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json index 5ad349ae7161..225f519ade47 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json @@ -3,72 +3,100 @@ "operationId": "DataflowEndpoint_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123", "resource": { "properties": { - "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "xvxogtyk" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "p", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "tegtcboejoflrarxpgwiqhvhipgey" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "prbg" - }, - "serviceAccountTokenSettings": { - "audience": "bsvkgevybfonpodknvo" - }, - "x509Settings": { - "secretRef": "zhqasneijazpmikojz" - } - }, "dataExplorerSettings": { - "database": "rmvzjzuefohrnggpoum", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "qwtkxwwdfkbua", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "dataLakeStorageSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "fabricOneLakeSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "names": { - "lakehouseName": "uzstuplfippbygjslfyjcaznwaxmml", - "workspaceName": "cxu" + "lakehouseName": "sfxduiehssbaryshduylrxxzp", + "workspaceName": "rgprvrdftjuwoxcjogpqz" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "kafkaSettings": { - "consumerGroupId": "edpruxb", - "host": "ucjqxpnai", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "consumerGroupId": "ysoriwfdu", + "host": "fagkwbmlpg", "batching": { "mode": "Enabled", - "latencyMs": 9120, - "maxBytes": 2691, - "maxMessages": 464 + "latencyMs": 4523, + "maxBytes": 3640, + "maxMessages": 9785 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -76,16 +104,33 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "ufzypkskkofywg" + "persistentVolumeClaimRef": "wg" }, "mqttSettings": { - "clientIdPrefix": "xppzgkwdqtavsgmkjkuxnifrlcpqba", - "host": "pxm", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "clientIdPrefix": "tkfxlvaausibfvouo", + "host": "bauonchyyadvoonijab", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", @@ -94,13 +139,13 @@ "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" } }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -109,66 +154,94 @@ "200": { "body": { "properties": { - "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "xvxogtyk" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "p", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "tegtcboejoflrarxpgwiqhvhipgey" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "prbg" - }, - "serviceAccountTokenSettings": { - "audience": "bsvkgevybfonpodknvo" - }, - "x509Settings": { - "secretRef": "zhqasneijazpmikojz" - } - }, "dataExplorerSettings": { - "database": "rmvzjzuefohrnggpoum", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "qwtkxwwdfkbua", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "dataLakeStorageSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "fabricOneLakeSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "names": { - "lakehouseName": "uzstuplfippbygjslfyjcaznwaxmml", - "workspaceName": "cxu" + "lakehouseName": "sfxduiehssbaryshduylrxxzp", + "workspaceName": "rgprvrdftjuwoxcjogpqz" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "kafkaSettings": { - "consumerGroupId": "edpruxb", - "host": "ucjqxpnai", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "consumerGroupId": "ysoriwfdu", + "host": "fagkwbmlpg", "batching": { "mode": "Enabled", - "latencyMs": 9120, - "maxBytes": 2691, - "maxMessages": 464 + "latencyMs": 4523, + "maxBytes": 3640, + "maxMessages": 9785 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -176,16 +249,33 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "ufzypkskkofywg" + "persistentVolumeClaimRef": "wg" }, "mqttSettings": { - "clientIdPrefix": "xppzgkwdqtavsgmkjkuxnifrlcpqba", - "host": "pxm", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "clientIdPrefix": "tkfxlvaausibfvouo", + "host": "bauonchyyadvoonijab", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", @@ -194,26 +284,26 @@ "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "taywpjttafopnvujezjgnhjspnnio", - "type": "uspxo", + "name": "lih", + "type": "xvwxeniuiqummaldptlczvn", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -223,66 +313,94 @@ }, "body": { "properties": { - "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "xvxogtyk" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "p", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "tegtcboejoflrarxpgwiqhvhipgey" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "prbg" - }, - "serviceAccountTokenSettings": { - "audience": "bsvkgevybfonpodknvo" - }, - "x509Settings": { - "secretRef": "zhqasneijazpmikojz" - } - }, "dataExplorerSettings": { - "database": "rmvzjzuefohrnggpoum", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "qwtkxwwdfkbua", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "dataLakeStorageSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "fabricOneLakeSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "names": { - "lakehouseName": "uzstuplfippbygjslfyjcaznwaxmml", - "workspaceName": "cxu" + "lakehouseName": "sfxduiehssbaryshduylrxxzp", + "workspaceName": "rgprvrdftjuwoxcjogpqz" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "kafkaSettings": { - "consumerGroupId": "edpruxb", - "host": "ucjqxpnai", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "consumerGroupId": "ysoriwfdu", + "host": "fagkwbmlpg", "batching": { "mode": "Enabled", - "latencyMs": 9120, - "maxBytes": 2691, - "maxMessages": 464 + "latencyMs": 4523, + "maxBytes": 3640, + "maxMessages": 9785 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -290,16 +408,33 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "ufzypkskkofywg" + "persistentVolumeClaimRef": "wg" }, "mqttSettings": { - "clientIdPrefix": "xppzgkwdqtavsgmkjkuxnifrlcpqba", - "host": "pxm", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "clientIdPrefix": "tkfxlvaausibfvouo", + "host": "bauonchyyadvoonijab", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", @@ -308,26 +443,26 @@ "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "taywpjttafopnvujezjgnhjspnnio", - "type": "uspxo", + "name": "lih", + "type": "xvwxeniuiqummaldptlczvn", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json index 7bc31408a606..125d407867d0 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json index 225479730df6..e143d80b209a 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" @@ -12,66 +12,94 @@ "200": { "body": { "properties": { - "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "xvxogtyk" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "p", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "tegtcboejoflrarxpgwiqhvhipgey" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "prbg" - }, - "serviceAccountTokenSettings": { - "audience": "bsvkgevybfonpodknvo" - }, - "x509Settings": { - "secretRef": "zhqasneijazpmikojz" - } - }, "dataExplorerSettings": { - "database": "rmvzjzuefohrnggpoum", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "qwtkxwwdfkbua", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "dataLakeStorageSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "fabricOneLakeSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "names": { - "lakehouseName": "uzstuplfippbygjslfyjcaznwaxmml", - "workspaceName": "cxu" + "lakehouseName": "sfxduiehssbaryshduylrxxzp", + "workspaceName": "rgprvrdftjuwoxcjogpqz" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "kafkaSettings": { - "consumerGroupId": "edpruxb", - "host": "ucjqxpnai", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "consumerGroupId": "ysoriwfdu", + "host": "fagkwbmlpg", "batching": { "mode": "Enabled", - "latencyMs": 9120, - "maxBytes": 2691, - "maxMessages": 464 + "latencyMs": 4523, + "maxBytes": 3640, + "maxMessages": 9785 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -79,16 +107,33 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "ufzypkskkofywg" + "persistentVolumeClaimRef": "wg" }, "mqttSettings": { - "clientIdPrefix": "xppzgkwdqtavsgmkjkuxnifrlcpqba", - "host": "pxm", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "clientIdPrefix": "tkfxlvaausibfvouo", + "host": "bauonchyyadvoonijab", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", @@ -97,26 +142,26 @@ "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "taywpjttafopnvujezjgnhjspnnio", - "type": "uspxo", + "name": "lih", + "type": "xvwxeniuiqummaldptlczvn", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json index 10bb11e0a5cb..d78a5bcbdc63 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,66 +13,94 @@ "value": [ { "properties": { - "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "xvxogtyk" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "p", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "tegtcboejoflrarxpgwiqhvhipgey" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "prbg" - }, - "serviceAccountTokenSettings": { - "audience": "bsvkgevybfonpodknvo" - }, - "x509Settings": { - "secretRef": "zhqasneijazpmikojz" - } - }, "dataExplorerSettings": { - "database": "rmvzjzuefohrnggpoum", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "qwtkxwwdfkbua", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "dataLakeStorageSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "fabricOneLakeSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "names": { - "lakehouseName": "uzstuplfippbygjslfyjcaznwaxmml", - "workspaceName": "cxu" + "lakehouseName": "sfxduiehssbaryshduylrxxzp", + "workspaceName": "rgprvrdftjuwoxcjogpqz" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "kafkaSettings": { - "consumerGroupId": "edpruxb", - "host": "ucjqxpnai", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "consumerGroupId": "ysoriwfdu", + "host": "fagkwbmlpg", "batching": { "mode": "Enabled", - "latencyMs": 9120, - "maxBytes": 2691, - "maxMessages": 464 + "latencyMs": 4523, + "maxBytes": 3640, + "maxMessages": 9785 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -80,16 +108,33 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "ufzypkskkofywg" + "persistentVolumeClaimRef": "wg" }, "mqttSettings": { - "clientIdPrefix": "xppzgkwdqtavsgmkjkuxnifrlcpqba", - "host": "pxm", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "clientIdPrefix": "tkfxlvaausibfvouo", + "host": "bauonchyyadvoonijab", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", @@ -98,26 +143,26 @@ "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "taywpjttafopnvujezjgnhjspnnio", - "type": "uspxo", + "name": "lih", + "type": "xvwxeniuiqummaldptlczvn", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json index e36aa9b42135..89161542ea63 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -12,24 +12,24 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 } }, - "instanceCount": 4 + "instanceCount": 8 }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -41,37 +41,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 } }, - "instanceCount": 4, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jbnvveqyid", - "type": "rudhbczetawvpspvvwsxjug", + "name": "cm", + "type": "oukkagxpricgrumqrvuwqr", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -84,37 +84,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 } }, - "instanceCount": 4, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jbnvveqyid", - "type": "rudhbczetawvpspvvwsxjug", + "name": "cm", + "type": "oukkagxpricgrumqrvuwqr", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json index 0bdd0b3dbfaf..965d982a4e3c 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json index d193e245d406..4a64a86a7075 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -15,37 +15,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 } }, - "instanceCount": 4, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jbnvveqyid", - "type": "rudhbczetawvpspvvwsxjug", + "name": "cm", + "type": "oukkagxpricgrumqrvuwqr", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json index 692458cc8211..b8faf2cbd889 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -16,37 +16,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 } }, - "instanceCount": 4, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jbnvveqyid", - "type": "rudhbczetawvpspvvwsxjug", + "name": "cm", + "type": "oukkagxpricgrumqrvuwqr", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json index 3c36ddd9cedb..a5d8b84d2076 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -14,28 +14,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "htqktbkelmtqbzxwdwdih", + "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", "sourceSettings": { - "endpointRef": "cnlgzsnqemzymvitntfukvi", - "assetRef": "tdcmukica", + "endpointRef": "gaovvlzj", + "assetRef": "aphvphogrj", "serializationFormat": "Json", - "schemaRef": "kdxiflbugxhjmezhzwtotjzvbi", + "schemaRef": "dnmjlynluymjswvojjllbjxgr", "dataSources": [ - "ornhbowxapjpckbcmc" + "xjcxoajdlmckfpeqhwebswcqm" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ulrqpabmed", + "schemaRef": "libzaroihmcsgyju", "datasets": [ { - "key": "ndc", + "key": "nvjdisvdmv", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "qrcnumdgh", + "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", "inputs": [ - "n" + "ibbbcpwtkagrmnlhlotxezzukrce" ], - "expression": "tgvxstoznaqkandanfbihdjtus" + "expression": "uvupajvsdwyuizzkzewso" } ], "filter": [ @@ -43,9 +43,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tdlwofzlyjqzjfqjnjbfwqkpmfl" + "seursxtiwbqbbwmgtevalci" ], - "expression": "qvdhoutfjoikxoplg" + "expression": "wtqxdywahscjkicwm" } ], "map": [ @@ -53,22 +53,22 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "dkdjpgewdmg" + "tioaw" ], - "expression": "hfkpmhooihnuojkhb", - "output": "ndfrjjzwypfwhiilovbfbwo" + "expression": "uqjptevicvqlvsitsorz", + "output": "ny" } ] }, "destinationSettings": { - "endpointRef": "wxklixgrughtjvzqybbdhd", - "dataDestination": "wfgm" + "endpointRef": "vhaseguckihyob", + "dataDestination": "ieokgk" } } ] }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -81,28 +81,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "htqktbkelmtqbzxwdwdih", + "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", "sourceSettings": { - "endpointRef": "cnlgzsnqemzymvitntfukvi", - "assetRef": "tdcmukica", + "endpointRef": "gaovvlzj", + "assetRef": "aphvphogrj", "serializationFormat": "Json", - "schemaRef": "kdxiflbugxhjmezhzwtotjzvbi", + "schemaRef": "dnmjlynluymjswvojjllbjxgr", "dataSources": [ - "ornhbowxapjpckbcmc" + "xjcxoajdlmckfpeqhwebswcqm" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ulrqpabmed", + "schemaRef": "libzaroihmcsgyju", "datasets": [ { - "key": "ndc", + "key": "nvjdisvdmv", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "qrcnumdgh", + "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", "inputs": [ - "n" + "ibbbcpwtkagrmnlhlotxezzukrce" ], - "expression": "tgvxstoznaqkandanfbihdjtus" + "expression": "uvupajvsdwyuizzkzewso" } ], "filter": [ @@ -110,9 +110,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tdlwofzlyjqzjfqjnjbfwqkpmfl" + "seursxtiwbqbbwmgtevalci" ], - "expression": "qvdhoutfjoikxoplg" + "expression": "wtqxdywahscjkicwm" } ], "map": [ @@ -120,35 +120,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "dkdjpgewdmg" + "tioaw" ], - "expression": "hfkpmhooihnuojkhb", - "output": "ndfrjjzwypfwhiilovbfbwo" + "expression": "uqjptevicvqlvsitsorz", + "output": "ny" } ] }, "destinationSettings": { - "endpointRef": "wxklixgrughtjvzqybbdhd", - "dataDestination": "wfgm" + "endpointRef": "vhaseguckihyob", + "dataDestination": "ieokgk" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mse", - "type": "ljuzthfmfoxqbzoifpaxz", + "name": "mhaohkrsxemppadrspgsxrxeamifmg", + "type": "ltkpkuspdwlviwldmruscnruggjrtq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -162,28 +162,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "htqktbkelmtqbzxwdwdih", + "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", "sourceSettings": { - "endpointRef": "cnlgzsnqemzymvitntfukvi", - "assetRef": "tdcmukica", + "endpointRef": "gaovvlzj", + "assetRef": "aphvphogrj", "serializationFormat": "Json", - "schemaRef": "kdxiflbugxhjmezhzwtotjzvbi", + "schemaRef": "dnmjlynluymjswvojjllbjxgr", "dataSources": [ - "ornhbowxapjpckbcmc" + "xjcxoajdlmckfpeqhwebswcqm" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ulrqpabmed", + "schemaRef": "libzaroihmcsgyju", "datasets": [ { - "key": "ndc", + "key": "nvjdisvdmv", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "qrcnumdgh", + "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", "inputs": [ - "n" + "ibbbcpwtkagrmnlhlotxezzukrce" ], - "expression": "tgvxstoznaqkandanfbihdjtus" + "expression": "uvupajvsdwyuizzkzewso" } ], "filter": [ @@ -191,9 +191,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tdlwofzlyjqzjfqjnjbfwqkpmfl" + "seursxtiwbqbbwmgtevalci" ], - "expression": "qvdhoutfjoikxoplg" + "expression": "wtqxdywahscjkicwm" } ], "map": [ @@ -201,35 +201,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "dkdjpgewdmg" + "tioaw" ], - "expression": "hfkpmhooihnuojkhb", - "output": "ndfrjjzwypfwhiilovbfbwo" + "expression": "uqjptevicvqlvsitsorz", + "output": "ny" } ] }, "destinationSettings": { - "endpointRef": "wxklixgrughtjvzqybbdhd", - "dataDestination": "wfgm" + "endpointRef": "vhaseguckihyob", + "dataDestination": "ieokgk" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mse", - "type": "ljuzthfmfoxqbzoifpaxz", + "name": "mhaohkrsxemppadrspgsxrxeamifmg", + "type": "ltkpkuspdwlviwldmruscnruggjrtq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json index 2a156fc6838f..fc3c0fb93c4f 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json index aa8427af256d..61710401bb67 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -17,28 +17,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "htqktbkelmtqbzxwdwdih", + "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", "sourceSettings": { - "endpointRef": "cnlgzsnqemzymvitntfukvi", - "assetRef": "tdcmukica", + "endpointRef": "gaovvlzj", + "assetRef": "aphvphogrj", "serializationFormat": "Json", - "schemaRef": "kdxiflbugxhjmezhzwtotjzvbi", + "schemaRef": "dnmjlynluymjswvojjllbjxgr", "dataSources": [ - "ornhbowxapjpckbcmc" + "xjcxoajdlmckfpeqhwebswcqm" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ulrqpabmed", + "schemaRef": "libzaroihmcsgyju", "datasets": [ { - "key": "ndc", + "key": "nvjdisvdmv", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "qrcnumdgh", + "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", "inputs": [ - "n" + "ibbbcpwtkagrmnlhlotxezzukrce" ], - "expression": "tgvxstoznaqkandanfbihdjtus" + "expression": "uvupajvsdwyuizzkzewso" } ], "filter": [ @@ -46,9 +46,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tdlwofzlyjqzjfqjnjbfwqkpmfl" + "seursxtiwbqbbwmgtevalci" ], - "expression": "qvdhoutfjoikxoplg" + "expression": "wtqxdywahscjkicwm" } ], "map": [ @@ -56,35 +56,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "dkdjpgewdmg" + "tioaw" ], - "expression": "hfkpmhooihnuojkhb", - "output": "ndfrjjzwypfwhiilovbfbwo" + "expression": "uqjptevicvqlvsitsorz", + "output": "ny" } ] }, "destinationSettings": { - "endpointRef": "wxklixgrughtjvzqybbdhd", - "dataDestination": "wfgm" + "endpointRef": "vhaseguckihyob", + "dataDestination": "ieokgk" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mse", - "type": "ljuzthfmfoxqbzoifpaxz", + "name": "mhaohkrsxemppadrspgsxrxeamifmg", + "type": "ltkpkuspdwlviwldmruscnruggjrtq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json index be26ad06bcda..1fe8453d4f54 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_ListByProfileResource", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -18,28 +18,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "htqktbkelmtqbzxwdwdih", + "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", "sourceSettings": { - "endpointRef": "cnlgzsnqemzymvitntfukvi", - "assetRef": "tdcmukica", + "endpointRef": "gaovvlzj", + "assetRef": "aphvphogrj", "serializationFormat": "Json", - "schemaRef": "kdxiflbugxhjmezhzwtotjzvbi", + "schemaRef": "dnmjlynluymjswvojjllbjxgr", "dataSources": [ - "ornhbowxapjpckbcmc" + "xjcxoajdlmckfpeqhwebswcqm" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ulrqpabmed", + "schemaRef": "libzaroihmcsgyju", "datasets": [ { - "key": "ndc", + "key": "nvjdisvdmv", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "qrcnumdgh", + "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", "inputs": [ - "n" + "ibbbcpwtkagrmnlhlotxezzukrce" ], - "expression": "tgvxstoznaqkandanfbihdjtus" + "expression": "uvupajvsdwyuizzkzewso" } ], "filter": [ @@ -47,9 +47,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tdlwofzlyjqzjfqjnjbfwqkpmfl" + "seursxtiwbqbbwmgtevalci" ], - "expression": "qvdhoutfjoikxoplg" + "expression": "wtqxdywahscjkicwm" } ], "map": [ @@ -57,35 +57,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "dkdjpgewdmg" + "tioaw" ], - "expression": "hfkpmhooihnuojkhb", - "output": "ndfrjjzwypfwhiilovbfbwo" + "expression": "uqjptevicvqlvsitsorz", + "output": "ny" } ] }, "destinationSettings": { - "endpointRef": "wxklixgrughtjvzqybbdhd", - "dataDestination": "wfgm" + "endpointRef": "vhaseguckihyob", + "dataDestination": "ieokgk" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mse", - "type": "ljuzthfmfoxqbzoifpaxz", + "name": "mhaohkrsxemppadrspgsxrxeamifmg", + "type": "ltkpkuspdwlviwldmruscnruggjrtq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json index 5b12b19eb15e..b9b3af1609eb 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "resource": { @@ -12,19 +12,19 @@ "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { "type": "None", "userAssignedIdentities": { - "key234": {} + "key4529": {} } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy" + "location": "ccqjtuazqq" } }, "responses": { @@ -33,11 +33,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -45,26 +45,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -76,11 +76,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -88,26 +88,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json index 56eab0ec7383..49f3598e76cf 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json index ee0871730b38..b73700d8ba94 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -25,26 +25,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json index ba4642108600..41fc4ed96a59 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations" }, "responses": { @@ -14,11 +14,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -26,26 +26,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json index 0690caab92be..19afd090d2b1 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListBySubscription", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC" + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF" }, "responses": { "200": { @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -25,26 +25,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json index 3b67399fff9d..8e79eba0bd65 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json @@ -3,12 +3,12 @@ "operationId": "Instance_Update", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "properties": { "tags": { - "key460": "o" + "key9010": "ibmnymdbpqkdaaxklvuqfconyw" } } }, @@ -18,11 +18,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -30,26 +30,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json index 2c0304e51581..f297514f9349 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json @@ -9,19 +9,19 @@ "body": { "value": [ { - "name": "acofwannnmajjhmgfm", + "name": "nglqhjcqjvfosgemdrss", "isDataAction": true, "display": { - "provider": "aakjqveur", - "resource": "mgfepe", - "operation": "rsstiuyrjthiocfybmwqisw", + "provider": "zoqwxmywupxchjozxxwkekastepmng", + "resource": "byujwtehrvhwvh", + "operation": "itklrbcr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit." }, "origin": "user", "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/amtlkv" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json index 190f66c0f229..483a2fc78d76 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -17,38 +17,38 @@ "auth": { "x509": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } }, - "caCertConfigMap": "mrpwfdpr", + "caCertConfigMap": "bmo", "endpoint": "https://www.example.com", "headers": { - "key2442": "ai" + "key3464": "fzozntvasduuizrxrciskmfua" } }, "serviceAccountTokenSettings": { "audiences": [ - "cdjry" + "equincajliyhwyoqzhn" ] }, "x509Settings": { "authorizationAttributes": { - "key375": { + "key6570": { "attributes": { - "key2704": "iqosfxflycmbz" + "key9417": "zgilmkufwcnnulvdt" }, - "subject": "r" + "subject": "iduvdtbrragdrmoe" } }, - "trustedClientCaCert": "wjkflqatfdqksgjynkvawu" + "trustedClientCaCert": "odlumjulsuogdmuh" } } ] }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -64,51 +64,51 @@ "auth": { "x509": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } }, - "caCertConfigMap": "mrpwfdpr", + "caCertConfigMap": "bmo", "endpoint": "https://www.example.com", "headers": { - "key2442": "ai" + "key3464": "fzozntvasduuizrxrciskmfua" } }, "serviceAccountTokenSettings": { "audiences": [ - "cdjry" + "equincajliyhwyoqzhn" ] }, "x509Settings": { "authorizationAttributes": { - "key375": { + "key6570": { "attributes": { - "key2704": "iqosfxflycmbz" + "key9417": "zgilmkufwcnnulvdt" }, - "subject": "r" + "subject": "iduvdtbrragdrmoe" } }, - "trustedClientCaCert": "wjkflqatfdqksgjynkvawu" + "trustedClientCaCert": "odlumjulsuogdmuh" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qrthzmybvufdblrozlacpqmwcih", - "type": "wynlwxlawchtdpdg", + "name": "q", + "type": "lkkdri", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -125,51 +125,51 @@ "auth": { "x509": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } }, - "caCertConfigMap": "mrpwfdpr", + "caCertConfigMap": "bmo", "endpoint": "https://www.example.com", "headers": { - "key2442": "ai" + "key3464": "fzozntvasduuizrxrciskmfua" } }, "serviceAccountTokenSettings": { "audiences": [ - "cdjry" + "equincajliyhwyoqzhn" ] }, "x509Settings": { "authorizationAttributes": { - "key375": { + "key6570": { "attributes": { - "key2704": "iqosfxflycmbz" + "key9417": "zgilmkufwcnnulvdt" }, - "subject": "r" + "subject": "iduvdtbrragdrmoe" } }, - "trustedClientCaCert": "wjkflqatfdqksgjynkvawu" + "trustedClientCaCert": "odlumjulsuogdmuh" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qrthzmybvufdblrozlacpqmwcih", - "type": "wynlwxlawchtdpdg", + "name": "q", + "type": "lkkdri", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json index 2a14382dfec6..87a5dc4745b0 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json index 3fad986a68f3..e395e7b0da1e 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -20,51 +20,51 @@ "auth": { "x509": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } }, - "caCertConfigMap": "mrpwfdpr", + "caCertConfigMap": "bmo", "endpoint": "https://www.example.com", "headers": { - "key2442": "ai" + "key3464": "fzozntvasduuizrxrciskmfua" } }, "serviceAccountTokenSettings": { "audiences": [ - "cdjry" + "equincajliyhwyoqzhn" ] }, "x509Settings": { "authorizationAttributes": { - "key375": { + "key6570": { "attributes": { - "key2704": "iqosfxflycmbz" + "key9417": "zgilmkufwcnnulvdt" }, - "subject": "r" + "subject": "iduvdtbrragdrmoe" } }, - "trustedClientCaCert": "wjkflqatfdqksgjynkvawu" + "trustedClientCaCert": "odlumjulsuogdmuh" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qrthzmybvufdblrozlacpqmwcih", - "type": "wynlwxlawchtdpdg", + "name": "q", + "type": "lkkdri", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json index 19915fadbf15..5b72400a541a 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -21,51 +21,51 @@ "auth": { "x509": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } }, - "caCertConfigMap": "mrpwfdpr", + "caCertConfigMap": "bmo", "endpoint": "https://www.example.com", "headers": { - "key2442": "ai" + "key3464": "fzozntvasduuizrxrciskmfua" } }, "serviceAccountTokenSettings": { "audiences": [ - "cdjry" + "equincajliyhwyoqzhn" ] }, "x509Settings": { "authorizationAttributes": { - "key375": { + "key6570": { "attributes": { - "key2704": "iqosfxflycmbz" + "key9417": "zgilmkufwcnnulvdt" }, - "subject": "r" + "subject": "iduvdtbrragdrmoe" } }, - "trustedClientCaCert": "wjkflqatfdqksgjynkvawu" + "trustedClientCaCert": "odlumjulsuogdmuh" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qrthzmybvufdblrozlacpqmwcih", - "type": "wynlwxlawchtdpdg", + "name": "q", + "type": "lkkdri", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json index 58d82488c859..fe36151bbc17 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -18,28 +18,28 @@ { "method": "Connect", "topics": [ - "ty" + "ogzwimxnhd" ] } ], "principals": { "attributes": [ { - "key1374": "biigedhmlihopypsoylehajgrwm" + "key3648": "kjfazjuc" } ], "clientIds": [ - "fhozoykaxkofjlfrrtvklm" + "qpnkqcunkqawtthcsnwywejh" ], "usernames": [ - "zdicwzp" + "vwahelbubfmiu" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "tffhkmo" + "cmxuscaalpbprjj" ], "method": "Read" } @@ -49,7 +49,7 @@ } }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -66,28 +66,28 @@ { "method": "Connect", "topics": [ - "ty" + "ogzwimxnhd" ] } ], "principals": { "attributes": [ { - "key1374": "biigedhmlihopypsoylehajgrwm" + "key3648": "kjfazjuc" } ], "clientIds": [ - "fhozoykaxkofjlfrrtvklm" + "qpnkqcunkqawtthcsnwywejh" ], "usernames": [ - "zdicwzp" + "vwahelbubfmiu" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "tffhkmo" + "cmxuscaalpbprjj" ], "method": "Read" } @@ -98,19 +98,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "ajxvruhmiyj", - "type": "xnmjwqodcbnzeuslhuicurqquiovp", + "name": "xtwcafmzyu", + "type": "agjwjflgaiobqbscdibwzqcdoysq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -128,28 +128,28 @@ { "method": "Connect", "topics": [ - "ty" + "ogzwimxnhd" ] } ], "principals": { "attributes": [ { - "key1374": "biigedhmlihopypsoylehajgrwm" + "key3648": "kjfazjuc" } ], "clientIds": [ - "fhozoykaxkofjlfrrtvklm" + "qpnkqcunkqawtthcsnwywejh" ], "usernames": [ - "zdicwzp" + "vwahelbubfmiu" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "tffhkmo" + "cmxuscaalpbprjj" ], "method": "Read" } @@ -160,19 +160,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "ajxvruhmiyj", - "type": "xnmjwqodcbnzeuslhuicurqquiovp", + "name": "xtwcafmzyu", + "type": "agjwjflgaiobqbscdibwzqcdoysq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json index 43a81b166ee8..b4d80bf55895 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json index 2d1efae2bbaf..333fc7eb7582 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -21,28 +21,28 @@ { "method": "Connect", "topics": [ - "ty" + "ogzwimxnhd" ] } ], "principals": { "attributes": [ { - "key1374": "biigedhmlihopypsoylehajgrwm" + "key3648": "kjfazjuc" } ], "clientIds": [ - "fhozoykaxkofjlfrrtvklm" + "qpnkqcunkqawtthcsnwywejh" ], "usernames": [ - "zdicwzp" + "vwahelbubfmiu" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "tffhkmo" + "cmxuscaalpbprjj" ], "method": "Read" } @@ -53,19 +53,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "ajxvruhmiyj", - "type": "xnmjwqodcbnzeuslhuicurqquiovp", + "name": "xtwcafmzyu", + "type": "agjwjflgaiobqbscdibwzqcdoysq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json index 57d5974a4b1f..19554ce6b78a 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -22,28 +22,28 @@ { "method": "Connect", "topics": [ - "ty" + "ogzwimxnhd" ] } ], "principals": { "attributes": [ { - "key1374": "biigedhmlihopypsoylehajgrwm" + "key3648": "kjfazjuc" } ], "clientIds": [ - "fhozoykaxkofjlfrrtvklm" + "qpnkqcunkqawtthcsnwywejh" ], "usernames": [ - "zdicwzp" + "vwahelbubfmiu" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "tffhkmo" + "cmxuscaalpbprjj" ], "method": "Read" } @@ -54,23 +54,23 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "ajxvruhmiyj", - "type": "xnmjwqodcbnzeuslhuicurqquiovp", + "name": "xtwcafmzyu", + "type": "agjwjflgaiobqbscdibwzqcdoysq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/aydg" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json index 77ed069fe4f9..d7d5f1d41d28 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json @@ -3,31 +3,31 @@ "operationId": "BrokerListener_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", "listenerName": "resource-name123", "resource": { "properties": { - "serviceName": "s", + "serviceName": "tukmie", "ports": [ { - "authenticationRef": "y", - "authorizationRef": "urvprtjopdthssykbmwpxreocvry", - "nodePort": 2113, - "port": 4978, + "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", + "authorizationRef": "gsedztspmrndyovxcukspnke", + "nodePort": 1813, + "port": 6178, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dhblifqsxmijhe", - "secretName": "viwuqlqncwkikraxgcwotlqvv", - "renewBefore": "rjn", + "duration": "khtolpival", + "secretName": "oqfiirkfuvuevtbomgfuciqyy", + "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", "issuerRef": { - "group": "mjaqeaqpwkftswfimdrogzocx", + "group": "jbndulvftsgtlr", "kind": "Issuer", - "name": "fgdpxfxkdejwcqyjyiowelfaqyofwi" + "name": "epgodivyvbhzcnihztvxvhxxy" }, "privateKey": { "algorithm": "Ec256", @@ -35,17 +35,17 @@ }, "san": { "dns": [ - "mkmiarduyrrvkpmytwxqtqozghj" + "gfayir" ], "ip": [ - "rzaopecjqodqbliupnzymig" + "yy" ] } }, "manual": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } } @@ -54,7 +54,7 @@ "serviceType": "ClusterIp" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -63,24 +63,24 @@ "200": { "body": { "properties": { - "serviceName": "s", + "serviceName": "tukmie", "ports": [ { - "authenticationRef": "y", - "authorizationRef": "urvprtjopdthssykbmwpxreocvry", - "nodePort": 2113, - "port": 4978, + "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", + "authorizationRef": "gsedztspmrndyovxcukspnke", + "nodePort": 1813, + "port": 6178, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dhblifqsxmijhe", - "secretName": "viwuqlqncwkikraxgcwotlqvv", - "renewBefore": "rjn", + "duration": "khtolpival", + "secretName": "oqfiirkfuvuevtbomgfuciqyy", + "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", "issuerRef": { - "group": "mjaqeaqpwkftswfimdrogzocx", + "group": "jbndulvftsgtlr", "kind": "Issuer", - "name": "fgdpxfxkdejwcqyjyiowelfaqyofwi" + "name": "epgodivyvbhzcnihztvxvhxxy" }, "privateKey": { "algorithm": "Ec256", @@ -88,17 +88,17 @@ }, "san": { "dns": [ - "mkmiarduyrrvkpmytwxqtqozghj" + "gfayir" ], "ip": [ - "rzaopecjqodqbliupnzymig" + "yy" ] } }, "manual": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } } @@ -108,19 +108,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "h", - "type": "kxhqpqtgpyg", + "name": "innpmgcbbbpacsxob", + "type": "oatlxapvaklszmk", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -130,24 +130,24 @@ }, "body": { "properties": { - "serviceName": "s", + "serviceName": "tukmie", "ports": [ { - "authenticationRef": "y", - "authorizationRef": "urvprtjopdthssykbmwpxreocvry", - "nodePort": 2113, - "port": 4978, + "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", + "authorizationRef": "gsedztspmrndyovxcukspnke", + "nodePort": 1813, + "port": 6178, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dhblifqsxmijhe", - "secretName": "viwuqlqncwkikraxgcwotlqvv", - "renewBefore": "rjn", + "duration": "khtolpival", + "secretName": "oqfiirkfuvuevtbomgfuciqyy", + "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", "issuerRef": { - "group": "mjaqeaqpwkftswfimdrogzocx", + "group": "jbndulvftsgtlr", "kind": "Issuer", - "name": "fgdpxfxkdejwcqyjyiowelfaqyofwi" + "name": "epgodivyvbhzcnihztvxvhxxy" }, "privateKey": { "algorithm": "Ec256", @@ -155,17 +155,17 @@ }, "san": { "dns": [ - "mkmiarduyrrvkpmytwxqtqozghj" + "gfayir" ], "ip": [ - "rzaopecjqodqbliupnzymig" + "yy" ] } }, "manual": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } } @@ -175,19 +175,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "h", - "type": "kxhqpqtgpyg", + "name": "innpmgcbbbpacsxob", + "type": "oatlxapvaklszmk", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json index bf58f4251d99..de42bbd16fec 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json index 560043c6f8b1..60c30529c4b5 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -13,24 +13,24 @@ "200": { "body": { "properties": { - "serviceName": "s", + "serviceName": "tukmie", "ports": [ { - "authenticationRef": "y", - "authorizationRef": "urvprtjopdthssykbmwpxreocvry", - "nodePort": 2113, - "port": 4978, + "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", + "authorizationRef": "gsedztspmrndyovxcukspnke", + "nodePort": 1813, + "port": 6178, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dhblifqsxmijhe", - "secretName": "viwuqlqncwkikraxgcwotlqvv", - "renewBefore": "rjn", + "duration": "khtolpival", + "secretName": "oqfiirkfuvuevtbomgfuciqyy", + "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", "issuerRef": { - "group": "mjaqeaqpwkftswfimdrogzocx", + "group": "jbndulvftsgtlr", "kind": "Issuer", - "name": "fgdpxfxkdejwcqyjyiowelfaqyofwi" + "name": "epgodivyvbhzcnihztvxvhxxy" }, "privateKey": { "algorithm": "Ec256", @@ -38,17 +38,17 @@ }, "san": { "dns": [ - "mkmiarduyrrvkpmytwxqtqozghj" + "gfayir" ], "ip": [ - "rzaopecjqodqbliupnzymig" + "yy" ] } }, "manual": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } } @@ -58,19 +58,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "h", - "type": "kxhqpqtgpyg", + "name": "innpmgcbbbpacsxob", + "type": "oatlxapvaklszmk", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json index 39863ce415eb..2ecd9fb6fad5 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,24 +14,24 @@ "value": [ { "properties": { - "serviceName": "s", + "serviceName": "tukmie", "ports": [ { - "authenticationRef": "y", - "authorizationRef": "urvprtjopdthssykbmwpxreocvry", - "nodePort": 2113, - "port": 4978, + "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", + "authorizationRef": "gsedztspmrndyovxcukspnke", + "nodePort": 1813, + "port": 6178, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dhblifqsxmijhe", - "secretName": "viwuqlqncwkikraxgcwotlqvv", - "renewBefore": "rjn", + "duration": "khtolpival", + "secretName": "oqfiirkfuvuevtbomgfuciqyy", + "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", "issuerRef": { - "group": "mjaqeaqpwkftswfimdrogzocx", + "group": "jbndulvftsgtlr", "kind": "Issuer", - "name": "fgdpxfxkdejwcqyjyiowelfaqyofwi" + "name": "epgodivyvbhzcnihztvxvhxxy" }, "privateKey": { "algorithm": "Ec256", @@ -39,17 +39,17 @@ }, "san": { "dns": [ - "mkmiarduyrrvkpmytwxqtqozghj" + "gfayir" ], "ip": [ - "rzaopecjqodqbliupnzymig" + "yy" ] } }, "manual": { "secretRef": { - "name": "fzblynycgy", - "namespace": "iyalotdegatsrgwe" + "name": "cnjiqhzfrdnglkfpkqoy", + "namespace": "ukkbjemqrjeknopm" } } } @@ -59,19 +59,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "h", - "type": "kxhqpqtgpyg", + "name": "innpmgcbbbpacsxob", + "type": "oatlxapvaklszmk", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json index 02075759b405..27e34ff8c9b2 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -11,20 +11,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 8637, - "maxMessageExpirySeconds": 4409, - "maxPacketSizeBytes": 7561, + "maxSessionExpirySeconds": 4195, + "maxMessageExpirySeconds": 7100, + "maxPacketSizeBytes": 2146, "subscriberQueueLimit": { - "length": 27, + "length": 4, "strategy": "None" }, - "maxReceiveMaximum": 1292, - "maxKeepAliveSeconds": 9825 + "maxReceiveMaximum": 5035, + "maxKeepAliveSeconds": 9492 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujzwssmtvswuvqwderx", - "renewBefore": "ivshoscxqcdcuzbequjhudhehgubdd", + "duration": "ujxlaqjlmmip", + "renewBefore": "fqyeylcj", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -33,46 +33,46 @@ }, "cardinality": { "backendChain": { - "partitions": 14, + "partitions": 16, "redundancyFactor": 4, - "workers": 11 + "workers": 7 }, "frontend": { - "replicas": 3, - "workers": 10 + "replicas": 11, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 210, - "timeoutSeconds": 92 + "intervalSeconds": 56, + "timeoutSeconds": 78 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "cacheSizeMegabytes": 128, + "cacheSizeMegabytes": 18, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 97 + "intervalSeconds": 119 }, "spanChannelCapacity": 1000 } @@ -80,84 +80,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } } @@ -168,7 +168,7 @@ "memoryProfile": "Tiny" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -179,20 +179,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 8637, - "maxMessageExpirySeconds": 4409, - "maxPacketSizeBytes": 7561, + "maxSessionExpirySeconds": 4195, + "maxMessageExpirySeconds": 7100, + "maxPacketSizeBytes": 2146, "subscriberQueueLimit": { - "length": 27, + "length": 4, "strategy": "None" }, - "maxReceiveMaximum": 1292, - "maxKeepAliveSeconds": 9825 + "maxReceiveMaximum": 5035, + "maxKeepAliveSeconds": 9492 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujzwssmtvswuvqwderx", - "renewBefore": "ivshoscxqcdcuzbequjhudhehgubdd", + "duration": "ujxlaqjlmmip", + "renewBefore": "fqyeylcj", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -201,46 +201,46 @@ }, "cardinality": { "backendChain": { - "partitions": 14, + "partitions": 16, "redundancyFactor": 4, - "workers": 11 + "workers": 7 }, "frontend": { - "replicas": 3, - "workers": 10 + "replicas": 11, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 210, - "timeoutSeconds": 92 + "intervalSeconds": 56, + "timeoutSeconds": 78 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "cacheSizeMegabytes": 128, + "cacheSizeMegabytes": 18, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 97 + "intervalSeconds": 119 }, "spanChannelCapacity": 1000 } @@ -248,84 +248,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } } @@ -337,19 +337,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "xeiorrkzs", - "type": "hkoxuxbf", + "name": "ehgbpsukxkovanfzwcr", + "type": "xjvnpkouehsdjyruvouqpjbiqifwi", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -361,20 +361,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 8637, - "maxMessageExpirySeconds": 4409, - "maxPacketSizeBytes": 7561, + "maxSessionExpirySeconds": 4195, + "maxMessageExpirySeconds": 7100, + "maxPacketSizeBytes": 2146, "subscriberQueueLimit": { - "length": 27, + "length": 4, "strategy": "None" }, - "maxReceiveMaximum": 1292, - "maxKeepAliveSeconds": 9825 + "maxReceiveMaximum": 5035, + "maxKeepAliveSeconds": 9492 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujzwssmtvswuvqwderx", - "renewBefore": "ivshoscxqcdcuzbequjhudhehgubdd", + "duration": "ujxlaqjlmmip", + "renewBefore": "fqyeylcj", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -383,46 +383,46 @@ }, "cardinality": { "backendChain": { - "partitions": 14, + "partitions": 16, "redundancyFactor": 4, - "workers": 11 + "workers": 7 }, "frontend": { - "replicas": 3, - "workers": 10 + "replicas": 11, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 210, - "timeoutSeconds": 92 + "intervalSeconds": 56, + "timeoutSeconds": 78 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "cacheSizeMegabytes": 128, + "cacheSizeMegabytes": 18, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 97 + "intervalSeconds": 119 }, "spanChannelCapacity": 1000 } @@ -430,84 +430,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } } @@ -519,19 +519,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "xeiorrkzs", - "type": "hkoxuxbf", + "name": "ehgbpsukxkovanfzwcr", + "type": "xjvnpkouehsdjyruvouqpjbiqifwi", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json index 0c3d821f971d..0e3c82687a5b 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json index 69fb6404a156..e0e1b0cbdda8 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,20 +14,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 8637, - "maxMessageExpirySeconds": 4409, - "maxPacketSizeBytes": 7561, + "maxSessionExpirySeconds": 4195, + "maxMessageExpirySeconds": 7100, + "maxPacketSizeBytes": 2146, "subscriberQueueLimit": { - "length": 27, + "length": 4, "strategy": "None" }, - "maxReceiveMaximum": 1292, - "maxKeepAliveSeconds": 9825 + "maxReceiveMaximum": 5035, + "maxKeepAliveSeconds": 9492 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujzwssmtvswuvqwderx", - "renewBefore": "ivshoscxqcdcuzbequjhudhehgubdd", + "duration": "ujxlaqjlmmip", + "renewBefore": "fqyeylcj", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -36,46 +36,46 @@ }, "cardinality": { "backendChain": { - "partitions": 14, + "partitions": 16, "redundancyFactor": 4, - "workers": 11 + "workers": 7 }, "frontend": { - "replicas": 3, - "workers": 10 + "replicas": 11, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 210, - "timeoutSeconds": 92 + "intervalSeconds": 56, + "timeoutSeconds": 78 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "cacheSizeMegabytes": 128, + "cacheSizeMegabytes": 18, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 97 + "intervalSeconds": 119 }, "spanChannelCapacity": 1000 } @@ -83,84 +83,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } } @@ -172,19 +172,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "xeiorrkzs", - "type": "hkoxuxbf", + "name": "ehgbpsukxkovanfzwcr", + "type": "xjvnpkouehsdjyruvouqpjbiqifwi", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json index 134462d84b64..b616beec8cf0 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -15,20 +15,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 8637, - "maxMessageExpirySeconds": 4409, - "maxPacketSizeBytes": 7561, + "maxSessionExpirySeconds": 4195, + "maxMessageExpirySeconds": 7100, + "maxPacketSizeBytes": 2146, "subscriberQueueLimit": { - "length": 27, + "length": 4, "strategy": "None" }, - "maxReceiveMaximum": 1292, - "maxKeepAliveSeconds": 9825 + "maxReceiveMaximum": 5035, + "maxKeepAliveSeconds": 9492 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujzwssmtvswuvqwderx", - "renewBefore": "ivshoscxqcdcuzbequjhudhehgubdd", + "duration": "ujxlaqjlmmip", + "renewBefore": "fqyeylcj", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -37,46 +37,46 @@ }, "cardinality": { "backendChain": { - "partitions": 14, + "partitions": 16, "redundancyFactor": 4, - "workers": 11 + "workers": 7 }, "frontend": { - "replicas": 3, - "workers": 10 + "replicas": 11, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 210, - "timeoutSeconds": 92 + "intervalSeconds": 56, + "timeoutSeconds": 78 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "cacheSizeMegabytes": 128, + "cacheSizeMegabytes": 18, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 97 + "intervalSeconds": 119 }, "spanChannelCapacity": 1000 } @@ -84,84 +84,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "zwbukuarevjoo", - "volumeMode": "ujfez", - "storageClassName": "cmmioqxzmaiflaaole", + "volumeName": "vykvsbirnlgoeio", + "volumeMode": "txrnwrdpui", + "storageClassName": "dvymebogyuqxyhawsifvsa", "accessModes": [ - "hpzcekzxtixjvqtrfkswfjvtvv" + "douhjwelnfmvbrv" ], "dataSource": { - "apiGroup": "gacsh", - "kind": "dejatkyvurdnwrisyv", - "name": "ghjrfrlwxzh" + "apiGroup": "uftayycewjufurmtlwxijymhh", + "kind": "fqqhu", + "name": "xoorzkujquclmnexdmodz" }, "dataSourceRef": { - "apiGroup": "qzowlmyizsspnxhrgfogslx", - "kind": "wgybcmpwihwhldskwryelebs", - "name": "az", - "namespace": "ujpjjmfqbhcejagbxnkaoaz" + "apiGroup": "knsowyhog", + "kind": "ejht", + "name": "iwyovzfgmdgkfrdpargignpc", + "namespace": "paqciccuinoetmisszmycgr" }, "resources": { "limits": { - "key6430": "peie" + "key5742": "undwleolextverhrqnbxusamfr" }, "requests": { - "key4758": "murmbrrwdrvvk" + "key7328": "wfsqwfrfjmliyrewbi" } }, "selector": { "matchExpressions": [ { - "key": "dfftjq", + "key": "xbgufhwcacricgffe", "operator": "In", "values": [ - "sbvmfrl" + "lly" ] } ], "matchLabels": { - "key6072": "tpqviowyitzidlathwmxnvfcj" + "key557": "uhddgdqskwlknfyyfnsxgjzzi" } } } @@ -173,19 +173,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "xeiorrkzs", - "type": "hkoxuxbf", + "name": "ehgbpsukxkovanfzwcr", + "type": "xjvnpkouehsdjyruvouqpjbiqifwi", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json index 5ad349ae7161..225f519ade47 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json @@ -3,72 +3,100 @@ "operationId": "DataflowEndpoint_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123", "resource": { "properties": { - "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "xvxogtyk" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "p", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "tegtcboejoflrarxpgwiqhvhipgey" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "prbg" - }, - "serviceAccountTokenSettings": { - "audience": "bsvkgevybfonpodknvo" - }, - "x509Settings": { - "secretRef": "zhqasneijazpmikojz" - } - }, "dataExplorerSettings": { - "database": "rmvzjzuefohrnggpoum", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "qwtkxwwdfkbua", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "dataLakeStorageSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "fabricOneLakeSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "names": { - "lakehouseName": "uzstuplfippbygjslfyjcaznwaxmml", - "workspaceName": "cxu" + "lakehouseName": "sfxduiehssbaryshduylrxxzp", + "workspaceName": "rgprvrdftjuwoxcjogpqz" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "kafkaSettings": { - "consumerGroupId": "edpruxb", - "host": "ucjqxpnai", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "consumerGroupId": "ysoriwfdu", + "host": "fagkwbmlpg", "batching": { "mode": "Enabled", - "latencyMs": 9120, - "maxBytes": 2691, - "maxMessages": 464 + "latencyMs": 4523, + "maxBytes": 3640, + "maxMessages": 9785 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -76,16 +104,33 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "ufzypkskkofywg" + "persistentVolumeClaimRef": "wg" }, "mqttSettings": { - "clientIdPrefix": "xppzgkwdqtavsgmkjkuxnifrlcpqba", - "host": "pxm", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "clientIdPrefix": "tkfxlvaausibfvouo", + "host": "bauonchyyadvoonijab", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", @@ -94,13 +139,13 @@ "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" } }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -109,66 +154,94 @@ "200": { "body": { "properties": { - "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "xvxogtyk" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "p", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "tegtcboejoflrarxpgwiqhvhipgey" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "prbg" - }, - "serviceAccountTokenSettings": { - "audience": "bsvkgevybfonpodknvo" - }, - "x509Settings": { - "secretRef": "zhqasneijazpmikojz" - } - }, "dataExplorerSettings": { - "database": "rmvzjzuefohrnggpoum", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "qwtkxwwdfkbua", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "dataLakeStorageSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "fabricOneLakeSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "names": { - "lakehouseName": "uzstuplfippbygjslfyjcaznwaxmml", - "workspaceName": "cxu" + "lakehouseName": "sfxduiehssbaryshduylrxxzp", + "workspaceName": "rgprvrdftjuwoxcjogpqz" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "kafkaSettings": { - "consumerGroupId": "edpruxb", - "host": "ucjqxpnai", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "consumerGroupId": "ysoriwfdu", + "host": "fagkwbmlpg", "batching": { "mode": "Enabled", - "latencyMs": 9120, - "maxBytes": 2691, - "maxMessages": 464 + "latencyMs": 4523, + "maxBytes": 3640, + "maxMessages": 9785 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -176,16 +249,33 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "ufzypkskkofywg" + "persistentVolumeClaimRef": "wg" }, "mqttSettings": { - "clientIdPrefix": "xppzgkwdqtavsgmkjkuxnifrlcpqba", - "host": "pxm", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "clientIdPrefix": "tkfxlvaausibfvouo", + "host": "bauonchyyadvoonijab", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", @@ -194,26 +284,26 @@ "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "taywpjttafopnvujezjgnhjspnnio", - "type": "uspxo", + "name": "lih", + "type": "xvwxeniuiqummaldptlczvn", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -223,66 +313,94 @@ }, "body": { "properties": { - "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "xvxogtyk" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "p", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "tegtcboejoflrarxpgwiqhvhipgey" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "prbg" - }, - "serviceAccountTokenSettings": { - "audience": "bsvkgevybfonpodknvo" - }, - "x509Settings": { - "secretRef": "zhqasneijazpmikojz" - } - }, "dataExplorerSettings": { - "database": "rmvzjzuefohrnggpoum", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "qwtkxwwdfkbua", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "dataLakeStorageSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "fabricOneLakeSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "names": { - "lakehouseName": "uzstuplfippbygjslfyjcaznwaxmml", - "workspaceName": "cxu" + "lakehouseName": "sfxduiehssbaryshduylrxxzp", + "workspaceName": "rgprvrdftjuwoxcjogpqz" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "kafkaSettings": { - "consumerGroupId": "edpruxb", - "host": "ucjqxpnai", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "consumerGroupId": "ysoriwfdu", + "host": "fagkwbmlpg", "batching": { "mode": "Enabled", - "latencyMs": 9120, - "maxBytes": 2691, - "maxMessages": 464 + "latencyMs": 4523, + "maxBytes": 3640, + "maxMessages": 9785 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -290,16 +408,33 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "ufzypkskkofywg" + "persistentVolumeClaimRef": "wg" }, "mqttSettings": { - "clientIdPrefix": "xppzgkwdqtavsgmkjkuxnifrlcpqba", - "host": "pxm", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "clientIdPrefix": "tkfxlvaausibfvouo", + "host": "bauonchyyadvoonijab", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", @@ -308,26 +443,26 @@ "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "taywpjttafopnvujezjgnhjspnnio", - "type": "uspxo", + "name": "lih", + "type": "xvwxeniuiqummaldptlczvn", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json index 7bc31408a606..125d407867d0 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json index 225479730df6..e143d80b209a 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" @@ -12,66 +12,94 @@ "200": { "body": { "properties": { - "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "xvxogtyk" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "p", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "tegtcboejoflrarxpgwiqhvhipgey" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "prbg" - }, - "serviceAccountTokenSettings": { - "audience": "bsvkgevybfonpodknvo" - }, - "x509Settings": { - "secretRef": "zhqasneijazpmikojz" - } - }, "dataExplorerSettings": { - "database": "rmvzjzuefohrnggpoum", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "qwtkxwwdfkbua", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "dataLakeStorageSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "fabricOneLakeSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "names": { - "lakehouseName": "uzstuplfippbygjslfyjcaznwaxmml", - "workspaceName": "cxu" + "lakehouseName": "sfxduiehssbaryshduylrxxzp", + "workspaceName": "rgprvrdftjuwoxcjogpqz" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "kafkaSettings": { - "consumerGroupId": "edpruxb", - "host": "ucjqxpnai", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "consumerGroupId": "ysoriwfdu", + "host": "fagkwbmlpg", "batching": { "mode": "Enabled", - "latencyMs": 9120, - "maxBytes": 2691, - "maxMessages": 464 + "latencyMs": 4523, + "maxBytes": 3640, + "maxMessages": 9785 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -79,16 +107,33 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "ufzypkskkofywg" + "persistentVolumeClaimRef": "wg" }, "mqttSettings": { - "clientIdPrefix": "xppzgkwdqtavsgmkjkuxnifrlcpqba", - "host": "pxm", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "clientIdPrefix": "tkfxlvaausibfvouo", + "host": "bauonchyyadvoonijab", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", @@ -97,26 +142,26 @@ "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "taywpjttafopnvujezjgnhjspnnio", - "type": "uspxo", + "name": "lih", + "type": "xvwxeniuiqummaldptlczvn", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json index 10bb11e0a5cb..d78a5bcbdc63 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,66 +13,94 @@ "value": [ { "properties": { - "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "xvxogtyk" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "p", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "tegtcboejoflrarxpgwiqhvhipgey" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "prbg" - }, - "serviceAccountTokenSettings": { - "audience": "bsvkgevybfonpodknvo" - }, - "x509Settings": { - "secretRef": "zhqasneijazpmikojz" - } - }, "dataExplorerSettings": { - "database": "rmvzjzuefohrnggpoum", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "qwtkxwwdfkbua", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "dataLakeStorageSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "fabricOneLakeSettings": { + "authentication": { + "accessTokenSettings": { + "secretRef": "utxykqpfbnidmffaj" + }, + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, "names": { - "lakehouseName": "uzstuplfippbygjslfyjcaznwaxmml", - "workspaceName": "cxu" + "lakehouseName": "sfxduiehssbaryshduylrxxzp", + "workspaceName": "rgprvrdftjuwoxcjogpqz" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 9247, - "maxMessages": 2701 + "latencySeconds": 5326, + "maxMessages": 3077 } }, "kafkaSettings": { - "consumerGroupId": "edpruxb", - "host": "ucjqxpnai", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "consumerGroupId": "ysoriwfdu", + "host": "fagkwbmlpg", "batching": { "mode": "Enabled", - "latencyMs": 9120, - "maxBytes": 2691, - "maxMessages": 464 + "latencyMs": 4523, + "maxBytes": 3640, + "maxMessages": 9785 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -80,16 +108,33 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "ufzypkskkofywg" + "persistentVolumeClaimRef": "wg" }, "mqttSettings": { - "clientIdPrefix": "xppzgkwdqtavsgmkjkuxnifrlcpqba", - "host": "pxm", + "authentication": { + "systemAssignedManagedIdentitySettings": { + "audience": "ypjgnfkjwyearp" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "gmfzlquujnbxtupxbuasqpx", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "ntvcdmzduqrw" + }, + "x509Settings": { + "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + } + }, + "clientIdPrefix": "tkfxlvaausibfvouo", + "host": "bauonchyyadvoonijab", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", @@ -98,26 +143,26 @@ "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "syrrybbvghvauxtpvfefltd" + "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "taywpjttafopnvujezjgnhjspnnio", - "type": "uspxo", + "name": "lih", + "type": "xvwxeniuiqummaldptlczvn", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json index e36aa9b42135..89161542ea63 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -12,24 +12,24 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 } }, - "instanceCount": 4 + "instanceCount": 8 }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -41,37 +41,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 } }, - "instanceCount": 4, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jbnvveqyid", - "type": "rudhbczetawvpspvvwsxjug", + "name": "cm", + "type": "oukkagxpricgrumqrvuwqr", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -84,37 +84,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 } }, - "instanceCount": 4, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jbnvveqyid", - "type": "rudhbczetawvpspvvwsxjug", + "name": "cm", + "type": "oukkagxpricgrumqrvuwqr", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json index 0bdd0b3dbfaf..965d982a4e3c 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json index d193e245d406..4a64a86a7075 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -15,37 +15,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 } }, - "instanceCount": 4, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jbnvveqyid", - "type": "rudhbczetawvpspvvwsxjug", + "name": "cm", + "type": "oukkagxpricgrumqrvuwqr", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json index 692458cc8211..b8faf2cbd889 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -16,37 +16,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "papgioh", - "intervalSeconds": 76, - "level": "divhsajiilphjigt" + "otlpGrpcEndpoint": "sliredxsrec", + "intervalSeconds": 107, + "level": "uksyj" }, - "level": "uybjpkdoqiwxrya" + "level": "xjcefbdssbkckemrkgswtvwfounw" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "lnces", - "intervalSeconds": 2 + "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", + "intervalSeconds": 235 }, - "prometheusPort": 1529 + "prometheusPort": 8368 } }, - "instanceCount": 4, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jbnvveqyid", - "type": "rudhbczetawvpspvvwsxjug", + "name": "cm", + "type": "oukkagxpricgrumqrvuwqr", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json index 3c36ddd9cedb..a5d8b84d2076 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -14,28 +14,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "htqktbkelmtqbzxwdwdih", + "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", "sourceSettings": { - "endpointRef": "cnlgzsnqemzymvitntfukvi", - "assetRef": "tdcmukica", + "endpointRef": "gaovvlzj", + "assetRef": "aphvphogrj", "serializationFormat": "Json", - "schemaRef": "kdxiflbugxhjmezhzwtotjzvbi", + "schemaRef": "dnmjlynluymjswvojjllbjxgr", "dataSources": [ - "ornhbowxapjpckbcmc" + "xjcxoajdlmckfpeqhwebswcqm" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ulrqpabmed", + "schemaRef": "libzaroihmcsgyju", "datasets": [ { - "key": "ndc", + "key": "nvjdisvdmv", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "qrcnumdgh", + "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", "inputs": [ - "n" + "ibbbcpwtkagrmnlhlotxezzukrce" ], - "expression": "tgvxstoznaqkandanfbihdjtus" + "expression": "uvupajvsdwyuizzkzewso" } ], "filter": [ @@ -43,9 +43,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tdlwofzlyjqzjfqjnjbfwqkpmfl" + "seursxtiwbqbbwmgtevalci" ], - "expression": "qvdhoutfjoikxoplg" + "expression": "wtqxdywahscjkicwm" } ], "map": [ @@ -53,22 +53,22 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "dkdjpgewdmg" + "tioaw" ], - "expression": "hfkpmhooihnuojkhb", - "output": "ndfrjjzwypfwhiilovbfbwo" + "expression": "uqjptevicvqlvsitsorz", + "output": "ny" } ] }, "destinationSettings": { - "endpointRef": "wxklixgrughtjvzqybbdhd", - "dataDestination": "wfgm" + "endpointRef": "vhaseguckihyob", + "dataDestination": "ieokgk" } } ] }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" } } @@ -81,28 +81,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "htqktbkelmtqbzxwdwdih", + "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", "sourceSettings": { - "endpointRef": "cnlgzsnqemzymvitntfukvi", - "assetRef": "tdcmukica", + "endpointRef": "gaovvlzj", + "assetRef": "aphvphogrj", "serializationFormat": "Json", - "schemaRef": "kdxiflbugxhjmezhzwtotjzvbi", + "schemaRef": "dnmjlynluymjswvojjllbjxgr", "dataSources": [ - "ornhbowxapjpckbcmc" + "xjcxoajdlmckfpeqhwebswcqm" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ulrqpabmed", + "schemaRef": "libzaroihmcsgyju", "datasets": [ { - "key": "ndc", + "key": "nvjdisvdmv", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "qrcnumdgh", + "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", "inputs": [ - "n" + "ibbbcpwtkagrmnlhlotxezzukrce" ], - "expression": "tgvxstoznaqkandanfbihdjtus" + "expression": "uvupajvsdwyuizzkzewso" } ], "filter": [ @@ -110,9 +110,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tdlwofzlyjqzjfqjnjbfwqkpmfl" + "seursxtiwbqbbwmgtevalci" ], - "expression": "qvdhoutfjoikxoplg" + "expression": "wtqxdywahscjkicwm" } ], "map": [ @@ -120,35 +120,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "dkdjpgewdmg" + "tioaw" ], - "expression": "hfkpmhooihnuojkhb", - "output": "ndfrjjzwypfwhiilovbfbwo" + "expression": "uqjptevicvqlvsitsorz", + "output": "ny" } ] }, "destinationSettings": { - "endpointRef": "wxklixgrughtjvzqybbdhd", - "dataDestination": "wfgm" + "endpointRef": "vhaseguckihyob", + "dataDestination": "ieokgk" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mse", - "type": "ljuzthfmfoxqbzoifpaxz", + "name": "mhaohkrsxemppadrspgsxrxeamifmg", + "type": "ltkpkuspdwlviwldmruscnruggjrtq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -162,28 +162,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "htqktbkelmtqbzxwdwdih", + "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", "sourceSettings": { - "endpointRef": "cnlgzsnqemzymvitntfukvi", - "assetRef": "tdcmukica", + "endpointRef": "gaovvlzj", + "assetRef": "aphvphogrj", "serializationFormat": "Json", - "schemaRef": "kdxiflbugxhjmezhzwtotjzvbi", + "schemaRef": "dnmjlynluymjswvojjllbjxgr", "dataSources": [ - "ornhbowxapjpckbcmc" + "xjcxoajdlmckfpeqhwebswcqm" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ulrqpabmed", + "schemaRef": "libzaroihmcsgyju", "datasets": [ { - "key": "ndc", + "key": "nvjdisvdmv", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "qrcnumdgh", + "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", "inputs": [ - "n" + "ibbbcpwtkagrmnlhlotxezzukrce" ], - "expression": "tgvxstoznaqkandanfbihdjtus" + "expression": "uvupajvsdwyuizzkzewso" } ], "filter": [ @@ -191,9 +191,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tdlwofzlyjqzjfqjnjbfwqkpmfl" + "seursxtiwbqbbwmgtevalci" ], - "expression": "qvdhoutfjoikxoplg" + "expression": "wtqxdywahscjkicwm" } ], "map": [ @@ -201,35 +201,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "dkdjpgewdmg" + "tioaw" ], - "expression": "hfkpmhooihnuojkhb", - "output": "ndfrjjzwypfwhiilovbfbwo" + "expression": "uqjptevicvqlvsitsorz", + "output": "ny" } ] }, "destinationSettings": { - "endpointRef": "wxklixgrughtjvzqybbdhd", - "dataDestination": "wfgm" + "endpointRef": "vhaseguckihyob", + "dataDestination": "ieokgk" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mse", - "type": "ljuzthfmfoxqbzoifpaxz", + "name": "mhaohkrsxemppadrspgsxrxeamifmg", + "type": "ltkpkuspdwlviwldmruscnruggjrtq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json index 2a156fc6838f..fc3c0fb93c4f 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json index aa8427af256d..61710401bb67 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -17,28 +17,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "htqktbkelmtqbzxwdwdih", + "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", "sourceSettings": { - "endpointRef": "cnlgzsnqemzymvitntfukvi", - "assetRef": "tdcmukica", + "endpointRef": "gaovvlzj", + "assetRef": "aphvphogrj", "serializationFormat": "Json", - "schemaRef": "kdxiflbugxhjmezhzwtotjzvbi", + "schemaRef": "dnmjlynluymjswvojjllbjxgr", "dataSources": [ - "ornhbowxapjpckbcmc" + "xjcxoajdlmckfpeqhwebswcqm" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ulrqpabmed", + "schemaRef": "libzaroihmcsgyju", "datasets": [ { - "key": "ndc", + "key": "nvjdisvdmv", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "qrcnumdgh", + "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", "inputs": [ - "n" + "ibbbcpwtkagrmnlhlotxezzukrce" ], - "expression": "tgvxstoznaqkandanfbihdjtus" + "expression": "uvupajvsdwyuizzkzewso" } ], "filter": [ @@ -46,9 +46,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tdlwofzlyjqzjfqjnjbfwqkpmfl" + "seursxtiwbqbbwmgtevalci" ], - "expression": "qvdhoutfjoikxoplg" + "expression": "wtqxdywahscjkicwm" } ], "map": [ @@ -56,35 +56,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "dkdjpgewdmg" + "tioaw" ], - "expression": "hfkpmhooihnuojkhb", - "output": "ndfrjjzwypfwhiilovbfbwo" + "expression": "uqjptevicvqlvsitsorz", + "output": "ny" } ] }, "destinationSettings": { - "endpointRef": "wxklixgrughtjvzqybbdhd", - "dataDestination": "wfgm" + "endpointRef": "vhaseguckihyob", + "dataDestination": "ieokgk" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mse", - "type": "ljuzthfmfoxqbzoifpaxz", + "name": "mhaohkrsxemppadrspgsxrxeamifmg", + "type": "ltkpkuspdwlviwldmruscnruggjrtq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json index be26ad06bcda..1fe8453d4f54 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_ListByProfileResource", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -18,28 +18,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "htqktbkelmtqbzxwdwdih", + "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", "sourceSettings": { - "endpointRef": "cnlgzsnqemzymvitntfukvi", - "assetRef": "tdcmukica", + "endpointRef": "gaovvlzj", + "assetRef": "aphvphogrj", "serializationFormat": "Json", - "schemaRef": "kdxiflbugxhjmezhzwtotjzvbi", + "schemaRef": "dnmjlynluymjswvojjllbjxgr", "dataSources": [ - "ornhbowxapjpckbcmc" + "xjcxoajdlmckfpeqhwebswcqm" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ulrqpabmed", + "schemaRef": "libzaroihmcsgyju", "datasets": [ { - "key": "ndc", + "key": "nvjdisvdmv", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "qrcnumdgh", + "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", "inputs": [ - "n" + "ibbbcpwtkagrmnlhlotxezzukrce" ], - "expression": "tgvxstoznaqkandanfbihdjtus" + "expression": "uvupajvsdwyuizzkzewso" } ], "filter": [ @@ -47,9 +47,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tdlwofzlyjqzjfqjnjbfwqkpmfl" + "seursxtiwbqbbwmgtevalci" ], - "expression": "qvdhoutfjoikxoplg" + "expression": "wtqxdywahscjkicwm" } ], "map": [ @@ -57,35 +57,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "dkdjpgewdmg" + "tioaw" ], - "expression": "hfkpmhooihnuojkhb", - "output": "ndfrjjzwypfwhiilovbfbwo" + "expression": "uqjptevicvqlvsitsorz", + "output": "ny" } ] }, "destinationSettings": { - "endpointRef": "wxklixgrughtjvzqybbdhd", - "dataDestination": "wfgm" + "endpointRef": "vhaseguckihyob", + "dataDestination": "ieokgk" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mse", - "type": "ljuzthfmfoxqbzoifpaxz", + "name": "mhaohkrsxemppadrspgsxrxeamifmg", + "type": "ltkpkuspdwlviwldmruscnruggjrtq", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json index 5b12b19eb15e..b9b3af1609eb 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "resource": { @@ -12,19 +12,19 @@ "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { "type": "None", "userAssignedIdentities": { - "key234": {} + "key4529": {} } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy" + "location": "ccqjtuazqq" } }, "responses": { @@ -33,11 +33,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -45,26 +45,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } }, @@ -76,11 +76,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -88,26 +88,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json index 56eab0ec7383..49f3598e76cf 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json index ee0871730b38..b73700d8ba94 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -25,26 +25,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json index ba4642108600..41fc4ed96a59 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations" }, "responses": { @@ -14,11 +14,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -26,26 +26,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json index 0690caab92be..19afd090d2b1 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListBySubscription", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC" + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF" }, "responses": { "200": { @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -25,26 +25,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json index 3b67399fff9d..8e79eba0bd65 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json @@ -3,12 +3,12 @@ "operationId": "Instance_Update", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "70091AF9-8E9A-427B-8A88-73B7B4A058AC", + "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "properties": { "tags": { - "key460": "o" + "key9010": "ibmnymdbpqkdaaxklvuqfconyw" } } }, @@ -18,11 +18,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "wwagnhndlqpmopsegiihlgja", + "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "cwqufiy", + "name": "vhcutfzsdyclkhjdlarwnrbc", "type": "CustomLocation" }, "identity": { @@ -30,26 +30,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key234": { + "key4529": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5741": "xmksoscdlse" + "key9881": "enozgmjlnk" }, - "location": "klpgjddekfghfqdzrfvgroimy", + "location": "ccqjtuazqq", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "wazqyhzkftjrmslhpbwt", - "type": "fxmwrgxrppubaebcaiaajhkvyyyhk", + "name": "vyuwmdeikdgxp", + "type": "musabymwheyhmhkftknqbizqmspxs", "systemData": { - "createdBy": "f", + "createdBy": "viykdpvwjpkudnqunnnt", "createdByType": "User", - "createdAt": "2024-08-08T13:47:05.764Z", - "lastModifiedBy": "yvjunuq", + "createdAt": "2024-08-08T15:22:05.604Z", + "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T13:47:05.764Z" + "lastModifiedAt": "2024-08-08T15:22:05.604Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json index 2c0304e51581..f297514f9349 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json @@ -9,19 +9,19 @@ "body": { "value": [ { - "name": "acofwannnmajjhmgfm", + "name": "nglqhjcqjvfosgemdrss", "isDataAction": true, "display": { - "provider": "aakjqveur", - "resource": "mgfepe", - "operation": "rsstiuyrjthiocfybmwqisw", + "provider": "zoqwxmywupxchjozxxwkekastepmng", + "resource": "byujwtehrvhwvh", + "operation": "itklrbcr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit." }, "origin": "user", "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/amtlkv" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json index 13e5f35ff27c..f7faad5eabb8 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json @@ -3562,6 +3562,46 @@ ] } }, + "DataFlowEndpointFabricOneLakeAuthentication": { + "type": "object", + "description": "Microsoft Fabric endpoint. Authentication properties. NOTE - Only one method is supported for one entry", + "properties": { + "accessTokenSettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationAccessToken", + "description": "SAS token authentication." + }, + "systemAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", + "description": "System-assigned managed identity authentication." + }, + "userAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", + "description": "User-assigned managed identity authentication." + } + } + }, + "DataFlowEndpointKafkaAuthentication": { + "type": "object", + "description": "Kafka endpoint Authentication properties. NOTE - only authentication property is allowed per entry", + "properties": { + "systemAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", + "description": "System-assigned managed identity authentication." + }, + "userAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", + "description": "User-assigned managed identity authentication." + }, + "saslSettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationSasl", + "description": "SASL authentication." + }, + "x509Settings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationX509", + "description": "X.509 certificate authentication." + } + } + }, "DataflowBuiltInTransformationDataset": { "type": "object", "description": "Dataflow BuiltIn Transformation dataset properties", @@ -3763,43 +3803,6 @@ "dataDestination" ] }, - "DataflowEndpointAuthentication": { - "type": "object", - "description": "Azure Data Explorer Authentication properties. NOTE - only authentication property is allowed per entry.", - "properties": { - "method": { - "$ref": "#/definitions/AuthenticationMethod", - "description": "Mode of Authentication." - }, - "systemAssignedManagedIdentitySettings": { - "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", - "description": "System-assigned managed identity authentication." - }, - "userAssignedManagedIdentitySettings": { - "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", - "description": "User-assigned managed identity authentication." - }, - "accessTokenSettings": { - "$ref": "#/definitions/DataflowEndpointAuthenticationAccessToken", - "description": "SAS token authentication." - }, - "saslSettings": { - "$ref": "#/definitions/DataflowEndpointAuthenticationSasl", - "description": "SASL authentication." - }, - "serviceAccountTokenSettings": { - "$ref": "#/definitions/DataflowEndpointAuthenticationServiceAccountToken", - "description": "Service Account Token authentication." - }, - "x509Settings": { - "$ref": "#/definitions/DataflowEndpointAuthenticationX509", - "description": "X.509 certificate authentication." - } - }, - "required": [ - "method" - ] - }, "DataflowEndpointAuthenticationAccessToken": { "type": "object", "description": "DataflowEndpoint Authentication Access Token properties", @@ -3927,6 +3930,10 @@ "type": "object", "description": "Azure Data Explorer endpoint properties", "properties": { + "authentication": { + "$ref": "#/definitions/DataflowEndpointDataExplorerAuthentication", + "description": "Authentication configuration. NOTE - only authentication property is allowed per entry." + }, "database": { "type": "string", "description": "Database name." @@ -3942,14 +3949,33 @@ } }, "required": [ + "authentication", "database", "host" ] }, + "DataflowEndpointDataExplorerAuthentication": { + "type": "object", + "description": "Azure Data Explorer Authentication properties. NOTE - only authentication property is allowed per entry.", + "properties": { + "systemAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", + "description": "System-assigned managed identity authentication." + }, + "userAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", + "description": "User-assigned managed identity authentication." + } + } + }, "DataflowEndpointDataLakeStorage": { "type": "object", "description": "Azure Data Lake endpoint properties", "properties": { + "authentication": { + "$ref": "#/definitions/DataflowEndpointDataLakeStorageAuthentication", + "description": "Authentication configuration. NOTE - only authentication property is allowed per entry." + }, "host": { "type": "string", "description": "Host of the Azure Data Lake in the form of .blob.core.windows.net .", @@ -3961,13 +3987,36 @@ } }, "required": [ + "authentication", "host" ] }, + "DataflowEndpointDataLakeStorageAuthentication": { + "type": "object", + "description": "Azure Data Lake endpoint Authentication properties. NOTE Enum - Only one method is supported for one entry", + "properties": { + "accessTokenSettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationAccessToken", + "description": "SAS token authentication." + }, + "systemAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", + "description": "System-assigned managed identity authentication." + }, + "userAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", + "description": "User-assigned managed identity authentication." + } + } + }, "DataflowEndpointFabricOneLake": { "type": "object", "description": "Microsoft Fabric endpoint properties", "properties": { + "authentication": { + "$ref": "#/definitions/DataFlowEndpointFabricOneLakeAuthentication", + "description": "Authentication configuration. NOTE - only one authentication property is allowed per entry." + }, "names": { "$ref": "#/definitions/DataflowEndpointFabricOneLakeNames", "description": "Names of the workspace and lakehouse." @@ -3987,6 +4036,7 @@ } }, "required": [ + "authentication", "names", "oneLakePathType", "host" @@ -4038,6 +4088,10 @@ "type": "object", "description": "Kafka endpoint properties", "properties": { + "authentication": { + "$ref": "#/definitions/DataFlowEndpointKafkaAuthentication", + "description": "Authentication configuration. NOTE - only authentication property is allowed per entry." + }, "consumerGroupId": { "type": "string", "description": "Consumer group ID." @@ -4367,6 +4421,10 @@ "type": "object", "description": "Broker endpoint properties", "properties": { + "authentication": { + "$ref": "#/definitions/DataflowEndpointMqttAuthentication", + "description": "authentication properties. DEFAULT: kubernetes.audience=aio-mq-internal. NOTE - Enum field only property is allowed" + }, "clientIdPrefix": { "type": "string", "description": "Client ID prefix. Client ID generated by the dataflow is -TBD. Optional; no prefix if omitted." @@ -4465,18 +4523,32 @@ } } }, - "DataflowEndpointProperties": { + "DataflowEndpointMqttAuthentication": { "type": "object", - "description": "DataflowEndpoint Resource properties. NOTE - Only one type of endpoint is supported for one Resource", + "description": "Mqtt endpoint Authentication properties. NOTE - only authentication property is allowed per entry. Default Kubernetes authentication with audience set to aio-mq-internal", "properties": { - "endpointType": { - "$ref": "#/definitions/EndpointType", - "description": "Endpoint Type." + "systemAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", + "description": "System-assigned managed identity authentication." }, - "authentication": { - "$ref": "#/definitions/DataflowEndpointAuthentication", - "description": "Authentication configuration." + "userAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", + "description": "User-assigned managed identity authentication." + }, + "saslSettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationSasl", + "description": "Kubernetes service account token authentication. Default audience if not set is aio-mq-internal" }, + "x509Settings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationX509", + "description": "X.509 certificate authentication." + } + } + }, + "DataflowEndpointProperties": { + "type": "object", + "description": "DataflowEndpoint Resource properties. NOTE - Only one type of endpoint is supported for one Resource", + "properties": { "dataExplorerSettings": { "$ref": "#/definitions/DataflowEndpointDataExplorer", "description": "Azure Data Explorer endpoint." @@ -4506,11 +4578,7 @@ "description": "The status of the last operation.", "readOnly": true } - }, - "required": [ - "endpointType", - "authentication" - ] + } }, "DataflowEndpointResource": { "type": "object", @@ -5255,6 +5323,20 @@ "name" ] }, + "ManagedIdentity": { + "type": "object", + "description": "System and Use Assigned Managed Identity properties", + "properties": { + "systemAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", + "description": "System-assigned managed identity authentication." + }, + "userAssignedManagedIdentitySettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", + "description": "User-assigned managed identity authentication." + } + } + }, "MetricProperties": { "type": "object", "description": "Metric properties", From edf001a4da6d036c8b84538cf4e7cd62e76e087b Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 09:15:37 -0700 Subject: [PATCH 03/16] endpointType and revert for secretRef --- .../IoTOperations.Management/models/auth.tsp | 4 ++-- .../models/dataflows/dataflowEndpoints.tsp | 3 +++ .../preview/2024-08-15-preview/iotoperations.json | 9 ++++++++- 3 files changed, 13 insertions(+), 3 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/models/auth.tsp b/specification/iotoperations/IoTOperations.Management/models/auth.tsp index 5888ab1f8b75..9ece1dc70081 100644 --- a/specification/iotoperations/IoTOperations.Management/models/auth.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/auth.tsp @@ -31,7 +31,8 @@ model DataflowEndpointAuthenticationSasl { @doc("Type of SASL authentication. Can be PLAIN, SCRAM-SHA-256, or SCRAM-SHA-512.") saslType: DataflowEndpointAuthenticationSaslType; - ...DataflowEndpointAuthenticationAccessToken; + @doc("Token secret name.") + secretRef: string; } @doc("DataflowEndpoint Authentication Access Token properties") @@ -125,7 +126,6 @@ model BrokerAuthenticatorMethodX509Attributes { subject: string; } - @doc("System and Use Assigned Managed Identity properties") model ManagedIdentity { @doc("System-assigned managed identity authentication.") diff --git a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp index 1813de9fa090..8df9743d0c21 100644 --- a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp @@ -34,6 +34,9 @@ model DataflowEndpointResource is ProxyResource { @doc("DataflowEndpoint Resource properties. NOTE - Only one type of endpoint is supported for one Resource") model DataflowEndpointProperties { + @doc("Endpoint Type.") + endpointType: EndpointType; + @doc("Azure Data Explorer endpoint.") dataExplorerSettings?: DataflowEndpointDataExplorer; diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json index f7faad5eabb8..71e07f28fd3c 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json @@ -4549,6 +4549,10 @@ "type": "object", "description": "DataflowEndpoint Resource properties. NOTE - Only one type of endpoint is supported for one Resource", "properties": { + "endpointType": { + "$ref": "#/definitions/EndpointType", + "description": "Endpoint Type." + }, "dataExplorerSettings": { "$ref": "#/definitions/DataflowEndpointDataExplorer", "description": "Azure Data Explorer endpoint." @@ -4578,7 +4582,10 @@ "description": "The status of the last operation.", "readOnly": true } - } + }, + "required": [ + "endpointType" + ] }, "DataflowEndpointResource": { "type": "object", From 5a569f3249e40f8adbd970e6dae942256f90eddf Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 10:04:02 -0700 Subject: [PATCH 04/16] clean up description, make authentication required, remove accesstokensetting from onelake --- .../models/dataflows/dataflowEndpoints.tsp | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp index 8df9743d0c21..c8e665103843 100644 --- a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp @@ -167,10 +167,6 @@ model DataflowEndpointFabricOneLake { @doc("Microsoft Fabric endpoint. Authentication properties. NOTE - Only one method is supported for one entry") model DataFlowEndpointFabricOneLakeAuthentication { - // What is accessTokenSecretName now? - @doc("SAS token authentication.") - accessTokenSettings?: DataflowEndpointAuthenticationAccessToken; - ...ManagedIdentity; } @@ -197,7 +193,7 @@ union DataflowEndpointFabricPathType { @doc("Kafka endpoint properties") model DataflowEndpointKafka { @doc("Authentication configuration. NOTE - only authentication property is allowed per entry.") - authentication?: DataFlowEndpointKafkaAuthentication; + authentication: DataFlowEndpointKafkaAuthentication; @doc("Consumer group ID.") consumerGroupId?: string; @@ -316,7 +312,7 @@ model DataflowEndpointLocalStorage { @doc("Broker endpoint properties") model DataflowEndpointMqtt { @doc("authentication properties. DEFAULT: kubernetes.audience=aio-mq-internal. NOTE - Enum field only property is allowed") - authentication?: DataflowEndpointMqttAuthentication; + authentication: DataflowEndpointMqttAuthentication; @doc("Client ID prefix. Client ID generated by the dataflow is -TBD. Optional; no prefix if omitted.") clientIdPrefix?: string; @@ -354,7 +350,7 @@ model DataflowEndpointMqtt { cloudEventMapping?: CloudEventMappingType; } -@doc("Mqtt endpoint Authentication properties. NOTE - only authentication property is allowed per entry. Default Kubernetes authentication with audience set to aio-mq-internal") +@doc("Mqtt endpoint Authentication properties. NOTE - only authentication property is allowed per entry.") model DataflowEndpointMqttAuthentication { ...ManagedIdentity; From f27a7b5ef98a63714fc5480290a3c3094c5ccdc1 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 10:45:33 -0700 Subject: [PATCH 05/16] add auth to each method --- .../models/dataflows/dataflowEndpoints.tsp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp index c8e665103843..8589dced1b74 100644 --- a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp @@ -101,6 +101,9 @@ model DataflowEndpointDataExplorer { @doc("Azure Data Explorer Authentication properties. NOTE - only authentication property is allowed per entry.") model DataflowEndpointDataExplorerAuthentication { + @doc("Mode of Authentication.") + method: AuthenticationMethod; + ...ManagedIdentity; } @@ -139,6 +142,9 @@ model DataflowEndpointDataLakeStorage { @doc("Azure Data Lake endpoint Authentication properties. NOTE Enum - Only one method is supported for one entry") model DataflowEndpointDataLakeStorageAuthentication { + @doc("Mode of Authentication.") + method: AuthenticationMethod; + // What is accessTokenSecretName now? @doc("SAS token authentication.") accessTokenSettings?: DataflowEndpointAuthenticationAccessToken; @@ -167,6 +173,9 @@ model DataflowEndpointFabricOneLake { @doc("Microsoft Fabric endpoint. Authentication properties. NOTE - Only one method is supported for one entry") model DataFlowEndpointFabricOneLakeAuthentication { + @doc("Mode of Authentication.") + method: AuthenticationMethod; + ...ManagedIdentity; } @@ -225,6 +234,9 @@ model DataflowEndpointKafka { @doc("Kafka endpoint Authentication properties. NOTE - only authentication property is allowed per entry") model DataFlowEndpointKafkaAuthentication { + @doc("Mode of Authentication.") + method: AuthenticationMethod; + ...ManagedIdentity; @doc("SASL authentication.") @@ -352,6 +364,9 @@ model DataflowEndpointMqtt { @doc("Mqtt endpoint Authentication properties. NOTE - only authentication property is allowed per entry.") model DataflowEndpointMqttAuthentication { + @doc("Mode of Authentication.") + method: AuthenticationMethod; + ...ManagedIdentity; @doc("Kubernetes service account token authentication. Default audience if not set is aio-mq-internal") From 3389e12100741816d0c4708e64fbb243eb0d3329 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 11:23:01 -0700 Subject: [PATCH 06/16] scope down each auth method --- .../models/dataflows/dataflowEndpoints.tsp | 95 ++++++++++++++----- 1 file changed, 73 insertions(+), 22 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp index 8589dced1b74..1efb43cf8a9f 100644 --- a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp @@ -83,6 +83,27 @@ union EndpointType { Mqtt: "Mqtt", } +@doc("Authentication Mode properties") +union AuthenticationMethod { + string, + + @doc("SystemAssignedManagedIdentity Option") + SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", + + @doc("UserAssignedManagedIdentity Option") + UserAssignedManagedIdentity: "UserAssignedManagedIdentity", + + @doc("AccessToken Option") + AccessToken: "AccessToken", + + @doc("Sasl Option") + Sasl: "Sasl", + + @doc("x509Certificate Option") + x509Certificate: "x509Certificate", +} + + @doc("Azure Data Explorer endpoint properties") model DataflowEndpointDataExplorer { @doc("Authentication configuration. NOTE - only authentication property is allowed per entry.") @@ -102,30 +123,19 @@ model DataflowEndpointDataExplorer { @doc("Azure Data Explorer Authentication properties. NOTE - only authentication property is allowed per entry.") model DataflowEndpointDataExplorerAuthentication { @doc("Mode of Authentication.") - method: AuthenticationMethod; + method: DataExplorerAuthMethod; ...ManagedIdentity; } -@doc("Authentication Mode properties") -union AuthenticationMethod { +#suppress "@azure-tools/typespec-autorest/union-unsupported" +@doc("DataflowEndpoint Data Explorer Authentication Method properties") +union DataExplorerAuthMethod { string, - @doc("SystemAssignedManagedIdentity Option") - SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", - - @doc("UserAssignedManagedIdentity Option") - UserAssignedManagedIdentity: "UserAssignedManagedIdentity", - - @doc("AccessToken Option") - AccessToken: "AccessToken", - - @doc("Sasl Option") - Sasl: "Sasl", - - @doc("x509Certificate Option") - x509Certificate: "x509Certificate", -} + AuthenticationMethod.SystemAssignedManagedIdentity, + AuthenticationMethod.UserAssignedManagedIdentity, +}; @doc("Azure Data Lake endpoint properties") model DataflowEndpointDataLakeStorage { @@ -143,7 +153,7 @@ model DataflowEndpointDataLakeStorage { @doc("Azure Data Lake endpoint Authentication properties. NOTE Enum - Only one method is supported for one entry") model DataflowEndpointDataLakeStorageAuthentication { @doc("Mode of Authentication.") - method: AuthenticationMethod; + method: DataLakeStorageAuthMethod; // What is accessTokenSecretName now? @doc("SAS token authentication.") @@ -152,6 +162,16 @@ model DataflowEndpointDataLakeStorageAuthentication { ...ManagedIdentity; } +#suppress "@azure-tools/typespec-autorest/union-unsupported" +@doc("DataflowEndpoint Data Lake Storage Authentication Method properties") +union DataLakeStorageAuthMethod { + string, + + AuthenticationMethod.SystemAssignedManagedIdentity, + AuthenticationMethod.UserAssignedManagedIdentity, + AuthenticationMethod.AccessToken +}; + @doc("Microsoft Fabric endpoint properties") model DataflowEndpointFabricOneLake { @doc("Authentication configuration. NOTE - only one authentication property is allowed per entry.") @@ -174,11 +194,20 @@ model DataflowEndpointFabricOneLake { @doc("Microsoft Fabric endpoint. Authentication properties. NOTE - Only one method is supported for one entry") model DataFlowEndpointFabricOneLakeAuthentication { @doc("Mode of Authentication.") - method: AuthenticationMethod; + method: FabricOneLakeAuthMethod; ...ManagedIdentity; } +#suppress "@azure-tools/typespec-autorest/union-unsupported" +@doc("DataflowEndpoint Fabric One Lake Authentication Method properties") +union FabricOneLakeAuthMethod { + string, + + AuthenticationMethod.SystemAssignedManagedIdentity, + AuthenticationMethod.UserAssignedManagedIdentity, +}; + @doc("Microsoft Fabric endpoint Names properties") model DataflowEndpointFabricOneLakeNames { @doc("Lakehouse name.") @@ -235,7 +264,7 @@ model DataflowEndpointKafka { @doc("Kafka endpoint Authentication properties. NOTE - only authentication property is allowed per entry") model DataFlowEndpointKafkaAuthentication { @doc("Mode of Authentication.") - method: AuthenticationMethod; + method: KafkaAuthMethod; ...ManagedIdentity; @@ -246,6 +275,17 @@ model DataFlowEndpointKafkaAuthentication { x509Settings?: DataflowEndpointAuthenticationX509; } +#suppress "@azure-tools/typespec-autorest/union-unsupported" +@doc("DataflowEndpoint Kafka Authentication Method properties") +union KafkaAuthMethod { + string, + + AuthenticationMethod.SystemAssignedManagedIdentity, + AuthenticationMethod.UserAssignedManagedIdentity, + AuthenticationMethod.Sasl, + AuthenticationMethod.x509Certificate, +}; + @doc("Kafka endpoint Batching properties") model DataflowEndpointKafkaBatching { @doc("Mode for batching.") @@ -365,7 +405,7 @@ model DataflowEndpointMqtt { @doc("Mqtt endpoint Authentication properties. NOTE - only authentication property is allowed per entry.") model DataflowEndpointMqttAuthentication { @doc("Mode of Authentication.") - method: AuthenticationMethod; + method: MqttAuthMethod; ...ManagedIdentity; @@ -376,6 +416,17 @@ model DataflowEndpointMqttAuthentication { x509Settings?: DataflowEndpointAuthenticationX509; } +#suppress "@azure-tools/typespec-autorest/union-unsupported" +@doc("DataflowEndpoint Mqtt Authentication Method properties") +union MqttAuthMethod { + string, + + AuthenticationMethod.SystemAssignedManagedIdentity, + AuthenticationMethod.UserAssignedManagedIdentity, + AuthenticationMethod.Sasl, + AuthenticationMethod.x509Certificate, +}; + @doc("Broker Retain types") union MqttRetainType { string, From 3f98fa617bb376779ecb8450913f40a1476fd113 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 13:02:11 -0700 Subject: [PATCH 07/16] scope down unions --- .../models/dataflows/dataflowEndpoints.tsp | 59 ++++++++++++++----- 1 file changed, 43 insertions(+), 16 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp index 1efb43cf8a9f..3f48a75759fe 100644 --- a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp @@ -128,13 +128,15 @@ model DataflowEndpointDataExplorerAuthentication { ...ManagedIdentity; } -#suppress "@azure-tools/typespec-autorest/union-unsupported" @doc("DataflowEndpoint Data Explorer Authentication Method properties") union DataExplorerAuthMethod { string, - AuthenticationMethod.SystemAssignedManagedIdentity, - AuthenticationMethod.UserAssignedManagedIdentity, + @doc("SystemAssignedManagedIdentity Option") + SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", + + @doc("UserAssignedManagedIdentity Option") + UserAssignedManagedIdentity: "UserAssignedManagedIdentity", }; @doc("Azure Data Lake endpoint properties") @@ -167,9 +169,15 @@ model DataflowEndpointDataLakeStorageAuthentication { union DataLakeStorageAuthMethod { string, - AuthenticationMethod.SystemAssignedManagedIdentity, - AuthenticationMethod.UserAssignedManagedIdentity, - AuthenticationMethod.AccessToken + + @doc("SystemAssignedManagedIdentity Option") + SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", + + @doc("UserAssignedManagedIdentity Option") + UserAssignedManagedIdentity: "UserAssignedManagedIdentity", + + @doc("AccessToken Option") + AccessToken: "AccessToken", }; @doc("Microsoft Fabric endpoint properties") @@ -204,8 +212,11 @@ model DataFlowEndpointFabricOneLakeAuthentication { union FabricOneLakeAuthMethod { string, - AuthenticationMethod.SystemAssignedManagedIdentity, - AuthenticationMethod.UserAssignedManagedIdentity, + @doc("SystemAssignedManagedIdentity Option") + SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", + + @doc("UserAssignedManagedIdentity Option") + UserAssignedManagedIdentity: "UserAssignedManagedIdentity", }; @doc("Microsoft Fabric endpoint Names properties") @@ -280,10 +291,18 @@ model DataFlowEndpointKafkaAuthentication { union KafkaAuthMethod { string, - AuthenticationMethod.SystemAssignedManagedIdentity, - AuthenticationMethod.UserAssignedManagedIdentity, - AuthenticationMethod.Sasl, - AuthenticationMethod.x509Certificate, + + @doc("SystemAssignedManagedIdentity Option") + SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", + + @doc("UserAssignedManagedIdentity Option") + UserAssignedManagedIdentity: "UserAssignedManagedIdentity", + + @doc("Sasl Option") + Sasl: "Sasl", + + @doc("x509Certificate Option") + x509Certificate: "x509Certificate", }; @doc("Kafka endpoint Batching properties") @@ -421,10 +440,18 @@ model DataflowEndpointMqttAuthentication { union MqttAuthMethod { string, - AuthenticationMethod.SystemAssignedManagedIdentity, - AuthenticationMethod.UserAssignedManagedIdentity, - AuthenticationMethod.Sasl, - AuthenticationMethod.x509Certificate, + @doc("SystemAssignedManagedIdentity Option") + SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", + + @doc("UserAssignedManagedIdentity Option") + UserAssignedManagedIdentity: "UserAssignedManagedIdentity", + + + @doc("Sasl Option") + Sasl: "Sasl", + + @doc("x509Certificate Option") + x509Certificate: "x509Certificate", }; @doc("Broker Retain types") From 25e0e163f0ae3d5c82dc2d40090a97b67cef8efb Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 13:04:35 -0700 Subject: [PATCH 08/16] remove general auth object --- .../models/dataflows/dataflowEndpoints.tsp | 22 ------------------- 1 file changed, 22 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp index 3f48a75759fe..a5309eece16d 100644 --- a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp @@ -83,27 +83,6 @@ union EndpointType { Mqtt: "Mqtt", } -@doc("Authentication Mode properties") -union AuthenticationMethod { - string, - - @doc("SystemAssignedManagedIdentity Option") - SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", - - @doc("UserAssignedManagedIdentity Option") - UserAssignedManagedIdentity: "UserAssignedManagedIdentity", - - @doc("AccessToken Option") - AccessToken: "AccessToken", - - @doc("Sasl Option") - Sasl: "Sasl", - - @doc("x509Certificate Option") - x509Certificate: "x509Certificate", -} - - @doc("Azure Data Explorer endpoint properties") model DataflowEndpointDataExplorer { @doc("Authentication configuration. NOTE - only authentication property is allowed per entry.") @@ -291,7 +270,6 @@ model DataFlowEndpointKafkaAuthentication { union KafkaAuthMethod { string, - @doc("SystemAssignedManagedIdentity Option") SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", From 53fe49b901832012734ad6bd51e275f1c68c015d Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 14:50:59 -0700 Subject: [PATCH 09/16] organization --- .../IoTOperations.Management/models/base.tsp | 41 +++++++++++ .../models/dataflows/dataflowEndpoints.tsp | 70 +++++-------------- 2 files changed, 57 insertions(+), 54 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/models/base.tsp b/specification/iotoperations/IoTOperations.Management/models/base.tsp index e3517fb07055..fff2cc67d55e 100644 --- a/specification/iotoperations/IoTOperations.Management/models/base.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/base.tsp @@ -193,3 +193,44 @@ union CertManagerIssuerKind { @doc("ClusterIssuer kind.") ClusterIssuer: "ClusterIssuer", } + +alias SystemAssignedManagedIdentity = "SystemAssignedManagedIdentity"; +alias UserAssignedManagedIdentity = "UserAssignedManagedIdentity"; +alias AccessToken = "AccessToken"; +alias Sasl = "Sasl"; +alias x509Certificate = "x509Certificate"; + +@doc("Managed Identity Method") +union ManagedIdentityMethod { + string, + + @doc("SystemAssignedManagedIdentity type") + SystemAssignedManagedIdentity: SystemAssignedManagedIdentity, + + @doc("UserAssignedManagedIdentity type") + UserAssignedManagedIdentity: UserAssignedManagedIdentity, +} + +@doc("Access Token Method") +union AccessTokeMethod { + string, + + @doc("AccessToken Option") + AccessToken: AccessToken, +} + +@doc("Sasl Method") +union SaslMethod { + string, + + @doc("Sasl Option") + Sasl: Sasl, +} + +@doc("x509 Certificate Method") +union x509CertificateMethod { + string, + + @doc("x509Certificate Option") + x509Certificate: x509Certificate, +} \ No newline at end of file diff --git a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp index a5309eece16d..5ab0a1c95397 100644 --- a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp @@ -109,13 +109,7 @@ model DataflowEndpointDataExplorerAuthentication { @doc("DataflowEndpoint Data Explorer Authentication Method properties") union DataExplorerAuthMethod { - string, - - @doc("SystemAssignedManagedIdentity Option") - SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", - - @doc("UserAssignedManagedIdentity Option") - UserAssignedManagedIdentity: "UserAssignedManagedIdentity", + ManagedIdentityMethod }; @doc("Azure Data Lake endpoint properties") @@ -146,17 +140,8 @@ model DataflowEndpointDataLakeStorageAuthentication { #suppress "@azure-tools/typespec-autorest/union-unsupported" @doc("DataflowEndpoint Data Lake Storage Authentication Method properties") union DataLakeStorageAuthMethod { - string, - - - @doc("SystemAssignedManagedIdentity Option") - SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", - - @doc("UserAssignedManagedIdentity Option") - UserAssignedManagedIdentity: "UserAssignedManagedIdentity", - - @doc("AccessToken Option") - AccessToken: "AccessToken", + ManagedIdentityMethod, + AccessTokeMethod }; @doc("Microsoft Fabric endpoint properties") @@ -189,13 +174,7 @@ model DataFlowEndpointFabricOneLakeAuthentication { #suppress "@azure-tools/typespec-autorest/union-unsupported" @doc("DataflowEndpoint Fabric One Lake Authentication Method properties") union FabricOneLakeAuthMethod { - string, - - @doc("SystemAssignedManagedIdentity Option") - SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", - - @doc("UserAssignedManagedIdentity Option") - UserAssignedManagedIdentity: "UserAssignedManagedIdentity", + ManagedIdentityMethod }; @doc("Microsoft Fabric endpoint Names properties") @@ -221,7 +200,7 @@ union DataflowEndpointFabricPathType { @doc("Kafka endpoint properties") model DataflowEndpointKafka { @doc("Authentication configuration. NOTE - only authentication property is allowed per entry.") - authentication: DataFlowEndpointKafkaAuthentication; + authentication?: DataFlowEndpointKafkaAuthentication = #{ method: KafkaAuthMethod.Anonymous }; @doc("Consumer group ID.") consumerGroupId?: string; @@ -265,22 +244,14 @@ model DataFlowEndpointKafkaAuthentication { x509Settings?: DataflowEndpointAuthenticationX509; } -#suppress "@azure-tools/typespec-autorest/union-unsupported" @doc("DataflowEndpoint Kafka Authentication Method properties") union KafkaAuthMethod { - string, - - @doc("SystemAssignedManagedIdentity Option") - SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", + ManagedIdentityMethod, + SaslMethod, + x509CertificateMethod, - @doc("UserAssignedManagedIdentity Option") - UserAssignedManagedIdentity: "UserAssignedManagedIdentity", - - @doc("Sasl Option") - Sasl: "Sasl", - - @doc("x509Certificate Option") - x509Certificate: "x509Certificate", + @doc("Anonymous Option.") + Anonymous: "Anonymous"; }; @doc("Kafka endpoint Batching properties") @@ -361,7 +332,7 @@ model DataflowEndpointLocalStorage { @doc("Broker endpoint properties") model DataflowEndpointMqtt { @doc("authentication properties. DEFAULT: kubernetes.audience=aio-mq-internal. NOTE - Enum field only property is allowed") - authentication: DataflowEndpointMqttAuthentication; + authentication?: DataflowEndpointMqttAuthentication = #{ method: MqttAuthMethod.Anonymous }; @doc("Client ID prefix. Client ID generated by the dataflow is -TBD. Optional; no prefix if omitted.") clientIdPrefix?: string; @@ -413,23 +384,14 @@ model DataflowEndpointMqttAuthentication { x509Settings?: DataflowEndpointAuthenticationX509; } -#suppress "@azure-tools/typespec-autorest/union-unsupported" @doc("DataflowEndpoint Mqtt Authentication Method properties") union MqttAuthMethod { - string, - - @doc("SystemAssignedManagedIdentity Option") - SystemAssignedManagedIdentity: "SystemAssignedManagedIdentity", - - @doc("UserAssignedManagedIdentity Option") - UserAssignedManagedIdentity: "UserAssignedManagedIdentity", - - - @doc("Sasl Option") - Sasl: "Sasl", + ManagedIdentityMethod, + SaslMethod, + x509CertificateMethod, - @doc("x509Certificate Option") - x509Certificate: "x509Certificate", + @doc("Anonymous Option.") + Anonymous: "Anonymous"; }; @doc("Broker Retain types") From a2f032c4cf23bd1e8b40f6d1d82d24b2b06b5391 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 14:51:53 -0700 Subject: [PATCH 10/16] ran tool --- ...ication_CreateOrUpdate_MaximumSet_Gen.json | 86 ++-- ...rAuthentication_Delete_MaximumSet_Gen.json | 2 +- ...okerAuthentication_Get_MaximumSet_Gen.json | 34 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ization_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- ...erAuthorization_Delete_MaximumSet_Gen.json | 2 +- ...rokerAuthorization_Get_MaximumSet_Gen.json | 26 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 28 +- ...istener_CreateOrUpdate_MaximumSet_Gen.json | 116 +++--- .../BrokerListener_Delete_MaximumSet_Gen.json | 2 +- .../BrokerListener_Get_MaximumSet_Gen.json | 44 +- ...er_ListByResourceGroup_MaximumSet_Gen.json | 44 +- .../Broker_CreateOrUpdate_MaximumSet_Gen.json | 380 +++++++++--------- .../Broker_Delete_MaximumSet_Gen.json | 2 +- .../Broker_Get_MaximumSet_Gen.json | 132 +++--- ...er_ListByResourceGroup_MaximumSet_Gen.json | 132 +++--- ...ndpoint_CreateOrUpdate_MaximumSet_Gen.json | 269 +++++++------ ...ataflowEndpoint_Delete_MaximumSet_Gen.json | 2 +- .../DataflowEndpoint_Get_MaximumSet_Gen.json | 95 ++--- ...nt_ListByResourceGroup_MaximumSet_Gen.json | 95 ++--- ...Profile_CreateOrUpdate_MaximumSet_Gen.json | 74 ++-- ...DataflowProfile_Delete_MaximumSet_Gen.json | 2 +- .../DataflowProfile_Get_MaximumSet_Gen.json | 30 +- ...le_ListByResourceGroup_MaximumSet_Gen.json | 32 +- ...ataflow_CreateOrUpdate_MaximumSet_Gen.json | 134 +++--- .../Dataflow_Delete_MaximumSet_Gen.json | 2 +- .../Dataflow_Get_MaximumSet_Gen.json | 50 +-- ..._ListByProfileResource_MaximumSet_Gen.json | 50 +-- ...nstance_CreateOrUpdate_MaximumSet_Gen.json | 54 +-- .../Instance_Delete_MaximumSet_Gen.json | 2 +- .../Instance_Get_MaximumSet_Gen.json | 24 +- ...ce_ListByResourceGroup_MaximumSet_Gen.json | 24 +- ...nce_ListBySubscription_MaximumSet_Gen.json | 24 +- .../Instance_Update_MaximumSet_Gen.json | 26 +- .../Operations_List_MaximumSet_Gen.json | 10 +- ...ication_CreateOrUpdate_MaximumSet_Gen.json | 86 ++-- ...rAuthentication_Delete_MaximumSet_Gen.json | 2 +- ...okerAuthentication_Get_MaximumSet_Gen.json | 34 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ization_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- ...erAuthorization_Delete_MaximumSet_Gen.json | 2 +- ...rokerAuthorization_Get_MaximumSet_Gen.json | 26 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 28 +- ...istener_CreateOrUpdate_MaximumSet_Gen.json | 116 +++--- .../BrokerListener_Delete_MaximumSet_Gen.json | 2 +- .../BrokerListener_Get_MaximumSet_Gen.json | 44 +- ...er_ListByResourceGroup_MaximumSet_Gen.json | 44 +- .../Broker_CreateOrUpdate_MaximumSet_Gen.json | 380 +++++++++--------- .../Broker_Delete_MaximumSet_Gen.json | 2 +- .../examples/Broker_Get_MaximumSet_Gen.json | 132 +++--- ...er_ListByResourceGroup_MaximumSet_Gen.json | 132 +++--- ...ndpoint_CreateOrUpdate_MaximumSet_Gen.json | 269 +++++++------ ...ataflowEndpoint_Delete_MaximumSet_Gen.json | 2 +- .../DataflowEndpoint_Get_MaximumSet_Gen.json | 95 ++--- ...nt_ListByResourceGroup_MaximumSet_Gen.json | 95 ++--- ...Profile_CreateOrUpdate_MaximumSet_Gen.json | 74 ++-- ...DataflowProfile_Delete_MaximumSet_Gen.json | 2 +- .../DataflowProfile_Get_MaximumSet_Gen.json | 30 +- ...le_ListByResourceGroup_MaximumSet_Gen.json | 32 +- ...ataflow_CreateOrUpdate_MaximumSet_Gen.json | 134 +++--- .../Dataflow_Delete_MaximumSet_Gen.json | 2 +- .../examples/Dataflow_Get_MaximumSet_Gen.json | 50 +-- ..._ListByProfileResource_MaximumSet_Gen.json | 50 +-- ...nstance_CreateOrUpdate_MaximumSet_Gen.json | 54 +-- .../Instance_Delete_MaximumSet_Gen.json | 2 +- .../examples/Instance_Get_MaximumSet_Gen.json | 24 +- ...ce_ListByResourceGroup_MaximumSet_Gen.json | 24 +- ...nce_ListBySubscription_MaximumSet_Gen.json | 24 +- .../Instance_Update_MaximumSet_Gen.json | 26 +- .../Operations_List_MaximumSet_Gen.json | 10 +- .../2024-08-15-preview/iotoperations.json | 289 ++++++++++--- 71 files changed, 2379 insertions(+), 2160 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json index 483a2fc78d76..fa9bfb939159 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -17,38 +17,38 @@ "auth": { "x509": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } }, - "caCertConfigMap": "bmo", + "caCertConfigMap": "ehlaje", "endpoint": "https://www.example.com", "headers": { - "key3464": "fzozntvasduuizrxrciskmfua" + "key8621": "fpmhab" } }, "serviceAccountTokenSettings": { "audiences": [ - "equincajliyhwyoqzhn" + "pe" ] }, "x509Settings": { "authorizationAttributes": { - "key6570": { + "key8417": { "attributes": { - "key9417": "zgilmkufwcnnulvdt" + "key9804": "gastmerxmuvqjpycizqetglexgaba" }, - "subject": "iduvdtbrragdrmoe" + "subject": "m" } }, - "trustedClientCaCert": "odlumjulsuogdmuh" + "trustedClientCaCert": "vkkvheqzsjmueot" } } ] }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -64,51 +64,51 @@ "auth": { "x509": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } }, - "caCertConfigMap": "bmo", + "caCertConfigMap": "ehlaje", "endpoint": "https://www.example.com", "headers": { - "key3464": "fzozntvasduuizrxrciskmfua" + "key8621": "fpmhab" } }, "serviceAccountTokenSettings": { "audiences": [ - "equincajliyhwyoqzhn" + "pe" ] }, "x509Settings": { "authorizationAttributes": { - "key6570": { + "key8417": { "attributes": { - "key9417": "zgilmkufwcnnulvdt" + "key9804": "gastmerxmuvqjpycizqetglexgaba" }, - "subject": "iduvdtbrragdrmoe" + "subject": "m" } }, - "trustedClientCaCert": "odlumjulsuogdmuh" + "trustedClientCaCert": "vkkvheqzsjmueot" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "q", - "type": "lkkdri", + "name": "izzrphovvyuixeskwunjprz", + "type": "qlbxt", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -125,51 +125,51 @@ "auth": { "x509": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } }, - "caCertConfigMap": "bmo", + "caCertConfigMap": "ehlaje", "endpoint": "https://www.example.com", "headers": { - "key3464": "fzozntvasduuizrxrciskmfua" + "key8621": "fpmhab" } }, "serviceAccountTokenSettings": { "audiences": [ - "equincajliyhwyoqzhn" + "pe" ] }, "x509Settings": { "authorizationAttributes": { - "key6570": { + "key8417": { "attributes": { - "key9417": "zgilmkufwcnnulvdt" + "key9804": "gastmerxmuvqjpycizqetglexgaba" }, - "subject": "iduvdtbrragdrmoe" + "subject": "m" } }, - "trustedClientCaCert": "odlumjulsuogdmuh" + "trustedClientCaCert": "vkkvheqzsjmueot" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "q", - "type": "lkkdri", + "name": "izzrphovvyuixeskwunjprz", + "type": "qlbxt", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json index 87a5dc4745b0..3d2a2410a7d2 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json index e395e7b0da1e..b60db0318678 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -20,51 +20,51 @@ "auth": { "x509": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } }, - "caCertConfigMap": "bmo", + "caCertConfigMap": "ehlaje", "endpoint": "https://www.example.com", "headers": { - "key3464": "fzozntvasduuizrxrciskmfua" + "key8621": "fpmhab" } }, "serviceAccountTokenSettings": { "audiences": [ - "equincajliyhwyoqzhn" + "pe" ] }, "x509Settings": { "authorizationAttributes": { - "key6570": { + "key8417": { "attributes": { - "key9417": "zgilmkufwcnnulvdt" + "key9804": "gastmerxmuvqjpycizqetglexgaba" }, - "subject": "iduvdtbrragdrmoe" + "subject": "m" } }, - "trustedClientCaCert": "odlumjulsuogdmuh" + "trustedClientCaCert": "vkkvheqzsjmueot" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "q", - "type": "lkkdri", + "name": "izzrphovvyuixeskwunjprz", + "type": "qlbxt", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json index 5b72400a541a..79676d486276 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -21,51 +21,51 @@ "auth": { "x509": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } }, - "caCertConfigMap": "bmo", + "caCertConfigMap": "ehlaje", "endpoint": "https://www.example.com", "headers": { - "key3464": "fzozntvasduuizrxrciskmfua" + "key8621": "fpmhab" } }, "serviceAccountTokenSettings": { "audiences": [ - "equincajliyhwyoqzhn" + "pe" ] }, "x509Settings": { "authorizationAttributes": { - "key6570": { + "key8417": { "attributes": { - "key9417": "zgilmkufwcnnulvdt" + "key9804": "gastmerxmuvqjpycizqetglexgaba" }, - "subject": "iduvdtbrragdrmoe" + "subject": "m" } }, - "trustedClientCaCert": "odlumjulsuogdmuh" + "trustedClientCaCert": "vkkvheqzsjmueot" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "q", - "type": "lkkdri", + "name": "izzrphovvyuixeskwunjprz", + "type": "qlbxt", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json index fe36151bbc17..937e06de0c07 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -18,28 +18,28 @@ { "method": "Connect", "topics": [ - "ogzwimxnhd" + "xutdgrerwpqwchmknvmxvrun" ] } ], "principals": { "attributes": [ { - "key3648": "kjfazjuc" + "key4726": "lnwvpswjzzdoot" } ], "clientIds": [ - "qpnkqcunkqawtthcsnwywejh" + "pkwkxfpdhbifyyopmgrtrkdkdz" ], "usernames": [ - "vwahelbubfmiu" + "gaqjiwni" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "cmxuscaalpbprjj" + "wvmrfnazvywwgtxyxfjrvnintcmyy" ], "method": "Read" } @@ -49,7 +49,7 @@ } }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -66,28 +66,28 @@ { "method": "Connect", "topics": [ - "ogzwimxnhd" + "xutdgrerwpqwchmknvmxvrun" ] } ], "principals": { "attributes": [ { - "key3648": "kjfazjuc" + "key4726": "lnwvpswjzzdoot" } ], "clientIds": [ - "qpnkqcunkqawtthcsnwywejh" + "pkwkxfpdhbifyyopmgrtrkdkdz" ], "usernames": [ - "vwahelbubfmiu" + "gaqjiwni" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "cmxuscaalpbprjj" + "wvmrfnazvywwgtxyxfjrvnintcmyy" ], "method": "Read" } @@ -98,19 +98,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "xtwcafmzyu", - "type": "agjwjflgaiobqbscdibwzqcdoysq", + "name": "iddoisfjsmpxuuvsfdalorrqwvghg", + "type": "adkawsspje", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -128,28 +128,28 @@ { "method": "Connect", "topics": [ - "ogzwimxnhd" + "xutdgrerwpqwchmknvmxvrun" ] } ], "principals": { "attributes": [ { - "key3648": "kjfazjuc" + "key4726": "lnwvpswjzzdoot" } ], "clientIds": [ - "qpnkqcunkqawtthcsnwywejh" + "pkwkxfpdhbifyyopmgrtrkdkdz" ], "usernames": [ - "vwahelbubfmiu" + "gaqjiwni" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "cmxuscaalpbprjj" + "wvmrfnazvywwgtxyxfjrvnintcmyy" ], "method": "Read" } @@ -160,19 +160,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "xtwcafmzyu", - "type": "agjwjflgaiobqbscdibwzqcdoysq", + "name": "iddoisfjsmpxuuvsfdalorrqwvghg", + "type": "adkawsspje", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json index b4d80bf55895..f6435fafce5c 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json index 333fc7eb7582..4b9c0c3d580f 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -21,28 +21,28 @@ { "method": "Connect", "topics": [ - "ogzwimxnhd" + "xutdgrerwpqwchmknvmxvrun" ] } ], "principals": { "attributes": [ { - "key3648": "kjfazjuc" + "key4726": "lnwvpswjzzdoot" } ], "clientIds": [ - "qpnkqcunkqawtthcsnwywejh" + "pkwkxfpdhbifyyopmgrtrkdkdz" ], "usernames": [ - "vwahelbubfmiu" + "gaqjiwni" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "cmxuscaalpbprjj" + "wvmrfnazvywwgtxyxfjrvnintcmyy" ], "method": "Read" } @@ -53,19 +53,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "xtwcafmzyu", - "type": "agjwjflgaiobqbscdibwzqcdoysq", + "name": "iddoisfjsmpxuuvsfdalorrqwvghg", + "type": "adkawsspje", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json index 19554ce6b78a..f9a496e53d68 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -22,28 +22,28 @@ { "method": "Connect", "topics": [ - "ogzwimxnhd" + "xutdgrerwpqwchmknvmxvrun" ] } ], "principals": { "attributes": [ { - "key3648": "kjfazjuc" + "key4726": "lnwvpswjzzdoot" } ], "clientIds": [ - "qpnkqcunkqawtthcsnwywejh" + "pkwkxfpdhbifyyopmgrtrkdkdz" ], "usernames": [ - "vwahelbubfmiu" + "gaqjiwni" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "cmxuscaalpbprjj" + "wvmrfnazvywwgtxyxfjrvnintcmyy" ], "method": "Read" } @@ -54,23 +54,23 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "xtwcafmzyu", - "type": "agjwjflgaiobqbscdibwzqcdoysq", + "name": "iddoisfjsmpxuuvsfdalorrqwvghg", + "type": "adkawsspje", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], - "nextLink": "https://microsoft.com/aydg" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json index d7d5f1d41d28..f3fbad78aa4d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json @@ -3,31 +3,31 @@ "operationId": "BrokerListener_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", "listenerName": "resource-name123", "resource": { "properties": { - "serviceName": "tukmie", + "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", "ports": [ { - "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", - "authorizationRef": "gsedztspmrndyovxcukspnke", - "nodePort": 1813, - "port": 6178, + "authenticationRef": "trgfwcosnszpwp", + "authorizationRef": "yhtzydgfzcjqvm", + "nodePort": 2397, + "port": 1144, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "khtolpival", - "secretName": "oqfiirkfuvuevtbomgfuciqyy", - "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", + "duration": "jdqukfxizabieziyo", + "secretName": "n", + "renewBefore": "hzeoo", "issuerRef": { - "group": "jbndulvftsgtlr", + "group": "jnsfykjsaedwyvgjyw", "kind": "Issuer", - "name": "epgodivyvbhzcnihztvxvhxxy" + "name": "clvbkakjpztxtyj" }, "privateKey": { "algorithm": "Ec256", @@ -35,17 +35,17 @@ }, "san": { "dns": [ - "gfayir" + "wqajdpqbbxhjhkxh" ], "ip": [ - "yy" + "zalnsa" ] } }, "manual": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } } @@ -54,7 +54,7 @@ "serviceType": "ClusterIp" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -63,24 +63,24 @@ "200": { "body": { "properties": { - "serviceName": "tukmie", + "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", "ports": [ { - "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", - "authorizationRef": "gsedztspmrndyovxcukspnke", - "nodePort": 1813, - "port": 6178, + "authenticationRef": "trgfwcosnszpwp", + "authorizationRef": "yhtzydgfzcjqvm", + "nodePort": 2397, + "port": 1144, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "khtolpival", - "secretName": "oqfiirkfuvuevtbomgfuciqyy", - "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", + "duration": "jdqukfxizabieziyo", + "secretName": "n", + "renewBefore": "hzeoo", "issuerRef": { - "group": "jbndulvftsgtlr", + "group": "jnsfykjsaedwyvgjyw", "kind": "Issuer", - "name": "epgodivyvbhzcnihztvxvhxxy" + "name": "clvbkakjpztxtyj" }, "privateKey": { "algorithm": "Ec256", @@ -88,17 +88,17 @@ }, "san": { "dns": [ - "gfayir" + "wqajdpqbbxhjhkxh" ], "ip": [ - "yy" + "zalnsa" ] } }, "manual": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } } @@ -108,19 +108,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "innpmgcbbbpacsxob", - "type": "oatlxapvaklszmk", + "name": "fbrgyiajzvsjvmltxdfomrzkc", + "type": "cgwbwnlzcfzrb", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -130,24 +130,24 @@ }, "body": { "properties": { - "serviceName": "tukmie", + "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", "ports": [ { - "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", - "authorizationRef": "gsedztspmrndyovxcukspnke", - "nodePort": 1813, - "port": 6178, + "authenticationRef": "trgfwcosnszpwp", + "authorizationRef": "yhtzydgfzcjqvm", + "nodePort": 2397, + "port": 1144, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "khtolpival", - "secretName": "oqfiirkfuvuevtbomgfuciqyy", - "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", + "duration": "jdqukfxizabieziyo", + "secretName": "n", + "renewBefore": "hzeoo", "issuerRef": { - "group": "jbndulvftsgtlr", + "group": "jnsfykjsaedwyvgjyw", "kind": "Issuer", - "name": "epgodivyvbhzcnihztvxvhxxy" + "name": "clvbkakjpztxtyj" }, "privateKey": { "algorithm": "Ec256", @@ -155,17 +155,17 @@ }, "san": { "dns": [ - "gfayir" + "wqajdpqbbxhjhkxh" ], "ip": [ - "yy" + "zalnsa" ] } }, "manual": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } } @@ -175,19 +175,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "innpmgcbbbpacsxob", - "type": "oatlxapvaklszmk", + "name": "fbrgyiajzvsjvmltxdfomrzkc", + "type": "cgwbwnlzcfzrb", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json index de42bbd16fec..ee021ca1d620 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json index 60c30529c4b5..f957cae8ba11 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -13,24 +13,24 @@ "200": { "body": { "properties": { - "serviceName": "tukmie", + "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", "ports": [ { - "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", - "authorizationRef": "gsedztspmrndyovxcukspnke", - "nodePort": 1813, - "port": 6178, + "authenticationRef": "trgfwcosnszpwp", + "authorizationRef": "yhtzydgfzcjqvm", + "nodePort": 2397, + "port": 1144, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "khtolpival", - "secretName": "oqfiirkfuvuevtbomgfuciqyy", - "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", + "duration": "jdqukfxizabieziyo", + "secretName": "n", + "renewBefore": "hzeoo", "issuerRef": { - "group": "jbndulvftsgtlr", + "group": "jnsfykjsaedwyvgjyw", "kind": "Issuer", - "name": "epgodivyvbhzcnihztvxvhxxy" + "name": "clvbkakjpztxtyj" }, "privateKey": { "algorithm": "Ec256", @@ -38,17 +38,17 @@ }, "san": { "dns": [ - "gfayir" + "wqajdpqbbxhjhkxh" ], "ip": [ - "yy" + "zalnsa" ] } }, "manual": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } } @@ -58,19 +58,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "innpmgcbbbpacsxob", - "type": "oatlxapvaklszmk", + "name": "fbrgyiajzvsjvmltxdfomrzkc", + "type": "cgwbwnlzcfzrb", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json index 2ecd9fb6fad5..fa18eebe996c 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,24 +14,24 @@ "value": [ { "properties": { - "serviceName": "tukmie", + "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", "ports": [ { - "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", - "authorizationRef": "gsedztspmrndyovxcukspnke", - "nodePort": 1813, - "port": 6178, + "authenticationRef": "trgfwcosnszpwp", + "authorizationRef": "yhtzydgfzcjqvm", + "nodePort": 2397, + "port": 1144, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "khtolpival", - "secretName": "oqfiirkfuvuevtbomgfuciqyy", - "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", + "duration": "jdqukfxizabieziyo", + "secretName": "n", + "renewBefore": "hzeoo", "issuerRef": { - "group": "jbndulvftsgtlr", + "group": "jnsfykjsaedwyvgjyw", "kind": "Issuer", - "name": "epgodivyvbhzcnihztvxvhxxy" + "name": "clvbkakjpztxtyj" }, "privateKey": { "algorithm": "Ec256", @@ -39,17 +39,17 @@ }, "san": { "dns": [ - "gfayir" + "wqajdpqbbxhjhkxh" ], "ip": [ - "yy" + "zalnsa" ] } }, "manual": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } } @@ -59,19 +59,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "innpmgcbbbpacsxob", - "type": "oatlxapvaklszmk", + "name": "fbrgyiajzvsjvmltxdfomrzkc", + "type": "cgwbwnlzcfzrb", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json index 27e34ff8c9b2..0e7f7e0f96f4 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -11,20 +11,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 4195, - "maxMessageExpirySeconds": 7100, - "maxPacketSizeBytes": 2146, + "maxSessionExpirySeconds": 145, + "maxMessageExpirySeconds": 4252, + "maxPacketSizeBytes": 8336, "subscriberQueueLimit": { - "length": 4, + "length": 18, "strategy": "None" }, - "maxReceiveMaximum": 5035, - "maxKeepAliveSeconds": 9492 + "maxReceiveMaximum": 7156, + "maxKeepAliveSeconds": 2346 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujxlaqjlmmip", - "renewBefore": "fqyeylcj", + "duration": "yqh", + "renewBefore": "fuqdxmxvxizwjpsdp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -33,46 +33,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 4, - "workers": 7 + "partitions": 7, + "redundancyFactor": 2, + "workers": 6 }, "frontend": { - "replicas": 11, - "workers": 7 + "replicas": 5, + "workers": 5 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 56, - "timeoutSeconds": 78 + "intervalSeconds": 48, + "timeoutSeconds": 69 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "cacheSizeMegabytes": 18, + "cacheSizeMegabytes": 127, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 119 + "intervalSeconds": 254 }, "spanChannelCapacity": 1000 } @@ -80,84 +80,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } }, "persistentVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } } @@ -168,7 +168,7 @@ "memoryProfile": "Tiny" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -179,20 +179,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 4195, - "maxMessageExpirySeconds": 7100, - "maxPacketSizeBytes": 2146, + "maxSessionExpirySeconds": 145, + "maxMessageExpirySeconds": 4252, + "maxPacketSizeBytes": 8336, "subscriberQueueLimit": { - "length": 4, + "length": 18, "strategy": "None" }, - "maxReceiveMaximum": 5035, - "maxKeepAliveSeconds": 9492 + "maxReceiveMaximum": 7156, + "maxKeepAliveSeconds": 2346 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujxlaqjlmmip", - "renewBefore": "fqyeylcj", + "duration": "yqh", + "renewBefore": "fuqdxmxvxizwjpsdp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -201,46 +201,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 4, - "workers": 7 + "partitions": 7, + "redundancyFactor": 2, + "workers": 6 }, "frontend": { - "replicas": 11, - "workers": 7 + "replicas": 5, + "workers": 5 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 56, - "timeoutSeconds": 78 + "intervalSeconds": 48, + "timeoutSeconds": 69 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "cacheSizeMegabytes": 18, + "cacheSizeMegabytes": 127, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 119 + "intervalSeconds": 254 }, "spanChannelCapacity": 1000 } @@ -248,84 +248,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } }, "persistentVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } } @@ -337,19 +337,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "ehgbpsukxkovanfzwcr", - "type": "xjvnpkouehsdjyruvouqpjbiqifwi", + "name": "wkkkrp", + "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -361,20 +361,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 4195, - "maxMessageExpirySeconds": 7100, - "maxPacketSizeBytes": 2146, + "maxSessionExpirySeconds": 145, + "maxMessageExpirySeconds": 4252, + "maxPacketSizeBytes": 8336, "subscriberQueueLimit": { - "length": 4, + "length": 18, "strategy": "None" }, - "maxReceiveMaximum": 5035, - "maxKeepAliveSeconds": 9492 + "maxReceiveMaximum": 7156, + "maxKeepAliveSeconds": 2346 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujxlaqjlmmip", - "renewBefore": "fqyeylcj", + "duration": "yqh", + "renewBefore": "fuqdxmxvxizwjpsdp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -383,46 +383,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 4, - "workers": 7 + "partitions": 7, + "redundancyFactor": 2, + "workers": 6 }, "frontend": { - "replicas": 11, - "workers": 7 + "replicas": 5, + "workers": 5 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 56, - "timeoutSeconds": 78 + "intervalSeconds": 48, + "timeoutSeconds": 69 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "cacheSizeMegabytes": 18, + "cacheSizeMegabytes": 127, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 119 + "intervalSeconds": 254 }, "spanChannelCapacity": 1000 } @@ -430,84 +430,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } }, "persistentVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } } @@ -519,19 +519,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "ehgbpsukxkovanfzwcr", - "type": "xjvnpkouehsdjyruvouqpjbiqifwi", + "name": "wkkkrp", + "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json index 0e3c82687a5b..0f65b93e8336 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json index e0e1b0cbdda8..84c18140d328 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,20 +14,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 4195, - "maxMessageExpirySeconds": 7100, - "maxPacketSizeBytes": 2146, + "maxSessionExpirySeconds": 145, + "maxMessageExpirySeconds": 4252, + "maxPacketSizeBytes": 8336, "subscriberQueueLimit": { - "length": 4, + "length": 18, "strategy": "None" }, - "maxReceiveMaximum": 5035, - "maxKeepAliveSeconds": 9492 + "maxReceiveMaximum": 7156, + "maxKeepAliveSeconds": 2346 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujxlaqjlmmip", - "renewBefore": "fqyeylcj", + "duration": "yqh", + "renewBefore": "fuqdxmxvxizwjpsdp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -36,46 +36,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 4, - "workers": 7 + "partitions": 7, + "redundancyFactor": 2, + "workers": 6 }, "frontend": { - "replicas": 11, - "workers": 7 + "replicas": 5, + "workers": 5 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 56, - "timeoutSeconds": 78 + "intervalSeconds": 48, + "timeoutSeconds": 69 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "cacheSizeMegabytes": 18, + "cacheSizeMegabytes": 127, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 119 + "intervalSeconds": 254 }, "spanChannelCapacity": 1000 } @@ -83,84 +83,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } }, "persistentVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } } @@ -172,19 +172,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "ehgbpsukxkovanfzwcr", - "type": "xjvnpkouehsdjyruvouqpjbiqifwi", + "name": "wkkkrp", + "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json index b616beec8cf0..7b5156de815f 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -15,20 +15,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 4195, - "maxMessageExpirySeconds": 7100, - "maxPacketSizeBytes": 2146, + "maxSessionExpirySeconds": 145, + "maxMessageExpirySeconds": 4252, + "maxPacketSizeBytes": 8336, "subscriberQueueLimit": { - "length": 4, + "length": 18, "strategy": "None" }, - "maxReceiveMaximum": 5035, - "maxKeepAliveSeconds": 9492 + "maxReceiveMaximum": 7156, + "maxKeepAliveSeconds": 2346 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujxlaqjlmmip", - "renewBefore": "fqyeylcj", + "duration": "yqh", + "renewBefore": "fuqdxmxvxizwjpsdp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -37,46 +37,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 4, - "workers": 7 + "partitions": 7, + "redundancyFactor": 2, + "workers": 6 }, "frontend": { - "replicas": 11, - "workers": 7 + "replicas": 5, + "workers": 5 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 56, - "timeoutSeconds": 78 + "intervalSeconds": 48, + "timeoutSeconds": 69 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "cacheSizeMegabytes": 18, + "cacheSizeMegabytes": 127, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 119 + "intervalSeconds": 254 }, "spanChannelCapacity": 1000 } @@ -84,84 +84,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } }, "persistentVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } } @@ -173,19 +173,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "ehgbpsukxkovanfzwcr", - "type": "xjvnpkouehsdjyruvouqpjbiqifwi", + "name": "wkkkrp", + "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json index 225f519ade47..78fdca723767 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json @@ -3,100 +3,102 @@ "operationId": "DataflowEndpoint_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123", "resource": { "properties": { + "endpointType": "DataExplorer", "dataExplorerSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "qwtkxwwdfkbua", + "database": "yipkettqtmo", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "dataLakeStorageSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" + "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" }, "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "fabricOneLakeSettings": { "authentication": { - "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" - }, + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "sfxduiehssbaryshduylrxxzp", - "workspaceName": "rgprvrdftjuwoxcjogpqz" + "lakehouseName": "v", + "workspaceName": "kvnbmveestwifriggxjohh" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "kafkaSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "consumerGroupId": "ysoriwfdu", - "host": "fagkwbmlpg", + "consumerGroupId": "dvys", + "host": "pacxrth", "batching": { "mode": "Enabled", - "latencyMs": 4523, - "maxBytes": 3640, - "maxMessages": 9785 + "latencyMs": 1742, + "maxBytes": 9062, + "maxMessages": 4566 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -104,48 +106,49 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "wg" + "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" }, "mqttSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "clientIdPrefix": "tkfxlvaausibfvouo", - "host": "bauonchyyadvoonijab", + "clientIdPrefix": "jjdavjobxwfrsoosgixo", + "host": "ezaqzuffdaflewfyhubi", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 1, + "qos": 2, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" } }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -154,94 +157,96 @@ "200": { "body": { "properties": { + "endpointType": "DataExplorer", "dataExplorerSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "qwtkxwwdfkbua", + "database": "yipkettqtmo", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "dataLakeStorageSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" + "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" }, "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "fabricOneLakeSettings": { "authentication": { - "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" - }, + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "sfxduiehssbaryshduylrxxzp", - "workspaceName": "rgprvrdftjuwoxcjogpqz" + "lakehouseName": "v", + "workspaceName": "kvnbmveestwifriggxjohh" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "kafkaSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "consumerGroupId": "ysoriwfdu", - "host": "fagkwbmlpg", + "consumerGroupId": "dvys", + "host": "pacxrth", "batching": { "mode": "Enabled", - "latencyMs": 4523, - "maxBytes": 3640, - "maxMessages": 9785 + "latencyMs": 1742, + "maxBytes": 9062, + "maxMessages": 4566 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -249,61 +254,62 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "wg" + "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" }, "mqttSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "clientIdPrefix": "tkfxlvaausibfvouo", - "host": "bauonchyyadvoonijab", + "clientIdPrefix": "jjdavjobxwfrsoosgixo", + "host": "ezaqzuffdaflewfyhubi", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 1, + "qos": 2, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "lih", - "type": "xvwxeniuiqummaldptlczvn", + "name": "dmkjez", + "type": "i", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -313,94 +319,96 @@ }, "body": { "properties": { + "endpointType": "DataExplorer", "dataExplorerSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "qwtkxwwdfkbua", + "database": "yipkettqtmo", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "dataLakeStorageSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" + "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" }, "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "fabricOneLakeSettings": { "authentication": { - "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" - }, + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "sfxduiehssbaryshduylrxxzp", - "workspaceName": "rgprvrdftjuwoxcjogpqz" + "lakehouseName": "v", + "workspaceName": "kvnbmveestwifriggxjohh" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "kafkaSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "consumerGroupId": "ysoriwfdu", - "host": "fagkwbmlpg", + "consumerGroupId": "dvys", + "host": "pacxrth", "batching": { "mode": "Enabled", - "latencyMs": 4523, - "maxBytes": 3640, - "maxMessages": 9785 + "latencyMs": 1742, + "maxBytes": 9062, + "maxMessages": 4566 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -408,61 +416,62 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "wg" + "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" }, "mqttSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "clientIdPrefix": "tkfxlvaausibfvouo", - "host": "bauonchyyadvoonijab", + "clientIdPrefix": "jjdavjobxwfrsoosgixo", + "host": "ezaqzuffdaflewfyhubi", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 1, + "qos": 2, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "lih", - "type": "xvwxeniuiqummaldptlczvn", + "name": "dmkjez", + "type": "i", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json index 125d407867d0..4ca067dc7e0e 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json index e143d80b209a..d164651cba43 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" @@ -12,94 +12,96 @@ "200": { "body": { "properties": { + "endpointType": "DataExplorer", "dataExplorerSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "qwtkxwwdfkbua", + "database": "yipkettqtmo", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "dataLakeStorageSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" + "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" }, "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "fabricOneLakeSettings": { "authentication": { - "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" - }, + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "sfxduiehssbaryshduylrxxzp", - "workspaceName": "rgprvrdftjuwoxcjogpqz" + "lakehouseName": "v", + "workspaceName": "kvnbmveestwifriggxjohh" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "kafkaSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "consumerGroupId": "ysoriwfdu", - "host": "fagkwbmlpg", + "consumerGroupId": "dvys", + "host": "pacxrth", "batching": { "mode": "Enabled", - "latencyMs": 4523, - "maxBytes": 3640, - "maxMessages": 9785 + "latencyMs": 1742, + "maxBytes": 9062, + "maxMessages": 4566 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -107,61 +109,62 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "wg" + "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" }, "mqttSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "clientIdPrefix": "tkfxlvaausibfvouo", - "host": "bauonchyyadvoonijab", + "clientIdPrefix": "jjdavjobxwfrsoosgixo", + "host": "ezaqzuffdaflewfyhubi", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 1, + "qos": 2, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "lih", - "type": "xvwxeniuiqummaldptlczvn", + "name": "dmkjez", + "type": "i", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json index d78a5bcbdc63..0eabb1f7d542 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,94 +13,96 @@ "value": [ { "properties": { + "endpointType": "DataExplorer", "dataExplorerSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "qwtkxwwdfkbua", + "database": "yipkettqtmo", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "dataLakeStorageSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" + "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" }, "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "fabricOneLakeSettings": { "authentication": { - "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" - }, + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "sfxduiehssbaryshduylrxxzp", - "workspaceName": "rgprvrdftjuwoxcjogpqz" + "lakehouseName": "v", + "workspaceName": "kvnbmveestwifriggxjohh" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "kafkaSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "consumerGroupId": "ysoriwfdu", - "host": "fagkwbmlpg", + "consumerGroupId": "dvys", + "host": "pacxrth", "batching": { "mode": "Enabled", - "latencyMs": 4523, - "maxBytes": 3640, - "maxMessages": 9785 + "latencyMs": 1742, + "maxBytes": 9062, + "maxMessages": 4566 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -108,61 +110,62 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "wg" + "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" }, "mqttSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "clientIdPrefix": "tkfxlvaausibfvouo", - "host": "bauonchyyadvoonijab", + "clientIdPrefix": "jjdavjobxwfrsoosgixo", + "host": "ezaqzuffdaflewfyhubi", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 1, + "qos": 2, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "lih", - "type": "xvwxeniuiqummaldptlczvn", + "name": "dmkjez", + "type": "i", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json index 89161542ea63..3c7ebb16eeff 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -12,24 +12,24 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 } }, "instanceCount": 8 }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -41,37 +41,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 } }, "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "cm", - "type": "oukkagxpricgrumqrvuwqr", + "name": "jugs", + "type": "aeocdanmcjoem", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -84,37 +84,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 } }, "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "cm", - "type": "oukkagxpricgrumqrvuwqr", + "name": "jugs", + "type": "aeocdanmcjoem", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json index 965d982a4e3c..8e6e9cebf120 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json index 4a64a86a7075..3e85479b299f 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -15,37 +15,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 } }, "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "cm", - "type": "oukkagxpricgrumqrvuwqr", + "name": "jugs", + "type": "aeocdanmcjoem", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json index b8faf2cbd889..440244d46979 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -16,41 +16,41 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 } }, "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "cm", - "type": "oukkagxpricgrumqrvuwqr", + "name": "jugs", + "type": "aeocdanmcjoem", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/aovp" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json index a5d8b84d2076..9d62dad28135 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -14,28 +14,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", + "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", "sourceSettings": { - "endpointRef": "gaovvlzj", - "assetRef": "aphvphogrj", + "endpointRef": "gn", + "assetRef": "o", "serializationFormat": "Json", - "schemaRef": "dnmjlynluymjswvojjllbjxgr", + "schemaRef": "syeyzvenfatddlximdquy", "dataSources": [ - "xjcxoajdlmckfpeqhwebswcqm" + "vjhmtfiorwjccfcdwg" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "libzaroihmcsgyju", + "schemaRef": "oinjowaif", "datasets": [ { - "key": "nvjdisvdmv", + "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", + "schemaRef": "ayufirtwqphvshhxto", "inputs": [ - "ibbbcpwtkagrmnlhlotxezzukrce" + "pmcxzunkawpjxthlmk" ], - "expression": "uvupajvsdwyuizzkzewso" + "expression": "noskhlmqyrvtlhjsncmq" } ], "filter": [ @@ -43,9 +43,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "seursxtiwbqbbwmgtevalci" + "qgqcrczayiuhlskihph" ], - "expression": "wtqxdywahscjkicwm" + "expression": "kdrfnrdbm" } ], "map": [ @@ -53,22 +53,22 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tioaw" + "eo" ], - "expression": "uqjptevicvqlvsitsorz", - "output": "ny" + "expression": "mdkfrm", + "output": "covplwowkjnsl" } ] }, "destinationSettings": { - "endpointRef": "vhaseguckihyob", - "dataDestination": "ieokgk" + "endpointRef": "jquecpebujuglesucsk", + "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" } } ] }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -81,28 +81,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", + "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", "sourceSettings": { - "endpointRef": "gaovvlzj", - "assetRef": "aphvphogrj", + "endpointRef": "gn", + "assetRef": "o", "serializationFormat": "Json", - "schemaRef": "dnmjlynluymjswvojjllbjxgr", + "schemaRef": "syeyzvenfatddlximdquy", "dataSources": [ - "xjcxoajdlmckfpeqhwebswcqm" + "vjhmtfiorwjccfcdwg" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "libzaroihmcsgyju", + "schemaRef": "oinjowaif", "datasets": [ { - "key": "nvjdisvdmv", + "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", + "schemaRef": "ayufirtwqphvshhxto", "inputs": [ - "ibbbcpwtkagrmnlhlotxezzukrce" + "pmcxzunkawpjxthlmk" ], - "expression": "uvupajvsdwyuizzkzewso" + "expression": "noskhlmqyrvtlhjsncmq" } ], "filter": [ @@ -110,9 +110,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "seursxtiwbqbbwmgtevalci" + "qgqcrczayiuhlskihph" ], - "expression": "wtqxdywahscjkicwm" + "expression": "kdrfnrdbm" } ], "map": [ @@ -120,35 +120,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tioaw" + "eo" ], - "expression": "uqjptevicvqlvsitsorz", - "output": "ny" + "expression": "mdkfrm", + "output": "covplwowkjnsl" } ] }, "destinationSettings": { - "endpointRef": "vhaseguckihyob", - "dataDestination": "ieokgk" + "endpointRef": "jquecpebujuglesucsk", + "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mhaohkrsxemppadrspgsxrxeamifmg", - "type": "ltkpkuspdwlviwldmruscnruggjrtq", + "name": "jvxagylmwrzufelrrlhycwirdi", + "type": "plohcjrtnmss", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -162,28 +162,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", + "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", "sourceSettings": { - "endpointRef": "gaovvlzj", - "assetRef": "aphvphogrj", + "endpointRef": "gn", + "assetRef": "o", "serializationFormat": "Json", - "schemaRef": "dnmjlynluymjswvojjllbjxgr", + "schemaRef": "syeyzvenfatddlximdquy", "dataSources": [ - "xjcxoajdlmckfpeqhwebswcqm" + "vjhmtfiorwjccfcdwg" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "libzaroihmcsgyju", + "schemaRef": "oinjowaif", "datasets": [ { - "key": "nvjdisvdmv", + "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", + "schemaRef": "ayufirtwqphvshhxto", "inputs": [ - "ibbbcpwtkagrmnlhlotxezzukrce" + "pmcxzunkawpjxthlmk" ], - "expression": "uvupajvsdwyuizzkzewso" + "expression": "noskhlmqyrvtlhjsncmq" } ], "filter": [ @@ -191,9 +191,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "seursxtiwbqbbwmgtevalci" + "qgqcrczayiuhlskihph" ], - "expression": "wtqxdywahscjkicwm" + "expression": "kdrfnrdbm" } ], "map": [ @@ -201,35 +201,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tioaw" + "eo" ], - "expression": "uqjptevicvqlvsitsorz", - "output": "ny" + "expression": "mdkfrm", + "output": "covplwowkjnsl" } ] }, "destinationSettings": { - "endpointRef": "vhaseguckihyob", - "dataDestination": "ieokgk" + "endpointRef": "jquecpebujuglesucsk", + "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mhaohkrsxemppadrspgsxrxeamifmg", - "type": "ltkpkuspdwlviwldmruscnruggjrtq", + "name": "jvxagylmwrzufelrrlhycwirdi", + "type": "plohcjrtnmss", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json index fc3c0fb93c4f..a1d78104dc6d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json index 61710401bb67..26b8bc73ab53 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -17,28 +17,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", + "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", "sourceSettings": { - "endpointRef": "gaovvlzj", - "assetRef": "aphvphogrj", + "endpointRef": "gn", + "assetRef": "o", "serializationFormat": "Json", - "schemaRef": "dnmjlynluymjswvojjllbjxgr", + "schemaRef": "syeyzvenfatddlximdquy", "dataSources": [ - "xjcxoajdlmckfpeqhwebswcqm" + "vjhmtfiorwjccfcdwg" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "libzaroihmcsgyju", + "schemaRef": "oinjowaif", "datasets": [ { - "key": "nvjdisvdmv", + "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", + "schemaRef": "ayufirtwqphvshhxto", "inputs": [ - "ibbbcpwtkagrmnlhlotxezzukrce" + "pmcxzunkawpjxthlmk" ], - "expression": "uvupajvsdwyuizzkzewso" + "expression": "noskhlmqyrvtlhjsncmq" } ], "filter": [ @@ -46,9 +46,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "seursxtiwbqbbwmgtevalci" + "qgqcrczayiuhlskihph" ], - "expression": "wtqxdywahscjkicwm" + "expression": "kdrfnrdbm" } ], "map": [ @@ -56,35 +56,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tioaw" + "eo" ], - "expression": "uqjptevicvqlvsitsorz", - "output": "ny" + "expression": "mdkfrm", + "output": "covplwowkjnsl" } ] }, "destinationSettings": { - "endpointRef": "vhaseguckihyob", - "dataDestination": "ieokgk" + "endpointRef": "jquecpebujuglesucsk", + "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mhaohkrsxemppadrspgsxrxeamifmg", - "type": "ltkpkuspdwlviwldmruscnruggjrtq", + "name": "jvxagylmwrzufelrrlhycwirdi", + "type": "plohcjrtnmss", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json index 1fe8453d4f54..b65bd6dd5902 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_ListByProfileResource", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -18,28 +18,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", + "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", "sourceSettings": { - "endpointRef": "gaovvlzj", - "assetRef": "aphvphogrj", + "endpointRef": "gn", + "assetRef": "o", "serializationFormat": "Json", - "schemaRef": "dnmjlynluymjswvojjllbjxgr", + "schemaRef": "syeyzvenfatddlximdquy", "dataSources": [ - "xjcxoajdlmckfpeqhwebswcqm" + "vjhmtfiorwjccfcdwg" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "libzaroihmcsgyju", + "schemaRef": "oinjowaif", "datasets": [ { - "key": "nvjdisvdmv", + "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", + "schemaRef": "ayufirtwqphvshhxto", "inputs": [ - "ibbbcpwtkagrmnlhlotxezzukrce" + "pmcxzunkawpjxthlmk" ], - "expression": "uvupajvsdwyuizzkzewso" + "expression": "noskhlmqyrvtlhjsncmq" } ], "filter": [ @@ -47,9 +47,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "seursxtiwbqbbwmgtevalci" + "qgqcrczayiuhlskihph" ], - "expression": "wtqxdywahscjkicwm" + "expression": "kdrfnrdbm" } ], "map": [ @@ -57,35 +57,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tioaw" + "eo" ], - "expression": "uqjptevicvqlvsitsorz", - "output": "ny" + "expression": "mdkfrm", + "output": "covplwowkjnsl" } ] }, "destinationSettings": { - "endpointRef": "vhaseguckihyob", - "dataDestination": "ieokgk" + "endpointRef": "jquecpebujuglesucsk", + "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mhaohkrsxemppadrspgsxrxeamifmg", - "type": "ltkpkuspdwlviwldmruscnruggjrtq", + "name": "jvxagylmwrzufelrrlhycwirdi", + "type": "plohcjrtnmss", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json index b9b3af1609eb..cddae2a40b99 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "resource": { @@ -12,19 +12,19 @@ "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { "type": "None", "userAssignedIdentities": { - "key4529": {} + "key8843": {} } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq" + "location": "ipkkgxoxcnqqtw" } }, "responses": { @@ -33,11 +33,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -45,26 +45,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -76,11 +76,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -88,26 +88,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json index 49f3598e76cf..9c1e84ff63c9 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json index b73700d8ba94..a0d7d97ec9fb 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -25,26 +25,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json index 41fc4ed96a59..c07903ab2126 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations" }, "responses": { @@ -14,11 +14,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -26,26 +26,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json index 19afd090d2b1..3a6eeb5072a3 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListBySubscription", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF" + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E" }, "responses": { "200": { @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -25,26 +25,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json index 8e79eba0bd65..10c3dbb7fead 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json @@ -3,12 +3,12 @@ "operationId": "Instance_Update", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "properties": { "tags": { - "key9010": "ibmnymdbpqkdaaxklvuqfconyw" + "key8540": "gtgywaslfwdemktth" } } }, @@ -18,11 +18,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -30,26 +30,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json index f297514f9349..20b22da974da 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json @@ -9,19 +9,19 @@ "body": { "value": [ { - "name": "nglqhjcqjvfosgemdrss", + "name": "lk", "isDataAction": true, "display": { - "provider": "zoqwxmywupxchjozxxwkekastepmng", - "resource": "byujwtehrvhwvh", - "operation": "itklrbcr", + "provider": "wygjphpv", + "resource": "vtqbaemzffskmftfobbokxtepgjsg", + "operation": "fumjunhjrk", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit." }, "origin": "user", "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/amtlkv" + "nextLink": "https://microsoft.com/acroicd" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json index 483a2fc78d76..fa9bfb939159 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -17,38 +17,38 @@ "auth": { "x509": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } }, - "caCertConfigMap": "bmo", + "caCertConfigMap": "ehlaje", "endpoint": "https://www.example.com", "headers": { - "key3464": "fzozntvasduuizrxrciskmfua" + "key8621": "fpmhab" } }, "serviceAccountTokenSettings": { "audiences": [ - "equincajliyhwyoqzhn" + "pe" ] }, "x509Settings": { "authorizationAttributes": { - "key6570": { + "key8417": { "attributes": { - "key9417": "zgilmkufwcnnulvdt" + "key9804": "gastmerxmuvqjpycizqetglexgaba" }, - "subject": "iduvdtbrragdrmoe" + "subject": "m" } }, - "trustedClientCaCert": "odlumjulsuogdmuh" + "trustedClientCaCert": "vkkvheqzsjmueot" } } ] }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -64,51 +64,51 @@ "auth": { "x509": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } }, - "caCertConfigMap": "bmo", + "caCertConfigMap": "ehlaje", "endpoint": "https://www.example.com", "headers": { - "key3464": "fzozntvasduuizrxrciskmfua" + "key8621": "fpmhab" } }, "serviceAccountTokenSettings": { "audiences": [ - "equincajliyhwyoqzhn" + "pe" ] }, "x509Settings": { "authorizationAttributes": { - "key6570": { + "key8417": { "attributes": { - "key9417": "zgilmkufwcnnulvdt" + "key9804": "gastmerxmuvqjpycizqetglexgaba" }, - "subject": "iduvdtbrragdrmoe" + "subject": "m" } }, - "trustedClientCaCert": "odlumjulsuogdmuh" + "trustedClientCaCert": "vkkvheqzsjmueot" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "q", - "type": "lkkdri", + "name": "izzrphovvyuixeskwunjprz", + "type": "qlbxt", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -125,51 +125,51 @@ "auth": { "x509": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } }, - "caCertConfigMap": "bmo", + "caCertConfigMap": "ehlaje", "endpoint": "https://www.example.com", "headers": { - "key3464": "fzozntvasduuizrxrciskmfua" + "key8621": "fpmhab" } }, "serviceAccountTokenSettings": { "audiences": [ - "equincajliyhwyoqzhn" + "pe" ] }, "x509Settings": { "authorizationAttributes": { - "key6570": { + "key8417": { "attributes": { - "key9417": "zgilmkufwcnnulvdt" + "key9804": "gastmerxmuvqjpycizqetglexgaba" }, - "subject": "iduvdtbrragdrmoe" + "subject": "m" } }, - "trustedClientCaCert": "odlumjulsuogdmuh" + "trustedClientCaCert": "vkkvheqzsjmueot" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "q", - "type": "lkkdri", + "name": "izzrphovvyuixeskwunjprz", + "type": "qlbxt", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json index 87a5dc4745b0..3d2a2410a7d2 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json index e395e7b0da1e..b60db0318678 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -20,51 +20,51 @@ "auth": { "x509": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } }, - "caCertConfigMap": "bmo", + "caCertConfigMap": "ehlaje", "endpoint": "https://www.example.com", "headers": { - "key3464": "fzozntvasduuizrxrciskmfua" + "key8621": "fpmhab" } }, "serviceAccountTokenSettings": { "audiences": [ - "equincajliyhwyoqzhn" + "pe" ] }, "x509Settings": { "authorizationAttributes": { - "key6570": { + "key8417": { "attributes": { - "key9417": "zgilmkufwcnnulvdt" + "key9804": "gastmerxmuvqjpycizqetglexgaba" }, - "subject": "iduvdtbrragdrmoe" + "subject": "m" } }, - "trustedClientCaCert": "odlumjulsuogdmuh" + "trustedClientCaCert": "vkkvheqzsjmueot" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "q", - "type": "lkkdri", + "name": "izzrphovvyuixeskwunjprz", + "type": "qlbxt", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json index 5b72400a541a..79676d486276 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -21,51 +21,51 @@ "auth": { "x509": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } }, - "caCertConfigMap": "bmo", + "caCertConfigMap": "ehlaje", "endpoint": "https://www.example.com", "headers": { - "key3464": "fzozntvasduuizrxrciskmfua" + "key8621": "fpmhab" } }, "serviceAccountTokenSettings": { "audiences": [ - "equincajliyhwyoqzhn" + "pe" ] }, "x509Settings": { "authorizationAttributes": { - "key6570": { + "key8417": { "attributes": { - "key9417": "zgilmkufwcnnulvdt" + "key9804": "gastmerxmuvqjpycizqetglexgaba" }, - "subject": "iduvdtbrragdrmoe" + "subject": "m" } }, - "trustedClientCaCert": "odlumjulsuogdmuh" + "trustedClientCaCert": "vkkvheqzsjmueot" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "q", - "type": "lkkdri", + "name": "izzrphovvyuixeskwunjprz", + "type": "qlbxt", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json index fe36151bbc17..937e06de0c07 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -18,28 +18,28 @@ { "method": "Connect", "topics": [ - "ogzwimxnhd" + "xutdgrerwpqwchmknvmxvrun" ] } ], "principals": { "attributes": [ { - "key3648": "kjfazjuc" + "key4726": "lnwvpswjzzdoot" } ], "clientIds": [ - "qpnkqcunkqawtthcsnwywejh" + "pkwkxfpdhbifyyopmgrtrkdkdz" ], "usernames": [ - "vwahelbubfmiu" + "gaqjiwni" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "cmxuscaalpbprjj" + "wvmrfnazvywwgtxyxfjrvnintcmyy" ], "method": "Read" } @@ -49,7 +49,7 @@ } }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -66,28 +66,28 @@ { "method": "Connect", "topics": [ - "ogzwimxnhd" + "xutdgrerwpqwchmknvmxvrun" ] } ], "principals": { "attributes": [ { - "key3648": "kjfazjuc" + "key4726": "lnwvpswjzzdoot" } ], "clientIds": [ - "qpnkqcunkqawtthcsnwywejh" + "pkwkxfpdhbifyyopmgrtrkdkdz" ], "usernames": [ - "vwahelbubfmiu" + "gaqjiwni" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "cmxuscaalpbprjj" + "wvmrfnazvywwgtxyxfjrvnintcmyy" ], "method": "Read" } @@ -98,19 +98,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "xtwcafmzyu", - "type": "agjwjflgaiobqbscdibwzqcdoysq", + "name": "iddoisfjsmpxuuvsfdalorrqwvghg", + "type": "adkawsspje", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -128,28 +128,28 @@ { "method": "Connect", "topics": [ - "ogzwimxnhd" + "xutdgrerwpqwchmknvmxvrun" ] } ], "principals": { "attributes": [ { - "key3648": "kjfazjuc" + "key4726": "lnwvpswjzzdoot" } ], "clientIds": [ - "qpnkqcunkqawtthcsnwywejh" + "pkwkxfpdhbifyyopmgrtrkdkdz" ], "usernames": [ - "vwahelbubfmiu" + "gaqjiwni" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "cmxuscaalpbprjj" + "wvmrfnazvywwgtxyxfjrvnintcmyy" ], "method": "Read" } @@ -160,19 +160,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "xtwcafmzyu", - "type": "agjwjflgaiobqbscdibwzqcdoysq", + "name": "iddoisfjsmpxuuvsfdalorrqwvghg", + "type": "adkawsspje", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json index b4d80bf55895..f6435fafce5c 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json index 333fc7eb7582..4b9c0c3d580f 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -21,28 +21,28 @@ { "method": "Connect", "topics": [ - "ogzwimxnhd" + "xutdgrerwpqwchmknvmxvrun" ] } ], "principals": { "attributes": [ { - "key3648": "kjfazjuc" + "key4726": "lnwvpswjzzdoot" } ], "clientIds": [ - "qpnkqcunkqawtthcsnwywejh" + "pkwkxfpdhbifyyopmgrtrkdkdz" ], "usernames": [ - "vwahelbubfmiu" + "gaqjiwni" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "cmxuscaalpbprjj" + "wvmrfnazvywwgtxyxfjrvnintcmyy" ], "method": "Read" } @@ -53,19 +53,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "xtwcafmzyu", - "type": "agjwjflgaiobqbscdibwzqcdoysq", + "name": "iddoisfjsmpxuuvsfdalorrqwvghg", + "type": "adkawsspje", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json index 19554ce6b78a..f9a496e53d68 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -22,28 +22,28 @@ { "method": "Connect", "topics": [ - "ogzwimxnhd" + "xutdgrerwpqwchmknvmxvrun" ] } ], "principals": { "attributes": [ { - "key3648": "kjfazjuc" + "key4726": "lnwvpswjzzdoot" } ], "clientIds": [ - "qpnkqcunkqawtthcsnwywejh" + "pkwkxfpdhbifyyopmgrtrkdkdz" ], "usernames": [ - "vwahelbubfmiu" + "gaqjiwni" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "cmxuscaalpbprjj" + "wvmrfnazvywwgtxyxfjrvnintcmyy" ], "method": "Read" } @@ -54,23 +54,23 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "xtwcafmzyu", - "type": "agjwjflgaiobqbscdibwzqcdoysq", + "name": "iddoisfjsmpxuuvsfdalorrqwvghg", + "type": "adkawsspje", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], - "nextLink": "https://microsoft.com/aydg" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json index d7d5f1d41d28..f3fbad78aa4d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json @@ -3,31 +3,31 @@ "operationId": "BrokerListener_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", "listenerName": "resource-name123", "resource": { "properties": { - "serviceName": "tukmie", + "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", "ports": [ { - "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", - "authorizationRef": "gsedztspmrndyovxcukspnke", - "nodePort": 1813, - "port": 6178, + "authenticationRef": "trgfwcosnszpwp", + "authorizationRef": "yhtzydgfzcjqvm", + "nodePort": 2397, + "port": 1144, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "khtolpival", - "secretName": "oqfiirkfuvuevtbomgfuciqyy", - "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", + "duration": "jdqukfxizabieziyo", + "secretName": "n", + "renewBefore": "hzeoo", "issuerRef": { - "group": "jbndulvftsgtlr", + "group": "jnsfykjsaedwyvgjyw", "kind": "Issuer", - "name": "epgodivyvbhzcnihztvxvhxxy" + "name": "clvbkakjpztxtyj" }, "privateKey": { "algorithm": "Ec256", @@ -35,17 +35,17 @@ }, "san": { "dns": [ - "gfayir" + "wqajdpqbbxhjhkxh" ], "ip": [ - "yy" + "zalnsa" ] } }, "manual": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } } @@ -54,7 +54,7 @@ "serviceType": "ClusterIp" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -63,24 +63,24 @@ "200": { "body": { "properties": { - "serviceName": "tukmie", + "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", "ports": [ { - "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", - "authorizationRef": "gsedztspmrndyovxcukspnke", - "nodePort": 1813, - "port": 6178, + "authenticationRef": "trgfwcosnszpwp", + "authorizationRef": "yhtzydgfzcjqvm", + "nodePort": 2397, + "port": 1144, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "khtolpival", - "secretName": "oqfiirkfuvuevtbomgfuciqyy", - "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", + "duration": "jdqukfxizabieziyo", + "secretName": "n", + "renewBefore": "hzeoo", "issuerRef": { - "group": "jbndulvftsgtlr", + "group": "jnsfykjsaedwyvgjyw", "kind": "Issuer", - "name": "epgodivyvbhzcnihztvxvhxxy" + "name": "clvbkakjpztxtyj" }, "privateKey": { "algorithm": "Ec256", @@ -88,17 +88,17 @@ }, "san": { "dns": [ - "gfayir" + "wqajdpqbbxhjhkxh" ], "ip": [ - "yy" + "zalnsa" ] } }, "manual": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } } @@ -108,19 +108,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "innpmgcbbbpacsxob", - "type": "oatlxapvaklszmk", + "name": "fbrgyiajzvsjvmltxdfomrzkc", + "type": "cgwbwnlzcfzrb", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -130,24 +130,24 @@ }, "body": { "properties": { - "serviceName": "tukmie", + "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", "ports": [ { - "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", - "authorizationRef": "gsedztspmrndyovxcukspnke", - "nodePort": 1813, - "port": 6178, + "authenticationRef": "trgfwcosnszpwp", + "authorizationRef": "yhtzydgfzcjqvm", + "nodePort": 2397, + "port": 1144, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "khtolpival", - "secretName": "oqfiirkfuvuevtbomgfuciqyy", - "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", + "duration": "jdqukfxizabieziyo", + "secretName": "n", + "renewBefore": "hzeoo", "issuerRef": { - "group": "jbndulvftsgtlr", + "group": "jnsfykjsaedwyvgjyw", "kind": "Issuer", - "name": "epgodivyvbhzcnihztvxvhxxy" + "name": "clvbkakjpztxtyj" }, "privateKey": { "algorithm": "Ec256", @@ -155,17 +155,17 @@ }, "san": { "dns": [ - "gfayir" + "wqajdpqbbxhjhkxh" ], "ip": [ - "yy" + "zalnsa" ] } }, "manual": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } } @@ -175,19 +175,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "innpmgcbbbpacsxob", - "type": "oatlxapvaklszmk", + "name": "fbrgyiajzvsjvmltxdfomrzkc", + "type": "cgwbwnlzcfzrb", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json index de42bbd16fec..ee021ca1d620 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json index 60c30529c4b5..f957cae8ba11 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -13,24 +13,24 @@ "200": { "body": { "properties": { - "serviceName": "tukmie", + "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", "ports": [ { - "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", - "authorizationRef": "gsedztspmrndyovxcukspnke", - "nodePort": 1813, - "port": 6178, + "authenticationRef": "trgfwcosnszpwp", + "authorizationRef": "yhtzydgfzcjqvm", + "nodePort": 2397, + "port": 1144, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "khtolpival", - "secretName": "oqfiirkfuvuevtbomgfuciqyy", - "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", + "duration": "jdqukfxizabieziyo", + "secretName": "n", + "renewBefore": "hzeoo", "issuerRef": { - "group": "jbndulvftsgtlr", + "group": "jnsfykjsaedwyvgjyw", "kind": "Issuer", - "name": "epgodivyvbhzcnihztvxvhxxy" + "name": "clvbkakjpztxtyj" }, "privateKey": { "algorithm": "Ec256", @@ -38,17 +38,17 @@ }, "san": { "dns": [ - "gfayir" + "wqajdpqbbxhjhkxh" ], "ip": [ - "yy" + "zalnsa" ] } }, "manual": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } } @@ -58,19 +58,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "innpmgcbbbpacsxob", - "type": "oatlxapvaklszmk", + "name": "fbrgyiajzvsjvmltxdfomrzkc", + "type": "cgwbwnlzcfzrb", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json index 2ecd9fb6fad5..fa18eebe996c 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,24 +14,24 @@ "value": [ { "properties": { - "serviceName": "tukmie", + "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", "ports": [ { - "authenticationRef": "efjdxwsnmgwvqoklhyjmbwtrnenwj", - "authorizationRef": "gsedztspmrndyovxcukspnke", - "nodePort": 1813, - "port": 6178, + "authenticationRef": "trgfwcosnszpwp", + "authorizationRef": "yhtzydgfzcjqvm", + "nodePort": 2397, + "port": 1144, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "khtolpival", - "secretName": "oqfiirkfuvuevtbomgfuciqyy", - "renewBefore": "yvkniswbjctpkaynevnhdiiocanpni", + "duration": "jdqukfxizabieziyo", + "secretName": "n", + "renewBefore": "hzeoo", "issuerRef": { - "group": "jbndulvftsgtlr", + "group": "jnsfykjsaedwyvgjyw", "kind": "Issuer", - "name": "epgodivyvbhzcnihztvxvhxxy" + "name": "clvbkakjpztxtyj" }, "privateKey": { "algorithm": "Ec256", @@ -39,17 +39,17 @@ }, "san": { "dns": [ - "gfayir" + "wqajdpqbbxhjhkxh" ], "ip": [ - "yy" + "zalnsa" ] } }, "manual": { "secretRef": { - "name": "cnjiqhzfrdnglkfpkqoy", - "namespace": "ukkbjemqrjeknopm" + "name": "zcqbtwcpyazcvjxlvrousk", + "namespace": "nbfvgjlnhmhviceh" } } } @@ -59,19 +59,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "innpmgcbbbpacsxob", - "type": "oatlxapvaklszmk", + "name": "fbrgyiajzvsjvmltxdfomrzkc", + "type": "cgwbwnlzcfzrb", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json index 27e34ff8c9b2..0e7f7e0f96f4 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -11,20 +11,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 4195, - "maxMessageExpirySeconds": 7100, - "maxPacketSizeBytes": 2146, + "maxSessionExpirySeconds": 145, + "maxMessageExpirySeconds": 4252, + "maxPacketSizeBytes": 8336, "subscriberQueueLimit": { - "length": 4, + "length": 18, "strategy": "None" }, - "maxReceiveMaximum": 5035, - "maxKeepAliveSeconds": 9492 + "maxReceiveMaximum": 7156, + "maxKeepAliveSeconds": 2346 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujxlaqjlmmip", - "renewBefore": "fqyeylcj", + "duration": "yqh", + "renewBefore": "fuqdxmxvxizwjpsdp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -33,46 +33,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 4, - "workers": 7 + "partitions": 7, + "redundancyFactor": 2, + "workers": 6 }, "frontend": { - "replicas": 11, - "workers": 7 + "replicas": 5, + "workers": 5 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 56, - "timeoutSeconds": 78 + "intervalSeconds": 48, + "timeoutSeconds": 69 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "cacheSizeMegabytes": 18, + "cacheSizeMegabytes": 127, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 119 + "intervalSeconds": 254 }, "spanChannelCapacity": 1000 } @@ -80,84 +80,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } }, "persistentVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } } @@ -168,7 +168,7 @@ "memoryProfile": "Tiny" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -179,20 +179,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 4195, - "maxMessageExpirySeconds": 7100, - "maxPacketSizeBytes": 2146, + "maxSessionExpirySeconds": 145, + "maxMessageExpirySeconds": 4252, + "maxPacketSizeBytes": 8336, "subscriberQueueLimit": { - "length": 4, + "length": 18, "strategy": "None" }, - "maxReceiveMaximum": 5035, - "maxKeepAliveSeconds": 9492 + "maxReceiveMaximum": 7156, + "maxKeepAliveSeconds": 2346 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujxlaqjlmmip", - "renewBefore": "fqyeylcj", + "duration": "yqh", + "renewBefore": "fuqdxmxvxizwjpsdp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -201,46 +201,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 4, - "workers": 7 + "partitions": 7, + "redundancyFactor": 2, + "workers": 6 }, "frontend": { - "replicas": 11, - "workers": 7 + "replicas": 5, + "workers": 5 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 56, - "timeoutSeconds": 78 + "intervalSeconds": 48, + "timeoutSeconds": 69 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "cacheSizeMegabytes": 18, + "cacheSizeMegabytes": 127, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 119 + "intervalSeconds": 254 }, "spanChannelCapacity": 1000 } @@ -248,84 +248,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } }, "persistentVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } } @@ -337,19 +337,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "ehgbpsukxkovanfzwcr", - "type": "xjvnpkouehsdjyruvouqpjbiqifwi", + "name": "wkkkrp", + "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -361,20 +361,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 4195, - "maxMessageExpirySeconds": 7100, - "maxPacketSizeBytes": 2146, + "maxSessionExpirySeconds": 145, + "maxMessageExpirySeconds": 4252, + "maxPacketSizeBytes": 8336, "subscriberQueueLimit": { - "length": 4, + "length": 18, "strategy": "None" }, - "maxReceiveMaximum": 5035, - "maxKeepAliveSeconds": 9492 + "maxReceiveMaximum": 7156, + "maxKeepAliveSeconds": 2346 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujxlaqjlmmip", - "renewBefore": "fqyeylcj", + "duration": "yqh", + "renewBefore": "fuqdxmxvxizwjpsdp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -383,46 +383,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 4, - "workers": 7 + "partitions": 7, + "redundancyFactor": 2, + "workers": 6 }, "frontend": { - "replicas": 11, - "workers": 7 + "replicas": 5, + "workers": 5 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 56, - "timeoutSeconds": 78 + "intervalSeconds": 48, + "timeoutSeconds": 69 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "cacheSizeMegabytes": 18, + "cacheSizeMegabytes": 127, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 119 + "intervalSeconds": 254 }, "spanChannelCapacity": 1000 } @@ -430,84 +430,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } }, "persistentVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } } @@ -519,19 +519,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "ehgbpsukxkovanfzwcr", - "type": "xjvnpkouehsdjyruvouqpjbiqifwi", + "name": "wkkkrp", + "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json index 0e3c82687a5b..0f65b93e8336 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json index e0e1b0cbdda8..84c18140d328 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,20 +14,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 4195, - "maxMessageExpirySeconds": 7100, - "maxPacketSizeBytes": 2146, + "maxSessionExpirySeconds": 145, + "maxMessageExpirySeconds": 4252, + "maxPacketSizeBytes": 8336, "subscriberQueueLimit": { - "length": 4, + "length": 18, "strategy": "None" }, - "maxReceiveMaximum": 5035, - "maxKeepAliveSeconds": 9492 + "maxReceiveMaximum": 7156, + "maxKeepAliveSeconds": 2346 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujxlaqjlmmip", - "renewBefore": "fqyeylcj", + "duration": "yqh", + "renewBefore": "fuqdxmxvxizwjpsdp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -36,46 +36,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 4, - "workers": 7 + "partitions": 7, + "redundancyFactor": 2, + "workers": 6 }, "frontend": { - "replicas": 11, - "workers": 7 + "replicas": 5, + "workers": 5 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 56, - "timeoutSeconds": 78 + "intervalSeconds": 48, + "timeoutSeconds": 69 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "cacheSizeMegabytes": 18, + "cacheSizeMegabytes": 127, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 119 + "intervalSeconds": 254 }, "spanChannelCapacity": 1000 } @@ -83,84 +83,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } }, "persistentVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } } @@ -172,19 +172,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "ehgbpsukxkovanfzwcr", - "type": "xjvnpkouehsdjyruvouqpjbiqifwi", + "name": "wkkkrp", + "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json index b616beec8cf0..7b5156de815f 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -15,20 +15,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 4195, - "maxMessageExpirySeconds": 7100, - "maxPacketSizeBytes": 2146, + "maxSessionExpirySeconds": 145, + "maxMessageExpirySeconds": 4252, + "maxPacketSizeBytes": 8336, "subscriberQueueLimit": { - "length": 4, + "length": 18, "strategy": "None" }, - "maxReceiveMaximum": 5035, - "maxKeepAliveSeconds": 9492 + "maxReceiveMaximum": 7156, + "maxKeepAliveSeconds": 2346 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "ujxlaqjlmmip", - "renewBefore": "fqyeylcj", + "duration": "yqh", + "renewBefore": "fuqdxmxvxizwjpsdp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -37,46 +37,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 4, - "workers": 7 + "partitions": 7, + "redundancyFactor": 2, + "workers": 6 }, "frontend": { - "replicas": 11, - "workers": 7 + "replicas": 5, + "workers": 5 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 56, - "timeoutSeconds": 78 + "intervalSeconds": 48, + "timeoutSeconds": 69 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "cacheSizeMegabytes": 18, + "cacheSizeMegabytes": 127, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 119 + "intervalSeconds": 254 }, "spanChannelCapacity": 1000 } @@ -84,84 +84,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } }, "persistentVolumeClaimSpec": { - "volumeName": "vykvsbirnlgoeio", - "volumeMode": "txrnwrdpui", - "storageClassName": "dvymebogyuqxyhawsifvsa", + "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", + "volumeMode": "qv", + "storageClassName": "rejs", "accessModes": [ - "douhjwelnfmvbrv" + "syqypztjuc" ], "dataSource": { - "apiGroup": "uftayycewjufurmtlwxijymhh", - "kind": "fqqhu", - "name": "xoorzkujquclmnexdmodz" + "apiGroup": "lbtzvh", + "kind": "resjzfuxcihkxjsrqhunss", + "name": "gpddvpgsblom" }, "dataSourceRef": { - "apiGroup": "knsowyhog", - "kind": "ejht", - "name": "iwyovzfgmdgkfrdpargignpc", - "namespace": "paqciccuinoetmisszmycgr" + "apiGroup": "ymojfaizrgtwngtktpxg", + "kind": "tseoncnurpneisopojqithrv", + "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", + "namespace": "df" }, "resources": { "limits": { - "key5742": "undwleolextverhrqnbxusamfr" + "key6310": "unnbqssgtj" }, "requests": { - "key7328": "wfsqwfrfjmliyrewbi" + "key1011": "iyctcfcboqhjorsha" } }, "selector": { "matchExpressions": [ { - "key": "xbgufhwcacricgffe", + "key": "xlybrpyh", "operator": "In", "values": [ - "lly" + "vxvjkcrgpbf" ] } ], "matchLabels": { - "key557": "uhddgdqskwlknfyyfnsxgjzzi" + "key9487": "lrdhhzifegutbaqbpjc" } } } @@ -173,19 +173,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "ehgbpsukxkovanfzwcr", - "type": "xjvnpkouehsdjyruvouqpjbiqifwi", + "name": "wkkkrp", + "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json index 225f519ade47..78fdca723767 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json @@ -3,100 +3,102 @@ "operationId": "DataflowEndpoint_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123", "resource": { "properties": { + "endpointType": "DataExplorer", "dataExplorerSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "qwtkxwwdfkbua", + "database": "yipkettqtmo", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "dataLakeStorageSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" + "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" }, "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "fabricOneLakeSettings": { "authentication": { - "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" - }, + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "sfxduiehssbaryshduylrxxzp", - "workspaceName": "rgprvrdftjuwoxcjogpqz" + "lakehouseName": "v", + "workspaceName": "kvnbmveestwifriggxjohh" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "kafkaSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "consumerGroupId": "ysoriwfdu", - "host": "fagkwbmlpg", + "consumerGroupId": "dvys", + "host": "pacxrth", "batching": { "mode": "Enabled", - "latencyMs": 4523, - "maxBytes": 3640, - "maxMessages": 9785 + "latencyMs": 1742, + "maxBytes": 9062, + "maxMessages": 4566 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -104,48 +106,49 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "wg" + "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" }, "mqttSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "clientIdPrefix": "tkfxlvaausibfvouo", - "host": "bauonchyyadvoonijab", + "clientIdPrefix": "jjdavjobxwfrsoosgixo", + "host": "ezaqzuffdaflewfyhubi", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 1, + "qos": 2, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" } }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -154,94 +157,96 @@ "200": { "body": { "properties": { + "endpointType": "DataExplorer", "dataExplorerSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "qwtkxwwdfkbua", + "database": "yipkettqtmo", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "dataLakeStorageSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" + "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" }, "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "fabricOneLakeSettings": { "authentication": { - "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" - }, + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "sfxduiehssbaryshduylrxxzp", - "workspaceName": "rgprvrdftjuwoxcjogpqz" + "lakehouseName": "v", + "workspaceName": "kvnbmveestwifriggxjohh" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "kafkaSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "consumerGroupId": "ysoriwfdu", - "host": "fagkwbmlpg", + "consumerGroupId": "dvys", + "host": "pacxrth", "batching": { "mode": "Enabled", - "latencyMs": 4523, - "maxBytes": 3640, - "maxMessages": 9785 + "latencyMs": 1742, + "maxBytes": 9062, + "maxMessages": 4566 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -249,61 +254,62 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "wg" + "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" }, "mqttSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "clientIdPrefix": "tkfxlvaausibfvouo", - "host": "bauonchyyadvoonijab", + "clientIdPrefix": "jjdavjobxwfrsoosgixo", + "host": "ezaqzuffdaflewfyhubi", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 1, + "qos": 2, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "lih", - "type": "xvwxeniuiqummaldptlczvn", + "name": "dmkjez", + "type": "i", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -313,94 +319,96 @@ }, "body": { "properties": { + "endpointType": "DataExplorer", "dataExplorerSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "qwtkxwwdfkbua", + "database": "yipkettqtmo", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "dataLakeStorageSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" + "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" }, "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "fabricOneLakeSettings": { "authentication": { - "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" - }, + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "sfxduiehssbaryshduylrxxzp", - "workspaceName": "rgprvrdftjuwoxcjogpqz" + "lakehouseName": "v", + "workspaceName": "kvnbmveestwifriggxjohh" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "kafkaSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "consumerGroupId": "ysoriwfdu", - "host": "fagkwbmlpg", + "consumerGroupId": "dvys", + "host": "pacxrth", "batching": { "mode": "Enabled", - "latencyMs": 4523, - "maxBytes": 3640, - "maxMessages": 9785 + "latencyMs": 1742, + "maxBytes": 9062, + "maxMessages": 4566 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -408,61 +416,62 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "wg" + "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" }, "mqttSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "clientIdPrefix": "tkfxlvaausibfvouo", - "host": "bauonchyyadvoonijab", + "clientIdPrefix": "jjdavjobxwfrsoosgixo", + "host": "ezaqzuffdaflewfyhubi", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 1, + "qos": 2, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "lih", - "type": "xvwxeniuiqummaldptlczvn", + "name": "dmkjez", + "type": "i", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json index 125d407867d0..4ca067dc7e0e 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json index e143d80b209a..d164651cba43 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" @@ -12,94 +12,96 @@ "200": { "body": { "properties": { + "endpointType": "DataExplorer", "dataExplorerSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "qwtkxwwdfkbua", + "database": "yipkettqtmo", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "dataLakeStorageSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" + "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" }, "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "fabricOneLakeSettings": { "authentication": { - "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" - }, + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "sfxduiehssbaryshduylrxxzp", - "workspaceName": "rgprvrdftjuwoxcjogpqz" + "lakehouseName": "v", + "workspaceName": "kvnbmveestwifriggxjohh" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "kafkaSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "consumerGroupId": "ysoriwfdu", - "host": "fagkwbmlpg", + "consumerGroupId": "dvys", + "host": "pacxrth", "batching": { "mode": "Enabled", - "latencyMs": 4523, - "maxBytes": 3640, - "maxMessages": 9785 + "latencyMs": 1742, + "maxBytes": 9062, + "maxMessages": 4566 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -107,61 +109,62 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "wg" + "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" }, "mqttSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "clientIdPrefix": "tkfxlvaausibfvouo", - "host": "bauonchyyadvoonijab", + "clientIdPrefix": "jjdavjobxwfrsoosgixo", + "host": "ezaqzuffdaflewfyhubi", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 1, + "qos": 2, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "lih", - "type": "xvwxeniuiqummaldptlczvn", + "name": "dmkjez", + "type": "i", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json index d78a5bcbdc63..0eabb1f7d542 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,94 +13,96 @@ "value": [ { "properties": { + "endpointType": "DataExplorer", "dataExplorerSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "qwtkxwwdfkbua", + "database": "yipkettqtmo", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "dataLakeStorageSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" + "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" }, "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "fabricOneLakeSettings": { "authentication": { - "accessTokenSettings": { - "secretRef": "utxykqpfbnidmffaj" - }, + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "sfxduiehssbaryshduylrxxzp", - "workspaceName": "rgprvrdftjuwoxcjogpqz" + "lakehouseName": "v", + "workspaceName": "kvnbmveestwifriggxjohh" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 5326, - "maxMessages": 3077 + "latencySeconds": 531, + "maxMessages": 8701 } }, "kafkaSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "consumerGroupId": "ysoriwfdu", - "host": "fagkwbmlpg", + "consumerGroupId": "dvys", + "host": "pacxrth", "batching": { "mode": "Enabled", - "latencyMs": 4523, - "maxBytes": 3640, - "maxMessages": 9785 + "latencyMs": 1742, + "maxBytes": 9062, + "maxMessages": 4566 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -108,61 +110,62 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "wg" + "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" }, "mqttSettings": { "authentication": { + "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "ypjgnfkjwyearp" + "audience": "oab" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "gmfzlquujnbxtupxbuasqpx", + "scope": "pheilknjggoumewtglwubocl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "ntvcdmzduqrw" + "secretRef": "sorsidcvyzzt" }, "x509Settings": { - "secretRef": "xjusiolrxhqnlwyrscfsqzkw" + "secretRef": "tdpzeyjibbgcxhhtlruyezscr" } }, - "clientIdPrefix": "tkfxlvaausibfvouo", - "host": "bauonchyyadvoonijab", + "clientIdPrefix": "jjdavjobxwfrsoosgixo", + "host": "ezaqzuffdaflewfyhubi", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 1, + "qos": 2, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "jeykfrhixbwmafn" + "trustedCaCertificateConfigMapRef": "e" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "lih", - "type": "xvwxeniuiqummaldptlczvn", + "name": "dmkjez", + "type": "i", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json index 89161542ea63..3c7ebb16eeff 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -12,24 +12,24 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 } }, "instanceCount": 8 }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -41,37 +41,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 } }, "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "cm", - "type": "oukkagxpricgrumqrvuwqr", + "name": "jugs", + "type": "aeocdanmcjoem", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -84,37 +84,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 } }, "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "cm", - "type": "oukkagxpricgrumqrvuwqr", + "name": "jugs", + "type": "aeocdanmcjoem", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json index 965d982a4e3c..8e6e9cebf120 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json index 4a64a86a7075..3e85479b299f 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -15,37 +15,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 } }, "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "cm", - "type": "oukkagxpricgrumqrvuwqr", + "name": "jugs", + "type": "aeocdanmcjoem", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json index b8faf2cbd889..440244d46979 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -16,41 +16,41 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sliredxsrec", - "intervalSeconds": 107, - "level": "uksyj" + "otlpGrpcEndpoint": "fjxj", + "intervalSeconds": 266, + "level": "haorcp" }, - "level": "xjcefbdssbkckemrkgswtvwfounw" + "level": "tfctumiwqcydyrvmczzmuxkfu" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "vgzqzxfdtoefkebgaicmumvmxtr", - "intervalSeconds": 235 + "otlpGrpcEndpoint": "g", + "intervalSeconds": 116 }, - "prometheusPort": 8368 + "prometheusPort": 3975 } }, "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "cm", - "type": "oukkagxpricgrumqrvuwqr", + "name": "jugs", + "type": "aeocdanmcjoem", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/aovp" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json index a5d8b84d2076..9d62dad28135 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -14,28 +14,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", + "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", "sourceSettings": { - "endpointRef": "gaovvlzj", - "assetRef": "aphvphogrj", + "endpointRef": "gn", + "assetRef": "o", "serializationFormat": "Json", - "schemaRef": "dnmjlynluymjswvojjllbjxgr", + "schemaRef": "syeyzvenfatddlximdquy", "dataSources": [ - "xjcxoajdlmckfpeqhwebswcqm" + "vjhmtfiorwjccfcdwg" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "libzaroihmcsgyju", + "schemaRef": "oinjowaif", "datasets": [ { - "key": "nvjdisvdmv", + "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", + "schemaRef": "ayufirtwqphvshhxto", "inputs": [ - "ibbbcpwtkagrmnlhlotxezzukrce" + "pmcxzunkawpjxthlmk" ], - "expression": "uvupajvsdwyuizzkzewso" + "expression": "noskhlmqyrvtlhjsncmq" } ], "filter": [ @@ -43,9 +43,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "seursxtiwbqbbwmgtevalci" + "qgqcrczayiuhlskihph" ], - "expression": "wtqxdywahscjkicwm" + "expression": "kdrfnrdbm" } ], "map": [ @@ -53,22 +53,22 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tioaw" + "eo" ], - "expression": "uqjptevicvqlvsitsorz", - "output": "ny" + "expression": "mdkfrm", + "output": "covplwowkjnsl" } ] }, "destinationSettings": { - "endpointRef": "vhaseguckihyob", - "dataDestination": "ieokgk" + "endpointRef": "jquecpebujuglesucsk", + "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" } } ] }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" } } @@ -81,28 +81,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", + "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", "sourceSettings": { - "endpointRef": "gaovvlzj", - "assetRef": "aphvphogrj", + "endpointRef": "gn", + "assetRef": "o", "serializationFormat": "Json", - "schemaRef": "dnmjlynluymjswvojjllbjxgr", + "schemaRef": "syeyzvenfatddlximdquy", "dataSources": [ - "xjcxoajdlmckfpeqhwebswcqm" + "vjhmtfiorwjccfcdwg" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "libzaroihmcsgyju", + "schemaRef": "oinjowaif", "datasets": [ { - "key": "nvjdisvdmv", + "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", + "schemaRef": "ayufirtwqphvshhxto", "inputs": [ - "ibbbcpwtkagrmnlhlotxezzukrce" + "pmcxzunkawpjxthlmk" ], - "expression": "uvupajvsdwyuizzkzewso" + "expression": "noskhlmqyrvtlhjsncmq" } ], "filter": [ @@ -110,9 +110,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "seursxtiwbqbbwmgtevalci" + "qgqcrczayiuhlskihph" ], - "expression": "wtqxdywahscjkicwm" + "expression": "kdrfnrdbm" } ], "map": [ @@ -120,35 +120,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tioaw" + "eo" ], - "expression": "uqjptevicvqlvsitsorz", - "output": "ny" + "expression": "mdkfrm", + "output": "covplwowkjnsl" } ] }, "destinationSettings": { - "endpointRef": "vhaseguckihyob", - "dataDestination": "ieokgk" + "endpointRef": "jquecpebujuglesucsk", + "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mhaohkrsxemppadrspgsxrxeamifmg", - "type": "ltkpkuspdwlviwldmruscnruggjrtq", + "name": "jvxagylmwrzufelrrlhycwirdi", + "type": "plohcjrtnmss", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -162,28 +162,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", + "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", "sourceSettings": { - "endpointRef": "gaovvlzj", - "assetRef": "aphvphogrj", + "endpointRef": "gn", + "assetRef": "o", "serializationFormat": "Json", - "schemaRef": "dnmjlynluymjswvojjllbjxgr", + "schemaRef": "syeyzvenfatddlximdquy", "dataSources": [ - "xjcxoajdlmckfpeqhwebswcqm" + "vjhmtfiorwjccfcdwg" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "libzaroihmcsgyju", + "schemaRef": "oinjowaif", "datasets": [ { - "key": "nvjdisvdmv", + "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", + "schemaRef": "ayufirtwqphvshhxto", "inputs": [ - "ibbbcpwtkagrmnlhlotxezzukrce" + "pmcxzunkawpjxthlmk" ], - "expression": "uvupajvsdwyuizzkzewso" + "expression": "noskhlmqyrvtlhjsncmq" } ], "filter": [ @@ -191,9 +191,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "seursxtiwbqbbwmgtevalci" + "qgqcrczayiuhlskihph" ], - "expression": "wtqxdywahscjkicwm" + "expression": "kdrfnrdbm" } ], "map": [ @@ -201,35 +201,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tioaw" + "eo" ], - "expression": "uqjptevicvqlvsitsorz", - "output": "ny" + "expression": "mdkfrm", + "output": "covplwowkjnsl" } ] }, "destinationSettings": { - "endpointRef": "vhaseguckihyob", - "dataDestination": "ieokgk" + "endpointRef": "jquecpebujuglesucsk", + "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mhaohkrsxemppadrspgsxrxeamifmg", - "type": "ltkpkuspdwlviwldmruscnruggjrtq", + "name": "jvxagylmwrzufelrrlhycwirdi", + "type": "plohcjrtnmss", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json index fc3c0fb93c4f..a1d78104dc6d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json index 61710401bb67..26b8bc73ab53 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -17,28 +17,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", + "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", "sourceSettings": { - "endpointRef": "gaovvlzj", - "assetRef": "aphvphogrj", + "endpointRef": "gn", + "assetRef": "o", "serializationFormat": "Json", - "schemaRef": "dnmjlynluymjswvojjllbjxgr", + "schemaRef": "syeyzvenfatddlximdquy", "dataSources": [ - "xjcxoajdlmckfpeqhwebswcqm" + "vjhmtfiorwjccfcdwg" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "libzaroihmcsgyju", + "schemaRef": "oinjowaif", "datasets": [ { - "key": "nvjdisvdmv", + "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", + "schemaRef": "ayufirtwqphvshhxto", "inputs": [ - "ibbbcpwtkagrmnlhlotxezzukrce" + "pmcxzunkawpjxthlmk" ], - "expression": "uvupajvsdwyuizzkzewso" + "expression": "noskhlmqyrvtlhjsncmq" } ], "filter": [ @@ -46,9 +46,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "seursxtiwbqbbwmgtevalci" + "qgqcrczayiuhlskihph" ], - "expression": "wtqxdywahscjkicwm" + "expression": "kdrfnrdbm" } ], "map": [ @@ -56,35 +56,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tioaw" + "eo" ], - "expression": "uqjptevicvqlvsitsorz", - "output": "ny" + "expression": "mdkfrm", + "output": "covplwowkjnsl" } ] }, "destinationSettings": { - "endpointRef": "vhaseguckihyob", - "dataDestination": "ieokgk" + "endpointRef": "jquecpebujuglesucsk", + "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mhaohkrsxemppadrspgsxrxeamifmg", - "type": "ltkpkuspdwlviwldmruscnruggjrtq", + "name": "jvxagylmwrzufelrrlhycwirdi", + "type": "plohcjrtnmss", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json index 1fe8453d4f54..b65bd6dd5902 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_ListByProfileResource", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -18,28 +18,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "xnanmmgwpeccnwqyzyjnktlvvxhyodurmfaexevmkzsceqjyojnhxjm", + "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", "sourceSettings": { - "endpointRef": "gaovvlzj", - "assetRef": "aphvphogrj", + "endpointRef": "gn", + "assetRef": "o", "serializationFormat": "Json", - "schemaRef": "dnmjlynluymjswvojjllbjxgr", + "schemaRef": "syeyzvenfatddlximdquy", "dataSources": [ - "xjcxoajdlmckfpeqhwebswcqm" + "vjhmtfiorwjccfcdwg" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "libzaroihmcsgyju", + "schemaRef": "oinjowaif", "datasets": [ { - "key": "nvjdisvdmv", + "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "tqvnyzdwgtsivfbdihkzbahroavi", + "schemaRef": "ayufirtwqphvshhxto", "inputs": [ - "ibbbcpwtkagrmnlhlotxezzukrce" + "pmcxzunkawpjxthlmk" ], - "expression": "uvupajvsdwyuizzkzewso" + "expression": "noskhlmqyrvtlhjsncmq" } ], "filter": [ @@ -47,9 +47,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "seursxtiwbqbbwmgtevalci" + "qgqcrczayiuhlskihph" ], - "expression": "wtqxdywahscjkicwm" + "expression": "kdrfnrdbm" } ], "map": [ @@ -57,35 +57,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "tioaw" + "eo" ], - "expression": "uqjptevicvqlvsitsorz", - "output": "ny" + "expression": "mdkfrm", + "output": "covplwowkjnsl" } ] }, "destinationSettings": { - "endpointRef": "vhaseguckihyob", - "dataDestination": "ieokgk" + "endpointRef": "jquecpebujuglesucsk", + "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "mhaohkrsxemppadrspgsxrxeamifmg", - "type": "ltkpkuspdwlviwldmruscnruggjrtq", + "name": "jvxagylmwrzufelrrlhycwirdi", + "type": "plohcjrtnmss", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json index b9b3af1609eb..cddae2a40b99 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "resource": { @@ -12,19 +12,19 @@ "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { "type": "None", "userAssignedIdentities": { - "key4529": {} + "key8843": {} } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq" + "location": "ipkkgxoxcnqqtw" } }, "responses": { @@ -33,11 +33,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -45,26 +45,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } }, @@ -76,11 +76,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -88,26 +88,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json index 49f3598e76cf..9c1e84ff63c9 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json index b73700d8ba94..a0d7d97ec9fb 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -25,26 +25,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json index 41fc4ed96a59..c07903ab2126 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations" }, "responses": { @@ -14,11 +14,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -26,26 +26,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json index 19afd090d2b1..3a6eeb5072a3 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListBySubscription", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF" + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E" }, "responses": { "200": { @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -25,26 +25,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json index 8e79eba0bd65..10c3dbb7fead 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json @@ -3,12 +3,12 @@ "operationId": "Instance_Update", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "1936971E-DEFA-4071-9E82-E3D5EAC508CF", + "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "properties": { "tags": { - "key9010": "ibmnymdbpqkdaaxklvuqfconyw" + "key8540": "gtgywaslfwdemktth" } } }, @@ -18,11 +18,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "pkzcpeeirafcwywruyllzlnaxkwfnk", + "version": "lepljpkjqpinwitedonysjcvackm", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "vhcutfzsdyclkhjdlarwnrbc", + "name": "qv", "type": "CustomLocation" }, "identity": { @@ -30,26 +30,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4529": { + "key8843": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key9881": "enozgmjlnk" + "key5211": "yzslkpr" }, - "location": "ccqjtuazqq", + "location": "ipkkgxoxcnqqtw", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "vyuwmdeikdgxp", - "type": "musabymwheyhmhkftknqbizqmspxs", + "name": "yhxjattffdzsotfgv", + "type": "yxggydhektv", "systemData": { - "createdBy": "viykdpvwjpkudnqunnnt", + "createdBy": "vrdmsnjuvhxbxaex", "createdByType": "User", - "createdAt": "2024-08-08T15:22:05.604Z", - "lastModifiedBy": "cccbzcockakcgqxtanzldigenitjnu", + "createdAt": "2024-08-08T21:51:09.269Z", + "lastModifiedBy": "zgmkemwcehc", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T15:22:05.604Z" + "lastModifiedAt": "2024-08-08T21:51:09.270Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json index f297514f9349..20b22da974da 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json @@ -9,19 +9,19 @@ "body": { "value": [ { - "name": "nglqhjcqjvfosgemdrss", + "name": "lk", "isDataAction": true, "display": { - "provider": "zoqwxmywupxchjozxxwkekastepmng", - "resource": "byujwtehrvhwvh", - "operation": "itklrbcr", + "provider": "wygjphpv", + "resource": "vtqbaemzffskmftfobbokxtepgjsg", + "operation": "fumjunhjrk", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit." }, "origin": "user", "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/amtlkv" + "nextLink": "https://microsoft.com/acroicd" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json index 71e07f28fd3c..2811af474cc3 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json @@ -2481,6 +2481,24 @@ } }, "definitions": { + "AccessTokeMethod": { + "type": "string", + "description": "Access Token Method", + "enum": [ + "AccessToken" + ], + "x-ms-enum": { + "name": "AccessTokeMethod", + "modelAsString": true, + "values": [ + { + "name": "AccessToken", + "value": "AccessToken", + "description": "AccessToken Option" + } + ] + } + }, "AdvancedSettings": { "type": "object", "description": "Broker Advanced Settings", @@ -2520,48 +2538,6 @@ } } }, - "AuthenticationMethod": { - "type": "string", - "description": "Authentication Mode properties", - "enum": [ - "SystemAssignedManagedIdentity", - "UserAssignedManagedIdentity", - "AccessToken", - "Sasl", - "x509Certificate" - ], - "x-ms-enum": { - "name": "AuthenticationMethod", - "modelAsString": true, - "values": [ - { - "name": "SystemAssignedManagedIdentity", - "value": "SystemAssignedManagedIdentity", - "description": "SystemAssignedManagedIdentity Option" - }, - { - "name": "UserAssignedManagedIdentity", - "value": "UserAssignedManagedIdentity", - "description": "UserAssignedManagedIdentity Option" - }, - { - "name": "AccessToken", - "value": "AccessToken", - "description": "AccessToken Option" - }, - { - "name": "Sasl", - "value": "Sasl", - "description": "Sasl Option" - }, - { - "name": "x509Certificate", - "value": "x509Certificate", - "description": "x509Certificate Option" - } - ] - } - }, "AuthorizationConfig": { "type": "object", "description": "Broker AuthorizationConfig properties", @@ -3562,13 +3538,17 @@ ] } }, + "DataExplorerAuthMethod": { + "$ref": "#/definitions/ManagedIdentityMethod", + "x-nullable": false + }, "DataFlowEndpointFabricOneLakeAuthentication": { "type": "object", "description": "Microsoft Fabric endpoint. Authentication properties. NOTE - Only one method is supported for one entry", "properties": { - "accessTokenSettings": { - "$ref": "#/definitions/DataflowEndpointAuthenticationAccessToken", - "description": "SAS token authentication." + "method": { + "$ref": "#/definitions/FabricOneLakeAuthMethod", + "description": "Mode of Authentication." }, "systemAssignedManagedIdentitySettings": { "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", @@ -3578,12 +3558,19 @@ "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", "description": "User-assigned managed identity authentication." } - } + }, + "required": [ + "method" + ] }, "DataFlowEndpointKafkaAuthentication": { "type": "object", "description": "Kafka endpoint Authentication properties. NOTE - only authentication property is allowed per entry", "properties": { + "method": { + "$ref": "#/definitions/KafkaAuthMethod", + "description": "Mode of Authentication." + }, "systemAssignedManagedIdentitySettings": { "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", "description": "System-assigned managed identity authentication." @@ -3600,6 +3587,39 @@ "$ref": "#/definitions/DataflowEndpointAuthenticationX509", "description": "X.509 certificate authentication." } + }, + "required": [ + "method" + ] + }, + "DataLakeStorageAuthMethod": { + "type": "string", + "description": "DataflowEndpoint Data Lake Storage Authentication Method properties", + "enum": [ + "SystemAssignedManagedIdentity", + "UserAssignedManagedIdentity", + "AccessToken" + ], + "x-ms-enum": { + "name": "DataLakeStorageAuthMethod", + "modelAsString": true, + "values": [ + { + "name": "SystemAssignedManagedIdentity", + "value": "SystemAssignedManagedIdentity", + "description": "SystemAssignedManagedIdentity type" + }, + { + "name": "UserAssignedManagedIdentity", + "value": "UserAssignedManagedIdentity", + "description": "UserAssignedManagedIdentity type" + }, + { + "name": "AccessToken", + "value": "AccessToken", + "description": "AccessToken Option" + } + ] } }, "DataflowBuiltInTransformationDataset": { @@ -3958,6 +3978,10 @@ "type": "object", "description": "Azure Data Explorer Authentication properties. NOTE - only authentication property is allowed per entry.", "properties": { + "method": { + "$ref": "#/definitions/DataExplorerAuthMethod", + "description": "Mode of Authentication." + }, "systemAssignedManagedIdentitySettings": { "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", "description": "System-assigned managed identity authentication." @@ -3966,7 +3990,10 @@ "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", "description": "User-assigned managed identity authentication." } - } + }, + "required": [ + "method" + ] }, "DataflowEndpointDataLakeStorage": { "type": "object", @@ -3995,6 +4022,10 @@ "type": "object", "description": "Azure Data Lake endpoint Authentication properties. NOTE Enum - Only one method is supported for one entry", "properties": { + "method": { + "$ref": "#/definitions/DataLakeStorageAuthMethod", + "description": "Mode of Authentication." + }, "accessTokenSettings": { "$ref": "#/definitions/DataflowEndpointAuthenticationAccessToken", "description": "SAS token authentication." @@ -4007,7 +4038,10 @@ "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", "description": "User-assigned managed identity authentication." } - } + }, + "required": [ + "method" + ] }, "DataflowEndpointFabricOneLake": { "type": "object", @@ -4525,8 +4559,12 @@ }, "DataflowEndpointMqttAuthentication": { "type": "object", - "description": "Mqtt endpoint Authentication properties. NOTE - only authentication property is allowed per entry. Default Kubernetes authentication with audience set to aio-mq-internal", + "description": "Mqtt endpoint Authentication properties. NOTE - only authentication property is allowed per entry.", "properties": { + "method": { + "$ref": "#/definitions/MqttAuthMethod", + "description": "Mode of Authentication." + }, "systemAssignedManagedIdentitySettings": { "$ref": "#/definitions/DataflowEndpointAuthenticationSystemAssignedManagedIdentity", "description": "System-assigned managed identity authentication." @@ -4543,7 +4581,10 @@ "$ref": "#/definitions/DataflowEndpointAuthenticationX509", "description": "X.509 certificate authentication." } - } + }, + "required": [ + "method" + ] }, "DataflowEndpointProperties": { "type": "object", @@ -5040,6 +5081,10 @@ ] } }, + "FabricOneLakeAuthMethod": { + "$ref": "#/definitions/ManagedIdentityMethod", + "x-nullable": false + }, "FilterType": { "type": "string", "description": "Filter Type properties", @@ -5205,6 +5250,48 @@ } } }, + "KafkaAuthMethod": { + "type": "string", + "description": "DataflowEndpoint Kafka Authentication Method properties", + "enum": [ + "SystemAssignedManagedIdentity", + "UserAssignedManagedIdentity", + "Sasl", + "x509Certificate", + "Anonymous" + ], + "x-ms-enum": { + "name": "KafkaAuthMethod", + "modelAsString": true, + "values": [ + { + "name": "SystemAssignedManagedIdentity", + "value": "SystemAssignedManagedIdentity", + "description": "SystemAssignedManagedIdentity type" + }, + { + "name": "UserAssignedManagedIdentity", + "value": "UserAssignedManagedIdentity", + "description": "UserAssignedManagedIdentity type" + }, + { + "name": "Sasl", + "value": "Sasl", + "description": "Sasl Option" + }, + { + "name": "x509Certificate", + "value": "x509Certificate", + "description": "x509Certificate Option" + }, + { + "name": "Anonymous", + "value": "Anonymous", + "description": "Anonymous Option." + } + ] + } + }, "KubernetesReference": { "type": "object", "description": "Kubernetes reference", @@ -5344,6 +5431,30 @@ } } }, + "ManagedIdentityMethod": { + "type": "string", + "description": "Managed Identity Method", + "enum": [ + "SystemAssignedManagedIdentity", + "UserAssignedManagedIdentity" + ], + "x-ms-enum": { + "name": "ManagedIdentityMethod", + "modelAsString": true, + "values": [ + { + "name": "SystemAssignedManagedIdentity", + "value": "SystemAssignedManagedIdentity", + "description": "SystemAssignedManagedIdentity type" + }, + { + "name": "UserAssignedManagedIdentity", + "value": "UserAssignedManagedIdentity", + "description": "UserAssignedManagedIdentity type" + } + ] + } + }, "MetricProperties": { "type": "object", "description": "Metric properties", @@ -5376,6 +5487,48 @@ } } }, + "MqttAuthMethod": { + "type": "string", + "description": "DataflowEndpoint Mqtt Authentication Method properties", + "enum": [ + "SystemAssignedManagedIdentity", + "UserAssignedManagedIdentity", + "Sasl", + "x509Certificate", + "Anonymous" + ], + "x-ms-enum": { + "name": "MqttAuthMethod", + "modelAsString": true, + "values": [ + { + "name": "SystemAssignedManagedIdentity", + "value": "SystemAssignedManagedIdentity", + "description": "SystemAssignedManagedIdentity type" + }, + { + "name": "UserAssignedManagedIdentity", + "value": "UserAssignedManagedIdentity", + "description": "UserAssignedManagedIdentity type" + }, + { + "name": "Sasl", + "value": "Sasl", + "description": "Sasl Option" + }, + { + "name": "x509Certificate", + "value": "x509Certificate", + "description": "x509Certificate Option" + }, + { + "name": "Anonymous", + "value": "Anonymous", + "description": "Anonymous Option." + } + ] + } + }, "MqttRetainType": { "type": "string", "description": "Broker Retain types", @@ -5744,6 +5897,24 @@ "ip" ] }, + "SaslMethod": { + "type": "string", + "description": "Sasl Method", + "enum": [ + "Sasl" + ], + "x-ms-enum": { + "name": "SaslMethod", + "modelAsString": true, + "values": [ + { + "name": "Sasl", + "value": "Sasl", + "description": "Sasl Option" + } + ] + } + }, "SelfCheck": { "type": "object", "description": "Broker Diagnostic Self check properties", @@ -6310,6 +6481,24 @@ "required": [ "secretRef" ] + }, + "x509CertificateMethod": { + "type": "string", + "description": "x509 Certificate Method", + "enum": [ + "x509Certificate" + ], + "x-ms-enum": { + "name": "x509CertificateMethod", + "modelAsString": true, + "values": [ + { + "name": "x509Certificate", + "value": "x509Certificate", + "description": "x509Certificate Option" + } + ] + } } }, "parameters": {} From 93de7e06df048ed6ac39607624ddb0705f959475 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 15:28:33 -0700 Subject: [PATCH 11/16] sasl to sat --- .../models/dataflows/dataflowEndpoints.tsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp index 5ab0a1c95397..2c2356311dff 100644 --- a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp @@ -378,7 +378,7 @@ model DataflowEndpointMqttAuthentication { ...ManagedIdentity; @doc("Kubernetes service account token authentication. Default audience if not set is aio-mq-internal") - saslSettings?: DataflowEndpointAuthenticationSasl; + serviceAccountTokenSettings?: DataflowEndpointAuthenticationServiceAccountToken; @doc("X.509 certificate authentication.") x509Settings?: DataflowEndpointAuthenticationX509; From 2e8afefd8b40b0db9d2ec0b3b0ad4288106f5b45 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 15:29:30 -0700 Subject: [PATCH 12/16] ran examples --- ...ication_CreateOrUpdate_MaximumSet_Gen.json | 86 ++-- ...rAuthentication_Delete_MaximumSet_Gen.json | 2 +- ...okerAuthentication_Get_MaximumSet_Gen.json | 34 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ization_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- ...erAuthorization_Delete_MaximumSet_Gen.json | 2 +- ...rokerAuthorization_Get_MaximumSet_Gen.json | 26 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 26 +- ...istener_CreateOrUpdate_MaximumSet_Gen.json | 116 +++--- .../BrokerListener_Delete_MaximumSet_Gen.json | 2 +- .../BrokerListener_Get_MaximumSet_Gen.json | 44 +-- ...er_ListByResourceGroup_MaximumSet_Gen.json | 44 +-- .../Broker_CreateOrUpdate_MaximumSet_Gen.json | 374 +++++++++--------- .../Broker_Delete_MaximumSet_Gen.json | 2 +- .../Broker_Get_MaximumSet_Gen.json | 130 +++--- ...er_ListByResourceGroup_MaximumSet_Gen.json | 130 +++--- ...ndpoint_CreateOrUpdate_MaximumSet_Gen.json | 251 ++++++------ ...ataflowEndpoint_Delete_MaximumSet_Gen.json | 2 +- .../DataflowEndpoint_Get_MaximumSet_Gen.json | 89 +++-- ...nt_ListByResourceGroup_MaximumSet_Gen.json | 89 +++-- ...Profile_CreateOrUpdate_MaximumSet_Gen.json | 80 ++-- ...DataflowProfile_Delete_MaximumSet_Gen.json | 2 +- .../DataflowProfile_Get_MaximumSet_Gen.json | 32 +- ...le_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ataflow_CreateOrUpdate_MaximumSet_Gen.json | 134 +++---- .../Dataflow_Delete_MaximumSet_Gen.json | 2 +- .../Dataflow_Get_MaximumSet_Gen.json | 50 +-- ..._ListByProfileResource_MaximumSet_Gen.json | 52 +-- ...nstance_CreateOrUpdate_MaximumSet_Gen.json | 54 +-- .../Instance_Delete_MaximumSet_Gen.json | 2 +- .../Instance_Get_MaximumSet_Gen.json | 24 +- ...ce_ListByResourceGroup_MaximumSet_Gen.json | 26 +- ...nce_ListBySubscription_MaximumSet_Gen.json | 26 +- .../Instance_Update_MaximumSet_Gen.json | 26 +- .../Operations_List_MaximumSet_Gen.json | 10 +- ...ication_CreateOrUpdate_MaximumSet_Gen.json | 86 ++-- ...rAuthentication_Delete_MaximumSet_Gen.json | 2 +- ...okerAuthentication_Get_MaximumSet_Gen.json | 34 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ization_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- ...erAuthorization_Delete_MaximumSet_Gen.json | 2 +- ...rokerAuthorization_Get_MaximumSet_Gen.json | 26 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 26 +- ...istener_CreateOrUpdate_MaximumSet_Gen.json | 116 +++--- .../BrokerListener_Delete_MaximumSet_Gen.json | 2 +- .../BrokerListener_Get_MaximumSet_Gen.json | 44 +-- ...er_ListByResourceGroup_MaximumSet_Gen.json | 44 +-- .../Broker_CreateOrUpdate_MaximumSet_Gen.json | 374 +++++++++--------- .../Broker_Delete_MaximumSet_Gen.json | 2 +- .../examples/Broker_Get_MaximumSet_Gen.json | 130 +++--- ...er_ListByResourceGroup_MaximumSet_Gen.json | 130 +++--- ...ndpoint_CreateOrUpdate_MaximumSet_Gen.json | 251 ++++++------ ...ataflowEndpoint_Delete_MaximumSet_Gen.json | 2 +- .../DataflowEndpoint_Get_MaximumSet_Gen.json | 89 +++-- ...nt_ListByResourceGroup_MaximumSet_Gen.json | 89 +++-- ...Profile_CreateOrUpdate_MaximumSet_Gen.json | 80 ++-- ...DataflowProfile_Delete_MaximumSet_Gen.json | 2 +- .../DataflowProfile_Get_MaximumSet_Gen.json | 32 +- ...le_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ataflow_CreateOrUpdate_MaximumSet_Gen.json | 134 +++---- .../Dataflow_Delete_MaximumSet_Gen.json | 2 +- .../examples/Dataflow_Get_MaximumSet_Gen.json | 50 +-- ..._ListByProfileResource_MaximumSet_Gen.json | 52 +-- ...nstance_CreateOrUpdate_MaximumSet_Gen.json | 54 +-- .../Instance_Delete_MaximumSet_Gen.json | 2 +- .../examples/Instance_Get_MaximumSet_Gen.json | 24 +- ...ce_ListByResourceGroup_MaximumSet_Gen.json | 26 +- ...nce_ListBySubscription_MaximumSet_Gen.json | 26 +- .../Instance_Update_MaximumSet_Gen.json | 26 +- .../Operations_List_MaximumSet_Gen.json | 10 +- .../2024-08-15-preview/iotoperations.json | 4 +- 71 files changed, 2096 insertions(+), 2106 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json index fa9bfb939159..295ce535f45d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -17,38 +17,38 @@ "auth": { "x509": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } }, - "caCertConfigMap": "ehlaje", + "caCertConfigMap": "g", "endpoint": "https://www.example.com", "headers": { - "key8621": "fpmhab" + "key8801": "wxyrcjoyfknqsoqqasabstxw" } }, "serviceAccountTokenSettings": { "audiences": [ - "pe" + "vz" ] }, "x509Settings": { "authorizationAttributes": { - "key8417": { + "key2694": { "attributes": { - "key9804": "gastmerxmuvqjpycizqetglexgaba" + "key8338": "kwenhypiadtcozdazqrpn" }, - "subject": "m" + "subject": "cnkrquqjaillztlekwchnjqz" } }, - "trustedClientCaCert": "vkkvheqzsjmueot" + "trustedClientCaCert": "xg" } } ] }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -64,51 +64,51 @@ "auth": { "x509": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } }, - "caCertConfigMap": "ehlaje", + "caCertConfigMap": "g", "endpoint": "https://www.example.com", "headers": { - "key8621": "fpmhab" + "key8801": "wxyrcjoyfknqsoqqasabstxw" } }, "serviceAccountTokenSettings": { "audiences": [ - "pe" + "vz" ] }, "x509Settings": { "authorizationAttributes": { - "key8417": { + "key2694": { "attributes": { - "key9804": "gastmerxmuvqjpycizqetglexgaba" + "key8338": "kwenhypiadtcozdazqrpn" }, - "subject": "m" + "subject": "cnkrquqjaillztlekwchnjqz" } }, - "trustedClientCaCert": "vkkvheqzsjmueot" + "trustedClientCaCert": "xg" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "izzrphovvyuixeskwunjprz", - "type": "qlbxt", + "name": "xhikjjbpxccawrouge", + "type": "fv", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -125,51 +125,51 @@ "auth": { "x509": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } }, - "caCertConfigMap": "ehlaje", + "caCertConfigMap": "g", "endpoint": "https://www.example.com", "headers": { - "key8621": "fpmhab" + "key8801": "wxyrcjoyfknqsoqqasabstxw" } }, "serviceAccountTokenSettings": { "audiences": [ - "pe" + "vz" ] }, "x509Settings": { "authorizationAttributes": { - "key8417": { + "key2694": { "attributes": { - "key9804": "gastmerxmuvqjpycizqetglexgaba" + "key8338": "kwenhypiadtcozdazqrpn" }, - "subject": "m" + "subject": "cnkrquqjaillztlekwchnjqz" } }, - "trustedClientCaCert": "vkkvheqzsjmueot" + "trustedClientCaCert": "xg" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "izzrphovvyuixeskwunjprz", - "type": "qlbxt", + "name": "xhikjjbpxccawrouge", + "type": "fv", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json index 3d2a2410a7d2..0ee2fa45106d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json index b60db0318678..967be4cc99f7 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -20,51 +20,51 @@ "auth": { "x509": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } }, - "caCertConfigMap": "ehlaje", + "caCertConfigMap": "g", "endpoint": "https://www.example.com", "headers": { - "key8621": "fpmhab" + "key8801": "wxyrcjoyfknqsoqqasabstxw" } }, "serviceAccountTokenSettings": { "audiences": [ - "pe" + "vz" ] }, "x509Settings": { "authorizationAttributes": { - "key8417": { + "key2694": { "attributes": { - "key9804": "gastmerxmuvqjpycizqetglexgaba" + "key8338": "kwenhypiadtcozdazqrpn" }, - "subject": "m" + "subject": "cnkrquqjaillztlekwchnjqz" } }, - "trustedClientCaCert": "vkkvheqzsjmueot" + "trustedClientCaCert": "xg" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "izzrphovvyuixeskwunjprz", - "type": "qlbxt", + "name": "xhikjjbpxccawrouge", + "type": "fv", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json index 79676d486276..eba47c602d9a 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -21,51 +21,51 @@ "auth": { "x509": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } }, - "caCertConfigMap": "ehlaje", + "caCertConfigMap": "g", "endpoint": "https://www.example.com", "headers": { - "key8621": "fpmhab" + "key8801": "wxyrcjoyfknqsoqqasabstxw" } }, "serviceAccountTokenSettings": { "audiences": [ - "pe" + "vz" ] }, "x509Settings": { "authorizationAttributes": { - "key8417": { + "key2694": { "attributes": { - "key9804": "gastmerxmuvqjpycizqetglexgaba" + "key8338": "kwenhypiadtcozdazqrpn" }, - "subject": "m" + "subject": "cnkrquqjaillztlekwchnjqz" } }, - "trustedClientCaCert": "vkkvheqzsjmueot" + "trustedClientCaCert": "xg" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "izzrphovvyuixeskwunjprz", - "type": "qlbxt", + "name": "xhikjjbpxccawrouge", + "type": "fv", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json index 937e06de0c07..37c9ed1441eb 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -18,28 +18,28 @@ { "method": "Connect", "topics": [ - "xutdgrerwpqwchmknvmxvrun" + "omlixbstiosmctiucvmwktnostk" ] } ], "principals": { "attributes": [ { - "key4726": "lnwvpswjzzdoot" + "key8854": "txooumr" } ], "clientIds": [ - "pkwkxfpdhbifyyopmgrtrkdkdz" + "dbrufsxzthb" ], "usernames": [ - "gaqjiwni" + "ktsrxknsrbrpvqsjrpaa" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "wvmrfnazvywwgtxyxfjrvnintcmyy" + "dpxyigzkqeczgt" ], "method": "Read" } @@ -49,7 +49,7 @@ } }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -66,28 +66,28 @@ { "method": "Connect", "topics": [ - "xutdgrerwpqwchmknvmxvrun" + "omlixbstiosmctiucvmwktnostk" ] } ], "principals": { "attributes": [ { - "key4726": "lnwvpswjzzdoot" + "key8854": "txooumr" } ], "clientIds": [ - "pkwkxfpdhbifyyopmgrtrkdkdz" + "dbrufsxzthb" ], "usernames": [ - "gaqjiwni" + "ktsrxknsrbrpvqsjrpaa" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "wvmrfnazvywwgtxyxfjrvnintcmyy" + "dpxyigzkqeczgt" ], "method": "Read" } @@ -98,19 +98,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "iddoisfjsmpxuuvsfdalorrqwvghg", - "type": "adkawsspje", + "name": "zyegdccgwccvlfrwyoksveccnblk", + "type": "lfvqxtwetytrumsls", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -128,28 +128,28 @@ { "method": "Connect", "topics": [ - "xutdgrerwpqwchmknvmxvrun" + "omlixbstiosmctiucvmwktnostk" ] } ], "principals": { "attributes": [ { - "key4726": "lnwvpswjzzdoot" + "key8854": "txooumr" } ], "clientIds": [ - "pkwkxfpdhbifyyopmgrtrkdkdz" + "dbrufsxzthb" ], "usernames": [ - "gaqjiwni" + "ktsrxknsrbrpvqsjrpaa" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "wvmrfnazvywwgtxyxfjrvnintcmyy" + "dpxyigzkqeczgt" ], "method": "Read" } @@ -160,19 +160,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "iddoisfjsmpxuuvsfdalorrqwvghg", - "type": "adkawsspje", + "name": "zyegdccgwccvlfrwyoksveccnblk", + "type": "lfvqxtwetytrumsls", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json index f6435fafce5c..12fdb5d5639d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json index 4b9c0c3d580f..c4d2c181700d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -21,28 +21,28 @@ { "method": "Connect", "topics": [ - "xutdgrerwpqwchmknvmxvrun" + "omlixbstiosmctiucvmwktnostk" ] } ], "principals": { "attributes": [ { - "key4726": "lnwvpswjzzdoot" + "key8854": "txooumr" } ], "clientIds": [ - "pkwkxfpdhbifyyopmgrtrkdkdz" + "dbrufsxzthb" ], "usernames": [ - "gaqjiwni" + "ktsrxknsrbrpvqsjrpaa" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "wvmrfnazvywwgtxyxfjrvnintcmyy" + "dpxyigzkqeczgt" ], "method": "Read" } @@ -53,19 +53,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "iddoisfjsmpxuuvsfdalorrqwvghg", - "type": "adkawsspje", + "name": "zyegdccgwccvlfrwyoksveccnblk", + "type": "lfvqxtwetytrumsls", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json index f9a496e53d68..373ed8b560de 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -22,28 +22,28 @@ { "method": "Connect", "topics": [ - "xutdgrerwpqwchmknvmxvrun" + "omlixbstiosmctiucvmwktnostk" ] } ], "principals": { "attributes": [ { - "key4726": "lnwvpswjzzdoot" + "key8854": "txooumr" } ], "clientIds": [ - "pkwkxfpdhbifyyopmgrtrkdkdz" + "dbrufsxzthb" ], "usernames": [ - "gaqjiwni" + "ktsrxknsrbrpvqsjrpaa" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "wvmrfnazvywwgtxyxfjrvnintcmyy" + "dpxyigzkqeczgt" ], "method": "Read" } @@ -54,19 +54,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "iddoisfjsmpxuuvsfdalorrqwvghg", - "type": "adkawsspje", + "name": "zyegdccgwccvlfrwyoksveccnblk", + "type": "lfvqxtwetytrumsls", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json index f3fbad78aa4d..e809c7492ae7 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json @@ -3,31 +3,31 @@ "operationId": "BrokerListener_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", "listenerName": "resource-name123", "resource": { "properties": { - "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", + "serviceName": "suckwvpkqovqcdpsnnx", "ports": [ { - "authenticationRef": "trgfwcosnszpwp", - "authorizationRef": "yhtzydgfzcjqvm", - "nodePort": 2397, - "port": 1144, + "authenticationRef": "ej", + "authorizationRef": "bwlgosdznvrhddijbxa", + "nodePort": 1893, + "port": 3623, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "jdqukfxizabieziyo", - "secretName": "n", - "renewBefore": "hzeoo", + "duration": "wzf", + "secretName": "wxnuzhdxevjqbdpdhontvbceprdhy", + "renewBefore": "spxsqsufajmcfqnalw", "issuerRef": { - "group": "jnsfykjsaedwyvgjyw", + "group": "pspljwwkweivysbdttishbmydazpy", "kind": "Issuer", - "name": "clvbkakjpztxtyj" + "name": "akbgrrysurjkoehcthkhcuta" }, "privateKey": { "algorithm": "Ec256", @@ -35,17 +35,17 @@ }, "san": { "dns": [ - "wqajdpqbbxhjhkxh" + "qqhblwffoqbrqls" ], "ip": [ - "zalnsa" + "cuknnwuiph" ] } }, "manual": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } } @@ -54,7 +54,7 @@ "serviceType": "ClusterIp" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -63,24 +63,24 @@ "200": { "body": { "properties": { - "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", + "serviceName": "suckwvpkqovqcdpsnnx", "ports": [ { - "authenticationRef": "trgfwcosnszpwp", - "authorizationRef": "yhtzydgfzcjqvm", - "nodePort": 2397, - "port": 1144, + "authenticationRef": "ej", + "authorizationRef": "bwlgosdznvrhddijbxa", + "nodePort": 1893, + "port": 3623, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "jdqukfxizabieziyo", - "secretName": "n", - "renewBefore": "hzeoo", + "duration": "wzf", + "secretName": "wxnuzhdxevjqbdpdhontvbceprdhy", + "renewBefore": "spxsqsufajmcfqnalw", "issuerRef": { - "group": "jnsfykjsaedwyvgjyw", + "group": "pspljwwkweivysbdttishbmydazpy", "kind": "Issuer", - "name": "clvbkakjpztxtyj" + "name": "akbgrrysurjkoehcthkhcuta" }, "privateKey": { "algorithm": "Ec256", @@ -88,17 +88,17 @@ }, "san": { "dns": [ - "wqajdpqbbxhjhkxh" + "qqhblwffoqbrqls" ], "ip": [ - "zalnsa" + "cuknnwuiph" ] } }, "manual": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } } @@ -108,19 +108,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "fbrgyiajzvsjvmltxdfomrzkc", - "type": "cgwbwnlzcfzrb", + "name": "eiyqroddgwtwjbqneiotdhrh", + "type": "ogcd", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -130,24 +130,24 @@ }, "body": { "properties": { - "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", + "serviceName": "suckwvpkqovqcdpsnnx", "ports": [ { - "authenticationRef": "trgfwcosnszpwp", - "authorizationRef": "yhtzydgfzcjqvm", - "nodePort": 2397, - "port": 1144, + "authenticationRef": "ej", + "authorizationRef": "bwlgosdznvrhddijbxa", + "nodePort": 1893, + "port": 3623, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "jdqukfxizabieziyo", - "secretName": "n", - "renewBefore": "hzeoo", + "duration": "wzf", + "secretName": "wxnuzhdxevjqbdpdhontvbceprdhy", + "renewBefore": "spxsqsufajmcfqnalw", "issuerRef": { - "group": "jnsfykjsaedwyvgjyw", + "group": "pspljwwkweivysbdttishbmydazpy", "kind": "Issuer", - "name": "clvbkakjpztxtyj" + "name": "akbgrrysurjkoehcthkhcuta" }, "privateKey": { "algorithm": "Ec256", @@ -155,17 +155,17 @@ }, "san": { "dns": [ - "wqajdpqbbxhjhkxh" + "qqhblwffoqbrqls" ], "ip": [ - "zalnsa" + "cuknnwuiph" ] } }, "manual": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } } @@ -175,19 +175,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "fbrgyiajzvsjvmltxdfomrzkc", - "type": "cgwbwnlzcfzrb", + "name": "eiyqroddgwtwjbqneiotdhrh", + "type": "ogcd", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json index ee021ca1d620..973c23d891ff 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json index f957cae8ba11..903ba1180aca 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -13,24 +13,24 @@ "200": { "body": { "properties": { - "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", + "serviceName": "suckwvpkqovqcdpsnnx", "ports": [ { - "authenticationRef": "trgfwcosnszpwp", - "authorizationRef": "yhtzydgfzcjqvm", - "nodePort": 2397, - "port": 1144, + "authenticationRef": "ej", + "authorizationRef": "bwlgosdznvrhddijbxa", + "nodePort": 1893, + "port": 3623, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "jdqukfxizabieziyo", - "secretName": "n", - "renewBefore": "hzeoo", + "duration": "wzf", + "secretName": "wxnuzhdxevjqbdpdhontvbceprdhy", + "renewBefore": "spxsqsufajmcfqnalw", "issuerRef": { - "group": "jnsfykjsaedwyvgjyw", + "group": "pspljwwkweivysbdttishbmydazpy", "kind": "Issuer", - "name": "clvbkakjpztxtyj" + "name": "akbgrrysurjkoehcthkhcuta" }, "privateKey": { "algorithm": "Ec256", @@ -38,17 +38,17 @@ }, "san": { "dns": [ - "wqajdpqbbxhjhkxh" + "qqhblwffoqbrqls" ], "ip": [ - "zalnsa" + "cuknnwuiph" ] } }, "manual": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } } @@ -58,19 +58,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "fbrgyiajzvsjvmltxdfomrzkc", - "type": "cgwbwnlzcfzrb", + "name": "eiyqroddgwtwjbqneiotdhrh", + "type": "ogcd", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json index fa18eebe996c..63d325bf8309 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,24 +14,24 @@ "value": [ { "properties": { - "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", + "serviceName": "suckwvpkqovqcdpsnnx", "ports": [ { - "authenticationRef": "trgfwcosnszpwp", - "authorizationRef": "yhtzydgfzcjqvm", - "nodePort": 2397, - "port": 1144, + "authenticationRef": "ej", + "authorizationRef": "bwlgosdznvrhddijbxa", + "nodePort": 1893, + "port": 3623, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "jdqukfxizabieziyo", - "secretName": "n", - "renewBefore": "hzeoo", + "duration": "wzf", + "secretName": "wxnuzhdxevjqbdpdhontvbceprdhy", + "renewBefore": "spxsqsufajmcfqnalw", "issuerRef": { - "group": "jnsfykjsaedwyvgjyw", + "group": "pspljwwkweivysbdttishbmydazpy", "kind": "Issuer", - "name": "clvbkakjpztxtyj" + "name": "akbgrrysurjkoehcthkhcuta" }, "privateKey": { "algorithm": "Ec256", @@ -39,17 +39,17 @@ }, "san": { "dns": [ - "wqajdpqbbxhjhkxh" + "qqhblwffoqbrqls" ], "ip": [ - "zalnsa" + "cuknnwuiph" ] } }, "manual": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } } @@ -59,19 +59,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "fbrgyiajzvsjvmltxdfomrzkc", - "type": "cgwbwnlzcfzrb", + "name": "eiyqroddgwtwjbqneiotdhrh", + "type": "ogcd", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json index 0e7f7e0f96f4..529a23a44dcf 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -11,20 +11,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 145, - "maxMessageExpirySeconds": 4252, - "maxPacketSizeBytes": 8336, + "maxSessionExpirySeconds": 1494, + "maxMessageExpirySeconds": 1606, + "maxPacketSizeBytes": 4261, "subscriberQueueLimit": { - "length": 18, + "length": 29, "strategy": "None" }, - "maxReceiveMaximum": 7156, - "maxKeepAliveSeconds": 2346 + "maxReceiveMaximum": 9103, + "maxKeepAliveSeconds": 7157 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "yqh", - "renewBefore": "fuqdxmxvxizwjpsdp", + "duration": "hhbeenthlnibetsvzdjlziyeigmup", + "renewBefore": "ahqdeqzqvxk", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -33,46 +33,46 @@ }, "cardinality": { "backendChain": { - "partitions": 7, + "partitions": 16, "redundancyFactor": 2, - "workers": 6 + "workers": 4 }, "frontend": { - "replicas": 5, - "workers": 5 + "replicas": 1, + "workers": 6 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 48, - "timeoutSeconds": 69 + "intervalSeconds": 137, + "timeoutSeconds": 26 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "cacheSizeMegabytes": 127, + "cacheSizeMegabytes": 16, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 254 + "intervalSeconds": 27 }, "spanChannelCapacity": 1000 } @@ -80,84 +80,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } }, "persistentVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } } @@ -168,7 +168,7 @@ "memoryProfile": "Tiny" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -179,20 +179,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 145, - "maxMessageExpirySeconds": 4252, - "maxPacketSizeBytes": 8336, + "maxSessionExpirySeconds": 1494, + "maxMessageExpirySeconds": 1606, + "maxPacketSizeBytes": 4261, "subscriberQueueLimit": { - "length": 18, + "length": 29, "strategy": "None" }, - "maxReceiveMaximum": 7156, - "maxKeepAliveSeconds": 2346 + "maxReceiveMaximum": 9103, + "maxKeepAliveSeconds": 7157 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "yqh", - "renewBefore": "fuqdxmxvxizwjpsdp", + "duration": "hhbeenthlnibetsvzdjlziyeigmup", + "renewBefore": "ahqdeqzqvxk", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -201,46 +201,46 @@ }, "cardinality": { "backendChain": { - "partitions": 7, + "partitions": 16, "redundancyFactor": 2, - "workers": 6 + "workers": 4 }, "frontend": { - "replicas": 5, - "workers": 5 + "replicas": 1, + "workers": 6 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 48, - "timeoutSeconds": 69 + "intervalSeconds": 137, + "timeoutSeconds": 26 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "cacheSizeMegabytes": 127, + "cacheSizeMegabytes": 16, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 254 + "intervalSeconds": 27 }, "spanChannelCapacity": 1000 } @@ -248,84 +248,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } }, "persistentVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } } @@ -337,19 +337,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "wkkkrp", - "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", + "name": "z", + "type": "ombj", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -361,20 +361,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 145, - "maxMessageExpirySeconds": 4252, - "maxPacketSizeBytes": 8336, + "maxSessionExpirySeconds": 1494, + "maxMessageExpirySeconds": 1606, + "maxPacketSizeBytes": 4261, "subscriberQueueLimit": { - "length": 18, + "length": 29, "strategy": "None" }, - "maxReceiveMaximum": 7156, - "maxKeepAliveSeconds": 2346 + "maxReceiveMaximum": 9103, + "maxKeepAliveSeconds": 7157 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "yqh", - "renewBefore": "fuqdxmxvxizwjpsdp", + "duration": "hhbeenthlnibetsvzdjlziyeigmup", + "renewBefore": "ahqdeqzqvxk", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -383,46 +383,46 @@ }, "cardinality": { "backendChain": { - "partitions": 7, + "partitions": 16, "redundancyFactor": 2, - "workers": 6 + "workers": 4 }, "frontend": { - "replicas": 5, - "workers": 5 + "replicas": 1, + "workers": 6 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 48, - "timeoutSeconds": 69 + "intervalSeconds": 137, + "timeoutSeconds": 26 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "cacheSizeMegabytes": 127, + "cacheSizeMegabytes": 16, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 254 + "intervalSeconds": 27 }, "spanChannelCapacity": 1000 } @@ -430,84 +430,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } }, "persistentVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } } @@ -519,19 +519,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "wkkkrp", - "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", + "name": "z", + "type": "ombj", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json index 0f65b93e8336..c7aa18826415 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json index 84c18140d328..69126be2d7b5 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,20 +14,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 145, - "maxMessageExpirySeconds": 4252, - "maxPacketSizeBytes": 8336, + "maxSessionExpirySeconds": 1494, + "maxMessageExpirySeconds": 1606, + "maxPacketSizeBytes": 4261, "subscriberQueueLimit": { - "length": 18, + "length": 29, "strategy": "None" }, - "maxReceiveMaximum": 7156, - "maxKeepAliveSeconds": 2346 + "maxReceiveMaximum": 9103, + "maxKeepAliveSeconds": 7157 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "yqh", - "renewBefore": "fuqdxmxvxizwjpsdp", + "duration": "hhbeenthlnibetsvzdjlziyeigmup", + "renewBefore": "ahqdeqzqvxk", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -36,46 +36,46 @@ }, "cardinality": { "backendChain": { - "partitions": 7, + "partitions": 16, "redundancyFactor": 2, - "workers": 6 + "workers": 4 }, "frontend": { - "replicas": 5, - "workers": 5 + "replicas": 1, + "workers": 6 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 48, - "timeoutSeconds": 69 + "intervalSeconds": 137, + "timeoutSeconds": 26 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "cacheSizeMegabytes": 127, + "cacheSizeMegabytes": 16, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 254 + "intervalSeconds": 27 }, "spanChannelCapacity": 1000 } @@ -83,84 +83,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } }, "persistentVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } } @@ -172,19 +172,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "wkkkrp", - "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", + "name": "z", + "type": "ombj", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json index 7b5156de815f..fd3694cea4d1 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -15,20 +15,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 145, - "maxMessageExpirySeconds": 4252, - "maxPacketSizeBytes": 8336, + "maxSessionExpirySeconds": 1494, + "maxMessageExpirySeconds": 1606, + "maxPacketSizeBytes": 4261, "subscriberQueueLimit": { - "length": 18, + "length": 29, "strategy": "None" }, - "maxReceiveMaximum": 7156, - "maxKeepAliveSeconds": 2346 + "maxReceiveMaximum": 9103, + "maxKeepAliveSeconds": 7157 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "yqh", - "renewBefore": "fuqdxmxvxizwjpsdp", + "duration": "hhbeenthlnibetsvzdjlziyeigmup", + "renewBefore": "ahqdeqzqvxk", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -37,46 +37,46 @@ }, "cardinality": { "backendChain": { - "partitions": 7, + "partitions": 16, "redundancyFactor": 2, - "workers": 6 + "workers": 4 }, "frontend": { - "replicas": 5, - "workers": 5 + "replicas": 1, + "workers": 6 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 48, - "timeoutSeconds": 69 + "intervalSeconds": 137, + "timeoutSeconds": 26 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "cacheSizeMegabytes": 127, + "cacheSizeMegabytes": 16, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 254 + "intervalSeconds": 27 }, "spanChannelCapacity": 1000 } @@ -84,84 +84,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } }, "persistentVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } } @@ -173,19 +173,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "wkkkrp", - "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", + "name": "z", + "type": "ombj", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json index 78fdca723767..b4562ee1be3d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123", @@ -14,91 +14,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "yipkettqtmo", + "database": "tgkjeplyymwhccdxdprgbgxmekpej", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" + "secretRef": "hgphq" }, "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "v", - "workspaceName": "kvnbmveestwifriggxjohh" + "lakehouseName": "cbpdcforswqcvihvtbqwknxcjtt", + "workspaceName": "vkepludcrhnjzzlttzoupmxpgysj" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "secretRef": "kurnzk" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "consumerGroupId": "dvys", - "host": "pacxrth", + "consumerGroupId": "rylqrwbcfd", + "host": "jqhs", "batching": { "mode": "Enabled", - "latencyMs": 1742, - "maxBytes": 9062, - "maxMessages": 4566 + "latencyMs": 5892, + "maxBytes": 8098, + "maxMessages": 7243 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -106,49 +106,48 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" + "persistentVolumeClaimRef": "yuppjxnwne" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "serviceAccountTokenSettings": { + "audience": "goxqxbicsjccxvnb" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "clientIdPrefix": "jjdavjobxwfrsoosgixo", - "host": "ezaqzuffdaflewfyhubi", + "clientIdPrefix": "dowtppiolzvxtvsgshvabfpfu", + "host": "vogpblicvguevzg", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" } }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -162,91 +161,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "yipkettqtmo", + "database": "tgkjeplyymwhccdxdprgbgxmekpej", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" + "secretRef": "hgphq" }, "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "v", - "workspaceName": "kvnbmveestwifriggxjohh" + "lakehouseName": "cbpdcforswqcvihvtbqwknxcjtt", + "workspaceName": "vkepludcrhnjzzlttzoupmxpgysj" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "secretRef": "kurnzk" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "consumerGroupId": "dvys", - "host": "pacxrth", + "consumerGroupId": "rylqrwbcfd", + "host": "jqhs", "batching": { "mode": "Enabled", - "latencyMs": 1742, - "maxBytes": 9062, - "maxMessages": 4566 + "latencyMs": 5892, + "maxBytes": 8098, + "maxMessages": 7243 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -254,62 +253,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" + "persistentVolumeClaimRef": "yuppjxnwne" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "serviceAccountTokenSettings": { + "audience": "goxqxbicsjccxvnb" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "clientIdPrefix": "jjdavjobxwfrsoosgixo", - "host": "ezaqzuffdaflewfyhubi", + "clientIdPrefix": "dowtppiolzvxtvsgshvabfpfu", + "host": "vogpblicvguevzg", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "dmkjez", - "type": "i", + "name": "rzeyluunzeywevaxk", + "type": "ybxjelxxmevqcxrotbiapan", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -324,91 +322,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "yipkettqtmo", + "database": "tgkjeplyymwhccdxdprgbgxmekpej", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" + "secretRef": "hgphq" }, "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "v", - "workspaceName": "kvnbmveestwifriggxjohh" + "lakehouseName": "cbpdcforswqcvihvtbqwknxcjtt", + "workspaceName": "vkepludcrhnjzzlttzoupmxpgysj" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "secretRef": "kurnzk" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "consumerGroupId": "dvys", - "host": "pacxrth", + "consumerGroupId": "rylqrwbcfd", + "host": "jqhs", "batching": { "mode": "Enabled", - "latencyMs": 1742, - "maxBytes": 9062, - "maxMessages": 4566 + "latencyMs": 5892, + "maxBytes": 8098, + "maxMessages": 7243 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -416,62 +414,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" + "persistentVolumeClaimRef": "yuppjxnwne" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "serviceAccountTokenSettings": { + "audience": "goxqxbicsjccxvnb" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "clientIdPrefix": "jjdavjobxwfrsoosgixo", - "host": "ezaqzuffdaflewfyhubi", + "clientIdPrefix": "dowtppiolzvxtvsgshvabfpfu", + "host": "vogpblicvguevzg", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "dmkjez", - "type": "i", + "name": "rzeyluunzeywevaxk", + "type": "ybxjelxxmevqcxrotbiapan", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json index 4ca067dc7e0e..7c8746b63019 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json index d164651cba43..993fc82b1439 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" @@ -17,91 +17,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "yipkettqtmo", + "database": "tgkjeplyymwhccdxdprgbgxmekpej", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" + "secretRef": "hgphq" }, "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "v", - "workspaceName": "kvnbmveestwifriggxjohh" + "lakehouseName": "cbpdcforswqcvihvtbqwknxcjtt", + "workspaceName": "vkepludcrhnjzzlttzoupmxpgysj" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "secretRef": "kurnzk" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "consumerGroupId": "dvys", - "host": "pacxrth", + "consumerGroupId": "rylqrwbcfd", + "host": "jqhs", "batching": { "mode": "Enabled", - "latencyMs": 1742, - "maxBytes": 9062, - "maxMessages": 4566 + "latencyMs": 5892, + "maxBytes": 8098, + "maxMessages": 7243 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -109,62 +109,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" + "persistentVolumeClaimRef": "yuppjxnwne" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "serviceAccountTokenSettings": { + "audience": "goxqxbicsjccxvnb" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "clientIdPrefix": "jjdavjobxwfrsoosgixo", - "host": "ezaqzuffdaflewfyhubi", + "clientIdPrefix": "dowtppiolzvxtvsgshvabfpfu", + "host": "vogpblicvguevzg", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "dmkjez", - "type": "i", + "name": "rzeyluunzeywevaxk", + "type": "ybxjelxxmevqcxrotbiapan", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json index 0eabb1f7d542..8c7ea9ad5499 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -18,91 +18,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "yipkettqtmo", + "database": "tgkjeplyymwhccdxdprgbgxmekpej", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" + "secretRef": "hgphq" }, "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "v", - "workspaceName": "kvnbmveestwifriggxjohh" + "lakehouseName": "cbpdcforswqcvihvtbqwknxcjtt", + "workspaceName": "vkepludcrhnjzzlttzoupmxpgysj" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "secretRef": "kurnzk" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "consumerGroupId": "dvys", - "host": "pacxrth", + "consumerGroupId": "rylqrwbcfd", + "host": "jqhs", "batching": { "mode": "Enabled", - "latencyMs": 1742, - "maxBytes": 9062, - "maxMessages": 4566 + "latencyMs": 5892, + "maxBytes": 8098, + "maxMessages": 7243 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -110,62 +110,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" + "persistentVolumeClaimRef": "yuppjxnwne" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "serviceAccountTokenSettings": { + "audience": "goxqxbicsjccxvnb" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "clientIdPrefix": "jjdavjobxwfrsoosgixo", - "host": "ezaqzuffdaflewfyhubi", + "clientIdPrefix": "dowtppiolzvxtvsgshvabfpfu", + "host": "vogpblicvguevzg", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "dmkjez", - "type": "i", + "name": "rzeyluunzeywevaxk", + "type": "ybxjelxxmevqcxrotbiapan", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json index 3c7ebb16eeff..ef60b05a1a57 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -12,24 +12,24 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 } }, - "instanceCount": 8 + "instanceCount": 10 }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -41,37 +41,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 } }, - "instanceCount": 8, + "instanceCount": 10, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jugs", - "type": "aeocdanmcjoem", + "name": "dzyhlkwvmrovpeajhovvegzgp", + "type": "cbwup", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -84,37 +84,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 } }, - "instanceCount": 8, + "instanceCount": 10, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jugs", - "type": "aeocdanmcjoem", + "name": "dzyhlkwvmrovpeajhovvegzgp", + "type": "cbwup", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json index 8e6e9cebf120..29bd3ec1aedd 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json index 3e85479b299f..48e4ec192caa 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -15,37 +15,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 } }, - "instanceCount": 8, + "instanceCount": 10, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jugs", - "type": "aeocdanmcjoem", + "name": "dzyhlkwvmrovpeajhovvegzgp", + "type": "cbwup", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json index 440244d46979..008bbdaacc80 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -16,41 +16,41 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 } }, - "instanceCount": 8, + "instanceCount": 10, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jugs", - "type": "aeocdanmcjoem", + "name": "dzyhlkwvmrovpeajhovvegzgp", + "type": "cbwup", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], - "nextLink": "https://microsoft.com/aovp" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json index 9d62dad28135..f481d1a26992 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -14,28 +14,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", + "name": "kfxhiaxjnwfocvxjuixtierfhlpa", "sourceSettings": { - "endpointRef": "gn", - "assetRef": "o", + "endpointRef": "hfelavrmqhpsszldapwjxdioct", + "assetRef": "vwuub", "serializationFormat": "Json", - "schemaRef": "syeyzvenfatddlximdquy", + "schemaRef": "pecncubxruwj", "dataSources": [ - "vjhmtfiorwjccfcdwg" + "hcmyrbvfggrre" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "oinjowaif", + "schemaRef": "pfrgluwyl", "datasets": [ { - "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", + "key": "fdufnzgdjhprfvtmbqqstbutmvwszmgqgsbaprrwce", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "ayufirtwqphvshhxto", + "schemaRef": "iqvoyfoixogac", "inputs": [ - "pmcxzunkawpjxthlmk" + "gwdljkrolvju" ], - "expression": "noskhlmqyrvtlhjsncmq" + "expression": "gswagppddjzinsidwaoyway" } ], "filter": [ @@ -43,9 +43,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "qgqcrczayiuhlskihph" + "hiuadujdiqzqhykdfvrcrqtw" ], - "expression": "kdrfnrdbm" + "expression": "cqsqgs" } ], "map": [ @@ -53,22 +53,22 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "eo" + "qosdanuzriftfbfipui" ], - "expression": "mdkfrm", - "output": "covplwowkjnsl" + "expression": "jfrtvrcn", + "output": "pscwrijeapxfmpgzq" } ] }, "destinationSettings": { - "endpointRef": "jquecpebujuglesucsk", - "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" + "endpointRef": "nmvsyulmtnycm", + "dataDestination": "nuxuyzwhcwkpkyysmosjjuneumj" } } ] }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -81,28 +81,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", + "name": "kfxhiaxjnwfocvxjuixtierfhlpa", "sourceSettings": { - "endpointRef": "gn", - "assetRef": "o", + "endpointRef": "hfelavrmqhpsszldapwjxdioct", + "assetRef": "vwuub", "serializationFormat": "Json", - "schemaRef": "syeyzvenfatddlximdquy", + "schemaRef": "pecncubxruwj", "dataSources": [ - "vjhmtfiorwjccfcdwg" + "hcmyrbvfggrre" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "oinjowaif", + "schemaRef": "pfrgluwyl", "datasets": [ { - "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", + "key": "fdufnzgdjhprfvtmbqqstbutmvwszmgqgsbaprrwce", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "ayufirtwqphvshhxto", + "schemaRef": "iqvoyfoixogac", "inputs": [ - "pmcxzunkawpjxthlmk" + "gwdljkrolvju" ], - "expression": "noskhlmqyrvtlhjsncmq" + "expression": "gswagppddjzinsidwaoyway" } ], "filter": [ @@ -110,9 +110,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "qgqcrczayiuhlskihph" + "hiuadujdiqzqhykdfvrcrqtw" ], - "expression": "kdrfnrdbm" + "expression": "cqsqgs" } ], "map": [ @@ -120,35 +120,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "eo" + "qosdanuzriftfbfipui" ], - "expression": "mdkfrm", - "output": "covplwowkjnsl" + "expression": "jfrtvrcn", + "output": "pscwrijeapxfmpgzq" } ] }, "destinationSettings": { - "endpointRef": "jquecpebujuglesucsk", - "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" + "endpointRef": "nmvsyulmtnycm", + "dataDestination": "nuxuyzwhcwkpkyysmosjjuneumj" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "jvxagylmwrzufelrrlhycwirdi", - "type": "plohcjrtnmss", + "name": "skrhfqjimfcuypwqdzrmqgupsqplye", + "type": "birntvlkphlwbwlfn", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -162,28 +162,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", + "name": "kfxhiaxjnwfocvxjuixtierfhlpa", "sourceSettings": { - "endpointRef": "gn", - "assetRef": "o", + "endpointRef": "hfelavrmqhpsszldapwjxdioct", + "assetRef": "vwuub", "serializationFormat": "Json", - "schemaRef": "syeyzvenfatddlximdquy", + "schemaRef": "pecncubxruwj", "dataSources": [ - "vjhmtfiorwjccfcdwg" + "hcmyrbvfggrre" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "oinjowaif", + "schemaRef": "pfrgluwyl", "datasets": [ { - "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", + "key": "fdufnzgdjhprfvtmbqqstbutmvwszmgqgsbaprrwce", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "ayufirtwqphvshhxto", + "schemaRef": "iqvoyfoixogac", "inputs": [ - "pmcxzunkawpjxthlmk" + "gwdljkrolvju" ], - "expression": "noskhlmqyrvtlhjsncmq" + "expression": "gswagppddjzinsidwaoyway" } ], "filter": [ @@ -191,9 +191,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "qgqcrczayiuhlskihph" + "hiuadujdiqzqhykdfvrcrqtw" ], - "expression": "kdrfnrdbm" + "expression": "cqsqgs" } ], "map": [ @@ -201,35 +201,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "eo" + "qosdanuzriftfbfipui" ], - "expression": "mdkfrm", - "output": "covplwowkjnsl" + "expression": "jfrtvrcn", + "output": "pscwrijeapxfmpgzq" } ] }, "destinationSettings": { - "endpointRef": "jquecpebujuglesucsk", - "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" + "endpointRef": "nmvsyulmtnycm", + "dataDestination": "nuxuyzwhcwkpkyysmosjjuneumj" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "jvxagylmwrzufelrrlhycwirdi", - "type": "plohcjrtnmss", + "name": "skrhfqjimfcuypwqdzrmqgupsqplye", + "type": "birntvlkphlwbwlfn", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json index a1d78104dc6d..4030494b7f3d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json index 26b8bc73ab53..bcc54c441430 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -17,28 +17,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", + "name": "kfxhiaxjnwfocvxjuixtierfhlpa", "sourceSettings": { - "endpointRef": "gn", - "assetRef": "o", + "endpointRef": "hfelavrmqhpsszldapwjxdioct", + "assetRef": "vwuub", "serializationFormat": "Json", - "schemaRef": "syeyzvenfatddlximdquy", + "schemaRef": "pecncubxruwj", "dataSources": [ - "vjhmtfiorwjccfcdwg" + "hcmyrbvfggrre" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "oinjowaif", + "schemaRef": "pfrgluwyl", "datasets": [ { - "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", + "key": "fdufnzgdjhprfvtmbqqstbutmvwszmgqgsbaprrwce", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "ayufirtwqphvshhxto", + "schemaRef": "iqvoyfoixogac", "inputs": [ - "pmcxzunkawpjxthlmk" + "gwdljkrolvju" ], - "expression": "noskhlmqyrvtlhjsncmq" + "expression": "gswagppddjzinsidwaoyway" } ], "filter": [ @@ -46,9 +46,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "qgqcrczayiuhlskihph" + "hiuadujdiqzqhykdfvrcrqtw" ], - "expression": "kdrfnrdbm" + "expression": "cqsqgs" } ], "map": [ @@ -56,35 +56,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "eo" + "qosdanuzriftfbfipui" ], - "expression": "mdkfrm", - "output": "covplwowkjnsl" + "expression": "jfrtvrcn", + "output": "pscwrijeapxfmpgzq" } ] }, "destinationSettings": { - "endpointRef": "jquecpebujuglesucsk", - "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" + "endpointRef": "nmvsyulmtnycm", + "dataDestination": "nuxuyzwhcwkpkyysmosjjuneumj" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "jvxagylmwrzufelrrlhycwirdi", - "type": "plohcjrtnmss", + "name": "skrhfqjimfcuypwqdzrmqgupsqplye", + "type": "birntvlkphlwbwlfn", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json index b65bd6dd5902..082682570c27 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_ListByProfileResource", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -18,28 +18,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", + "name": "kfxhiaxjnwfocvxjuixtierfhlpa", "sourceSettings": { - "endpointRef": "gn", - "assetRef": "o", + "endpointRef": "hfelavrmqhpsszldapwjxdioct", + "assetRef": "vwuub", "serializationFormat": "Json", - "schemaRef": "syeyzvenfatddlximdquy", + "schemaRef": "pecncubxruwj", "dataSources": [ - "vjhmtfiorwjccfcdwg" + "hcmyrbvfggrre" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "oinjowaif", + "schemaRef": "pfrgluwyl", "datasets": [ { - "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", + "key": "fdufnzgdjhprfvtmbqqstbutmvwszmgqgsbaprrwce", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "ayufirtwqphvshhxto", + "schemaRef": "iqvoyfoixogac", "inputs": [ - "pmcxzunkawpjxthlmk" + "gwdljkrolvju" ], - "expression": "noskhlmqyrvtlhjsncmq" + "expression": "gswagppddjzinsidwaoyway" } ], "filter": [ @@ -47,9 +47,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "qgqcrczayiuhlskihph" + "hiuadujdiqzqhykdfvrcrqtw" ], - "expression": "kdrfnrdbm" + "expression": "cqsqgs" } ], "map": [ @@ -57,39 +57,39 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "eo" + "qosdanuzriftfbfipui" ], - "expression": "mdkfrm", - "output": "covplwowkjnsl" + "expression": "jfrtvrcn", + "output": "pscwrijeapxfmpgzq" } ] }, "destinationSettings": { - "endpointRef": "jquecpebujuglesucsk", - "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" + "endpointRef": "nmvsyulmtnycm", + "dataDestination": "nuxuyzwhcwkpkyysmosjjuneumj" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "jvxagylmwrzufelrrlhycwirdi", - "type": "plohcjrtnmss", + "name": "skrhfqjimfcuypwqdzrmqgupsqplye", + "type": "birntvlkphlwbwlfn", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/aanb" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json index cddae2a40b99..e974a55c3407 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "resource": { @@ -12,19 +12,19 @@ "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { "type": "None", "userAssignedIdentities": { - "key8843": {} + "key5421": {} } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw" + "location": "bzgtudympozlzinvitua" } }, "responses": { @@ -33,11 +33,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -45,26 +45,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -76,11 +76,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -88,26 +88,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json index 9c1e84ff63c9..ed95e58083d0 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json index a0d7d97ec9fb..3e6806038dfc 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -25,26 +25,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json index c07903ab2126..229f806412be 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations" }, "responses": { @@ -14,11 +14,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -26,30 +26,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/ah" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json index 3a6eeb5072a3..2fe8e907da6f 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListBySubscription", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E" + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A" }, "responses": { "200": { @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -25,30 +25,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/ah" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json index 10c3dbb7fead..9358dc3fe9fb 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json @@ -3,12 +3,12 @@ "operationId": "Instance_Update", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "properties": { "tags": { - "key8540": "gtgywaslfwdemktth" + "key7553": "zywwtcynmbkyz" } } }, @@ -18,11 +18,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -30,26 +30,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json index 20b22da974da..4ce1cff74f88 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json @@ -9,19 +9,19 @@ "body": { "value": [ { - "name": "lk", + "name": "mjuigusksdxtsmnetvalgick", "isDataAction": true, "display": { - "provider": "wygjphpv", - "resource": "vtqbaemzffskmftfobbokxtepgjsg", - "operation": "fumjunhjrk", + "provider": "jocdsuaynakxznjvymlrbumel", + "resource": "zkdga", + "operation": "efngzmxelmrhsdcnnuvnjam", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit." }, "origin": "user", "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/acroicd" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json index fa9bfb939159..295ce535f45d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -17,38 +17,38 @@ "auth": { "x509": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } }, - "caCertConfigMap": "ehlaje", + "caCertConfigMap": "g", "endpoint": "https://www.example.com", "headers": { - "key8621": "fpmhab" + "key8801": "wxyrcjoyfknqsoqqasabstxw" } }, "serviceAccountTokenSettings": { "audiences": [ - "pe" + "vz" ] }, "x509Settings": { "authorizationAttributes": { - "key8417": { + "key2694": { "attributes": { - "key9804": "gastmerxmuvqjpycizqetglexgaba" + "key8338": "kwenhypiadtcozdazqrpn" }, - "subject": "m" + "subject": "cnkrquqjaillztlekwchnjqz" } }, - "trustedClientCaCert": "vkkvheqzsjmueot" + "trustedClientCaCert": "xg" } } ] }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -64,51 +64,51 @@ "auth": { "x509": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } }, - "caCertConfigMap": "ehlaje", + "caCertConfigMap": "g", "endpoint": "https://www.example.com", "headers": { - "key8621": "fpmhab" + "key8801": "wxyrcjoyfknqsoqqasabstxw" } }, "serviceAccountTokenSettings": { "audiences": [ - "pe" + "vz" ] }, "x509Settings": { "authorizationAttributes": { - "key8417": { + "key2694": { "attributes": { - "key9804": "gastmerxmuvqjpycizqetglexgaba" + "key8338": "kwenhypiadtcozdazqrpn" }, - "subject": "m" + "subject": "cnkrquqjaillztlekwchnjqz" } }, - "trustedClientCaCert": "vkkvheqzsjmueot" + "trustedClientCaCert": "xg" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "izzrphovvyuixeskwunjprz", - "type": "qlbxt", + "name": "xhikjjbpxccawrouge", + "type": "fv", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -125,51 +125,51 @@ "auth": { "x509": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } }, - "caCertConfigMap": "ehlaje", + "caCertConfigMap": "g", "endpoint": "https://www.example.com", "headers": { - "key8621": "fpmhab" + "key8801": "wxyrcjoyfknqsoqqasabstxw" } }, "serviceAccountTokenSettings": { "audiences": [ - "pe" + "vz" ] }, "x509Settings": { "authorizationAttributes": { - "key8417": { + "key2694": { "attributes": { - "key9804": "gastmerxmuvqjpycizqetglexgaba" + "key8338": "kwenhypiadtcozdazqrpn" }, - "subject": "m" + "subject": "cnkrquqjaillztlekwchnjqz" } }, - "trustedClientCaCert": "vkkvheqzsjmueot" + "trustedClientCaCert": "xg" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "izzrphovvyuixeskwunjprz", - "type": "qlbxt", + "name": "xhikjjbpxccawrouge", + "type": "fv", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json index 3d2a2410a7d2..0ee2fa45106d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json index b60db0318678..967be4cc99f7 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -20,51 +20,51 @@ "auth": { "x509": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } }, - "caCertConfigMap": "ehlaje", + "caCertConfigMap": "g", "endpoint": "https://www.example.com", "headers": { - "key8621": "fpmhab" + "key8801": "wxyrcjoyfknqsoqqasabstxw" } }, "serviceAccountTokenSettings": { "audiences": [ - "pe" + "vz" ] }, "x509Settings": { "authorizationAttributes": { - "key8417": { + "key2694": { "attributes": { - "key9804": "gastmerxmuvqjpycizqetglexgaba" + "key8338": "kwenhypiadtcozdazqrpn" }, - "subject": "m" + "subject": "cnkrquqjaillztlekwchnjqz" } }, - "trustedClientCaCert": "vkkvheqzsjmueot" + "trustedClientCaCert": "xg" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "izzrphovvyuixeskwunjprz", - "type": "qlbxt", + "name": "xhikjjbpxccawrouge", + "type": "fv", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json index 79676d486276..eba47c602d9a 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -21,51 +21,51 @@ "auth": { "x509": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } }, - "caCertConfigMap": "ehlaje", + "caCertConfigMap": "g", "endpoint": "https://www.example.com", "headers": { - "key8621": "fpmhab" + "key8801": "wxyrcjoyfknqsoqqasabstxw" } }, "serviceAccountTokenSettings": { "audiences": [ - "pe" + "vz" ] }, "x509Settings": { "authorizationAttributes": { - "key8417": { + "key2694": { "attributes": { - "key9804": "gastmerxmuvqjpycizqetglexgaba" + "key8338": "kwenhypiadtcozdazqrpn" }, - "subject": "m" + "subject": "cnkrquqjaillztlekwchnjqz" } }, - "trustedClientCaCert": "vkkvheqzsjmueot" + "trustedClientCaCert": "xg" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "izzrphovvyuixeskwunjprz", - "type": "qlbxt", + "name": "xhikjjbpxccawrouge", + "type": "fv", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json index 937e06de0c07..37c9ed1441eb 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -18,28 +18,28 @@ { "method": "Connect", "topics": [ - "xutdgrerwpqwchmknvmxvrun" + "omlixbstiosmctiucvmwktnostk" ] } ], "principals": { "attributes": [ { - "key4726": "lnwvpswjzzdoot" + "key8854": "txooumr" } ], "clientIds": [ - "pkwkxfpdhbifyyopmgrtrkdkdz" + "dbrufsxzthb" ], "usernames": [ - "gaqjiwni" + "ktsrxknsrbrpvqsjrpaa" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "wvmrfnazvywwgtxyxfjrvnintcmyy" + "dpxyigzkqeczgt" ], "method": "Read" } @@ -49,7 +49,7 @@ } }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -66,28 +66,28 @@ { "method": "Connect", "topics": [ - "xutdgrerwpqwchmknvmxvrun" + "omlixbstiosmctiucvmwktnostk" ] } ], "principals": { "attributes": [ { - "key4726": "lnwvpswjzzdoot" + "key8854": "txooumr" } ], "clientIds": [ - "pkwkxfpdhbifyyopmgrtrkdkdz" + "dbrufsxzthb" ], "usernames": [ - "gaqjiwni" + "ktsrxknsrbrpvqsjrpaa" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "wvmrfnazvywwgtxyxfjrvnintcmyy" + "dpxyigzkqeczgt" ], "method": "Read" } @@ -98,19 +98,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "iddoisfjsmpxuuvsfdalorrqwvghg", - "type": "adkawsspje", + "name": "zyegdccgwccvlfrwyoksveccnblk", + "type": "lfvqxtwetytrumsls", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -128,28 +128,28 @@ { "method": "Connect", "topics": [ - "xutdgrerwpqwchmknvmxvrun" + "omlixbstiosmctiucvmwktnostk" ] } ], "principals": { "attributes": [ { - "key4726": "lnwvpswjzzdoot" + "key8854": "txooumr" } ], "clientIds": [ - "pkwkxfpdhbifyyopmgrtrkdkdz" + "dbrufsxzthb" ], "usernames": [ - "gaqjiwni" + "ktsrxknsrbrpvqsjrpaa" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "wvmrfnazvywwgtxyxfjrvnintcmyy" + "dpxyigzkqeczgt" ], "method": "Read" } @@ -160,19 +160,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "iddoisfjsmpxuuvsfdalorrqwvghg", - "type": "adkawsspje", + "name": "zyegdccgwccvlfrwyoksveccnblk", + "type": "lfvqxtwetytrumsls", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json index f6435fafce5c..12fdb5d5639d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json index 4b9c0c3d580f..c4d2c181700d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -21,28 +21,28 @@ { "method": "Connect", "topics": [ - "xutdgrerwpqwchmknvmxvrun" + "omlixbstiosmctiucvmwktnostk" ] } ], "principals": { "attributes": [ { - "key4726": "lnwvpswjzzdoot" + "key8854": "txooumr" } ], "clientIds": [ - "pkwkxfpdhbifyyopmgrtrkdkdz" + "dbrufsxzthb" ], "usernames": [ - "gaqjiwni" + "ktsrxknsrbrpvqsjrpaa" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "wvmrfnazvywwgtxyxfjrvnintcmyy" + "dpxyigzkqeczgt" ], "method": "Read" } @@ -53,19 +53,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "iddoisfjsmpxuuvsfdalorrqwvghg", - "type": "adkawsspje", + "name": "zyegdccgwccvlfrwyoksveccnblk", + "type": "lfvqxtwetytrumsls", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json index f9a496e53d68..373ed8b560de 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -22,28 +22,28 @@ { "method": "Connect", "topics": [ - "xutdgrerwpqwchmknvmxvrun" + "omlixbstiosmctiucvmwktnostk" ] } ], "principals": { "attributes": [ { - "key4726": "lnwvpswjzzdoot" + "key8854": "txooumr" } ], "clientIds": [ - "pkwkxfpdhbifyyopmgrtrkdkdz" + "dbrufsxzthb" ], "usernames": [ - "gaqjiwni" + "ktsrxknsrbrpvqsjrpaa" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "wvmrfnazvywwgtxyxfjrvnintcmyy" + "dpxyigzkqeczgt" ], "method": "Read" } @@ -54,19 +54,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "iddoisfjsmpxuuvsfdalorrqwvghg", - "type": "adkawsspje", + "name": "zyegdccgwccvlfrwyoksveccnblk", + "type": "lfvqxtwetytrumsls", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json index f3fbad78aa4d..e809c7492ae7 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json @@ -3,31 +3,31 @@ "operationId": "BrokerListener_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", "listenerName": "resource-name123", "resource": { "properties": { - "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", + "serviceName": "suckwvpkqovqcdpsnnx", "ports": [ { - "authenticationRef": "trgfwcosnszpwp", - "authorizationRef": "yhtzydgfzcjqvm", - "nodePort": 2397, - "port": 1144, + "authenticationRef": "ej", + "authorizationRef": "bwlgosdznvrhddijbxa", + "nodePort": 1893, + "port": 3623, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "jdqukfxizabieziyo", - "secretName": "n", - "renewBefore": "hzeoo", + "duration": "wzf", + "secretName": "wxnuzhdxevjqbdpdhontvbceprdhy", + "renewBefore": "spxsqsufajmcfqnalw", "issuerRef": { - "group": "jnsfykjsaedwyvgjyw", + "group": "pspljwwkweivysbdttishbmydazpy", "kind": "Issuer", - "name": "clvbkakjpztxtyj" + "name": "akbgrrysurjkoehcthkhcuta" }, "privateKey": { "algorithm": "Ec256", @@ -35,17 +35,17 @@ }, "san": { "dns": [ - "wqajdpqbbxhjhkxh" + "qqhblwffoqbrqls" ], "ip": [ - "zalnsa" + "cuknnwuiph" ] } }, "manual": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } } @@ -54,7 +54,7 @@ "serviceType": "ClusterIp" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -63,24 +63,24 @@ "200": { "body": { "properties": { - "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", + "serviceName": "suckwvpkqovqcdpsnnx", "ports": [ { - "authenticationRef": "trgfwcosnszpwp", - "authorizationRef": "yhtzydgfzcjqvm", - "nodePort": 2397, - "port": 1144, + "authenticationRef": "ej", + "authorizationRef": "bwlgosdznvrhddijbxa", + "nodePort": 1893, + "port": 3623, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "jdqukfxizabieziyo", - "secretName": "n", - "renewBefore": "hzeoo", + "duration": "wzf", + "secretName": "wxnuzhdxevjqbdpdhontvbceprdhy", + "renewBefore": "spxsqsufajmcfqnalw", "issuerRef": { - "group": "jnsfykjsaedwyvgjyw", + "group": "pspljwwkweivysbdttishbmydazpy", "kind": "Issuer", - "name": "clvbkakjpztxtyj" + "name": "akbgrrysurjkoehcthkhcuta" }, "privateKey": { "algorithm": "Ec256", @@ -88,17 +88,17 @@ }, "san": { "dns": [ - "wqajdpqbbxhjhkxh" + "qqhblwffoqbrqls" ], "ip": [ - "zalnsa" + "cuknnwuiph" ] } }, "manual": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } } @@ -108,19 +108,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "fbrgyiajzvsjvmltxdfomrzkc", - "type": "cgwbwnlzcfzrb", + "name": "eiyqroddgwtwjbqneiotdhrh", + "type": "ogcd", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -130,24 +130,24 @@ }, "body": { "properties": { - "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", + "serviceName": "suckwvpkqovqcdpsnnx", "ports": [ { - "authenticationRef": "trgfwcosnszpwp", - "authorizationRef": "yhtzydgfzcjqvm", - "nodePort": 2397, - "port": 1144, + "authenticationRef": "ej", + "authorizationRef": "bwlgosdznvrhddijbxa", + "nodePort": 1893, + "port": 3623, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "jdqukfxizabieziyo", - "secretName": "n", - "renewBefore": "hzeoo", + "duration": "wzf", + "secretName": "wxnuzhdxevjqbdpdhontvbceprdhy", + "renewBefore": "spxsqsufajmcfqnalw", "issuerRef": { - "group": "jnsfykjsaedwyvgjyw", + "group": "pspljwwkweivysbdttishbmydazpy", "kind": "Issuer", - "name": "clvbkakjpztxtyj" + "name": "akbgrrysurjkoehcthkhcuta" }, "privateKey": { "algorithm": "Ec256", @@ -155,17 +155,17 @@ }, "san": { "dns": [ - "wqajdpqbbxhjhkxh" + "qqhblwffoqbrqls" ], "ip": [ - "zalnsa" + "cuknnwuiph" ] } }, "manual": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } } @@ -175,19 +175,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "fbrgyiajzvsjvmltxdfomrzkc", - "type": "cgwbwnlzcfzrb", + "name": "eiyqroddgwtwjbqneiotdhrh", + "type": "ogcd", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json index ee021ca1d620..973c23d891ff 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json index f957cae8ba11..903ba1180aca 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -13,24 +13,24 @@ "200": { "body": { "properties": { - "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", + "serviceName": "suckwvpkqovqcdpsnnx", "ports": [ { - "authenticationRef": "trgfwcosnszpwp", - "authorizationRef": "yhtzydgfzcjqvm", - "nodePort": 2397, - "port": 1144, + "authenticationRef": "ej", + "authorizationRef": "bwlgosdznvrhddijbxa", + "nodePort": 1893, + "port": 3623, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "jdqukfxizabieziyo", - "secretName": "n", - "renewBefore": "hzeoo", + "duration": "wzf", + "secretName": "wxnuzhdxevjqbdpdhontvbceprdhy", + "renewBefore": "spxsqsufajmcfqnalw", "issuerRef": { - "group": "jnsfykjsaedwyvgjyw", + "group": "pspljwwkweivysbdttishbmydazpy", "kind": "Issuer", - "name": "clvbkakjpztxtyj" + "name": "akbgrrysurjkoehcthkhcuta" }, "privateKey": { "algorithm": "Ec256", @@ -38,17 +38,17 @@ }, "san": { "dns": [ - "wqajdpqbbxhjhkxh" + "qqhblwffoqbrqls" ], "ip": [ - "zalnsa" + "cuknnwuiph" ] } }, "manual": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } } @@ -58,19 +58,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "fbrgyiajzvsjvmltxdfomrzkc", - "type": "cgwbwnlzcfzrb", + "name": "eiyqroddgwtwjbqneiotdhrh", + "type": "ogcd", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json index fa18eebe996c..63d325bf8309 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,24 +14,24 @@ "value": [ { "properties": { - "serviceName": "cxmjrqrrhcrltlxzkwfbzclu", + "serviceName": "suckwvpkqovqcdpsnnx", "ports": [ { - "authenticationRef": "trgfwcosnszpwp", - "authorizationRef": "yhtzydgfzcjqvm", - "nodePort": 2397, - "port": 1144, + "authenticationRef": "ej", + "authorizationRef": "bwlgosdznvrhddijbxa", + "nodePort": 1893, + "port": 3623, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "jdqukfxizabieziyo", - "secretName": "n", - "renewBefore": "hzeoo", + "duration": "wzf", + "secretName": "wxnuzhdxevjqbdpdhontvbceprdhy", + "renewBefore": "spxsqsufajmcfqnalw", "issuerRef": { - "group": "jnsfykjsaedwyvgjyw", + "group": "pspljwwkweivysbdttishbmydazpy", "kind": "Issuer", - "name": "clvbkakjpztxtyj" + "name": "akbgrrysurjkoehcthkhcuta" }, "privateKey": { "algorithm": "Ec256", @@ -39,17 +39,17 @@ }, "san": { "dns": [ - "wqajdpqbbxhjhkxh" + "qqhblwffoqbrqls" ], "ip": [ - "zalnsa" + "cuknnwuiph" ] } }, "manual": { "secretRef": { - "name": "zcqbtwcpyazcvjxlvrousk", - "namespace": "nbfvgjlnhmhviceh" + "name": "hzlm", + "namespace": "paejjs" } } } @@ -59,19 +59,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "fbrgyiajzvsjvmltxdfomrzkc", - "type": "cgwbwnlzcfzrb", + "name": "eiyqroddgwtwjbqneiotdhrh", + "type": "ogcd", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json index 0e7f7e0f96f4..529a23a44dcf 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -11,20 +11,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 145, - "maxMessageExpirySeconds": 4252, - "maxPacketSizeBytes": 8336, + "maxSessionExpirySeconds": 1494, + "maxMessageExpirySeconds": 1606, + "maxPacketSizeBytes": 4261, "subscriberQueueLimit": { - "length": 18, + "length": 29, "strategy": "None" }, - "maxReceiveMaximum": 7156, - "maxKeepAliveSeconds": 2346 + "maxReceiveMaximum": 9103, + "maxKeepAliveSeconds": 7157 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "yqh", - "renewBefore": "fuqdxmxvxizwjpsdp", + "duration": "hhbeenthlnibetsvzdjlziyeigmup", + "renewBefore": "ahqdeqzqvxk", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -33,46 +33,46 @@ }, "cardinality": { "backendChain": { - "partitions": 7, + "partitions": 16, "redundancyFactor": 2, - "workers": 6 + "workers": 4 }, "frontend": { - "replicas": 5, - "workers": 5 + "replicas": 1, + "workers": 6 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 48, - "timeoutSeconds": 69 + "intervalSeconds": 137, + "timeoutSeconds": 26 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "cacheSizeMegabytes": 127, + "cacheSizeMegabytes": 16, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 254 + "intervalSeconds": 27 }, "spanChannelCapacity": 1000 } @@ -80,84 +80,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } }, "persistentVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } } @@ -168,7 +168,7 @@ "memoryProfile": "Tiny" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -179,20 +179,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 145, - "maxMessageExpirySeconds": 4252, - "maxPacketSizeBytes": 8336, + "maxSessionExpirySeconds": 1494, + "maxMessageExpirySeconds": 1606, + "maxPacketSizeBytes": 4261, "subscriberQueueLimit": { - "length": 18, + "length": 29, "strategy": "None" }, - "maxReceiveMaximum": 7156, - "maxKeepAliveSeconds": 2346 + "maxReceiveMaximum": 9103, + "maxKeepAliveSeconds": 7157 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "yqh", - "renewBefore": "fuqdxmxvxizwjpsdp", + "duration": "hhbeenthlnibetsvzdjlziyeigmup", + "renewBefore": "ahqdeqzqvxk", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -201,46 +201,46 @@ }, "cardinality": { "backendChain": { - "partitions": 7, + "partitions": 16, "redundancyFactor": 2, - "workers": 6 + "workers": 4 }, "frontend": { - "replicas": 5, - "workers": 5 + "replicas": 1, + "workers": 6 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 48, - "timeoutSeconds": 69 + "intervalSeconds": 137, + "timeoutSeconds": 26 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "cacheSizeMegabytes": 127, + "cacheSizeMegabytes": 16, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 254 + "intervalSeconds": 27 }, "spanChannelCapacity": 1000 } @@ -248,84 +248,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } }, "persistentVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } } @@ -337,19 +337,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "wkkkrp", - "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", + "name": "z", + "type": "ombj", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -361,20 +361,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 145, - "maxMessageExpirySeconds": 4252, - "maxPacketSizeBytes": 8336, + "maxSessionExpirySeconds": 1494, + "maxMessageExpirySeconds": 1606, + "maxPacketSizeBytes": 4261, "subscriberQueueLimit": { - "length": 18, + "length": 29, "strategy": "None" }, - "maxReceiveMaximum": 7156, - "maxKeepAliveSeconds": 2346 + "maxReceiveMaximum": 9103, + "maxKeepAliveSeconds": 7157 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "yqh", - "renewBefore": "fuqdxmxvxizwjpsdp", + "duration": "hhbeenthlnibetsvzdjlziyeigmup", + "renewBefore": "ahqdeqzqvxk", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -383,46 +383,46 @@ }, "cardinality": { "backendChain": { - "partitions": 7, + "partitions": 16, "redundancyFactor": 2, - "workers": 6 + "workers": 4 }, "frontend": { - "replicas": 5, - "workers": 5 + "replicas": 1, + "workers": 6 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 48, - "timeoutSeconds": 69 + "intervalSeconds": 137, + "timeoutSeconds": 26 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "cacheSizeMegabytes": 127, + "cacheSizeMegabytes": 16, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 254 + "intervalSeconds": 27 }, "spanChannelCapacity": 1000 } @@ -430,84 +430,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } }, "persistentVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } } @@ -519,19 +519,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "wkkkrp", - "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", + "name": "z", + "type": "ombj", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json index 0f65b93e8336..c7aa18826415 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json index 84c18140d328..69126be2d7b5 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,20 +14,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 145, - "maxMessageExpirySeconds": 4252, - "maxPacketSizeBytes": 8336, + "maxSessionExpirySeconds": 1494, + "maxMessageExpirySeconds": 1606, + "maxPacketSizeBytes": 4261, "subscriberQueueLimit": { - "length": 18, + "length": 29, "strategy": "None" }, - "maxReceiveMaximum": 7156, - "maxKeepAliveSeconds": 2346 + "maxReceiveMaximum": 9103, + "maxKeepAliveSeconds": 7157 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "yqh", - "renewBefore": "fuqdxmxvxizwjpsdp", + "duration": "hhbeenthlnibetsvzdjlziyeigmup", + "renewBefore": "ahqdeqzqvxk", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -36,46 +36,46 @@ }, "cardinality": { "backendChain": { - "partitions": 7, + "partitions": 16, "redundancyFactor": 2, - "workers": 6 + "workers": 4 }, "frontend": { - "replicas": 5, - "workers": 5 + "replicas": 1, + "workers": 6 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 48, - "timeoutSeconds": 69 + "intervalSeconds": 137, + "timeoutSeconds": 26 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "cacheSizeMegabytes": 127, + "cacheSizeMegabytes": 16, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 254 + "intervalSeconds": 27 }, "spanChannelCapacity": 1000 } @@ -83,84 +83,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } }, "persistentVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } } @@ -172,19 +172,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "wkkkrp", - "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", + "name": "z", + "type": "ombj", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json index 7b5156de815f..fd3694cea4d1 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -15,20 +15,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 145, - "maxMessageExpirySeconds": 4252, - "maxPacketSizeBytes": 8336, + "maxSessionExpirySeconds": 1494, + "maxMessageExpirySeconds": 1606, + "maxPacketSizeBytes": 4261, "subscriberQueueLimit": { - "length": 18, + "length": 29, "strategy": "None" }, - "maxReceiveMaximum": 7156, - "maxKeepAliveSeconds": 2346 + "maxReceiveMaximum": 9103, + "maxKeepAliveSeconds": 7157 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "yqh", - "renewBefore": "fuqdxmxvxizwjpsdp", + "duration": "hhbeenthlnibetsvzdjlziyeigmup", + "renewBefore": "ahqdeqzqvxk", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -37,46 +37,46 @@ }, "cardinality": { "backendChain": { - "partitions": 7, + "partitions": 16, "redundancyFactor": 2, - "workers": 6 + "workers": 4 }, "frontend": { - "replicas": 5, - "workers": 5 + "replicas": 1, + "workers": 6 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 48, - "timeoutSeconds": 69 + "intervalSeconds": 137, + "timeoutSeconds": 26 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "cacheSizeMegabytes": 127, + "cacheSizeMegabytes": 16, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 254 + "intervalSeconds": 27 }, "spanChannelCapacity": 1000 } @@ -84,84 +84,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } }, "persistentVolumeClaimSpec": { - "volumeName": "ujuoqgfqbtzrzhebhvwkucsvyfa", - "volumeMode": "qv", - "storageClassName": "rejs", + "volumeName": "nkunraz", + "volumeMode": "mpftvvsh", + "storageClassName": "nridto", "accessModes": [ - "syqypztjuc" + "mukxkfdh" ], "dataSource": { - "apiGroup": "lbtzvh", - "kind": "resjzfuxcihkxjsrqhunss", - "name": "gpddvpgsblom" + "apiGroup": "ekekgaueoqlvzziqtpqvikb", + "kind": "nlpzcssjhmmwaaobgglfdiayksvovt", + "name": "szkislmprm" }, "dataSourceRef": { - "apiGroup": "ymojfaizrgtwngtktpxg", - "kind": "tseoncnurpneisopojqithrv", - "name": "zpoxoxcuzmaqobmcsgfcduhqqockt", - "namespace": "df" + "apiGroup": "mxtinkwjo", + "kind": "kyntndjdruyavgrbkwvtz", + "name": "evqbhmyqkdlbscamnmmmmisgj", + "namespace": "t" }, "resources": { "limits": { - "key6310": "unnbqssgtj" + "key1606": "v" }, "requests": { - "key1011": "iyctcfcboqhjorsha" + "key7483": "bzsvtnpajayjfbtkxw" } }, "selector": { "matchExpressions": [ { - "key": "xlybrpyh", + "key": "ocivwjpuhbccucbhwmhoqvq", "operator": "In", "values": [ - "vxvjkcrgpbf" + "fuselxcitschhpktqe" ] } ], "matchLabels": { - "key9487": "lrdhhzifegutbaqbpjc" + "key6782": "lsxqzywjreply" } } } @@ -173,19 +173,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "wkkkrp", - "type": "jhcbfnbahbqtieaiyzcxrbaqvielji", + "name": "z", + "type": "ombj", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json index 78fdca723767..b4562ee1be3d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123", @@ -14,91 +14,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "yipkettqtmo", + "database": "tgkjeplyymwhccdxdprgbgxmekpej", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" + "secretRef": "hgphq" }, "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "v", - "workspaceName": "kvnbmveestwifriggxjohh" + "lakehouseName": "cbpdcforswqcvihvtbqwknxcjtt", + "workspaceName": "vkepludcrhnjzzlttzoupmxpgysj" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "secretRef": "kurnzk" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "consumerGroupId": "dvys", - "host": "pacxrth", + "consumerGroupId": "rylqrwbcfd", + "host": "jqhs", "batching": { "mode": "Enabled", - "latencyMs": 1742, - "maxBytes": 9062, - "maxMessages": 4566 + "latencyMs": 5892, + "maxBytes": 8098, + "maxMessages": 7243 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -106,49 +106,48 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" + "persistentVolumeClaimRef": "yuppjxnwne" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "serviceAccountTokenSettings": { + "audience": "goxqxbicsjccxvnb" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "clientIdPrefix": "jjdavjobxwfrsoosgixo", - "host": "ezaqzuffdaflewfyhubi", + "clientIdPrefix": "dowtppiolzvxtvsgshvabfpfu", + "host": "vogpblicvguevzg", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" } }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -162,91 +161,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "yipkettqtmo", + "database": "tgkjeplyymwhccdxdprgbgxmekpej", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" + "secretRef": "hgphq" }, "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "v", - "workspaceName": "kvnbmveestwifriggxjohh" + "lakehouseName": "cbpdcforswqcvihvtbqwknxcjtt", + "workspaceName": "vkepludcrhnjzzlttzoupmxpgysj" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "secretRef": "kurnzk" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "consumerGroupId": "dvys", - "host": "pacxrth", + "consumerGroupId": "rylqrwbcfd", + "host": "jqhs", "batching": { "mode": "Enabled", - "latencyMs": 1742, - "maxBytes": 9062, - "maxMessages": 4566 + "latencyMs": 5892, + "maxBytes": 8098, + "maxMessages": 7243 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -254,62 +253,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" + "persistentVolumeClaimRef": "yuppjxnwne" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "serviceAccountTokenSettings": { + "audience": "goxqxbicsjccxvnb" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "clientIdPrefix": "jjdavjobxwfrsoosgixo", - "host": "ezaqzuffdaflewfyhubi", + "clientIdPrefix": "dowtppiolzvxtvsgshvabfpfu", + "host": "vogpblicvguevzg", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "dmkjez", - "type": "i", + "name": "rzeyluunzeywevaxk", + "type": "ybxjelxxmevqcxrotbiapan", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -324,91 +322,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "yipkettqtmo", + "database": "tgkjeplyymwhccdxdprgbgxmekpej", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" + "secretRef": "hgphq" }, "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "v", - "workspaceName": "kvnbmveestwifriggxjohh" + "lakehouseName": "cbpdcforswqcvihvtbqwknxcjtt", + "workspaceName": "vkepludcrhnjzzlttzoupmxpgysj" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "secretRef": "kurnzk" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "consumerGroupId": "dvys", - "host": "pacxrth", + "consumerGroupId": "rylqrwbcfd", + "host": "jqhs", "batching": { "mode": "Enabled", - "latencyMs": 1742, - "maxBytes": 9062, - "maxMessages": 4566 + "latencyMs": 5892, + "maxBytes": 8098, + "maxMessages": 7243 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -416,62 +414,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" + "persistentVolumeClaimRef": "yuppjxnwne" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "serviceAccountTokenSettings": { + "audience": "goxqxbicsjccxvnb" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "clientIdPrefix": "jjdavjobxwfrsoosgixo", - "host": "ezaqzuffdaflewfyhubi", + "clientIdPrefix": "dowtppiolzvxtvsgshvabfpfu", + "host": "vogpblicvguevzg", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "dmkjez", - "type": "i", + "name": "rzeyluunzeywevaxk", + "type": "ybxjelxxmevqcxrotbiapan", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json index 4ca067dc7e0e..7c8746b63019 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json index d164651cba43..993fc82b1439 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" @@ -17,91 +17,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "yipkettqtmo", + "database": "tgkjeplyymwhccdxdprgbgxmekpej", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" + "secretRef": "hgphq" }, "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "v", - "workspaceName": "kvnbmveestwifriggxjohh" + "lakehouseName": "cbpdcforswqcvihvtbqwknxcjtt", + "workspaceName": "vkepludcrhnjzzlttzoupmxpgysj" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "secretRef": "kurnzk" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "consumerGroupId": "dvys", - "host": "pacxrth", + "consumerGroupId": "rylqrwbcfd", + "host": "jqhs", "batching": { "mode": "Enabled", - "latencyMs": 1742, - "maxBytes": 9062, - "maxMessages": 4566 + "latencyMs": 5892, + "maxBytes": 8098, + "maxMessages": 7243 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -109,62 +109,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" + "persistentVolumeClaimRef": "yuppjxnwne" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "serviceAccountTokenSettings": { + "audience": "goxqxbicsjccxvnb" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "clientIdPrefix": "jjdavjobxwfrsoosgixo", - "host": "ezaqzuffdaflewfyhubi", + "clientIdPrefix": "dowtppiolzvxtvsgshvabfpfu", + "host": "vogpblicvguevzg", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "dmkjez", - "type": "i", + "name": "rzeyluunzeywevaxk", + "type": "ybxjelxxmevqcxrotbiapan", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json index 0eabb1f7d542..8c7ea9ad5499 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -18,91 +18,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "yipkettqtmo", + "database": "tgkjeplyymwhccdxdprgbgxmekpej", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "rbgjsqfqymdsygdvrhkxvucyhds" + "secretRef": "hgphq" }, "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "v", - "workspaceName": "kvnbmveestwifriggxjohh" + "lakehouseName": "cbpdcforswqcvihvtbqwknxcjtt", + "workspaceName": "vkepludcrhnjzzlttzoupmxpgysj" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 531, - "maxMessages": 8701 + "latencySeconds": 6735, + "maxMessages": 585 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "secretRef": "kurnzk" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "consumerGroupId": "dvys", - "host": "pacxrth", + "consumerGroupId": "rylqrwbcfd", + "host": "jqhs", "batching": { "mode": "Enabled", - "latencyMs": 1742, - "maxBytes": 9062, - "maxMessages": 4566 + "latencyMs": 5892, + "maxBytes": 8098, + "maxMessages": 7243 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -110,62 +110,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "nuhxldwjwxvgdpteaqilwua" + "persistentVolumeClaimRef": "yuppjxnwne" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "oab" + "audience": "lidtagcfq" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "pheilknjggoumewtglwubocl", + "scope": "ajvopawgpjhtrwfx", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "sorsidcvyzzt" + "serviceAccountTokenSettings": { + "audience": "goxqxbicsjccxvnb" }, "x509Settings": { - "secretRef": "tdpzeyjibbgcxhhtlruyezscr" + "secretRef": "qhecfrz" } }, - "clientIdPrefix": "jjdavjobxwfrsoosgixo", - "host": "ezaqzuffdaflewfyhubi", + "clientIdPrefix": "dowtppiolzvxtvsgshvabfpfu", + "host": "vogpblicvguevzg", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "e" + "trustedCaCertificateConfigMapRef": "skxexkwbfzxpezpfhgajolqdhso" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "dmkjez", - "type": "i", + "name": "rzeyluunzeywevaxk", + "type": "ybxjelxxmevqcxrotbiapan", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json index 3c7ebb16eeff..ef60b05a1a57 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -12,24 +12,24 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 } }, - "instanceCount": 8 + "instanceCount": 10 }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -41,37 +41,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 } }, - "instanceCount": 8, + "instanceCount": 10, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jugs", - "type": "aeocdanmcjoem", + "name": "dzyhlkwvmrovpeajhovvegzgp", + "type": "cbwup", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -84,37 +84,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 } }, - "instanceCount": 8, + "instanceCount": 10, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jugs", - "type": "aeocdanmcjoem", + "name": "dzyhlkwvmrovpeajhovvegzgp", + "type": "cbwup", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json index 8e6e9cebf120..29bd3ec1aedd 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json index 3e85479b299f..48e4ec192caa 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -15,37 +15,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 } }, - "instanceCount": 8, + "instanceCount": 10, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jugs", - "type": "aeocdanmcjoem", + "name": "dzyhlkwvmrovpeajhovvegzgp", + "type": "cbwup", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json index 440244d46979..008bbdaacc80 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -16,41 +16,41 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "fjxj", - "intervalSeconds": 266, - "level": "haorcp" + "otlpGrpcEndpoint": "nv", + "intervalSeconds": 7, + "level": "zmsg" }, - "level": "tfctumiwqcydyrvmczzmuxkfu" + "level": "qhmonfkjojddmixyfesrse" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "g", - "intervalSeconds": 116 + "otlpGrpcEndpoint": "jzqdzsvkyhmayhcoqi", + "intervalSeconds": 78 }, - "prometheusPort": 3975 + "prometheusPort": 6301 } }, - "instanceCount": 8, + "instanceCount": 10, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "jugs", - "type": "aeocdanmcjoem", + "name": "dzyhlkwvmrovpeajhovvegzgp", + "type": "cbwup", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], - "nextLink": "https://microsoft.com/aovp" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json index 9d62dad28135..f481d1a26992 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -14,28 +14,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", + "name": "kfxhiaxjnwfocvxjuixtierfhlpa", "sourceSettings": { - "endpointRef": "gn", - "assetRef": "o", + "endpointRef": "hfelavrmqhpsszldapwjxdioct", + "assetRef": "vwuub", "serializationFormat": "Json", - "schemaRef": "syeyzvenfatddlximdquy", + "schemaRef": "pecncubxruwj", "dataSources": [ - "vjhmtfiorwjccfcdwg" + "hcmyrbvfggrre" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "oinjowaif", + "schemaRef": "pfrgluwyl", "datasets": [ { - "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", + "key": "fdufnzgdjhprfvtmbqqstbutmvwszmgqgsbaprrwce", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "ayufirtwqphvshhxto", + "schemaRef": "iqvoyfoixogac", "inputs": [ - "pmcxzunkawpjxthlmk" + "gwdljkrolvju" ], - "expression": "noskhlmqyrvtlhjsncmq" + "expression": "gswagppddjzinsidwaoyway" } ], "filter": [ @@ -43,9 +43,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "qgqcrczayiuhlskihph" + "hiuadujdiqzqhykdfvrcrqtw" ], - "expression": "kdrfnrdbm" + "expression": "cqsqgs" } ], "map": [ @@ -53,22 +53,22 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "eo" + "qosdanuzriftfbfipui" ], - "expression": "mdkfrm", - "output": "covplwowkjnsl" + "expression": "jfrtvrcn", + "output": "pscwrijeapxfmpgzq" } ] }, "destinationSettings": { - "endpointRef": "jquecpebujuglesucsk", - "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" + "endpointRef": "nmvsyulmtnycm", + "dataDestination": "nuxuyzwhcwkpkyysmosjjuneumj" } } ] }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" } } @@ -81,28 +81,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", + "name": "kfxhiaxjnwfocvxjuixtierfhlpa", "sourceSettings": { - "endpointRef": "gn", - "assetRef": "o", + "endpointRef": "hfelavrmqhpsszldapwjxdioct", + "assetRef": "vwuub", "serializationFormat": "Json", - "schemaRef": "syeyzvenfatddlximdquy", + "schemaRef": "pecncubxruwj", "dataSources": [ - "vjhmtfiorwjccfcdwg" + "hcmyrbvfggrre" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "oinjowaif", + "schemaRef": "pfrgluwyl", "datasets": [ { - "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", + "key": "fdufnzgdjhprfvtmbqqstbutmvwszmgqgsbaprrwce", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "ayufirtwqphvshhxto", + "schemaRef": "iqvoyfoixogac", "inputs": [ - "pmcxzunkawpjxthlmk" + "gwdljkrolvju" ], - "expression": "noskhlmqyrvtlhjsncmq" + "expression": "gswagppddjzinsidwaoyway" } ], "filter": [ @@ -110,9 +110,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "qgqcrczayiuhlskihph" + "hiuadujdiqzqhykdfvrcrqtw" ], - "expression": "kdrfnrdbm" + "expression": "cqsqgs" } ], "map": [ @@ -120,35 +120,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "eo" + "qosdanuzriftfbfipui" ], - "expression": "mdkfrm", - "output": "covplwowkjnsl" + "expression": "jfrtvrcn", + "output": "pscwrijeapxfmpgzq" } ] }, "destinationSettings": { - "endpointRef": "jquecpebujuglesucsk", - "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" + "endpointRef": "nmvsyulmtnycm", + "dataDestination": "nuxuyzwhcwkpkyysmosjjuneumj" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "jvxagylmwrzufelrrlhycwirdi", - "type": "plohcjrtnmss", + "name": "skrhfqjimfcuypwqdzrmqgupsqplye", + "type": "birntvlkphlwbwlfn", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -162,28 +162,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", + "name": "kfxhiaxjnwfocvxjuixtierfhlpa", "sourceSettings": { - "endpointRef": "gn", - "assetRef": "o", + "endpointRef": "hfelavrmqhpsszldapwjxdioct", + "assetRef": "vwuub", "serializationFormat": "Json", - "schemaRef": "syeyzvenfatddlximdquy", + "schemaRef": "pecncubxruwj", "dataSources": [ - "vjhmtfiorwjccfcdwg" + "hcmyrbvfggrre" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "oinjowaif", + "schemaRef": "pfrgluwyl", "datasets": [ { - "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", + "key": "fdufnzgdjhprfvtmbqqstbutmvwszmgqgsbaprrwce", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "ayufirtwqphvshhxto", + "schemaRef": "iqvoyfoixogac", "inputs": [ - "pmcxzunkawpjxthlmk" + "gwdljkrolvju" ], - "expression": "noskhlmqyrvtlhjsncmq" + "expression": "gswagppddjzinsidwaoyway" } ], "filter": [ @@ -191,9 +191,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "qgqcrczayiuhlskihph" + "hiuadujdiqzqhykdfvrcrqtw" ], - "expression": "kdrfnrdbm" + "expression": "cqsqgs" } ], "map": [ @@ -201,35 +201,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "eo" + "qosdanuzriftfbfipui" ], - "expression": "mdkfrm", - "output": "covplwowkjnsl" + "expression": "jfrtvrcn", + "output": "pscwrijeapxfmpgzq" } ] }, "destinationSettings": { - "endpointRef": "jquecpebujuglesucsk", - "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" + "endpointRef": "nmvsyulmtnycm", + "dataDestination": "nuxuyzwhcwkpkyysmosjjuneumj" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "jvxagylmwrzufelrrlhycwirdi", - "type": "plohcjrtnmss", + "name": "skrhfqjimfcuypwqdzrmqgupsqplye", + "type": "birntvlkphlwbwlfn", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json index a1d78104dc6d..4030494b7f3d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json index 26b8bc73ab53..bcc54c441430 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -17,28 +17,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", + "name": "kfxhiaxjnwfocvxjuixtierfhlpa", "sourceSettings": { - "endpointRef": "gn", - "assetRef": "o", + "endpointRef": "hfelavrmqhpsszldapwjxdioct", + "assetRef": "vwuub", "serializationFormat": "Json", - "schemaRef": "syeyzvenfatddlximdquy", + "schemaRef": "pecncubxruwj", "dataSources": [ - "vjhmtfiorwjccfcdwg" + "hcmyrbvfggrre" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "oinjowaif", + "schemaRef": "pfrgluwyl", "datasets": [ { - "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", + "key": "fdufnzgdjhprfvtmbqqstbutmvwszmgqgsbaprrwce", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "ayufirtwqphvshhxto", + "schemaRef": "iqvoyfoixogac", "inputs": [ - "pmcxzunkawpjxthlmk" + "gwdljkrolvju" ], - "expression": "noskhlmqyrvtlhjsncmq" + "expression": "gswagppddjzinsidwaoyway" } ], "filter": [ @@ -46,9 +46,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "qgqcrczayiuhlskihph" + "hiuadujdiqzqhykdfvrcrqtw" ], - "expression": "kdrfnrdbm" + "expression": "cqsqgs" } ], "map": [ @@ -56,35 +56,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "eo" + "qosdanuzriftfbfipui" ], - "expression": "mdkfrm", - "output": "covplwowkjnsl" + "expression": "jfrtvrcn", + "output": "pscwrijeapxfmpgzq" } ] }, "destinationSettings": { - "endpointRef": "jquecpebujuglesucsk", - "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" + "endpointRef": "nmvsyulmtnycm", + "dataDestination": "nuxuyzwhcwkpkyysmosjjuneumj" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "jvxagylmwrzufelrrlhycwirdi", - "type": "plohcjrtnmss", + "name": "skrhfqjimfcuypwqdzrmqgupsqplye", + "type": "birntvlkphlwbwlfn", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json index b65bd6dd5902..082682570c27 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_ListByProfileResource", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -18,28 +18,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "mzbbpngyvuqynsiigmwlowheyfutjofsq", + "name": "kfxhiaxjnwfocvxjuixtierfhlpa", "sourceSettings": { - "endpointRef": "gn", - "assetRef": "o", + "endpointRef": "hfelavrmqhpsszldapwjxdioct", + "assetRef": "vwuub", "serializationFormat": "Json", - "schemaRef": "syeyzvenfatddlximdquy", + "schemaRef": "pecncubxruwj", "dataSources": [ - "vjhmtfiorwjccfcdwg" + "hcmyrbvfggrre" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "oinjowaif", + "schemaRef": "pfrgluwyl", "datasets": [ { - "key": "ereefkpftcnkrepgfxigprzfopykuaxczh", + "key": "fdufnzgdjhprfvtmbqqstbutmvwszmgqgsbaprrwce", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "ayufirtwqphvshhxto", + "schemaRef": "iqvoyfoixogac", "inputs": [ - "pmcxzunkawpjxthlmk" + "gwdljkrolvju" ], - "expression": "noskhlmqyrvtlhjsncmq" + "expression": "gswagppddjzinsidwaoyway" } ], "filter": [ @@ -47,9 +47,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "qgqcrczayiuhlskihph" + "hiuadujdiqzqhykdfvrcrqtw" ], - "expression": "kdrfnrdbm" + "expression": "cqsqgs" } ], "map": [ @@ -57,39 +57,39 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "eo" + "qosdanuzriftfbfipui" ], - "expression": "mdkfrm", - "output": "covplwowkjnsl" + "expression": "jfrtvrcn", + "output": "pscwrijeapxfmpgzq" } ] }, "destinationSettings": { - "endpointRef": "jquecpebujuglesucsk", - "dataDestination": "dghouiyyjdpohgvnjghkmkvypyq" + "endpointRef": "nmvsyulmtnycm", + "dataDestination": "nuxuyzwhcwkpkyysmosjjuneumj" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "jvxagylmwrzufelrrlhycwirdi", - "type": "plohcjrtnmss", + "name": "skrhfqjimfcuypwqdzrmqgupsqplye", + "type": "birntvlkphlwbwlfn", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/aanb" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json index cddae2a40b99..e974a55c3407 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "resource": { @@ -12,19 +12,19 @@ "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { "type": "None", "userAssignedIdentities": { - "key8843": {} + "key5421": {} } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw" + "location": "bzgtudympozlzinvitua" } }, "responses": { @@ -33,11 +33,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -45,26 +45,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } }, @@ -76,11 +76,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -88,26 +88,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json index 9c1e84ff63c9..ed95e58083d0 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json index a0d7d97ec9fb..3e6806038dfc 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -25,26 +25,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json index c07903ab2126..229f806412be 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations" }, "responses": { @@ -14,11 +14,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -26,30 +26,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/ah" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json index 3a6eeb5072a3..2fe8e907da6f 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListBySubscription", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E" + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A" }, "responses": { "200": { @@ -13,11 +13,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -25,30 +25,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/ah" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json index 10c3dbb7fead..9358dc3fe9fb 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json @@ -3,12 +3,12 @@ "operationId": "Instance_Update", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "47B0C002-4626-4197-83E5-40CDF045A71E", + "subscriptionId": "0AD14881-4121-404B-BE4E-FE64B0DBD13A", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "properties": { "tags": { - "key8540": "gtgywaslfwdemktth" + "key7553": "zywwtcynmbkyz" } } }, @@ -18,11 +18,11 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "lepljpkjqpinwitedonysjcvackm", + "version": "elgdxxwxgobcmiml", "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "qv", + "name": "kbzdxcaprarp", "type": "CustomLocation" }, "identity": { @@ -30,26 +30,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key8843": { + "key5421": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key5211": "yzslkpr" + "key3901": "kxadyqzncduglzqantn" }, - "location": "ipkkgxoxcnqqtw", + "location": "bzgtudympozlzinvitua", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhxjattffdzsotfgv", - "type": "yxggydhektv", + "name": "xryvxghldhq", + "type": "tvpcchoqsfimwlzhkbkwevnnwef", "systemData": { - "createdBy": "vrdmsnjuvhxbxaex", + "createdBy": "rwmdqtey", "createdByType": "User", - "createdAt": "2024-08-08T21:51:09.269Z", - "lastModifiedBy": "zgmkemwcehc", + "createdAt": "2024-08-08T22:28:53.214Z", + "lastModifiedBy": "wtrryhgyixeshvbp", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T21:51:09.270Z" + "lastModifiedAt": "2024-08-08T22:28:53.214Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json index 20b22da974da..4ce1cff74f88 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json @@ -9,19 +9,19 @@ "body": { "value": [ { - "name": "lk", + "name": "mjuigusksdxtsmnetvalgick", "isDataAction": true, "display": { - "provider": "wygjphpv", - "resource": "vtqbaemzffskmftfobbokxtepgjsg", - "operation": "fumjunhjrk", + "provider": "jocdsuaynakxznjvymlrbumel", + "resource": "zkdga", + "operation": "efngzmxelmrhsdcnnuvnjam", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit." }, "origin": "user", "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/acroicd" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json index 2811af474cc3..f39442f587a9 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json @@ -4573,8 +4573,8 @@ "$ref": "#/definitions/DataflowEndpointAuthenticationUserAssignedManagedIdentity", "description": "User-assigned managed identity authentication." }, - "saslSettings": { - "$ref": "#/definitions/DataflowEndpointAuthenticationSasl", + "serviceAccountTokenSettings": { + "$ref": "#/definitions/DataflowEndpointAuthenticationServiceAccountToken", "description": "Kubernetes service account token authentication. Default audience if not set is aio-mq-internal" }, "x509Settings": { From f28290baad0972b01da658b9536aa1a025beb270 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 15:33:10 -0700 Subject: [PATCH 13/16] examples --- ...ication_CreateOrUpdate_MaximumSet_Gen.json | 86 ++-- ...rAuthentication_Delete_MaximumSet_Gen.json | 2 +- ...okerAuthentication_Get_MaximumSet_Gen.json | 34 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 36 +- ...ization_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- ...erAuthorization_Delete_MaximumSet_Gen.json | 2 +- ...rokerAuthorization_Get_MaximumSet_Gen.json | 26 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 26 +- ...istener_CreateOrUpdate_MaximumSet_Gen.json | 116 +++--- .../BrokerListener_Delete_MaximumSet_Gen.json | 2 +- .../BrokerListener_Get_MaximumSet_Gen.json | 44 +- ...er_ListByResourceGroup_MaximumSet_Gen.json | 44 +- .../Broker_CreateOrUpdate_MaximumSet_Gen.json | 380 ++++++++--------- .../Broker_Delete_MaximumSet_Gen.json | 2 +- .../Broker_Get_MaximumSet_Gen.json | 132 +++--- ...er_ListByResourceGroup_MaximumSet_Gen.json | 132 +++--- ...ndpoint_CreateOrUpdate_MaximumSet_Gen.json | 392 ++++++++++-------- ...ataflowEndpoint_Delete_MaximumSet_Gen.json | 2 +- .../DataflowEndpoint_Get_MaximumSet_Gen.json | 136 +++--- ...nt_ListByResourceGroup_MaximumSet_Gen.json | 138 +++--- ...Profile_CreateOrUpdate_MaximumSet_Gen.json | 80 ++-- ...DataflowProfile_Delete_MaximumSet_Gen.json | 2 +- .../DataflowProfile_Get_MaximumSet_Gen.json | 32 +- ...le_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ataflow_CreateOrUpdate_MaximumSet_Gen.json | 134 +++--- .../Dataflow_Delete_MaximumSet_Gen.json | 2 +- .../Dataflow_Get_MaximumSet_Gen.json | 50 +-- ..._ListByProfileResource_MaximumSet_Gen.json | 52 +-- ...nstance_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- .../Instance_Delete_MaximumSet_Gen.json | 2 +- .../Instance_Get_MaximumSet_Gen.json | 28 +- ...ce_ListByResourceGroup_MaximumSet_Gen.json | 30 +- ...nce_ListBySubscription_MaximumSet_Gen.json | 30 +- .../Instance_Update_MaximumSet_Gen.json | 30 +- .../Operations_List_MaximumSet_Gen.json | 10 +- ...ication_CreateOrUpdate_MaximumSet_Gen.json | 86 ++-- ...rAuthentication_Delete_MaximumSet_Gen.json | 2 +- ...okerAuthentication_Get_MaximumSet_Gen.json | 34 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 36 +- ...ization_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- ...erAuthorization_Delete_MaximumSet_Gen.json | 2 +- ...rokerAuthorization_Get_MaximumSet_Gen.json | 26 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 26 +- ...istener_CreateOrUpdate_MaximumSet_Gen.json | 116 +++--- .../BrokerListener_Delete_MaximumSet_Gen.json | 2 +- .../BrokerListener_Get_MaximumSet_Gen.json | 44 +- ...er_ListByResourceGroup_MaximumSet_Gen.json | 44 +- .../Broker_CreateOrUpdate_MaximumSet_Gen.json | 380 ++++++++--------- .../Broker_Delete_MaximumSet_Gen.json | 2 +- .../examples/Broker_Get_MaximumSet_Gen.json | 132 +++--- ...er_ListByResourceGroup_MaximumSet_Gen.json | 132 +++--- ...ndpoint_CreateOrUpdate_MaximumSet_Gen.json | 392 ++++++++++-------- ...ataflowEndpoint_Delete_MaximumSet_Gen.json | 2 +- .../DataflowEndpoint_Get_MaximumSet_Gen.json | 136 +++--- ...nt_ListByResourceGroup_MaximumSet_Gen.json | 138 +++--- ...Profile_CreateOrUpdate_MaximumSet_Gen.json | 80 ++-- ...DataflowProfile_Delete_MaximumSet_Gen.json | 2 +- .../DataflowProfile_Get_MaximumSet_Gen.json | 32 +- ...le_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ataflow_CreateOrUpdate_MaximumSet_Gen.json | 134 +++--- .../Dataflow_Delete_MaximumSet_Gen.json | 2 +- .../examples/Dataflow_Get_MaximumSet_Gen.json | 50 +-- ..._ListByProfileResource_MaximumSet_Gen.json | 52 +-- ...nstance_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- .../Instance_Delete_MaximumSet_Gen.json | 2 +- .../examples/Instance_Get_MaximumSet_Gen.json | 28 +- ...ce_ListByResourceGroup_MaximumSet_Gen.json | 30 +- ...nce_ListBySubscription_MaximumSet_Gen.json | 30 +- .../Instance_Update_MaximumSet_Gen.json | 30 +- .../Operations_List_MaximumSet_Gen.json | 10 +- 70 files changed, 2482 insertions(+), 2262 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json index 4042b0cd1153..8e427b19fd96 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -17,38 +17,38 @@ "auth": { "x509": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } }, - "caCertConfigMap": "jkllrpolhwdmsxgqtfddqnjacyz", + "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", "endpoint": "https://www.example.com", "headers": { - "key81": "boqqjxa" + "key6099": "zqwfotkzttvzbx" } }, "serviceAccountTokenSettings": { "audiences": [ - "zfwuwlnhsjwqadg" + "awuyykdydnr" ] }, "x509Settings": { "authorizationAttributes": { - "key8989": { + "key4680": { "attributes": { - "key8245": "dohexapwnqmvuydqblle" + "key6861": "ftvxyusinoeecsady" }, - "subject": "qfwsushpvyiklgumdadwxqddb" + "subject": "dqdmahhcofgbypuofwduns" } }, - "trustedClientCaCert": "kiqcxdktpzolirqzxgcikqbbslq" + "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" } } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -64,51 +64,51 @@ "auth": { "x509": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } }, - "caCertConfigMap": "jkllrpolhwdmsxgqtfddqnjacyz", + "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", "endpoint": "https://www.example.com", "headers": { - "key81": "boqqjxa" + "key6099": "zqwfotkzttvzbx" } }, "serviceAccountTokenSettings": { "audiences": [ - "zfwuwlnhsjwqadg" + "awuyykdydnr" ] }, "x509Settings": { "authorizationAttributes": { - "key8989": { + "key4680": { "attributes": { - "key8245": "dohexapwnqmvuydqblle" + "key6861": "ftvxyusinoeecsady" }, - "subject": "qfwsushpvyiklgumdadwxqddb" + "subject": "dqdmahhcofgbypuofwduns" } }, - "trustedClientCaCert": "kiqcxdktpzolirqzxgcikqbbslq" + "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "zmtuabzxgdufoxlnfgiys", - "type": "mziqtpsib", + "name": "qhdoduzgqa", + "type": "l", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -125,51 +125,51 @@ "auth": { "x509": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } }, - "caCertConfigMap": "jkllrpolhwdmsxgqtfddqnjacyz", + "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", "endpoint": "https://www.example.com", "headers": { - "key81": "boqqjxa" + "key6099": "zqwfotkzttvzbx" } }, "serviceAccountTokenSettings": { "audiences": [ - "zfwuwlnhsjwqadg" + "awuyykdydnr" ] }, "x509Settings": { "authorizationAttributes": { - "key8989": { + "key4680": { "attributes": { - "key8245": "dohexapwnqmvuydqblle" + "key6861": "ftvxyusinoeecsady" }, - "subject": "qfwsushpvyiklgumdadwxqddb" + "subject": "dqdmahhcofgbypuofwduns" } }, - "trustedClientCaCert": "kiqcxdktpzolirqzxgcikqbbslq" + "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "zmtuabzxgdufoxlnfgiys", - "type": "mziqtpsib", + "name": "qhdoduzgqa", + "type": "l", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json index 331ef9dd87e8..01c369a0b522 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json index 53fb24d6d3af..32287ad53bd5 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -20,51 +20,51 @@ "auth": { "x509": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } }, - "caCertConfigMap": "jkllrpolhwdmsxgqtfddqnjacyz", + "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", "endpoint": "https://www.example.com", "headers": { - "key81": "boqqjxa" + "key6099": "zqwfotkzttvzbx" } }, "serviceAccountTokenSettings": { "audiences": [ - "zfwuwlnhsjwqadg" + "awuyykdydnr" ] }, "x509Settings": { "authorizationAttributes": { - "key8989": { + "key4680": { "attributes": { - "key8245": "dohexapwnqmvuydqblle" + "key6861": "ftvxyusinoeecsady" }, - "subject": "qfwsushpvyiklgumdadwxqddb" + "subject": "dqdmahhcofgbypuofwduns" } }, - "trustedClientCaCert": "kiqcxdktpzolirqzxgcikqbbslq" + "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "zmtuabzxgdufoxlnfgiys", - "type": "mziqtpsib", + "name": "qhdoduzgqa", + "type": "l", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json index 61999e48fdb3..b0ba771bf070 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -21,55 +21,55 @@ "auth": { "x509": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } }, - "caCertConfigMap": "jkllrpolhwdmsxgqtfddqnjacyz", + "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", "endpoint": "https://www.example.com", "headers": { - "key81": "boqqjxa" + "key6099": "zqwfotkzttvzbx" } }, "serviceAccountTokenSettings": { "audiences": [ - "zfwuwlnhsjwqadg" + "awuyykdydnr" ] }, "x509Settings": { "authorizationAttributes": { - "key8989": { + "key4680": { "attributes": { - "key8245": "dohexapwnqmvuydqblle" + "key6861": "ftvxyusinoeecsady" }, - "subject": "qfwsushpvyiklgumdadwxqddb" + "subject": "dqdmahhcofgbypuofwduns" } }, - "trustedClientCaCert": "kiqcxdktpzolirqzxgcikqbbslq" + "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "zmtuabzxgdufoxlnfgiys", - "type": "mziqtpsib", + "name": "qhdoduzgqa", + "type": "l", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/aqzu" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json index a456269076eb..34a46aad65bc 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -18,28 +18,28 @@ { "method": "Connect", "topics": [ - "qqdty" + "sogrvpvuwdvossiyoguudynoq" ] } ], "principals": { "attributes": [ { - "key5264": "vadfhgpdglaqzwlsvfgsvxuhyehmhd" + "key7341": "ohhuwaqdagteh" } ], "clientIds": [ - "vjztonrpmbd" + "wjxyjuehzeahskycinhaxpualwgpgh" ], "usernames": [ - "jmjlgzjnkyfaczenfsohg" + "ksfpwfrnqomajxmbcuklsagvw" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "gpovscysmuxidfuswyot" + "ordrqfkzrwzwb" ], "method": "Read" } @@ -49,7 +49,7 @@ } }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -66,28 +66,28 @@ { "method": "Connect", "topics": [ - "qqdty" + "sogrvpvuwdvossiyoguudynoq" ] } ], "principals": { "attributes": [ { - "key5264": "vadfhgpdglaqzwlsvfgsvxuhyehmhd" + "key7341": "ohhuwaqdagteh" } ], "clientIds": [ - "vjztonrpmbd" + "wjxyjuehzeahskycinhaxpualwgpgh" ], "usernames": [ - "jmjlgzjnkyfaczenfsohg" + "ksfpwfrnqomajxmbcuklsagvw" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "gpovscysmuxidfuswyot" + "ordrqfkzrwzwb" ], "method": "Read" } @@ -98,19 +98,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "jftqsjmxwoqd", - "type": "nrcmjzmacxawqarcf", + "name": "puqgnigsztnvwngxofcggpas", + "type": "ytqvrwlmiannhwvorbtpbzhpdm", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -128,28 +128,28 @@ { "method": "Connect", "topics": [ - "qqdty" + "sogrvpvuwdvossiyoguudynoq" ] } ], "principals": { "attributes": [ { - "key5264": "vadfhgpdglaqzwlsvfgsvxuhyehmhd" + "key7341": "ohhuwaqdagteh" } ], "clientIds": [ - "vjztonrpmbd" + "wjxyjuehzeahskycinhaxpualwgpgh" ], "usernames": [ - "jmjlgzjnkyfaczenfsohg" + "ksfpwfrnqomajxmbcuklsagvw" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "gpovscysmuxidfuswyot" + "ordrqfkzrwzwb" ], "method": "Read" } @@ -160,19 +160,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "jftqsjmxwoqd", - "type": "nrcmjzmacxawqarcf", + "name": "puqgnigsztnvwngxofcggpas", + "type": "ytqvrwlmiannhwvorbtpbzhpdm", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json index 26d83c512535..d6c0f9886c1f 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json index b74fd7755e8e..8240407c13d4 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -21,28 +21,28 @@ { "method": "Connect", "topics": [ - "qqdty" + "sogrvpvuwdvossiyoguudynoq" ] } ], "principals": { "attributes": [ { - "key5264": "vadfhgpdglaqzwlsvfgsvxuhyehmhd" + "key7341": "ohhuwaqdagteh" } ], "clientIds": [ - "vjztonrpmbd" + "wjxyjuehzeahskycinhaxpualwgpgh" ], "usernames": [ - "jmjlgzjnkyfaczenfsohg" + "ksfpwfrnqomajxmbcuklsagvw" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "gpovscysmuxidfuswyot" + "ordrqfkzrwzwb" ], "method": "Read" } @@ -53,19 +53,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "jftqsjmxwoqd", - "type": "nrcmjzmacxawqarcf", + "name": "puqgnigsztnvwngxofcggpas", + "type": "ytqvrwlmiannhwvorbtpbzhpdm", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json index 378fde209e00..c82434faa00a 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -22,28 +22,28 @@ { "method": "Connect", "topics": [ - "qqdty" + "sogrvpvuwdvossiyoguudynoq" ] } ], "principals": { "attributes": [ { - "key5264": "vadfhgpdglaqzwlsvfgsvxuhyehmhd" + "key7341": "ohhuwaqdagteh" } ], "clientIds": [ - "vjztonrpmbd" + "wjxyjuehzeahskycinhaxpualwgpgh" ], "usernames": [ - "jmjlgzjnkyfaczenfsohg" + "ksfpwfrnqomajxmbcuklsagvw" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "gpovscysmuxidfuswyot" + "ordrqfkzrwzwb" ], "method": "Read" } @@ -54,19 +54,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "jftqsjmxwoqd", - "type": "nrcmjzmacxawqarcf", + "name": "puqgnigsztnvwngxofcggpas", + "type": "ytqvrwlmiannhwvorbtpbzhpdm", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json index 61cfad86e43b..319ac4e25028 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json @@ -3,31 +3,31 @@ "operationId": "BrokerListener_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", "listenerName": "resource-name123", "resource": { "properties": { - "serviceName": "vooi", + "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", "ports": [ { - "authenticationRef": "xvtzxvv", - "authorizationRef": "yuafwdxccnzpjcezccrvzfveo", - "nodePort": 3358, - "port": 8002, + "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", + "authorizationRef": "wqfkqwuiuernmvt", + "nodePort": 3840, + "port": 8452, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dipx", - "secretName": "syear", - "renewBefore": "ulhudlizqptzbyloc", + "duration": "nhnltaullguzadmtbmfgx", + "secretName": "sckzqmesxuaeoajkcdqpuqvb", + "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", "issuerRef": { - "group": "rs", + "group": "ctmhrxbsvzx", "kind": "Issuer", - "name": "qvrnalihrabj" + "name": "f" }, "privateKey": { "algorithm": "Ec256", @@ -35,17 +35,17 @@ }, "san": { "dns": [ - "uuhoznnehfuqujlcwsmx" + "gltzdoxjlnatlmiwkwcowttxdmd" ], "ip": [ - "ey" + "boanjeewupjcaofwoeqvtyjyet" ] } }, "manual": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } } @@ -54,7 +54,7 @@ "serviceType": "ClusterIp" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -63,24 +63,24 @@ "200": { "body": { "properties": { - "serviceName": "vooi", + "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", "ports": [ { - "authenticationRef": "xvtzxvv", - "authorizationRef": "yuafwdxccnzpjcezccrvzfveo", - "nodePort": 3358, - "port": 8002, + "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", + "authorizationRef": "wqfkqwuiuernmvt", + "nodePort": 3840, + "port": 8452, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dipx", - "secretName": "syear", - "renewBefore": "ulhudlizqptzbyloc", + "duration": "nhnltaullguzadmtbmfgx", + "secretName": "sckzqmesxuaeoajkcdqpuqvb", + "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", "issuerRef": { - "group": "rs", + "group": "ctmhrxbsvzx", "kind": "Issuer", - "name": "qvrnalihrabj" + "name": "f" }, "privateKey": { "algorithm": "Ec256", @@ -88,17 +88,17 @@ }, "san": { "dns": [ - "uuhoznnehfuqujlcwsmx" + "gltzdoxjlnatlmiwkwcowttxdmd" ], "ip": [ - "ey" + "boanjeewupjcaofwoeqvtyjyet" ] } }, "manual": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } } @@ -108,19 +108,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "bgdzp", - "type": "ptokiqpihqn", + "name": "zbmpca", + "type": "kqfsuiqzjhhdxyrwjtthoc", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -130,24 +130,24 @@ }, "body": { "properties": { - "serviceName": "vooi", + "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", "ports": [ { - "authenticationRef": "xvtzxvv", - "authorizationRef": "yuafwdxccnzpjcezccrvzfveo", - "nodePort": 3358, - "port": 8002, + "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", + "authorizationRef": "wqfkqwuiuernmvt", + "nodePort": 3840, + "port": 8452, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dipx", - "secretName": "syear", - "renewBefore": "ulhudlizqptzbyloc", + "duration": "nhnltaullguzadmtbmfgx", + "secretName": "sckzqmesxuaeoajkcdqpuqvb", + "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", "issuerRef": { - "group": "rs", + "group": "ctmhrxbsvzx", "kind": "Issuer", - "name": "qvrnalihrabj" + "name": "f" }, "privateKey": { "algorithm": "Ec256", @@ -155,17 +155,17 @@ }, "san": { "dns": [ - "uuhoznnehfuqujlcwsmx" + "gltzdoxjlnatlmiwkwcowttxdmd" ], "ip": [ - "ey" + "boanjeewupjcaofwoeqvtyjyet" ] } }, "manual": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } } @@ -175,19 +175,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "bgdzp", - "type": "ptokiqpihqn", + "name": "zbmpca", + "type": "kqfsuiqzjhhdxyrwjtthoc", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json index b8af0f89446e..22e30159b9a4 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json index 1491d0d06e50..98cf9cc88cef 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -13,24 +13,24 @@ "200": { "body": { "properties": { - "serviceName": "vooi", + "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", "ports": [ { - "authenticationRef": "xvtzxvv", - "authorizationRef": "yuafwdxccnzpjcezccrvzfveo", - "nodePort": 3358, - "port": 8002, + "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", + "authorizationRef": "wqfkqwuiuernmvt", + "nodePort": 3840, + "port": 8452, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dipx", - "secretName": "syear", - "renewBefore": "ulhudlizqptzbyloc", + "duration": "nhnltaullguzadmtbmfgx", + "secretName": "sckzqmesxuaeoajkcdqpuqvb", + "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", "issuerRef": { - "group": "rs", + "group": "ctmhrxbsvzx", "kind": "Issuer", - "name": "qvrnalihrabj" + "name": "f" }, "privateKey": { "algorithm": "Ec256", @@ -38,17 +38,17 @@ }, "san": { "dns": [ - "uuhoznnehfuqujlcwsmx" + "gltzdoxjlnatlmiwkwcowttxdmd" ], "ip": [ - "ey" + "boanjeewupjcaofwoeqvtyjyet" ] } }, "manual": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } } @@ -58,19 +58,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "bgdzp", - "type": "ptokiqpihqn", + "name": "zbmpca", + "type": "kqfsuiqzjhhdxyrwjtthoc", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json index 6511c0a40a65..543ce3dfb556 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,24 +14,24 @@ "value": [ { "properties": { - "serviceName": "vooi", + "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", "ports": [ { - "authenticationRef": "xvtzxvv", - "authorizationRef": "yuafwdxccnzpjcezccrvzfveo", - "nodePort": 3358, - "port": 8002, + "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", + "authorizationRef": "wqfkqwuiuernmvt", + "nodePort": 3840, + "port": 8452, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dipx", - "secretName": "syear", - "renewBefore": "ulhudlizqptzbyloc", + "duration": "nhnltaullguzadmtbmfgx", + "secretName": "sckzqmesxuaeoajkcdqpuqvb", + "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", "issuerRef": { - "group": "rs", + "group": "ctmhrxbsvzx", "kind": "Issuer", - "name": "qvrnalihrabj" + "name": "f" }, "privateKey": { "algorithm": "Ec256", @@ -39,17 +39,17 @@ }, "san": { "dns": [ - "uuhoznnehfuqujlcwsmx" + "gltzdoxjlnatlmiwkwcowttxdmd" ], "ip": [ - "ey" + "boanjeewupjcaofwoeqvtyjyet" ] } }, "manual": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } } @@ -59,19 +59,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "bgdzp", - "type": "ptokiqpihqn", + "name": "zbmpca", + "type": "kqfsuiqzjhhdxyrwjtthoc", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json index 18f020158f11..56c247abf39e 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -11,20 +11,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 9187, - "maxMessageExpirySeconds": 7348, - "maxPacketSizeBytes": 8320, + "maxSessionExpirySeconds": 6873, + "maxMessageExpirySeconds": 6228, + "maxPacketSizeBytes": 6177, "subscriberQueueLimit": { - "length": 17, + "length": 13, "strategy": "None" }, - "maxReceiveMaximum": 9376, - "maxKeepAliveSeconds": 2793 + "maxReceiveMaximum": 1350, + "maxKeepAliveSeconds": 6434 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "rtuzqsrmudnuzjsugvcsuyapy", - "renewBefore": "lkhzbha", + "duration": "nfyhesb", + "renewBefore": "fha", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -33,46 +33,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 5, - "workers": 10 + "partitions": 2, + "redundancyFactor": 4, + "workers": 14 }, "frontend": { - "replicas": 4, - "workers": 3 + "replicas": 1, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 122, - "timeoutSeconds": 85 + "intervalSeconds": 279, + "timeoutSeconds": 56 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "cacheSizeMegabytes": 61, + "cacheSizeMegabytes": 126, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 161 + "intervalSeconds": 106 }, "spanChannelCapacity": 1000 } @@ -80,84 +80,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } }, "persistentVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } } @@ -168,7 +168,7 @@ "memoryProfile": "Tiny" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -179,20 +179,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 9187, - "maxMessageExpirySeconds": 7348, - "maxPacketSizeBytes": 8320, + "maxSessionExpirySeconds": 6873, + "maxMessageExpirySeconds": 6228, + "maxPacketSizeBytes": 6177, "subscriberQueueLimit": { - "length": 17, + "length": 13, "strategy": "None" }, - "maxReceiveMaximum": 9376, - "maxKeepAliveSeconds": 2793 + "maxReceiveMaximum": 1350, + "maxKeepAliveSeconds": 6434 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "rtuzqsrmudnuzjsugvcsuyapy", - "renewBefore": "lkhzbha", + "duration": "nfyhesb", + "renewBefore": "fha", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -201,46 +201,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 5, - "workers": 10 + "partitions": 2, + "redundancyFactor": 4, + "workers": 14 }, "frontend": { - "replicas": 4, - "workers": 3 + "replicas": 1, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 122, - "timeoutSeconds": 85 + "intervalSeconds": 279, + "timeoutSeconds": 56 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "cacheSizeMegabytes": 61, + "cacheSizeMegabytes": 126, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 161 + "intervalSeconds": 106 }, "spanChannelCapacity": 1000 } @@ -248,84 +248,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } }, "persistentVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } } @@ -337,19 +337,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "peyjszippypiwmq", - "type": "zmpbrrzcchvvz", + "name": "iycqgvcphj", + "type": "rlmzedsjhuktpi", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -361,20 +361,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 9187, - "maxMessageExpirySeconds": 7348, - "maxPacketSizeBytes": 8320, + "maxSessionExpirySeconds": 6873, + "maxMessageExpirySeconds": 6228, + "maxPacketSizeBytes": 6177, "subscriberQueueLimit": { - "length": 17, + "length": 13, "strategy": "None" }, - "maxReceiveMaximum": 9376, - "maxKeepAliveSeconds": 2793 + "maxReceiveMaximum": 1350, + "maxKeepAliveSeconds": 6434 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "rtuzqsrmudnuzjsugvcsuyapy", - "renewBefore": "lkhzbha", + "duration": "nfyhesb", + "renewBefore": "fha", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -383,46 +383,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 5, - "workers": 10 + "partitions": 2, + "redundancyFactor": 4, + "workers": 14 }, "frontend": { - "replicas": 4, - "workers": 3 + "replicas": 1, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 122, - "timeoutSeconds": 85 + "intervalSeconds": 279, + "timeoutSeconds": 56 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "cacheSizeMegabytes": 61, + "cacheSizeMegabytes": 126, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 161 + "intervalSeconds": 106 }, "spanChannelCapacity": 1000 } @@ -430,84 +430,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } }, "persistentVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } } @@ -519,19 +519,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "peyjszippypiwmq", - "type": "zmpbrrzcchvvz", + "name": "iycqgvcphj", + "type": "rlmzedsjhuktpi", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json index dcbda1acef8a..f2497c089fcd 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json index 2b001717a691..c48230734a1b 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,20 +14,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 9187, - "maxMessageExpirySeconds": 7348, - "maxPacketSizeBytes": 8320, + "maxSessionExpirySeconds": 6873, + "maxMessageExpirySeconds": 6228, + "maxPacketSizeBytes": 6177, "subscriberQueueLimit": { - "length": 17, + "length": 13, "strategy": "None" }, - "maxReceiveMaximum": 9376, - "maxKeepAliveSeconds": 2793 + "maxReceiveMaximum": 1350, + "maxKeepAliveSeconds": 6434 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "rtuzqsrmudnuzjsugvcsuyapy", - "renewBefore": "lkhzbha", + "duration": "nfyhesb", + "renewBefore": "fha", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -36,46 +36,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 5, - "workers": 10 + "partitions": 2, + "redundancyFactor": 4, + "workers": 14 }, "frontend": { - "replicas": 4, - "workers": 3 + "replicas": 1, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 122, - "timeoutSeconds": 85 + "intervalSeconds": 279, + "timeoutSeconds": 56 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "cacheSizeMegabytes": 61, + "cacheSizeMegabytes": 126, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 161 + "intervalSeconds": 106 }, "spanChannelCapacity": 1000 } @@ -83,84 +83,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } }, "persistentVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } } @@ -172,19 +172,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "peyjszippypiwmq", - "type": "zmpbrrzcchvvz", + "name": "iycqgvcphj", + "type": "rlmzedsjhuktpi", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json index d56f6f1e0a3d..5d62f00721f4 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -15,20 +15,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 9187, - "maxMessageExpirySeconds": 7348, - "maxPacketSizeBytes": 8320, + "maxSessionExpirySeconds": 6873, + "maxMessageExpirySeconds": 6228, + "maxPacketSizeBytes": 6177, "subscriberQueueLimit": { - "length": 17, + "length": 13, "strategy": "None" }, - "maxReceiveMaximum": 9376, - "maxKeepAliveSeconds": 2793 + "maxReceiveMaximum": 1350, + "maxKeepAliveSeconds": 6434 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "rtuzqsrmudnuzjsugvcsuyapy", - "renewBefore": "lkhzbha", + "duration": "nfyhesb", + "renewBefore": "fha", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -37,46 +37,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 5, - "workers": 10 + "partitions": 2, + "redundancyFactor": 4, + "workers": 14 }, "frontend": { - "replicas": 4, - "workers": 3 + "replicas": 1, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 122, - "timeoutSeconds": 85 + "intervalSeconds": 279, + "timeoutSeconds": 56 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "cacheSizeMegabytes": 61, + "cacheSizeMegabytes": 126, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 161 + "intervalSeconds": 106 }, "spanChannelCapacity": 1000 } @@ -84,84 +84,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } }, "persistentVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } } @@ -173,19 +173,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "peyjszippypiwmq", - "type": "zmpbrrzcchvvz", + "name": "iycqgvcphj", + "type": "rlmzedsjhuktpi", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json index ed3371065203..1abf2b8d6f93 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json @@ -3,97 +3,102 @@ "operationId": "DataflowEndpoint_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123", "resource": { "properties": { "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "pxdytnba" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "xwdojfyimfoeluckmds", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "jsougrdnmwnybevuokks" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "jfoiptwvigarzkqmxwzjktxeckd" - }, - "serviceAccountTokenSettings": { - "audience": "mvpkaoowmlqdhtzolwlkrvvw" - }, - "x509Settings": { - "secretRef": "ujartkovszdmnv" - } - }, "dataExplorerSettings": { - "database": "ldse", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "tfbtzuofhqmkra", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "hgphq" + "secretRef": "o" }, "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "lcvrtqftxrhknx", - "workspaceName": "zdqjjiibnlawgzqbtiykpwjb" + "lakehouseName": "r", + "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "kafkaSettings": { - "consumerGroupId": "bsweppcgzv", - "host": "hzog", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "amqvjdyyrsdcacmuaqmdqd" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "consumerGroupId": "vzklnujksvcmxbfopjasopy", + "host": "evniscabwmrjjtf", "batching": { "mode": "Enabled", - "latencyMs": 5792, - "maxBytes": 5354, - "maxMessages": 770 + "latencyMs": 462, + "maxBytes": 9139, + "maxMessages": 598 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -101,31 +106,48 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vondspmbfndydpfvmzixe" + "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" }, "mqttSettings": { - "clientIdPrefix": "upyvoylrslwanrsq", - "host": "nuldtgdbwxwuiflxguvhqjohzbblgi", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "serviceAccountTokenSettings": { + "audience": "pywuicgqzhwqyih" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "clientIdPrefix": "qdiywebioiydzvlawsqqyx", + "host": "zrzh", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" } }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -135,90 +157,95 @@ "body": { "properties": { "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "pxdytnba" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "xwdojfyimfoeluckmds", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "jsougrdnmwnybevuokks" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "jfoiptwvigarzkqmxwzjktxeckd" - }, - "serviceAccountTokenSettings": { - "audience": "mvpkaoowmlqdhtzolwlkrvvw" - }, - "x509Settings": { - "secretRef": "ujartkovszdmnv" - } - }, "dataExplorerSettings": { - "database": "ldse", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "tfbtzuofhqmkra", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "hgphq" + "secretRef": "o" }, "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "lcvrtqftxrhknx", - "workspaceName": "zdqjjiibnlawgzqbtiykpwjb" + "lakehouseName": "r", + "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "kafkaSettings": { - "consumerGroupId": "bsweppcgzv", - "host": "hzog", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "amqvjdyyrsdcacmuaqmdqd" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "consumerGroupId": "vzklnujksvcmxbfopjasopy", + "host": "evniscabwmrjjtf", "batching": { "mode": "Enabled", - "latencyMs": 5792, - "maxBytes": 5354, - "maxMessages": 770 + "latencyMs": 462, + "maxBytes": 9139, + "maxMessages": 598 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -226,44 +253,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vondspmbfndydpfvmzixe" + "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" }, "mqttSettings": { - "clientIdPrefix": "upyvoylrslwanrsq", - "host": "nuldtgdbwxwuiflxguvhqjohzbblgi", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "serviceAccountTokenSettings": { + "audience": "pywuicgqzhwqyih" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "clientIdPrefix": "qdiywebioiydzvlawsqqyx", + "host": "zrzh", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "gorinquvmdbfmjfbobhr", - "type": "odtitoseavywh", + "name": "yrnljeyw", + "type": "nhtjvccvwmuonzblpupdaf", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -274,90 +318,95 @@ "body": { "properties": { "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "pxdytnba" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "xwdojfyimfoeluckmds", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "jsougrdnmwnybevuokks" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "jfoiptwvigarzkqmxwzjktxeckd" - }, - "serviceAccountTokenSettings": { - "audience": "mvpkaoowmlqdhtzolwlkrvvw" - }, - "x509Settings": { - "secretRef": "ujartkovszdmnv" - } - }, "dataExplorerSettings": { - "database": "ldse", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "tfbtzuofhqmkra", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "hgphq" + "secretRef": "o" }, "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "lcvrtqftxrhknx", - "workspaceName": "zdqjjiibnlawgzqbtiykpwjb" + "lakehouseName": "r", + "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "kafkaSettings": { - "consumerGroupId": "bsweppcgzv", - "host": "hzog", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "amqvjdyyrsdcacmuaqmdqd" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "consumerGroupId": "vzklnujksvcmxbfopjasopy", + "host": "evniscabwmrjjtf", "batching": { "mode": "Enabled", - "latencyMs": 5792, - "maxBytes": 5354, - "maxMessages": 770 + "latencyMs": 462, + "maxBytes": 9139, + "maxMessages": 598 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -365,44 +414,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vondspmbfndydpfvmzixe" + "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" }, "mqttSettings": { - "clientIdPrefix": "upyvoylrslwanrsq", - "host": "nuldtgdbwxwuiflxguvhqjohzbblgi", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "serviceAccountTokenSettings": { + "audience": "pywuicgqzhwqyih" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "clientIdPrefix": "qdiywebioiydzvlawsqqyx", + "host": "zrzh", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "gorinquvmdbfmjfbobhr", - "type": "odtitoseavywh", + "name": "yrnljeyw", + "type": "nhtjvccvwmuonzblpupdaf", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json index dccc2fa9f857..422d6a660adf 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json index d41eaf94e441..bee64c17240b 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" @@ -13,90 +13,95 @@ "body": { "properties": { "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "pxdytnba" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "xwdojfyimfoeluckmds", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "jsougrdnmwnybevuokks" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "jfoiptwvigarzkqmxwzjktxeckd" - }, - "serviceAccountTokenSettings": { - "audience": "mvpkaoowmlqdhtzolwlkrvvw" - }, - "x509Settings": { - "secretRef": "ujartkovszdmnv" - } - }, "dataExplorerSettings": { - "database": "ldse", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "tfbtzuofhqmkra", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "hgphq" + "secretRef": "o" }, "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "lcvrtqftxrhknx", - "workspaceName": "zdqjjiibnlawgzqbtiykpwjb" + "lakehouseName": "r", + "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "kafkaSettings": { - "consumerGroupId": "bsweppcgzv", - "host": "hzog", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "amqvjdyyrsdcacmuaqmdqd" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "consumerGroupId": "vzklnujksvcmxbfopjasopy", + "host": "evniscabwmrjjtf", "batching": { "mode": "Enabled", - "latencyMs": 5792, - "maxBytes": 5354, - "maxMessages": 770 + "latencyMs": 462, + "maxBytes": 9139, + "maxMessages": 598 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -104,44 +109,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vondspmbfndydpfvmzixe" + "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" }, "mqttSettings": { - "clientIdPrefix": "upyvoylrslwanrsq", - "host": "nuldtgdbwxwuiflxguvhqjohzbblgi", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "serviceAccountTokenSettings": { + "audience": "pywuicgqzhwqyih" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "clientIdPrefix": "qdiywebioiydzvlawsqqyx", + "host": "zrzh", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "gorinquvmdbfmjfbobhr", - "type": "odtitoseavywh", + "name": "yrnljeyw", + "type": "nhtjvccvwmuonzblpupdaf", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json index 9ae5f511caf3..d5295fb2e4fb 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -14,90 +14,95 @@ { "properties": { "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "pxdytnba" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "xwdojfyimfoeluckmds", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "jsougrdnmwnybevuokks" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "jfoiptwvigarzkqmxwzjktxeckd" - }, - "serviceAccountTokenSettings": { - "audience": "mvpkaoowmlqdhtzolwlkrvvw" - }, - "x509Settings": { - "secretRef": "ujartkovszdmnv" - } - }, "dataExplorerSettings": { - "database": "ldse", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "tfbtzuofhqmkra", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "hgphq" + "secretRef": "o" }, "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "lcvrtqftxrhknx", - "workspaceName": "zdqjjiibnlawgzqbtiykpwjb" + "lakehouseName": "r", + "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "kafkaSettings": { - "consumerGroupId": "bsweppcgzv", - "host": "hzog", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "amqvjdyyrsdcacmuaqmdqd" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "consumerGroupId": "vzklnujksvcmxbfopjasopy", + "host": "evniscabwmrjjtf", "batching": { "mode": "Enabled", - "latencyMs": 5792, - "maxBytes": 5354, - "maxMessages": 770 + "latencyMs": 462, + "maxBytes": 9139, + "maxMessages": 598 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -105,48 +110,65 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vondspmbfndydpfvmzixe" + "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" }, "mqttSettings": { - "clientIdPrefix": "upyvoylrslwanrsq", - "host": "nuldtgdbwxwuiflxguvhqjohzbblgi", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "serviceAccountTokenSettings": { + "audience": "pywuicgqzhwqyih" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "clientIdPrefix": "qdiywebioiydzvlawsqqyx", + "host": "zrzh", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "gorinquvmdbfmjfbobhr", - "type": "odtitoseavywh", + "name": "yrnljeyw", + "type": "nhtjvccvwmuonzblpupdaf", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/aaeblb" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json index 3bab62fcb1d8..124ad8df0375 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -12,24 +12,24 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 } }, - "instanceCount": 13 + "instanceCount": 8 }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -41,37 +41,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 } }, - "instanceCount": 13, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ozjgillyrzecuqpsonz", - "type": "kcujnabpczsiuwhygzcvtvcmfuwz", + "name": "ckfcqxn", + "type": "fnblyebsknda", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -84,37 +84,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 } }, - "instanceCount": 13, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ozjgillyrzecuqpsonz", - "type": "kcujnabpczsiuwhygzcvtvcmfuwz", + "name": "ckfcqxn", + "type": "fnblyebsknda", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json index c4ca9c10ba3f..1ea22d54a0cc 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json index efdfcd8e4ff7..2c723cbeedb0 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -15,37 +15,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 } }, - "instanceCount": 13, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ozjgillyrzecuqpsonz", - "type": "kcujnabpczsiuwhygzcvtvcmfuwz", + "name": "ckfcqxn", + "type": "fnblyebsknda", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json index 6e5b05df40f7..45d111847b1f 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -16,41 +16,41 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 } }, - "instanceCount": 13, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ozjgillyrzecuqpsonz", - "type": "kcujnabpczsiuwhygzcvtvcmfuwz", + "name": "ckfcqxn", + "type": "fnblyebsknda", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/ah" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json index cc97531a6b99..675931816d15 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -14,28 +14,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "sjmaomyezia", + "name": "uole", "sourceSettings": { - "endpointRef": "gsrssjinpwfgkdnpt", - "assetRef": "xngndntzox", + "endpointRef": "eoeedatyjro", + "assetRef": "htuzxsnhqlii", "serializationFormat": "Json", - "schemaRef": "azwmkcjplfquegdywsssz", + "schemaRef": "okclmamfunafjeslt", "dataSources": [ - "fvnkynjnmovlugyl" + "kjiuwdcklmsrcrcgohxtsptl" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ugwghjxfm", + "schemaRef": "vzvxcefhbecejrrvg", "datasets": [ { - "key": "naerntixunxapuvkhujhsvyxdchkiaxczabcceapuslmshjvwl", + "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "vbftbcwvebbwqfhyi", + "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", "inputs": [ - "qvvpv" + "mzpv" ], - "expression": "qigpsdaafdkwcwrqzxoauehbymqn" + "expression": "ciikrhquzvup" } ], "filter": [ @@ -43,9 +43,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "sjhczjgkznkwejmxhycyiuctgb" + "leiudbasupbvsdmblpnxdva" ], - "expression": "nztnsziclwxpsfaejnmqa" + "expression": "mnzmagcibqolghefk" } ], "map": [ @@ -53,22 +53,22 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lrebamjtmbixqrclhpckwesrulxo" + "lvqzqtnawqnj" ], - "expression": "vsdsnnqqbwgolthsswfupkwdyijh", - "output": "artm" + "expression": "aqtbsiqzahqwlyxmnmpqwp", + "output": "edwqaukhlwsylutqmoxfp" } ] }, "destinationSettings": { - "endpointRef": "fe", - "dataDestination": "xuelkxtzswfqt" + "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", + "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" } } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -81,28 +81,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "sjmaomyezia", + "name": "uole", "sourceSettings": { - "endpointRef": "gsrssjinpwfgkdnpt", - "assetRef": "xngndntzox", + "endpointRef": "eoeedatyjro", + "assetRef": "htuzxsnhqlii", "serializationFormat": "Json", - "schemaRef": "azwmkcjplfquegdywsssz", + "schemaRef": "okclmamfunafjeslt", "dataSources": [ - "fvnkynjnmovlugyl" + "kjiuwdcklmsrcrcgohxtsptl" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ugwghjxfm", + "schemaRef": "vzvxcefhbecejrrvg", "datasets": [ { - "key": "naerntixunxapuvkhujhsvyxdchkiaxczabcceapuslmshjvwl", + "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "vbftbcwvebbwqfhyi", + "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", "inputs": [ - "qvvpv" + "mzpv" ], - "expression": "qigpsdaafdkwcwrqzxoauehbymqn" + "expression": "ciikrhquzvup" } ], "filter": [ @@ -110,9 +110,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "sjhczjgkznkwejmxhycyiuctgb" + "leiudbasupbvsdmblpnxdva" ], - "expression": "nztnsziclwxpsfaejnmqa" + "expression": "mnzmagcibqolghefk" } ], "map": [ @@ -120,35 +120,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lrebamjtmbixqrclhpckwesrulxo" + "lvqzqtnawqnj" ], - "expression": "vsdsnnqqbwgolthsswfupkwdyijh", - "output": "artm" + "expression": "aqtbsiqzahqwlyxmnmpqwp", + "output": "edwqaukhlwsylutqmoxfp" } ] }, "destinationSettings": { - "endpointRef": "fe", - "dataDestination": "xuelkxtzswfqt" + "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", + "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "csvgb", - "type": "ekmzynppdvfcicnulsq", + "name": "udpvbyiefjyzswcdpxavyqgnxwk", + "type": "vkgszhkjsdljeslkyleib", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -162,28 +162,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "sjmaomyezia", + "name": "uole", "sourceSettings": { - "endpointRef": "gsrssjinpwfgkdnpt", - "assetRef": "xngndntzox", + "endpointRef": "eoeedatyjro", + "assetRef": "htuzxsnhqlii", "serializationFormat": "Json", - "schemaRef": "azwmkcjplfquegdywsssz", + "schemaRef": "okclmamfunafjeslt", "dataSources": [ - "fvnkynjnmovlugyl" + "kjiuwdcklmsrcrcgohxtsptl" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ugwghjxfm", + "schemaRef": "vzvxcefhbecejrrvg", "datasets": [ { - "key": "naerntixunxapuvkhujhsvyxdchkiaxczabcceapuslmshjvwl", + "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "vbftbcwvebbwqfhyi", + "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", "inputs": [ - "qvvpv" + "mzpv" ], - "expression": "qigpsdaafdkwcwrqzxoauehbymqn" + "expression": "ciikrhquzvup" } ], "filter": [ @@ -191,9 +191,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "sjhczjgkznkwejmxhycyiuctgb" + "leiudbasupbvsdmblpnxdva" ], - "expression": "nztnsziclwxpsfaejnmqa" + "expression": "mnzmagcibqolghefk" } ], "map": [ @@ -201,35 +201,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lrebamjtmbixqrclhpckwesrulxo" + "lvqzqtnawqnj" ], - "expression": "vsdsnnqqbwgolthsswfupkwdyijh", - "output": "artm" + "expression": "aqtbsiqzahqwlyxmnmpqwp", + "output": "edwqaukhlwsylutqmoxfp" } ] }, "destinationSettings": { - "endpointRef": "fe", - "dataDestination": "xuelkxtzswfqt" + "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", + "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "csvgb", - "type": "ekmzynppdvfcicnulsq", + "name": "udpvbyiefjyzswcdpxavyqgnxwk", + "type": "vkgszhkjsdljeslkyleib", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json index cd4db1cc6279..ef2abe6300f6 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json index 0048618909d3..5520277b1774 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -17,28 +17,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "sjmaomyezia", + "name": "uole", "sourceSettings": { - "endpointRef": "gsrssjinpwfgkdnpt", - "assetRef": "xngndntzox", + "endpointRef": "eoeedatyjro", + "assetRef": "htuzxsnhqlii", "serializationFormat": "Json", - "schemaRef": "azwmkcjplfquegdywsssz", + "schemaRef": "okclmamfunafjeslt", "dataSources": [ - "fvnkynjnmovlugyl" + "kjiuwdcklmsrcrcgohxtsptl" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ugwghjxfm", + "schemaRef": "vzvxcefhbecejrrvg", "datasets": [ { - "key": "naerntixunxapuvkhujhsvyxdchkiaxczabcceapuslmshjvwl", + "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "vbftbcwvebbwqfhyi", + "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", "inputs": [ - "qvvpv" + "mzpv" ], - "expression": "qigpsdaafdkwcwrqzxoauehbymqn" + "expression": "ciikrhquzvup" } ], "filter": [ @@ -46,9 +46,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "sjhczjgkznkwejmxhycyiuctgb" + "leiudbasupbvsdmblpnxdva" ], - "expression": "nztnsziclwxpsfaejnmqa" + "expression": "mnzmagcibqolghefk" } ], "map": [ @@ -56,35 +56,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lrebamjtmbixqrclhpckwesrulxo" + "lvqzqtnawqnj" ], - "expression": "vsdsnnqqbwgolthsswfupkwdyijh", - "output": "artm" + "expression": "aqtbsiqzahqwlyxmnmpqwp", + "output": "edwqaukhlwsylutqmoxfp" } ] }, "destinationSettings": { - "endpointRef": "fe", - "dataDestination": "xuelkxtzswfqt" + "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", + "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "csvgb", - "type": "ekmzynppdvfcicnulsq", + "name": "udpvbyiefjyzswcdpxavyqgnxwk", + "type": "vkgszhkjsdljeslkyleib", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json index 8e29b38dd182..02cd07624b83 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_ListByProfileResource", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -18,28 +18,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "sjmaomyezia", + "name": "uole", "sourceSettings": { - "endpointRef": "gsrssjinpwfgkdnpt", - "assetRef": "xngndntzox", + "endpointRef": "eoeedatyjro", + "assetRef": "htuzxsnhqlii", "serializationFormat": "Json", - "schemaRef": "azwmkcjplfquegdywsssz", + "schemaRef": "okclmamfunafjeslt", "dataSources": [ - "fvnkynjnmovlugyl" + "kjiuwdcklmsrcrcgohxtsptl" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ugwghjxfm", + "schemaRef": "vzvxcefhbecejrrvg", "datasets": [ { - "key": "naerntixunxapuvkhujhsvyxdchkiaxczabcceapuslmshjvwl", + "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "vbftbcwvebbwqfhyi", + "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", "inputs": [ - "qvvpv" + "mzpv" ], - "expression": "qigpsdaafdkwcwrqzxoauehbymqn" + "expression": "ciikrhquzvup" } ], "filter": [ @@ -47,9 +47,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "sjhczjgkznkwejmxhycyiuctgb" + "leiudbasupbvsdmblpnxdva" ], - "expression": "nztnsziclwxpsfaejnmqa" + "expression": "mnzmagcibqolghefk" } ], "map": [ @@ -57,39 +57,39 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lrebamjtmbixqrclhpckwesrulxo" + "lvqzqtnawqnj" ], - "expression": "vsdsnnqqbwgolthsswfupkwdyijh", - "output": "artm" + "expression": "aqtbsiqzahqwlyxmnmpqwp", + "output": "edwqaukhlwsylutqmoxfp" } ] }, "destinationSettings": { - "endpointRef": "fe", - "dataDestination": "xuelkxtzswfqt" + "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", + "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "csvgb", - "type": "ekmzynppdvfcicnulsq", + "name": "udpvbyiefjyzswcdpxavyqgnxwk", + "type": "vkgszhkjsdljeslkyleib", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/aanb" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json index e730dad99bf6..17f998778957 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "resource": { @@ -12,19 +12,19 @@ "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { "type": "None", "userAssignedIdentities": { - "key4688": {} + "key4294": {} } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm" + "location": "zofxlkvgdssjqujsqdomtrar" } }, "responses": { @@ -33,17 +33,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -51,26 +51,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -82,17 +82,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -100,26 +100,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json index f2fab67066e8..fa39ea4b103f 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json index 346b0d5533c8..cf715549ca12 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,17 +13,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -31,26 +31,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json index 507ec5ba620b..276ad8cd4d45 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations" }, "responses": { @@ -14,17 +14,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -32,30 +32,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/ah" + "nextLink": "https://microsoft.com/agidhjvl" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json index b56cd0801144..fc090fc9184d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListBySubscription", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0" + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2" }, "responses": { "200": { @@ -13,17 +13,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -31,30 +31,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/ah" + "nextLink": "https://microsoft.com/agidhjvl" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json index a391f8635284..33b4797f6ab7 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json @@ -3,12 +3,12 @@ "operationId": "Instance_Update", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "properties": { "tags": { - "key4778": "kjcwqgfngec" + "key9634": "lk" } } }, @@ -18,17 +18,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -36,26 +36,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json index 12fad3611d77..67548679c822 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json @@ -9,19 +9,19 @@ "body": { "value": [ { - "name": "kwdngermychyyticimfqxi", + "name": "xoun", "isDataAction": true, "display": { - "provider": "fiqrttitwlfrrdsjqy", - "resource": "w", - "operation": "udqsifsotgzbcjycvi", + "provider": "xukdpfxtyhcdphnwwchmlqh", + "resource": "ujadshbcfzvdbmfkcfqxzywzro", + "operation": "rewimbbdfcvhh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit." }, "origin": "user", "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/atksei" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json index 4042b0cd1153..8e427b19fd96 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -17,38 +17,38 @@ "auth": { "x509": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } }, - "caCertConfigMap": "jkllrpolhwdmsxgqtfddqnjacyz", + "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", "endpoint": "https://www.example.com", "headers": { - "key81": "boqqjxa" + "key6099": "zqwfotkzttvzbx" } }, "serviceAccountTokenSettings": { "audiences": [ - "zfwuwlnhsjwqadg" + "awuyykdydnr" ] }, "x509Settings": { "authorizationAttributes": { - "key8989": { + "key4680": { "attributes": { - "key8245": "dohexapwnqmvuydqblle" + "key6861": "ftvxyusinoeecsady" }, - "subject": "qfwsushpvyiklgumdadwxqddb" + "subject": "dqdmahhcofgbypuofwduns" } }, - "trustedClientCaCert": "kiqcxdktpzolirqzxgcikqbbslq" + "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" } } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -64,51 +64,51 @@ "auth": { "x509": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } }, - "caCertConfigMap": "jkllrpolhwdmsxgqtfddqnjacyz", + "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", "endpoint": "https://www.example.com", "headers": { - "key81": "boqqjxa" + "key6099": "zqwfotkzttvzbx" } }, "serviceAccountTokenSettings": { "audiences": [ - "zfwuwlnhsjwqadg" + "awuyykdydnr" ] }, "x509Settings": { "authorizationAttributes": { - "key8989": { + "key4680": { "attributes": { - "key8245": "dohexapwnqmvuydqblle" + "key6861": "ftvxyusinoeecsady" }, - "subject": "qfwsushpvyiklgumdadwxqddb" + "subject": "dqdmahhcofgbypuofwduns" } }, - "trustedClientCaCert": "kiqcxdktpzolirqzxgcikqbbslq" + "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "zmtuabzxgdufoxlnfgiys", - "type": "mziqtpsib", + "name": "qhdoduzgqa", + "type": "l", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -125,51 +125,51 @@ "auth": { "x509": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } }, - "caCertConfigMap": "jkllrpolhwdmsxgqtfddqnjacyz", + "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", "endpoint": "https://www.example.com", "headers": { - "key81": "boqqjxa" + "key6099": "zqwfotkzttvzbx" } }, "serviceAccountTokenSettings": { "audiences": [ - "zfwuwlnhsjwqadg" + "awuyykdydnr" ] }, "x509Settings": { "authorizationAttributes": { - "key8989": { + "key4680": { "attributes": { - "key8245": "dohexapwnqmvuydqblle" + "key6861": "ftvxyusinoeecsady" }, - "subject": "qfwsushpvyiklgumdadwxqddb" + "subject": "dqdmahhcofgbypuofwduns" } }, - "trustedClientCaCert": "kiqcxdktpzolirqzxgcikqbbslq" + "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "zmtuabzxgdufoxlnfgiys", - "type": "mziqtpsib", + "name": "qhdoduzgqa", + "type": "l", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json index 331ef9dd87e8..01c369a0b522 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json index 53fb24d6d3af..32287ad53bd5 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -20,51 +20,51 @@ "auth": { "x509": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } }, - "caCertConfigMap": "jkllrpolhwdmsxgqtfddqnjacyz", + "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", "endpoint": "https://www.example.com", "headers": { - "key81": "boqqjxa" + "key6099": "zqwfotkzttvzbx" } }, "serviceAccountTokenSettings": { "audiences": [ - "zfwuwlnhsjwqadg" + "awuyykdydnr" ] }, "x509Settings": { "authorizationAttributes": { - "key8989": { + "key4680": { "attributes": { - "key8245": "dohexapwnqmvuydqblle" + "key6861": "ftvxyusinoeecsady" }, - "subject": "qfwsushpvyiklgumdadwxqddb" + "subject": "dqdmahhcofgbypuofwduns" } }, - "trustedClientCaCert": "kiqcxdktpzolirqzxgcikqbbslq" + "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "zmtuabzxgdufoxlnfgiys", - "type": "mziqtpsib", + "name": "qhdoduzgqa", + "type": "l", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json index 61999e48fdb3..b0ba771bf070 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -21,55 +21,55 @@ "auth": { "x509": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } }, - "caCertConfigMap": "jkllrpolhwdmsxgqtfddqnjacyz", + "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", "endpoint": "https://www.example.com", "headers": { - "key81": "boqqjxa" + "key6099": "zqwfotkzttvzbx" } }, "serviceAccountTokenSettings": { "audiences": [ - "zfwuwlnhsjwqadg" + "awuyykdydnr" ] }, "x509Settings": { "authorizationAttributes": { - "key8989": { + "key4680": { "attributes": { - "key8245": "dohexapwnqmvuydqblle" + "key6861": "ftvxyusinoeecsady" }, - "subject": "qfwsushpvyiklgumdadwxqddb" + "subject": "dqdmahhcofgbypuofwduns" } }, - "trustedClientCaCert": "kiqcxdktpzolirqzxgcikqbbslq" + "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "zmtuabzxgdufoxlnfgiys", - "type": "mziqtpsib", + "name": "qhdoduzgqa", + "type": "l", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/aqzu" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json index a456269076eb..34a46aad65bc 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -18,28 +18,28 @@ { "method": "Connect", "topics": [ - "qqdty" + "sogrvpvuwdvossiyoguudynoq" ] } ], "principals": { "attributes": [ { - "key5264": "vadfhgpdglaqzwlsvfgsvxuhyehmhd" + "key7341": "ohhuwaqdagteh" } ], "clientIds": [ - "vjztonrpmbd" + "wjxyjuehzeahskycinhaxpualwgpgh" ], "usernames": [ - "jmjlgzjnkyfaczenfsohg" + "ksfpwfrnqomajxmbcuklsagvw" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "gpovscysmuxidfuswyot" + "ordrqfkzrwzwb" ], "method": "Read" } @@ -49,7 +49,7 @@ } }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -66,28 +66,28 @@ { "method": "Connect", "topics": [ - "qqdty" + "sogrvpvuwdvossiyoguudynoq" ] } ], "principals": { "attributes": [ { - "key5264": "vadfhgpdglaqzwlsvfgsvxuhyehmhd" + "key7341": "ohhuwaqdagteh" } ], "clientIds": [ - "vjztonrpmbd" + "wjxyjuehzeahskycinhaxpualwgpgh" ], "usernames": [ - "jmjlgzjnkyfaczenfsohg" + "ksfpwfrnqomajxmbcuklsagvw" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "gpovscysmuxidfuswyot" + "ordrqfkzrwzwb" ], "method": "Read" } @@ -98,19 +98,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "jftqsjmxwoqd", - "type": "nrcmjzmacxawqarcf", + "name": "puqgnigsztnvwngxofcggpas", + "type": "ytqvrwlmiannhwvorbtpbzhpdm", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -128,28 +128,28 @@ { "method": "Connect", "topics": [ - "qqdty" + "sogrvpvuwdvossiyoguudynoq" ] } ], "principals": { "attributes": [ { - "key5264": "vadfhgpdglaqzwlsvfgsvxuhyehmhd" + "key7341": "ohhuwaqdagteh" } ], "clientIds": [ - "vjztonrpmbd" + "wjxyjuehzeahskycinhaxpualwgpgh" ], "usernames": [ - "jmjlgzjnkyfaczenfsohg" + "ksfpwfrnqomajxmbcuklsagvw" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "gpovscysmuxidfuswyot" + "ordrqfkzrwzwb" ], "method": "Read" } @@ -160,19 +160,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "jftqsjmxwoqd", - "type": "nrcmjzmacxawqarcf", + "name": "puqgnigsztnvwngxofcggpas", + "type": "ytqvrwlmiannhwvorbtpbzhpdm", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json index 26d83c512535..d6c0f9886c1f 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json index b74fd7755e8e..8240407c13d4 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -21,28 +21,28 @@ { "method": "Connect", "topics": [ - "qqdty" + "sogrvpvuwdvossiyoguudynoq" ] } ], "principals": { "attributes": [ { - "key5264": "vadfhgpdglaqzwlsvfgsvxuhyehmhd" + "key7341": "ohhuwaqdagteh" } ], "clientIds": [ - "vjztonrpmbd" + "wjxyjuehzeahskycinhaxpualwgpgh" ], "usernames": [ - "jmjlgzjnkyfaczenfsohg" + "ksfpwfrnqomajxmbcuklsagvw" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "gpovscysmuxidfuswyot" + "ordrqfkzrwzwb" ], "method": "Read" } @@ -53,19 +53,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "jftqsjmxwoqd", - "type": "nrcmjzmacxawqarcf", + "name": "puqgnigsztnvwngxofcggpas", + "type": "ytqvrwlmiannhwvorbtpbzhpdm", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json index 378fde209e00..c82434faa00a 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -22,28 +22,28 @@ { "method": "Connect", "topics": [ - "qqdty" + "sogrvpvuwdvossiyoguudynoq" ] } ], "principals": { "attributes": [ { - "key5264": "vadfhgpdglaqzwlsvfgsvxuhyehmhd" + "key7341": "ohhuwaqdagteh" } ], "clientIds": [ - "vjztonrpmbd" + "wjxyjuehzeahskycinhaxpualwgpgh" ], "usernames": [ - "jmjlgzjnkyfaczenfsohg" + "ksfpwfrnqomajxmbcuklsagvw" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "gpovscysmuxidfuswyot" + "ordrqfkzrwzwb" ], "method": "Read" } @@ -54,19 +54,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "jftqsjmxwoqd", - "type": "nrcmjzmacxawqarcf", + "name": "puqgnigsztnvwngxofcggpas", + "type": "ytqvrwlmiannhwvorbtpbzhpdm", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json index 61cfad86e43b..319ac4e25028 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json @@ -3,31 +3,31 @@ "operationId": "BrokerListener_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", "listenerName": "resource-name123", "resource": { "properties": { - "serviceName": "vooi", + "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", "ports": [ { - "authenticationRef": "xvtzxvv", - "authorizationRef": "yuafwdxccnzpjcezccrvzfveo", - "nodePort": 3358, - "port": 8002, + "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", + "authorizationRef": "wqfkqwuiuernmvt", + "nodePort": 3840, + "port": 8452, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dipx", - "secretName": "syear", - "renewBefore": "ulhudlizqptzbyloc", + "duration": "nhnltaullguzadmtbmfgx", + "secretName": "sckzqmesxuaeoajkcdqpuqvb", + "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", "issuerRef": { - "group": "rs", + "group": "ctmhrxbsvzx", "kind": "Issuer", - "name": "qvrnalihrabj" + "name": "f" }, "privateKey": { "algorithm": "Ec256", @@ -35,17 +35,17 @@ }, "san": { "dns": [ - "uuhoznnehfuqujlcwsmx" + "gltzdoxjlnatlmiwkwcowttxdmd" ], "ip": [ - "ey" + "boanjeewupjcaofwoeqvtyjyet" ] } }, "manual": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } } @@ -54,7 +54,7 @@ "serviceType": "ClusterIp" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -63,24 +63,24 @@ "200": { "body": { "properties": { - "serviceName": "vooi", + "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", "ports": [ { - "authenticationRef": "xvtzxvv", - "authorizationRef": "yuafwdxccnzpjcezccrvzfveo", - "nodePort": 3358, - "port": 8002, + "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", + "authorizationRef": "wqfkqwuiuernmvt", + "nodePort": 3840, + "port": 8452, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dipx", - "secretName": "syear", - "renewBefore": "ulhudlizqptzbyloc", + "duration": "nhnltaullguzadmtbmfgx", + "secretName": "sckzqmesxuaeoajkcdqpuqvb", + "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", "issuerRef": { - "group": "rs", + "group": "ctmhrxbsvzx", "kind": "Issuer", - "name": "qvrnalihrabj" + "name": "f" }, "privateKey": { "algorithm": "Ec256", @@ -88,17 +88,17 @@ }, "san": { "dns": [ - "uuhoznnehfuqujlcwsmx" + "gltzdoxjlnatlmiwkwcowttxdmd" ], "ip": [ - "ey" + "boanjeewupjcaofwoeqvtyjyet" ] } }, "manual": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } } @@ -108,19 +108,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "bgdzp", - "type": "ptokiqpihqn", + "name": "zbmpca", + "type": "kqfsuiqzjhhdxyrwjtthoc", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -130,24 +130,24 @@ }, "body": { "properties": { - "serviceName": "vooi", + "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", "ports": [ { - "authenticationRef": "xvtzxvv", - "authorizationRef": "yuafwdxccnzpjcezccrvzfveo", - "nodePort": 3358, - "port": 8002, + "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", + "authorizationRef": "wqfkqwuiuernmvt", + "nodePort": 3840, + "port": 8452, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dipx", - "secretName": "syear", - "renewBefore": "ulhudlizqptzbyloc", + "duration": "nhnltaullguzadmtbmfgx", + "secretName": "sckzqmesxuaeoajkcdqpuqvb", + "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", "issuerRef": { - "group": "rs", + "group": "ctmhrxbsvzx", "kind": "Issuer", - "name": "qvrnalihrabj" + "name": "f" }, "privateKey": { "algorithm": "Ec256", @@ -155,17 +155,17 @@ }, "san": { "dns": [ - "uuhoznnehfuqujlcwsmx" + "gltzdoxjlnatlmiwkwcowttxdmd" ], "ip": [ - "ey" + "boanjeewupjcaofwoeqvtyjyet" ] } }, "manual": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } } @@ -175,19 +175,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "bgdzp", - "type": "ptokiqpihqn", + "name": "zbmpca", + "type": "kqfsuiqzjhhdxyrwjtthoc", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json index b8af0f89446e..22e30159b9a4 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json index 1491d0d06e50..98cf9cc88cef 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -13,24 +13,24 @@ "200": { "body": { "properties": { - "serviceName": "vooi", + "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", "ports": [ { - "authenticationRef": "xvtzxvv", - "authorizationRef": "yuafwdxccnzpjcezccrvzfveo", - "nodePort": 3358, - "port": 8002, + "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", + "authorizationRef": "wqfkqwuiuernmvt", + "nodePort": 3840, + "port": 8452, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dipx", - "secretName": "syear", - "renewBefore": "ulhudlizqptzbyloc", + "duration": "nhnltaullguzadmtbmfgx", + "secretName": "sckzqmesxuaeoajkcdqpuqvb", + "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", "issuerRef": { - "group": "rs", + "group": "ctmhrxbsvzx", "kind": "Issuer", - "name": "qvrnalihrabj" + "name": "f" }, "privateKey": { "algorithm": "Ec256", @@ -38,17 +38,17 @@ }, "san": { "dns": [ - "uuhoznnehfuqujlcwsmx" + "gltzdoxjlnatlmiwkwcowttxdmd" ], "ip": [ - "ey" + "boanjeewupjcaofwoeqvtyjyet" ] } }, "manual": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } } @@ -58,19 +58,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "bgdzp", - "type": "ptokiqpihqn", + "name": "zbmpca", + "type": "kqfsuiqzjhhdxyrwjtthoc", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json index 6511c0a40a65..543ce3dfb556 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,24 +14,24 @@ "value": [ { "properties": { - "serviceName": "vooi", + "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", "ports": [ { - "authenticationRef": "xvtzxvv", - "authorizationRef": "yuafwdxccnzpjcezccrvzfveo", - "nodePort": 3358, - "port": 8002, + "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", + "authorizationRef": "wqfkqwuiuernmvt", + "nodePort": 3840, + "port": 8452, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "dipx", - "secretName": "syear", - "renewBefore": "ulhudlizqptzbyloc", + "duration": "nhnltaullguzadmtbmfgx", + "secretName": "sckzqmesxuaeoajkcdqpuqvb", + "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", "issuerRef": { - "group": "rs", + "group": "ctmhrxbsvzx", "kind": "Issuer", - "name": "qvrnalihrabj" + "name": "f" }, "privateKey": { "algorithm": "Ec256", @@ -39,17 +39,17 @@ }, "san": { "dns": [ - "uuhoznnehfuqujlcwsmx" + "gltzdoxjlnatlmiwkwcowttxdmd" ], "ip": [ - "ey" + "boanjeewupjcaofwoeqvtyjyet" ] } }, "manual": { "secretRef": { - "name": "lvjtdardokvkvyjwot", - "namespace": "ycjuiuvfxd" + "name": "jucdtmgp", + "namespace": "iqxvsgwcxqfrrndjd" } } } @@ -59,19 +59,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "bgdzp", - "type": "ptokiqpihqn", + "name": "zbmpca", + "type": "kqfsuiqzjhhdxyrwjtthoc", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json index 18f020158f11..56c247abf39e 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -11,20 +11,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 9187, - "maxMessageExpirySeconds": 7348, - "maxPacketSizeBytes": 8320, + "maxSessionExpirySeconds": 6873, + "maxMessageExpirySeconds": 6228, + "maxPacketSizeBytes": 6177, "subscriberQueueLimit": { - "length": 17, + "length": 13, "strategy": "None" }, - "maxReceiveMaximum": 9376, - "maxKeepAliveSeconds": 2793 + "maxReceiveMaximum": 1350, + "maxKeepAliveSeconds": 6434 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "rtuzqsrmudnuzjsugvcsuyapy", - "renewBefore": "lkhzbha", + "duration": "nfyhesb", + "renewBefore": "fha", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -33,46 +33,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 5, - "workers": 10 + "partitions": 2, + "redundancyFactor": 4, + "workers": 14 }, "frontend": { - "replicas": 4, - "workers": 3 + "replicas": 1, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 122, - "timeoutSeconds": 85 + "intervalSeconds": 279, + "timeoutSeconds": 56 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "cacheSizeMegabytes": 61, + "cacheSizeMegabytes": 126, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 161 + "intervalSeconds": 106 }, "spanChannelCapacity": 1000 } @@ -80,84 +80,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } }, "persistentVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } } @@ -168,7 +168,7 @@ "memoryProfile": "Tiny" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -179,20 +179,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 9187, - "maxMessageExpirySeconds": 7348, - "maxPacketSizeBytes": 8320, + "maxSessionExpirySeconds": 6873, + "maxMessageExpirySeconds": 6228, + "maxPacketSizeBytes": 6177, "subscriberQueueLimit": { - "length": 17, + "length": 13, "strategy": "None" }, - "maxReceiveMaximum": 9376, - "maxKeepAliveSeconds": 2793 + "maxReceiveMaximum": 1350, + "maxKeepAliveSeconds": 6434 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "rtuzqsrmudnuzjsugvcsuyapy", - "renewBefore": "lkhzbha", + "duration": "nfyhesb", + "renewBefore": "fha", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -201,46 +201,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 5, - "workers": 10 + "partitions": 2, + "redundancyFactor": 4, + "workers": 14 }, "frontend": { - "replicas": 4, - "workers": 3 + "replicas": 1, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 122, - "timeoutSeconds": 85 + "intervalSeconds": 279, + "timeoutSeconds": 56 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "cacheSizeMegabytes": 61, + "cacheSizeMegabytes": 126, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 161 + "intervalSeconds": 106 }, "spanChannelCapacity": 1000 } @@ -248,84 +248,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } }, "persistentVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } } @@ -337,19 +337,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "peyjszippypiwmq", - "type": "zmpbrrzcchvvz", + "name": "iycqgvcphj", + "type": "rlmzedsjhuktpi", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -361,20 +361,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 9187, - "maxMessageExpirySeconds": 7348, - "maxPacketSizeBytes": 8320, + "maxSessionExpirySeconds": 6873, + "maxMessageExpirySeconds": 6228, + "maxPacketSizeBytes": 6177, "subscriberQueueLimit": { - "length": 17, + "length": 13, "strategy": "None" }, - "maxReceiveMaximum": 9376, - "maxKeepAliveSeconds": 2793 + "maxReceiveMaximum": 1350, + "maxKeepAliveSeconds": 6434 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "rtuzqsrmudnuzjsugvcsuyapy", - "renewBefore": "lkhzbha", + "duration": "nfyhesb", + "renewBefore": "fha", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -383,46 +383,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 5, - "workers": 10 + "partitions": 2, + "redundancyFactor": 4, + "workers": 14 }, "frontend": { - "replicas": 4, - "workers": 3 + "replicas": 1, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 122, - "timeoutSeconds": 85 + "intervalSeconds": 279, + "timeoutSeconds": 56 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "cacheSizeMegabytes": 61, + "cacheSizeMegabytes": 126, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 161 + "intervalSeconds": 106 }, "spanChannelCapacity": 1000 } @@ -430,84 +430,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } }, "persistentVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } } @@ -519,19 +519,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "peyjszippypiwmq", - "type": "zmpbrrzcchvvz", + "name": "iycqgvcphj", + "type": "rlmzedsjhuktpi", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json index dcbda1acef8a..f2497c089fcd 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json index 2b001717a691..c48230734a1b 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,20 +14,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 9187, - "maxMessageExpirySeconds": 7348, - "maxPacketSizeBytes": 8320, + "maxSessionExpirySeconds": 6873, + "maxMessageExpirySeconds": 6228, + "maxPacketSizeBytes": 6177, "subscriberQueueLimit": { - "length": 17, + "length": 13, "strategy": "None" }, - "maxReceiveMaximum": 9376, - "maxKeepAliveSeconds": 2793 + "maxReceiveMaximum": 1350, + "maxKeepAliveSeconds": 6434 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "rtuzqsrmudnuzjsugvcsuyapy", - "renewBefore": "lkhzbha", + "duration": "nfyhesb", + "renewBefore": "fha", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -36,46 +36,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 5, - "workers": 10 + "partitions": 2, + "redundancyFactor": 4, + "workers": 14 }, "frontend": { - "replicas": 4, - "workers": 3 + "replicas": 1, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 122, - "timeoutSeconds": 85 + "intervalSeconds": 279, + "timeoutSeconds": 56 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "cacheSizeMegabytes": 61, + "cacheSizeMegabytes": 126, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 161 + "intervalSeconds": 106 }, "spanChannelCapacity": 1000 } @@ -83,84 +83,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } }, "persistentVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } } @@ -172,19 +172,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "peyjszippypiwmq", - "type": "zmpbrrzcchvvz", + "name": "iycqgvcphj", + "type": "rlmzedsjhuktpi", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json index d56f6f1e0a3d..5d62f00721f4 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -15,20 +15,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 9187, - "maxMessageExpirySeconds": 7348, - "maxPacketSizeBytes": 8320, + "maxSessionExpirySeconds": 6873, + "maxMessageExpirySeconds": 6228, + "maxPacketSizeBytes": 6177, "subscriberQueueLimit": { - "length": 17, + "length": 13, "strategy": "None" }, - "maxReceiveMaximum": 9376, - "maxKeepAliveSeconds": 2793 + "maxReceiveMaximum": 1350, + "maxKeepAliveSeconds": 6434 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "rtuzqsrmudnuzjsugvcsuyapy", - "renewBefore": "lkhzbha", + "duration": "nfyhesb", + "renewBefore": "fha", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -37,46 +37,46 @@ }, "cardinality": { "backendChain": { - "partitions": 16, - "redundancyFactor": 5, - "workers": 10 + "partitions": 2, + "redundancyFactor": 4, + "workers": 14 }, "frontend": { - "replicas": 4, - "workers": 3 + "replicas": 1, + "workers": 7 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 122, - "timeoutSeconds": 85 + "intervalSeconds": 279, + "timeoutSeconds": 56 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "cacheSizeMegabytes": 61, + "cacheSizeMegabytes": 126, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 161 + "intervalSeconds": 106 }, "spanChannelCapacity": 1000 } @@ -84,84 +84,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } }, "persistentVolumeClaimSpec": { - "volumeName": "qsqdshafphdgnrnklmw", - "volumeMode": "jbhcgnncikcpslufierdzrl", - "storageClassName": "kmlyxuxwzxvyaaqioloippxtbo", + "volumeName": "khxcbbflz", + "volumeMode": "vubstbtjjkiejgaftdvtw", + "storageClassName": "a", "accessModes": [ - "spymngwrwswmbgcatfgafigsk" + "snvsg" ], "dataSource": { - "apiGroup": "xzngkvbshylas", - "kind": "hhoeqbylkchhqyhrhmbj", - "name": "vzjkvdoipdzflfgskinfcilp" + "apiGroup": "kdxlrrnmpestgiqdxcq", + "kind": "efmxaqlrtkhtg", + "name": "slitwzefdquor" }, "dataSourceRef": { - "apiGroup": "ijqecyncrchuuwa", - "kind": "llbcmbpwb", - "name": "vjgselpmgvawiuytqvslrwvapfy", - "namespace": "iknnnxeqfrzemmiddrkcx" + "apiGroup": "pst", + "kind": "mucmzrlcfcbrxnjrrqjigjkfd", + "name": "thdttdujpdcxvxt", + "namespace": "kvxpmgkhwuitye" }, "resources": { "limits": { - "key3559": "vecieikuspekb" + "key1227": "stqrdbzkrjtcevaxjimhkglantv" }, "requests": { - "key3080": "xyodvc" + "key180": "vtxpa" } }, "selector": { "matchExpressions": [ { - "key": "d", + "key": "qpddulzqpiormmcbee", "operator": "In", "values": [ - "jwohvkzwx" + "mevghryhs" ] } ], "matchLabels": { - "key7661": "igrkenuhsbohadkyfvsffobvn" + "key7808": "cofchxowfjtfmpqstdqfshdr" } } } @@ -173,19 +173,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "peyjszippypiwmq", - "type": "zmpbrrzcchvvz", + "name": "iycqgvcphj", + "type": "rlmzedsjhuktpi", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json index ed3371065203..1abf2b8d6f93 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json @@ -3,97 +3,102 @@ "operationId": "DataflowEndpoint_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123", "resource": { "properties": { "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "pxdytnba" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "xwdojfyimfoeluckmds", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "jsougrdnmwnybevuokks" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "jfoiptwvigarzkqmxwzjktxeckd" - }, - "serviceAccountTokenSettings": { - "audience": "mvpkaoowmlqdhtzolwlkrvvw" - }, - "x509Settings": { - "secretRef": "ujartkovszdmnv" - } - }, "dataExplorerSettings": { - "database": "ldse", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "tfbtzuofhqmkra", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "hgphq" + "secretRef": "o" }, "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "lcvrtqftxrhknx", - "workspaceName": "zdqjjiibnlawgzqbtiykpwjb" + "lakehouseName": "r", + "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "kafkaSettings": { - "consumerGroupId": "bsweppcgzv", - "host": "hzog", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "amqvjdyyrsdcacmuaqmdqd" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "consumerGroupId": "vzklnujksvcmxbfopjasopy", + "host": "evniscabwmrjjtf", "batching": { "mode": "Enabled", - "latencyMs": 5792, - "maxBytes": 5354, - "maxMessages": 770 + "latencyMs": 462, + "maxBytes": 9139, + "maxMessages": 598 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -101,31 +106,48 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vondspmbfndydpfvmzixe" + "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" }, "mqttSettings": { - "clientIdPrefix": "upyvoylrslwanrsq", - "host": "nuldtgdbwxwuiflxguvhqjohzbblgi", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "serviceAccountTokenSettings": { + "audience": "pywuicgqzhwqyih" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "clientIdPrefix": "qdiywebioiydzvlawsqqyx", + "host": "zrzh", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" } }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -135,90 +157,95 @@ "body": { "properties": { "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "pxdytnba" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "xwdojfyimfoeluckmds", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "jsougrdnmwnybevuokks" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "jfoiptwvigarzkqmxwzjktxeckd" - }, - "serviceAccountTokenSettings": { - "audience": "mvpkaoowmlqdhtzolwlkrvvw" - }, - "x509Settings": { - "secretRef": "ujartkovszdmnv" - } - }, "dataExplorerSettings": { - "database": "ldse", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "tfbtzuofhqmkra", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "hgphq" + "secretRef": "o" }, "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "lcvrtqftxrhknx", - "workspaceName": "zdqjjiibnlawgzqbtiykpwjb" + "lakehouseName": "r", + "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "kafkaSettings": { - "consumerGroupId": "bsweppcgzv", - "host": "hzog", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "amqvjdyyrsdcacmuaqmdqd" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "consumerGroupId": "vzklnujksvcmxbfopjasopy", + "host": "evniscabwmrjjtf", "batching": { "mode": "Enabled", - "latencyMs": 5792, - "maxBytes": 5354, - "maxMessages": 770 + "latencyMs": 462, + "maxBytes": 9139, + "maxMessages": 598 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -226,44 +253,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vondspmbfndydpfvmzixe" + "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" }, "mqttSettings": { - "clientIdPrefix": "upyvoylrslwanrsq", - "host": "nuldtgdbwxwuiflxguvhqjohzbblgi", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "serviceAccountTokenSettings": { + "audience": "pywuicgqzhwqyih" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "clientIdPrefix": "qdiywebioiydzvlawsqqyx", + "host": "zrzh", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "gorinquvmdbfmjfbobhr", - "type": "odtitoseavywh", + "name": "yrnljeyw", + "type": "nhtjvccvwmuonzblpupdaf", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -274,90 +318,95 @@ "body": { "properties": { "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "pxdytnba" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "xwdojfyimfoeluckmds", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "jsougrdnmwnybevuokks" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "jfoiptwvigarzkqmxwzjktxeckd" - }, - "serviceAccountTokenSettings": { - "audience": "mvpkaoowmlqdhtzolwlkrvvw" - }, - "x509Settings": { - "secretRef": "ujartkovszdmnv" - } - }, "dataExplorerSettings": { - "database": "ldse", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "tfbtzuofhqmkra", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "hgphq" + "secretRef": "o" }, "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "lcvrtqftxrhknx", - "workspaceName": "zdqjjiibnlawgzqbtiykpwjb" + "lakehouseName": "r", + "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "kafkaSettings": { - "consumerGroupId": "bsweppcgzv", - "host": "hzog", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "amqvjdyyrsdcacmuaqmdqd" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "consumerGroupId": "vzklnujksvcmxbfopjasopy", + "host": "evniscabwmrjjtf", "batching": { "mode": "Enabled", - "latencyMs": 5792, - "maxBytes": 5354, - "maxMessages": 770 + "latencyMs": 462, + "maxBytes": 9139, + "maxMessages": 598 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -365,44 +414,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vondspmbfndydpfvmzixe" + "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" }, "mqttSettings": { - "clientIdPrefix": "upyvoylrslwanrsq", - "host": "nuldtgdbwxwuiflxguvhqjohzbblgi", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "serviceAccountTokenSettings": { + "audience": "pywuicgqzhwqyih" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "clientIdPrefix": "qdiywebioiydzvlawsqqyx", + "host": "zrzh", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "gorinquvmdbfmjfbobhr", - "type": "odtitoseavywh", + "name": "yrnljeyw", + "type": "nhtjvccvwmuonzblpupdaf", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json index dccc2fa9f857..422d6a660adf 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json index d41eaf94e441..bee64c17240b 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" @@ -13,90 +13,95 @@ "body": { "properties": { "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "pxdytnba" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "xwdojfyimfoeluckmds", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "jsougrdnmwnybevuokks" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "jfoiptwvigarzkqmxwzjktxeckd" - }, - "serviceAccountTokenSettings": { - "audience": "mvpkaoowmlqdhtzolwlkrvvw" - }, - "x509Settings": { - "secretRef": "ujartkovszdmnv" - } - }, "dataExplorerSettings": { - "database": "ldse", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "tfbtzuofhqmkra", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "hgphq" + "secretRef": "o" }, "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "lcvrtqftxrhknx", - "workspaceName": "zdqjjiibnlawgzqbtiykpwjb" + "lakehouseName": "r", + "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "kafkaSettings": { - "consumerGroupId": "bsweppcgzv", - "host": "hzog", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "amqvjdyyrsdcacmuaqmdqd" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "consumerGroupId": "vzklnujksvcmxbfopjasopy", + "host": "evniscabwmrjjtf", "batching": { "mode": "Enabled", - "latencyMs": 5792, - "maxBytes": 5354, - "maxMessages": 770 + "latencyMs": 462, + "maxBytes": 9139, + "maxMessages": 598 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -104,44 +109,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vondspmbfndydpfvmzixe" + "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" }, "mqttSettings": { - "clientIdPrefix": "upyvoylrslwanrsq", - "host": "nuldtgdbwxwuiflxguvhqjohzbblgi", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "serviceAccountTokenSettings": { + "audience": "pywuicgqzhwqyih" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "clientIdPrefix": "qdiywebioiydzvlawsqqyx", + "host": "zrzh", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "gorinquvmdbfmjfbobhr", - "type": "odtitoseavywh", + "name": "yrnljeyw", + "type": "nhtjvccvwmuonzblpupdaf", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json index 9ae5f511caf3..d5295fb2e4fb 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -14,90 +14,95 @@ { "properties": { "endpointType": "DataExplorer", - "authentication": { - "method": "SystemAssignedManagedIdentity", - "systemAssignedManagedIdentitySettings": { - "audience": "pxdytnba" - }, - "userAssignedManagedIdentitySettings": { - "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "xwdojfyimfoeluckmds", - "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" - }, - "accessTokenSettings": { - "secretRef": "jsougrdnmwnybevuokks" - }, - "saslSettings": { - "saslType": "Plain", - "secretRef": "jfoiptwvigarzkqmxwzjktxeckd" - }, - "serviceAccountTokenSettings": { - "audience": "mvpkaoowmlqdhtzolwlkrvvw" - }, - "x509Settings": { - "secretRef": "ujartkovszdmnv" - } - }, "dataExplorerSettings": { - "database": "ldse", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + } + }, + "database": "tfbtzuofhqmkra", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "hgphq" + "secretRef": "o" }, "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "lidtagcfq" + "audience": "upzzwbbewitcscxglxzihyd" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "ajvopawgpjhtrwfx", + "scope": "wuwaunarfgqtvwjoiplujl", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "lcvrtqftxrhknx", - "workspaceName": "zdqjjiibnlawgzqbtiykpwjb" + "lakehouseName": "r", + "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 2123, - "maxMessages": 7686 + "latencySeconds": 1627, + "maxMessages": 5981 } }, "kafkaSettings": { - "consumerGroupId": "bsweppcgzv", - "host": "hzog", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "saslSettings": { + "saslType": "Plain", + "secretRef": "amqvjdyyrsdcacmuaqmdqd" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "consumerGroupId": "vzklnujksvcmxbfopjasopy", + "host": "evniscabwmrjjtf", "batching": { "mode": "Enabled", - "latencyMs": 5792, - "maxBytes": 5354, - "maxMessages": 770 + "latencyMs": 462, + "maxBytes": 9139, + "maxMessages": 598 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -105,48 +110,65 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vondspmbfndydpfvmzixe" + "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" }, "mqttSettings": { - "clientIdPrefix": "upyvoylrslwanrsq", - "host": "nuldtgdbwxwuiflxguvhqjohzbblgi", + "authentication": { + "method": "SystemAssignedManagedIdentity", + "systemAssignedManagedIdentitySettings": { + "audience": "upzzwbbewitcscxglxzihyd" + }, + "userAssignedManagedIdentitySettings": { + "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", + "scope": "wuwaunarfgqtvwjoiplujl", + "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" + }, + "serviceAccountTokenSettings": { + "audience": "pywuicgqzhwqyih" + }, + "x509Settings": { + "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + } + }, + "clientIdPrefix": "qdiywebioiydzvlawsqqyx", + "host": "zrzh", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 2, + "qos": 0, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "klhacheuyreznxpui" + "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "gorinquvmdbfmjfbobhr", - "type": "odtitoseavywh", + "name": "yrnljeyw", + "type": "nhtjvccvwmuonzblpupdaf", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/aaeblb" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json index 3bab62fcb1d8..124ad8df0375 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -12,24 +12,24 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 } }, - "instanceCount": 13 + "instanceCount": 8 }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -41,37 +41,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 } }, - "instanceCount": 13, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ozjgillyrzecuqpsonz", - "type": "kcujnabpczsiuwhygzcvtvcmfuwz", + "name": "ckfcqxn", + "type": "fnblyebsknda", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -84,37 +84,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 } }, - "instanceCount": 13, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ozjgillyrzecuqpsonz", - "type": "kcujnabpczsiuwhygzcvtvcmfuwz", + "name": "ckfcqxn", + "type": "fnblyebsknda", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json index c4ca9c10ba3f..1ea22d54a0cc 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json index efdfcd8e4ff7..2c723cbeedb0 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -15,37 +15,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 } }, - "instanceCount": 13, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ozjgillyrzecuqpsonz", - "type": "kcujnabpczsiuwhygzcvtvcmfuwz", + "name": "ckfcqxn", + "type": "fnblyebsknda", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json index 6e5b05df40f7..45d111847b1f 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -16,41 +16,41 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "tpnjdvddatkub", - "intervalSeconds": 279, - "level": "quikvjwijqryxkomdncexuchjj" + "otlpGrpcEndpoint": "nyafplzt", + "intervalSeconds": 283, + "level": "qycbzlsootgudrdff" }, - "level": "bhhqnqhx" + "level": "rcxdvppsikwzdynrfbhatgdyj" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "sksqlyle", - "intervalSeconds": 13 + "otlpGrpcEndpoint": "azvswwc", + "intervalSeconds": 178 }, - "prometheusPort": 9855 + "prometheusPort": 9044 } }, - "instanceCount": 13, + "instanceCount": 8, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ozjgillyrzecuqpsonz", - "type": "kcujnabpczsiuwhygzcvtvcmfuwz", + "name": "ckfcqxn", + "type": "fnblyebsknda", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/ah" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json index cc97531a6b99..675931816d15 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -14,28 +14,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "sjmaomyezia", + "name": "uole", "sourceSettings": { - "endpointRef": "gsrssjinpwfgkdnpt", - "assetRef": "xngndntzox", + "endpointRef": "eoeedatyjro", + "assetRef": "htuzxsnhqlii", "serializationFormat": "Json", - "schemaRef": "azwmkcjplfquegdywsssz", + "schemaRef": "okclmamfunafjeslt", "dataSources": [ - "fvnkynjnmovlugyl" + "kjiuwdcklmsrcrcgohxtsptl" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ugwghjxfm", + "schemaRef": "vzvxcefhbecejrrvg", "datasets": [ { - "key": "naerntixunxapuvkhujhsvyxdchkiaxczabcceapuslmshjvwl", + "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "vbftbcwvebbwqfhyi", + "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", "inputs": [ - "qvvpv" + "mzpv" ], - "expression": "qigpsdaafdkwcwrqzxoauehbymqn" + "expression": "ciikrhquzvup" } ], "filter": [ @@ -43,9 +43,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "sjhczjgkznkwejmxhycyiuctgb" + "leiudbasupbvsdmblpnxdva" ], - "expression": "nztnsziclwxpsfaejnmqa" + "expression": "mnzmagcibqolghefk" } ], "map": [ @@ -53,22 +53,22 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lrebamjtmbixqrclhpckwesrulxo" + "lvqzqtnawqnj" ], - "expression": "vsdsnnqqbwgolthsswfupkwdyijh", - "output": "artm" + "expression": "aqtbsiqzahqwlyxmnmpqwp", + "output": "edwqaukhlwsylutqmoxfp" } ] }, "destinationSettings": { - "endpointRef": "fe", - "dataDestination": "xuelkxtzswfqt" + "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", + "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" } } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" } } @@ -81,28 +81,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "sjmaomyezia", + "name": "uole", "sourceSettings": { - "endpointRef": "gsrssjinpwfgkdnpt", - "assetRef": "xngndntzox", + "endpointRef": "eoeedatyjro", + "assetRef": "htuzxsnhqlii", "serializationFormat": "Json", - "schemaRef": "azwmkcjplfquegdywsssz", + "schemaRef": "okclmamfunafjeslt", "dataSources": [ - "fvnkynjnmovlugyl" + "kjiuwdcklmsrcrcgohxtsptl" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ugwghjxfm", + "schemaRef": "vzvxcefhbecejrrvg", "datasets": [ { - "key": "naerntixunxapuvkhujhsvyxdchkiaxczabcceapuslmshjvwl", + "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "vbftbcwvebbwqfhyi", + "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", "inputs": [ - "qvvpv" + "mzpv" ], - "expression": "qigpsdaafdkwcwrqzxoauehbymqn" + "expression": "ciikrhquzvup" } ], "filter": [ @@ -110,9 +110,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "sjhczjgkznkwejmxhycyiuctgb" + "leiudbasupbvsdmblpnxdva" ], - "expression": "nztnsziclwxpsfaejnmqa" + "expression": "mnzmagcibqolghefk" } ], "map": [ @@ -120,35 +120,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lrebamjtmbixqrclhpckwesrulxo" + "lvqzqtnawqnj" ], - "expression": "vsdsnnqqbwgolthsswfupkwdyijh", - "output": "artm" + "expression": "aqtbsiqzahqwlyxmnmpqwp", + "output": "edwqaukhlwsylutqmoxfp" } ] }, "destinationSettings": { - "endpointRef": "fe", - "dataDestination": "xuelkxtzswfqt" + "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", + "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "csvgb", - "type": "ekmzynppdvfcicnulsq", + "name": "udpvbyiefjyzswcdpxavyqgnxwk", + "type": "vkgszhkjsdljeslkyleib", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -162,28 +162,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "sjmaomyezia", + "name": "uole", "sourceSettings": { - "endpointRef": "gsrssjinpwfgkdnpt", - "assetRef": "xngndntzox", + "endpointRef": "eoeedatyjro", + "assetRef": "htuzxsnhqlii", "serializationFormat": "Json", - "schemaRef": "azwmkcjplfquegdywsssz", + "schemaRef": "okclmamfunafjeslt", "dataSources": [ - "fvnkynjnmovlugyl" + "kjiuwdcklmsrcrcgohxtsptl" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ugwghjxfm", + "schemaRef": "vzvxcefhbecejrrvg", "datasets": [ { - "key": "naerntixunxapuvkhujhsvyxdchkiaxczabcceapuslmshjvwl", + "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "vbftbcwvebbwqfhyi", + "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", "inputs": [ - "qvvpv" + "mzpv" ], - "expression": "qigpsdaafdkwcwrqzxoauehbymqn" + "expression": "ciikrhquzvup" } ], "filter": [ @@ -191,9 +191,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "sjhczjgkznkwejmxhycyiuctgb" + "leiudbasupbvsdmblpnxdva" ], - "expression": "nztnsziclwxpsfaejnmqa" + "expression": "mnzmagcibqolghefk" } ], "map": [ @@ -201,35 +201,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lrebamjtmbixqrclhpckwesrulxo" + "lvqzqtnawqnj" ], - "expression": "vsdsnnqqbwgolthsswfupkwdyijh", - "output": "artm" + "expression": "aqtbsiqzahqwlyxmnmpqwp", + "output": "edwqaukhlwsylutqmoxfp" } ] }, "destinationSettings": { - "endpointRef": "fe", - "dataDestination": "xuelkxtzswfqt" + "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", + "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "csvgb", - "type": "ekmzynppdvfcicnulsq", + "name": "udpvbyiefjyzswcdpxavyqgnxwk", + "type": "vkgszhkjsdljeslkyleib", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json index cd4db1cc6279..ef2abe6300f6 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json index 0048618909d3..5520277b1774 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -17,28 +17,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "sjmaomyezia", + "name": "uole", "sourceSettings": { - "endpointRef": "gsrssjinpwfgkdnpt", - "assetRef": "xngndntzox", + "endpointRef": "eoeedatyjro", + "assetRef": "htuzxsnhqlii", "serializationFormat": "Json", - "schemaRef": "azwmkcjplfquegdywsssz", + "schemaRef": "okclmamfunafjeslt", "dataSources": [ - "fvnkynjnmovlugyl" + "kjiuwdcklmsrcrcgohxtsptl" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ugwghjxfm", + "schemaRef": "vzvxcefhbecejrrvg", "datasets": [ { - "key": "naerntixunxapuvkhujhsvyxdchkiaxczabcceapuslmshjvwl", + "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "vbftbcwvebbwqfhyi", + "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", "inputs": [ - "qvvpv" + "mzpv" ], - "expression": "qigpsdaafdkwcwrqzxoauehbymqn" + "expression": "ciikrhquzvup" } ], "filter": [ @@ -46,9 +46,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "sjhczjgkznkwejmxhycyiuctgb" + "leiudbasupbvsdmblpnxdva" ], - "expression": "nztnsziclwxpsfaejnmqa" + "expression": "mnzmagcibqolghefk" } ], "map": [ @@ -56,35 +56,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lrebamjtmbixqrclhpckwesrulxo" + "lvqzqtnawqnj" ], - "expression": "vsdsnnqqbwgolthsswfupkwdyijh", - "output": "artm" + "expression": "aqtbsiqzahqwlyxmnmpqwp", + "output": "edwqaukhlwsylutqmoxfp" } ] }, "destinationSettings": { - "endpointRef": "fe", - "dataDestination": "xuelkxtzswfqt" + "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", + "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "csvgb", - "type": "ekmzynppdvfcicnulsq", + "name": "udpvbyiefjyzswcdpxavyqgnxwk", + "type": "vkgszhkjsdljeslkyleib", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json index 8e29b38dd182..02cd07624b83 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_ListByProfileResource", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -18,28 +18,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "sjmaomyezia", + "name": "uole", "sourceSettings": { - "endpointRef": "gsrssjinpwfgkdnpt", - "assetRef": "xngndntzox", + "endpointRef": "eoeedatyjro", + "assetRef": "htuzxsnhqlii", "serializationFormat": "Json", - "schemaRef": "azwmkcjplfquegdywsssz", + "schemaRef": "okclmamfunafjeslt", "dataSources": [ - "fvnkynjnmovlugyl" + "kjiuwdcklmsrcrcgohxtsptl" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "ugwghjxfm", + "schemaRef": "vzvxcefhbecejrrvg", "datasets": [ { - "key": "naerntixunxapuvkhujhsvyxdchkiaxczabcceapuslmshjvwl", + "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "vbftbcwvebbwqfhyi", + "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", "inputs": [ - "qvvpv" + "mzpv" ], - "expression": "qigpsdaafdkwcwrqzxoauehbymqn" + "expression": "ciikrhquzvup" } ], "filter": [ @@ -47,9 +47,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "sjhczjgkznkwejmxhycyiuctgb" + "leiudbasupbvsdmblpnxdva" ], - "expression": "nztnsziclwxpsfaejnmqa" + "expression": "mnzmagcibqolghefk" } ], "map": [ @@ -57,39 +57,39 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lrebamjtmbixqrclhpckwesrulxo" + "lvqzqtnawqnj" ], - "expression": "vsdsnnqqbwgolthsswfupkwdyijh", - "output": "artm" + "expression": "aqtbsiqzahqwlyxmnmpqwp", + "output": "edwqaukhlwsylutqmoxfp" } ] }, "destinationSettings": { - "endpointRef": "fe", - "dataDestination": "xuelkxtzswfqt" + "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", + "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "csvgb", - "type": "ekmzynppdvfcicnulsq", + "name": "udpvbyiefjyzswcdpxavyqgnxwk", + "type": "vkgszhkjsdljeslkyleib", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/aanb" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json index e730dad99bf6..17f998778957 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "resource": { @@ -12,19 +12,19 @@ "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { "type": "None", "userAssignedIdentities": { - "key4688": {} + "key4294": {} } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm" + "location": "zofxlkvgdssjqujsqdomtrar" } }, "responses": { @@ -33,17 +33,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -51,26 +51,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } }, @@ -82,17 +82,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -100,26 +100,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json index f2fab67066e8..fa39ea4b103f 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json index 346b0d5533c8..cf715549ca12 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,17 +13,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -31,26 +31,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json index 507ec5ba620b..276ad8cd4d45 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations" }, "responses": { @@ -14,17 +14,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -32,30 +32,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/ah" + "nextLink": "https://microsoft.com/agidhjvl" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json index b56cd0801144..fc090fc9184d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListBySubscription", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0" + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2" }, "responses": { "200": { @@ -13,17 +13,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -31,30 +31,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } ], - "nextLink": "https://microsoft.com/ah" + "nextLink": "https://microsoft.com/agidhjvl" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json index a391f8635284..33b4797f6ab7 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json @@ -3,12 +3,12 @@ "operationId": "Instance_Update", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "F4C7E375-43C1-402A-AC68-AE3822B29EC0", + "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "properties": { "tags": { - "key4778": "kjcwqgfngec" + "key9634": "lk" } } }, @@ -18,17 +18,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "fjgcjjmovxaudejqgqxp", + "version": "ususmcw", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "wvoulksiszpqtzc", - "namespace": "fmipvwaycecqkljfmrzkoxrnq" + "name": "agyjpfmqrshdikyybmjwlv", + "namespace": "loltfmbk" } ] }, "extendedLocation": { - "name": "limlgubvxdfnebxvsrformxpqrr", + "name": "rqecgknkzdgdhvmskzoe", "type": "CustomLocation" }, "identity": { @@ -36,26 +36,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4688": { + "key4294": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key7766": "axqywterutfrrmwkncgkcx" + "key4491": "vxcfu" }, - "location": "ovtfnrgesqiidygsm", + "location": "zofxlkvgdssjqujsqdomtrar", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "xnttuuhapkhdtffyhceazzcnn", - "type": "vgnuiudsagraatkdxwfmnn", + "name": "yhhmr", + "type": "qfwrgcrmzkfvfhqp", "systemData": { - "createdBy": "pjrupsqyk", + "createdBy": "bgljasywvqcsk", "createdByType": "User", - "createdAt": "2024-08-08T20:32:26.801Z", - "lastModifiedBy": "uuaomyzlxhdnqyadbzduyai", + "createdAt": "2024-08-08T22:32:29.052Z", + "lastModifiedBy": "lbrqzefrhphebzwjt", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T20:32:26.801Z" + "lastModifiedAt": "2024-08-08T22:32:29.052Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json index 12fad3611d77..67548679c822 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json @@ -9,19 +9,19 @@ "body": { "value": [ { - "name": "kwdngermychyyticimfqxi", + "name": "xoun", "isDataAction": true, "display": { - "provider": "fiqrttitwlfrrdsjqy", - "resource": "w", - "operation": "udqsifsotgzbcjycvi", + "provider": "xukdpfxtyhcdphnwwchmlqh", + "resource": "ujadshbcfzvdbmfkcfqxzywzro", + "operation": "rewimbbdfcvhh", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit." }, "origin": "user", "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/atksei" } } } From 0f0635d115d1356f5d0f084c5d80f3f8f04413ab Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 15:35:33 -0700 Subject: [PATCH 14/16] service account x-ms-identifiers --- .../iotoperations/IoTOperations.Management/models/instance.tsp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/specification/iotoperations/IoTOperations.Management/models/instance.tsp b/specification/iotoperations/IoTOperations.Management/models/instance.tsp index 45d24ec5c992..2ad55497554a 100644 --- a/specification/iotoperations/IoTOperations.Management/models/instance.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/instance.tsp @@ -51,9 +51,11 @@ model InstanceProperties { @doc("The service accounts to be used for federated credentials.") @visibility("read") + @OpenAPI.extension("x-ms-identifiers",[]) serviceAccounts?: ServiceAccountProperties[]; } +@doc("The properties of a Service Account.") model ServiceAccountProperties { @doc("The name of the service account.") name: string; From f3b6bf5c6382837c9eacb47eda39a060e586e1f5 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 15:36:49 -0700 Subject: [PATCH 15/16] examples --- ...ication_CreateOrUpdate_MaximumSet_Gen.json | 86 ++-- ...rAuthentication_Delete_MaximumSet_Gen.json | 2 +- ...okerAuthentication_Get_MaximumSet_Gen.json | 34 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 36 +- ...ization_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- ...erAuthorization_Delete_MaximumSet_Gen.json | 2 +- ...rokerAuthorization_Get_MaximumSet_Gen.json | 26 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 28 +- ...istener_CreateOrUpdate_MaximumSet_Gen.json | 116 +++--- .../BrokerListener_Delete_MaximumSet_Gen.json | 2 +- .../BrokerListener_Get_MaximumSet_Gen.json | 44 +- ...er_ListByResourceGroup_MaximumSet_Gen.json | 44 +- .../Broker_CreateOrUpdate_MaximumSet_Gen.json | 380 +++++++++--------- .../Broker_Delete_MaximumSet_Gen.json | 2 +- .../Broker_Get_MaximumSet_Gen.json | 132 +++--- ...er_ListByResourceGroup_MaximumSet_Gen.json | 132 +++--- ...ndpoint_CreateOrUpdate_MaximumSet_Gen.json | 242 +++++------ ...ataflowEndpoint_Delete_MaximumSet_Gen.json | 2 +- .../DataflowEndpoint_Get_MaximumSet_Gen.json | 86 ++-- ...nt_ListByResourceGroup_MaximumSet_Gen.json | 88 ++-- ...Profile_CreateOrUpdate_MaximumSet_Gen.json | 80 ++-- ...DataflowProfile_Delete_MaximumSet_Gen.json | 2 +- .../DataflowProfile_Get_MaximumSet_Gen.json | 32 +- ...le_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ataflow_CreateOrUpdate_MaximumSet_Gen.json | 134 +++--- .../Dataflow_Delete_MaximumSet_Gen.json | 2 +- .../Dataflow_Get_MaximumSet_Gen.json | 50 +-- ..._ListByProfileResource_MaximumSet_Gen.json | 50 +-- ...nstance_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- .../Instance_Delete_MaximumSet_Gen.json | 2 +- .../Instance_Get_MaximumSet_Gen.json | 28 +- ...ce_ListByResourceGroup_MaximumSet_Gen.json | 30 +- ...nce_ListBySubscription_MaximumSet_Gen.json | 30 +- .../Instance_Update_MaximumSet_Gen.json | 30 +- .../Operations_List_MaximumSet_Gen.json | 10 +- ...ication_CreateOrUpdate_MaximumSet_Gen.json | 86 ++-- ...rAuthentication_Delete_MaximumSet_Gen.json | 2 +- ...okerAuthentication_Get_MaximumSet_Gen.json | 34 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 36 +- ...ization_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- ...erAuthorization_Delete_MaximumSet_Gen.json | 2 +- ...rokerAuthorization_Get_MaximumSet_Gen.json | 26 +- ...on_ListByResourceGroup_MaximumSet_Gen.json | 28 +- ...istener_CreateOrUpdate_MaximumSet_Gen.json | 116 +++--- .../BrokerListener_Delete_MaximumSet_Gen.json | 2 +- .../BrokerListener_Get_MaximumSet_Gen.json | 44 +- ...er_ListByResourceGroup_MaximumSet_Gen.json | 44 +- .../Broker_CreateOrUpdate_MaximumSet_Gen.json | 380 +++++++++--------- .../Broker_Delete_MaximumSet_Gen.json | 2 +- .../examples/Broker_Get_MaximumSet_Gen.json | 132 +++--- ...er_ListByResourceGroup_MaximumSet_Gen.json | 132 +++--- ...ndpoint_CreateOrUpdate_MaximumSet_Gen.json | 242 +++++------ ...ataflowEndpoint_Delete_MaximumSet_Gen.json | 2 +- .../DataflowEndpoint_Get_MaximumSet_Gen.json | 86 ++-- ...nt_ListByResourceGroup_MaximumSet_Gen.json | 88 ++-- ...Profile_CreateOrUpdate_MaximumSet_Gen.json | 80 ++-- ...DataflowProfile_Delete_MaximumSet_Gen.json | 2 +- .../DataflowProfile_Get_MaximumSet_Gen.json | 32 +- ...le_ListByResourceGroup_MaximumSet_Gen.json | 34 +- ...ataflow_CreateOrUpdate_MaximumSet_Gen.json | 134 +++--- .../Dataflow_Delete_MaximumSet_Gen.json | 2 +- .../examples/Dataflow_Get_MaximumSet_Gen.json | 50 +-- ..._ListByProfileResource_MaximumSet_Gen.json | 50 +-- ...nstance_CreateOrUpdate_MaximumSet_Gen.json | 62 +-- .../Instance_Delete_MaximumSet_Gen.json | 2 +- .../examples/Instance_Get_MaximumSet_Gen.json | 28 +- ...ce_ListByResourceGroup_MaximumSet_Gen.json | 30 +- ...nce_ListBySubscription_MaximumSet_Gen.json | 30 +- .../Instance_Update_MaximumSet_Gen.json | 30 +- .../Operations_List_MaximumSet_Gen.json | 10 +- .../2024-08-15-preview/iotoperations.json | 1 + 71 files changed, 2123 insertions(+), 2122 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json index 8e427b19fd96..aafa73d2f6a1 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -17,38 +17,38 @@ "auth": { "x509": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } }, - "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", + "caCertConfigMap": "zoxllgdrumxvfhtzggebjljgwdk", "endpoint": "https://www.example.com", "headers": { - "key6099": "zqwfotkzttvzbx" + "key8387": "bobntvz" } }, "serviceAccountTokenSettings": { "audiences": [ - "awuyykdydnr" + "bnxnelhhpwuyejmmhtetdwacqql" ] }, "x509Settings": { "authorizationAttributes": { - "key4680": { + "key5002": { "attributes": { - "key6861": "ftvxyusinoeecsady" + "key3517": "ud" }, - "subject": "dqdmahhcofgbypuofwduns" + "subject": "evng" } }, - "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" + "trustedClientCaCert": "eztlgjvatxlqvkcr" } } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -64,51 +64,51 @@ "auth": { "x509": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } }, - "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", + "caCertConfigMap": "zoxllgdrumxvfhtzggebjljgwdk", "endpoint": "https://www.example.com", "headers": { - "key6099": "zqwfotkzttvzbx" + "key8387": "bobntvz" } }, "serviceAccountTokenSettings": { "audiences": [ - "awuyykdydnr" + "bnxnelhhpwuyejmmhtetdwacqql" ] }, "x509Settings": { "authorizationAttributes": { - "key4680": { + "key5002": { "attributes": { - "key6861": "ftvxyusinoeecsady" + "key3517": "ud" }, - "subject": "dqdmahhcofgbypuofwduns" + "subject": "evng" } }, - "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" + "trustedClientCaCert": "eztlgjvatxlqvkcr" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qhdoduzgqa", - "type": "l", + "name": "bgsl", + "type": "khyvsncilleyjc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -125,51 +125,51 @@ "auth": { "x509": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } }, - "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", + "caCertConfigMap": "zoxllgdrumxvfhtzggebjljgwdk", "endpoint": "https://www.example.com", "headers": { - "key6099": "zqwfotkzttvzbx" + "key8387": "bobntvz" } }, "serviceAccountTokenSettings": { "audiences": [ - "awuyykdydnr" + "bnxnelhhpwuyejmmhtetdwacqql" ] }, "x509Settings": { "authorizationAttributes": { - "key4680": { + "key5002": { "attributes": { - "key6861": "ftvxyusinoeecsady" + "key3517": "ud" }, - "subject": "dqdmahhcofgbypuofwduns" + "subject": "evng" } }, - "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" + "trustedClientCaCert": "eztlgjvatxlqvkcr" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qhdoduzgqa", - "type": "l", + "name": "bgsl", + "type": "khyvsncilleyjc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json index 01c369a0b522..4422c3e4ab57 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json index 32287ad53bd5..46a856ee306b 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -20,51 +20,51 @@ "auth": { "x509": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } }, - "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", + "caCertConfigMap": "zoxllgdrumxvfhtzggebjljgwdk", "endpoint": "https://www.example.com", "headers": { - "key6099": "zqwfotkzttvzbx" + "key8387": "bobntvz" } }, "serviceAccountTokenSettings": { "audiences": [ - "awuyykdydnr" + "bnxnelhhpwuyejmmhtetdwacqql" ] }, "x509Settings": { "authorizationAttributes": { - "key4680": { + "key5002": { "attributes": { - "key6861": "ftvxyusinoeecsady" + "key3517": "ud" }, - "subject": "dqdmahhcofgbypuofwduns" + "subject": "evng" } }, - "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" + "trustedClientCaCert": "eztlgjvatxlqvkcr" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qhdoduzgqa", - "type": "l", + "name": "bgsl", + "type": "khyvsncilleyjc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json index b0ba771bf070..157f3357a6ac 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -21,55 +21,55 @@ "auth": { "x509": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } }, - "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", + "caCertConfigMap": "zoxllgdrumxvfhtzggebjljgwdk", "endpoint": "https://www.example.com", "headers": { - "key6099": "zqwfotkzttvzbx" + "key8387": "bobntvz" } }, "serviceAccountTokenSettings": { "audiences": [ - "awuyykdydnr" + "bnxnelhhpwuyejmmhtetdwacqql" ] }, "x509Settings": { "authorizationAttributes": { - "key4680": { + "key5002": { "attributes": { - "key6861": "ftvxyusinoeecsady" + "key3517": "ud" }, - "subject": "dqdmahhcofgbypuofwduns" + "subject": "evng" } }, - "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" + "trustedClientCaCert": "eztlgjvatxlqvkcr" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qhdoduzgqa", - "type": "l", + "name": "bgsl", + "type": "khyvsncilleyjc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/aqzu" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json index 34a46aad65bc..9ed213eadd5d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -18,28 +18,28 @@ { "method": "Connect", "topics": [ - "sogrvpvuwdvossiyoguudynoq" + "xxxhvvvgfgqiotfte" ] } ], "principals": { "attributes": [ { - "key7341": "ohhuwaqdagteh" + "key6601": "hgn" } ], "clientIds": [ - "wjxyjuehzeahskycinhaxpualwgpgh" + "eridpeherwhyxjjnpununuj" ], "usernames": [ - "ksfpwfrnqomajxmbcuklsagvw" + "tmxqbeaammwdlxrjl" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "ordrqfkzrwzwb" + "wkzbtpjqoivvpbxx" ], "method": "Read" } @@ -49,7 +49,7 @@ } }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -66,28 +66,28 @@ { "method": "Connect", "topics": [ - "sogrvpvuwdvossiyoguudynoq" + "xxxhvvvgfgqiotfte" ] } ], "principals": { "attributes": [ { - "key7341": "ohhuwaqdagteh" + "key6601": "hgn" } ], "clientIds": [ - "wjxyjuehzeahskycinhaxpualwgpgh" + "eridpeherwhyxjjnpununuj" ], "usernames": [ - "ksfpwfrnqomajxmbcuklsagvw" + "tmxqbeaammwdlxrjl" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "ordrqfkzrwzwb" + "wkzbtpjqoivvpbxx" ], "method": "Read" } @@ -98,19 +98,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "puqgnigsztnvwngxofcggpas", - "type": "ytqvrwlmiannhwvorbtpbzhpdm", + "name": "ginndyhytb", + "type": "xrlixhwbcttc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -128,28 +128,28 @@ { "method": "Connect", "topics": [ - "sogrvpvuwdvossiyoguudynoq" + "xxxhvvvgfgqiotfte" ] } ], "principals": { "attributes": [ { - "key7341": "ohhuwaqdagteh" + "key6601": "hgn" } ], "clientIds": [ - "wjxyjuehzeahskycinhaxpualwgpgh" + "eridpeherwhyxjjnpununuj" ], "usernames": [ - "ksfpwfrnqomajxmbcuklsagvw" + "tmxqbeaammwdlxrjl" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "ordrqfkzrwzwb" + "wkzbtpjqoivvpbxx" ], "method": "Read" } @@ -160,19 +160,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "puqgnigsztnvwngxofcggpas", - "type": "ytqvrwlmiannhwvorbtpbzhpdm", + "name": "ginndyhytb", + "type": "xrlixhwbcttc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json index d6c0f9886c1f..8a71cf0b4090 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json index 8240407c13d4..8ab452802360 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -21,28 +21,28 @@ { "method": "Connect", "topics": [ - "sogrvpvuwdvossiyoguudynoq" + "xxxhvvvgfgqiotfte" ] } ], "principals": { "attributes": [ { - "key7341": "ohhuwaqdagteh" + "key6601": "hgn" } ], "clientIds": [ - "wjxyjuehzeahskycinhaxpualwgpgh" + "eridpeherwhyxjjnpununuj" ], "usernames": [ - "ksfpwfrnqomajxmbcuklsagvw" + "tmxqbeaammwdlxrjl" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "ordrqfkzrwzwb" + "wkzbtpjqoivvpbxx" ], "method": "Read" } @@ -53,19 +53,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "puqgnigsztnvwngxofcggpas", - "type": "ytqvrwlmiannhwvorbtpbzhpdm", + "name": "ginndyhytb", + "type": "xrlixhwbcttc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json index c82434faa00a..5a9e5d9e04c8 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -22,28 +22,28 @@ { "method": "Connect", "topics": [ - "sogrvpvuwdvossiyoguudynoq" + "xxxhvvvgfgqiotfte" ] } ], "principals": { "attributes": [ { - "key7341": "ohhuwaqdagteh" + "key6601": "hgn" } ], "clientIds": [ - "wjxyjuehzeahskycinhaxpualwgpgh" + "eridpeherwhyxjjnpununuj" ], "usernames": [ - "ksfpwfrnqomajxmbcuklsagvw" + "tmxqbeaammwdlxrjl" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "ordrqfkzrwzwb" + "wkzbtpjqoivvpbxx" ], "method": "Read" } @@ -54,23 +54,23 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "puqgnigsztnvwngxofcggpas", - "type": "ytqvrwlmiannhwvorbtpbzhpdm", + "name": "ginndyhytb", + "type": "xrlixhwbcttc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/auclyxpc" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json index 319ac4e25028..51f4341b86c3 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json @@ -3,31 +3,31 @@ "operationId": "BrokerListener_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", "listenerName": "resource-name123", "resource": { "properties": { - "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", + "serviceName": "nylfustgft", "ports": [ { - "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", - "authorizationRef": "wqfkqwuiuernmvt", - "nodePort": 3840, - "port": 8452, + "authenticationRef": "mwemlutltkxbc", + "authorizationRef": "xomdajpruoxofxeqqibvvzhtcjkwcz", + "nodePort": 2969, + "port": 6585, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "nhnltaullguzadmtbmfgx", - "secretName": "sckzqmesxuaeoajkcdqpuqvb", - "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", + "duration": "twptzhpugijolwjwpbmpt", + "secretName": "upsfnwjqzdphm", + "renewBefore": "i", "issuerRef": { - "group": "ctmhrxbsvzx", + "group": "nlptbdkswvspetdjdwjhrmfjfyhbv", "kind": "Issuer", - "name": "f" + "name": "uta" }, "privateKey": { "algorithm": "Ec256", @@ -35,17 +35,17 @@ }, "san": { "dns": [ - "gltzdoxjlnatlmiwkwcowttxdmd" + "yaqxbdeghjycatsaixqcewtfe" ], "ip": [ - "boanjeewupjcaofwoeqvtyjyet" + "hbwafnute" ] } }, "manual": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } } @@ -54,7 +54,7 @@ "serviceType": "ClusterIp" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -63,24 +63,24 @@ "200": { "body": { "properties": { - "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", + "serviceName": "nylfustgft", "ports": [ { - "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", - "authorizationRef": "wqfkqwuiuernmvt", - "nodePort": 3840, - "port": 8452, + "authenticationRef": "mwemlutltkxbc", + "authorizationRef": "xomdajpruoxofxeqqibvvzhtcjkwcz", + "nodePort": 2969, + "port": 6585, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "nhnltaullguzadmtbmfgx", - "secretName": "sckzqmesxuaeoajkcdqpuqvb", - "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", + "duration": "twptzhpugijolwjwpbmpt", + "secretName": "upsfnwjqzdphm", + "renewBefore": "i", "issuerRef": { - "group": "ctmhrxbsvzx", + "group": "nlptbdkswvspetdjdwjhrmfjfyhbv", "kind": "Issuer", - "name": "f" + "name": "uta" }, "privateKey": { "algorithm": "Ec256", @@ -88,17 +88,17 @@ }, "san": { "dns": [ - "gltzdoxjlnatlmiwkwcowttxdmd" + "yaqxbdeghjycatsaixqcewtfe" ], "ip": [ - "boanjeewupjcaofwoeqvtyjyet" + "hbwafnute" ] } }, "manual": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } } @@ -108,19 +108,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "zbmpca", - "type": "kqfsuiqzjhhdxyrwjtthoc", + "name": "iqbibugwaplk", + "type": "dg", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -130,24 +130,24 @@ }, "body": { "properties": { - "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", + "serviceName": "nylfustgft", "ports": [ { - "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", - "authorizationRef": "wqfkqwuiuernmvt", - "nodePort": 3840, - "port": 8452, + "authenticationRef": "mwemlutltkxbc", + "authorizationRef": "xomdajpruoxofxeqqibvvzhtcjkwcz", + "nodePort": 2969, + "port": 6585, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "nhnltaullguzadmtbmfgx", - "secretName": "sckzqmesxuaeoajkcdqpuqvb", - "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", + "duration": "twptzhpugijolwjwpbmpt", + "secretName": "upsfnwjqzdphm", + "renewBefore": "i", "issuerRef": { - "group": "ctmhrxbsvzx", + "group": "nlptbdkswvspetdjdwjhrmfjfyhbv", "kind": "Issuer", - "name": "f" + "name": "uta" }, "privateKey": { "algorithm": "Ec256", @@ -155,17 +155,17 @@ }, "san": { "dns": [ - "gltzdoxjlnatlmiwkwcowttxdmd" + "yaqxbdeghjycatsaixqcewtfe" ], "ip": [ - "boanjeewupjcaofwoeqvtyjyet" + "hbwafnute" ] } }, "manual": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } } @@ -175,19 +175,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "zbmpca", - "type": "kqfsuiqzjhhdxyrwjtthoc", + "name": "iqbibugwaplk", + "type": "dg", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json index 22e30159b9a4..a1d8b789acd7 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json index 98cf9cc88cef..6c2c62918b99 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -13,24 +13,24 @@ "200": { "body": { "properties": { - "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", + "serviceName": "nylfustgft", "ports": [ { - "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", - "authorizationRef": "wqfkqwuiuernmvt", - "nodePort": 3840, - "port": 8452, + "authenticationRef": "mwemlutltkxbc", + "authorizationRef": "xomdajpruoxofxeqqibvvzhtcjkwcz", + "nodePort": 2969, + "port": 6585, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "nhnltaullguzadmtbmfgx", - "secretName": "sckzqmesxuaeoajkcdqpuqvb", - "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", + "duration": "twptzhpugijolwjwpbmpt", + "secretName": "upsfnwjqzdphm", + "renewBefore": "i", "issuerRef": { - "group": "ctmhrxbsvzx", + "group": "nlptbdkswvspetdjdwjhrmfjfyhbv", "kind": "Issuer", - "name": "f" + "name": "uta" }, "privateKey": { "algorithm": "Ec256", @@ -38,17 +38,17 @@ }, "san": { "dns": [ - "gltzdoxjlnatlmiwkwcowttxdmd" + "yaqxbdeghjycatsaixqcewtfe" ], "ip": [ - "boanjeewupjcaofwoeqvtyjyet" + "hbwafnute" ] } }, "manual": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } } @@ -58,19 +58,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "zbmpca", - "type": "kqfsuiqzjhhdxyrwjtthoc", + "name": "iqbibugwaplk", + "type": "dg", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json index 543ce3dfb556..76e486212cbc 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,24 +14,24 @@ "value": [ { "properties": { - "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", + "serviceName": "nylfustgft", "ports": [ { - "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", - "authorizationRef": "wqfkqwuiuernmvt", - "nodePort": 3840, - "port": 8452, + "authenticationRef": "mwemlutltkxbc", + "authorizationRef": "xomdajpruoxofxeqqibvvzhtcjkwcz", + "nodePort": 2969, + "port": 6585, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "nhnltaullguzadmtbmfgx", - "secretName": "sckzqmesxuaeoajkcdqpuqvb", - "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", + "duration": "twptzhpugijolwjwpbmpt", + "secretName": "upsfnwjqzdphm", + "renewBefore": "i", "issuerRef": { - "group": "ctmhrxbsvzx", + "group": "nlptbdkswvspetdjdwjhrmfjfyhbv", "kind": "Issuer", - "name": "f" + "name": "uta" }, "privateKey": { "algorithm": "Ec256", @@ -39,17 +39,17 @@ }, "san": { "dns": [ - "gltzdoxjlnatlmiwkwcowttxdmd" + "yaqxbdeghjycatsaixqcewtfe" ], "ip": [ - "boanjeewupjcaofwoeqvtyjyet" + "hbwafnute" ] } }, "manual": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } } @@ -59,19 +59,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "zbmpca", - "type": "kqfsuiqzjhhdxyrwjtthoc", + "name": "iqbibugwaplk", + "type": "dg", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json index 56c247abf39e..eff91df612c4 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -11,20 +11,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 6873, - "maxMessageExpirySeconds": 6228, - "maxPacketSizeBytes": 6177, + "maxSessionExpirySeconds": 4229, + "maxMessageExpirySeconds": 6560, + "maxPacketSizeBytes": 5161, "subscriberQueueLimit": { - "length": 13, + "length": 11, "strategy": "None" }, - "maxReceiveMaximum": 1350, - "maxKeepAliveSeconds": 6434 + "maxReceiveMaximum": 8916, + "maxKeepAliveSeconds": 7571 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "nfyhesb", - "renewBefore": "fha", + "duration": "wkoizwtjmfpaaidp", + "renewBefore": "zjqzkiedjjlesjqoebpp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -33,46 +33,46 @@ }, "cardinality": { "backendChain": { - "partitions": 2, - "redundancyFactor": 4, - "workers": 14 + "partitions": 10, + "redundancyFactor": 3, + "workers": 10 }, "frontend": { - "replicas": 1, - "workers": 7 + "replicas": 14, + "workers": 14 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 279, - "timeoutSeconds": 56 + "intervalSeconds": 285, + "timeoutSeconds": 17 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "cacheSizeMegabytes": 126, + "cacheSizeMegabytes": 68, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 106 + "intervalSeconds": 26 }, "spanChannelCapacity": 1000 } @@ -80,84 +80,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } } @@ -168,7 +168,7 @@ "memoryProfile": "Tiny" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -179,20 +179,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 6873, - "maxMessageExpirySeconds": 6228, - "maxPacketSizeBytes": 6177, + "maxSessionExpirySeconds": 4229, + "maxMessageExpirySeconds": 6560, + "maxPacketSizeBytes": 5161, "subscriberQueueLimit": { - "length": 13, + "length": 11, "strategy": "None" }, - "maxReceiveMaximum": 1350, - "maxKeepAliveSeconds": 6434 + "maxReceiveMaximum": 8916, + "maxKeepAliveSeconds": 7571 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "nfyhesb", - "renewBefore": "fha", + "duration": "wkoizwtjmfpaaidp", + "renewBefore": "zjqzkiedjjlesjqoebpp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -201,46 +201,46 @@ }, "cardinality": { "backendChain": { - "partitions": 2, - "redundancyFactor": 4, - "workers": 14 + "partitions": 10, + "redundancyFactor": 3, + "workers": 10 }, "frontend": { - "replicas": 1, - "workers": 7 + "replicas": 14, + "workers": 14 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 279, - "timeoutSeconds": 56 + "intervalSeconds": 285, + "timeoutSeconds": 17 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "cacheSizeMegabytes": 126, + "cacheSizeMegabytes": 68, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 106 + "intervalSeconds": 26 }, "spanChannelCapacity": 1000 } @@ -248,84 +248,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } } @@ -337,19 +337,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "iycqgvcphj", - "type": "rlmzedsjhuktpi", + "name": "edkyistrotlghozusxtsce", + "type": "vhwrfhlunsduvq", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -361,20 +361,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 6873, - "maxMessageExpirySeconds": 6228, - "maxPacketSizeBytes": 6177, + "maxSessionExpirySeconds": 4229, + "maxMessageExpirySeconds": 6560, + "maxPacketSizeBytes": 5161, "subscriberQueueLimit": { - "length": 13, + "length": 11, "strategy": "None" }, - "maxReceiveMaximum": 1350, - "maxKeepAliveSeconds": 6434 + "maxReceiveMaximum": 8916, + "maxKeepAliveSeconds": 7571 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "nfyhesb", - "renewBefore": "fha", + "duration": "wkoizwtjmfpaaidp", + "renewBefore": "zjqzkiedjjlesjqoebpp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -383,46 +383,46 @@ }, "cardinality": { "backendChain": { - "partitions": 2, - "redundancyFactor": 4, - "workers": 14 + "partitions": 10, + "redundancyFactor": 3, + "workers": 10 }, "frontend": { - "replicas": 1, - "workers": 7 + "replicas": 14, + "workers": 14 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 279, - "timeoutSeconds": 56 + "intervalSeconds": 285, + "timeoutSeconds": 17 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "cacheSizeMegabytes": 126, + "cacheSizeMegabytes": 68, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 106 + "intervalSeconds": 26 }, "spanChannelCapacity": 1000 } @@ -430,84 +430,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } } @@ -519,19 +519,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "iycqgvcphj", - "type": "rlmzedsjhuktpi", + "name": "edkyistrotlghozusxtsce", + "type": "vhwrfhlunsduvq", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json index f2497c089fcd..1c9147dd8265 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json index c48230734a1b..b8e9d8ff1e9c 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,20 +14,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 6873, - "maxMessageExpirySeconds": 6228, - "maxPacketSizeBytes": 6177, + "maxSessionExpirySeconds": 4229, + "maxMessageExpirySeconds": 6560, + "maxPacketSizeBytes": 5161, "subscriberQueueLimit": { - "length": 13, + "length": 11, "strategy": "None" }, - "maxReceiveMaximum": 1350, - "maxKeepAliveSeconds": 6434 + "maxReceiveMaximum": 8916, + "maxKeepAliveSeconds": 7571 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "nfyhesb", - "renewBefore": "fha", + "duration": "wkoizwtjmfpaaidp", + "renewBefore": "zjqzkiedjjlesjqoebpp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -36,46 +36,46 @@ }, "cardinality": { "backendChain": { - "partitions": 2, - "redundancyFactor": 4, - "workers": 14 + "partitions": 10, + "redundancyFactor": 3, + "workers": 10 }, "frontend": { - "replicas": 1, - "workers": 7 + "replicas": 14, + "workers": 14 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 279, - "timeoutSeconds": 56 + "intervalSeconds": 285, + "timeoutSeconds": 17 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "cacheSizeMegabytes": 126, + "cacheSizeMegabytes": 68, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 106 + "intervalSeconds": 26 }, "spanChannelCapacity": 1000 } @@ -83,84 +83,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } } @@ -172,19 +172,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "iycqgvcphj", - "type": "rlmzedsjhuktpi", + "name": "edkyistrotlghozusxtsce", + "type": "vhwrfhlunsduvq", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json index 5d62f00721f4..cc65d3a18b40 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Broker_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -15,20 +15,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 6873, - "maxMessageExpirySeconds": 6228, - "maxPacketSizeBytes": 6177, + "maxSessionExpirySeconds": 4229, + "maxMessageExpirySeconds": 6560, + "maxPacketSizeBytes": 5161, "subscriberQueueLimit": { - "length": 13, + "length": 11, "strategy": "None" }, - "maxReceiveMaximum": 1350, - "maxKeepAliveSeconds": 6434 + "maxReceiveMaximum": 8916, + "maxKeepAliveSeconds": 7571 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "nfyhesb", - "renewBefore": "fha", + "duration": "wkoizwtjmfpaaidp", + "renewBefore": "zjqzkiedjjlesjqoebpp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -37,46 +37,46 @@ }, "cardinality": { "backendChain": { - "partitions": 2, - "redundancyFactor": 4, - "workers": 14 + "partitions": 10, + "redundancyFactor": 3, + "workers": 10 }, "frontend": { - "replicas": 1, - "workers": 7 + "replicas": 14, + "workers": 14 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 279, - "timeoutSeconds": 56 + "intervalSeconds": 285, + "timeoutSeconds": 17 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "cacheSizeMegabytes": 126, + "cacheSizeMegabytes": 68, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 106 + "intervalSeconds": 26 }, "spanChannelCapacity": 1000 } @@ -84,84 +84,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } } @@ -173,19 +173,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "iycqgvcphj", - "type": "rlmzedsjhuktpi", + "name": "edkyistrotlghozusxtsce", + "type": "vhwrfhlunsduvq", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json index 1abf2b8d6f93..0644aea50697 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123", @@ -14,91 +14,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "tfbtzuofhqmkra", + "database": "mzlrxnaqgmcakeczkarulrhf", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "o" + "secretRef": "qyakoltthejoxfybcxagwltizou" }, "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "r", - "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" + "lakehouseName": "qfoytihxoyyjaahusvowtq", + "workspaceName": "gmjprookmtn" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "amqvjdyyrsdcacmuaqmdqd" + "secretRef": "fdcafkvkboryqo" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "consumerGroupId": "vzklnujksvcmxbfopjasopy", - "host": "evniscabwmrjjtf", + "consumerGroupId": "rhpyfaonnvaet", + "host": "sgwvjttjodvetzsozbcrcwcnvl", "batching": { "mode": "Enabled", - "latencyMs": 462, - "maxBytes": 9139, - "maxMessages": 598 + "latencyMs": 5503, + "maxBytes": 3103, + "maxMessages": 8941 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -106,48 +106,48 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" + "persistentVolumeClaimRef": "ujvhsehlmfdaod" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "serviceAccountTokenSettings": { - "audience": "pywuicgqzhwqyih" + "audience": "cpmztzrsxynusrpptbklxdwaokfma" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "clientIdPrefix": "qdiywebioiydzvlawsqqyx", - "host": "zrzh", + "clientIdPrefix": "yzerrpxnjidfwoozehbmacht", + "host": "x", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 0, + "qos": 1, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" } }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -161,91 +161,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "tfbtzuofhqmkra", + "database": "mzlrxnaqgmcakeczkarulrhf", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "o" + "secretRef": "qyakoltthejoxfybcxagwltizou" }, "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "r", - "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" + "lakehouseName": "qfoytihxoyyjaahusvowtq", + "workspaceName": "gmjprookmtn" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "amqvjdyyrsdcacmuaqmdqd" + "secretRef": "fdcafkvkboryqo" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "consumerGroupId": "vzklnujksvcmxbfopjasopy", - "host": "evniscabwmrjjtf", + "consumerGroupId": "rhpyfaonnvaet", + "host": "sgwvjttjodvetzsozbcrcwcnvl", "batching": { "mode": "Enabled", - "latencyMs": 462, - "maxBytes": 9139, - "maxMessages": 598 + "latencyMs": 5503, + "maxBytes": 3103, + "maxMessages": 8941 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -253,61 +253,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" + "persistentVolumeClaimRef": "ujvhsehlmfdaod" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "serviceAccountTokenSettings": { - "audience": "pywuicgqzhwqyih" + "audience": "cpmztzrsxynusrpptbklxdwaokfma" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "clientIdPrefix": "qdiywebioiydzvlawsqqyx", - "host": "zrzh", + "clientIdPrefix": "yzerrpxnjidfwoozehbmacht", + "host": "x", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 0, + "qos": 1, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "yrnljeyw", - "type": "nhtjvccvwmuonzblpupdaf", + "name": "uwxsuldqvq", + "type": "efivorgtksbxdb", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -322,91 +322,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "tfbtzuofhqmkra", + "database": "mzlrxnaqgmcakeczkarulrhf", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "o" + "secretRef": "qyakoltthejoxfybcxagwltizou" }, "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "r", - "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" + "lakehouseName": "qfoytihxoyyjaahusvowtq", + "workspaceName": "gmjprookmtn" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "amqvjdyyrsdcacmuaqmdqd" + "secretRef": "fdcafkvkboryqo" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "consumerGroupId": "vzklnujksvcmxbfopjasopy", - "host": "evniscabwmrjjtf", + "consumerGroupId": "rhpyfaonnvaet", + "host": "sgwvjttjodvetzsozbcrcwcnvl", "batching": { "mode": "Enabled", - "latencyMs": 462, - "maxBytes": 9139, - "maxMessages": 598 + "latencyMs": 5503, + "maxBytes": 3103, + "maxMessages": 8941 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -414,61 +414,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" + "persistentVolumeClaimRef": "ujvhsehlmfdaod" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "serviceAccountTokenSettings": { - "audience": "pywuicgqzhwqyih" + "audience": "cpmztzrsxynusrpptbklxdwaokfma" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "clientIdPrefix": "qdiywebioiydzvlawsqqyx", - "host": "zrzh", + "clientIdPrefix": "yzerrpxnjidfwoozehbmacht", + "host": "x", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 0, + "qos": 1, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "yrnljeyw", - "type": "nhtjvccvwmuonzblpupdaf", + "name": "uwxsuldqvq", + "type": "efivorgtksbxdb", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json index 422d6a660adf..c1309b97d559 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json index bee64c17240b..b0d5d557edba 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" @@ -17,91 +17,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "tfbtzuofhqmkra", + "database": "mzlrxnaqgmcakeczkarulrhf", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "o" + "secretRef": "qyakoltthejoxfybcxagwltizou" }, "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "r", - "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" + "lakehouseName": "qfoytihxoyyjaahusvowtq", + "workspaceName": "gmjprookmtn" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "amqvjdyyrsdcacmuaqmdqd" + "secretRef": "fdcafkvkboryqo" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "consumerGroupId": "vzklnujksvcmxbfopjasopy", - "host": "evniscabwmrjjtf", + "consumerGroupId": "rhpyfaonnvaet", + "host": "sgwvjttjodvetzsozbcrcwcnvl", "batching": { "mode": "Enabled", - "latencyMs": 462, - "maxBytes": 9139, - "maxMessages": 598 + "latencyMs": 5503, + "maxBytes": 3103, + "maxMessages": 8941 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -109,61 +109,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" + "persistentVolumeClaimRef": "ujvhsehlmfdaod" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "serviceAccountTokenSettings": { - "audience": "pywuicgqzhwqyih" + "audience": "cpmztzrsxynusrpptbklxdwaokfma" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "clientIdPrefix": "qdiywebioiydzvlawsqqyx", - "host": "zrzh", + "clientIdPrefix": "yzerrpxnjidfwoozehbmacht", + "host": "x", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 0, + "qos": 1, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "yrnljeyw", - "type": "nhtjvccvwmuonzblpupdaf", + "name": "uwxsuldqvq", + "type": "efivorgtksbxdb", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json index d5295fb2e4fb..71ff77b56b80 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -18,91 +18,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "tfbtzuofhqmkra", + "database": "mzlrxnaqgmcakeczkarulrhf", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "o" + "secretRef": "qyakoltthejoxfybcxagwltizou" }, "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "r", - "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" + "lakehouseName": "qfoytihxoyyjaahusvowtq", + "workspaceName": "gmjprookmtn" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "amqvjdyyrsdcacmuaqmdqd" + "secretRef": "fdcafkvkboryqo" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "consumerGroupId": "vzklnujksvcmxbfopjasopy", - "host": "evniscabwmrjjtf", + "consumerGroupId": "rhpyfaonnvaet", + "host": "sgwvjttjodvetzsozbcrcwcnvl", "batching": { "mode": "Enabled", - "latencyMs": 462, - "maxBytes": 9139, - "maxMessages": 598 + "latencyMs": 5503, + "maxBytes": 3103, + "maxMessages": 8941 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -110,65 +110,65 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" + "persistentVolumeClaimRef": "ujvhsehlmfdaod" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "serviceAccountTokenSettings": { - "audience": "pywuicgqzhwqyih" + "audience": "cpmztzrsxynusrpptbklxdwaokfma" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "clientIdPrefix": "qdiywebioiydzvlawsqqyx", - "host": "zrzh", + "clientIdPrefix": "yzerrpxnjidfwoozehbmacht", + "host": "x", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 0, + "qos": 1, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "yrnljeyw", - "type": "nhtjvccvwmuonzblpupdaf", + "name": "uwxsuldqvq", + "type": "efivorgtksbxdb", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/aaeblb" + "nextLink": "https://microsoft.com/af" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json index 124ad8df0375..7be93ab90bef 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -12,24 +12,24 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 } }, - "instanceCount": 8 + "instanceCount": 2 }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -41,37 +41,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 } }, - "instanceCount": 8, + "instanceCount": 2, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ckfcqxn", - "type": "fnblyebsknda", + "name": "hul", + "type": "nvwdxsw", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -84,37 +84,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 } }, - "instanceCount": 8, + "instanceCount": 2, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ckfcqxn", - "type": "fnblyebsknda", + "name": "hul", + "type": "nvwdxsw", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json index 1ea22d54a0cc..b701bde33962 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json index 2c723cbeedb0..3e752b73c9c8 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -15,37 +15,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 } }, - "instanceCount": 8, + "instanceCount": 2, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ckfcqxn", - "type": "fnblyebsknda", + "name": "hul", + "type": "nvwdxsw", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json index 45d111847b1f..78ca14319e1b 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -16,41 +16,41 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 } }, - "instanceCount": 8, + "instanceCount": 2, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ckfcqxn", - "type": "fnblyebsknda", + "name": "hul", + "type": "nvwdxsw", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/ah" + "nextLink": "https://microsoft.com/ao" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json index 675931816d15..312caa486dc7 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -14,28 +14,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "uole", + "name": "kgeroeffhmxxvvq", "sourceSettings": { - "endpointRef": "eoeedatyjro", - "assetRef": "htuzxsnhqlii", + "endpointRef": "zzzefamssb", + "assetRef": "idvrzftcxeccqokxizaayv", "serializationFormat": "Json", - "schemaRef": "okclmamfunafjeslt", + "schemaRef": "e", "dataSources": [ - "kjiuwdcklmsrcrcgohxtsptl" + "hhgwhnoobvdxikesnjdrlkv" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "vzvxcefhbecejrrvg", + "schemaRef": "rqmgskpetfacuawgbs", "datasets": [ { - "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", + "key": "cmfyzoeykzndaurfkvszzdckugqpppucogtelzchrafysfotobdzcshd", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", + "schemaRef": "oh", "inputs": [ - "mzpv" + "xorlimkebqys" ], - "expression": "ciikrhquzvup" + "expression": "lcthkcfrwqvljyndihagkaskis" } ], "filter": [ @@ -43,9 +43,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "leiudbasupbvsdmblpnxdva" + "mlrkiixjdnwaygjvtroidht" ], - "expression": "mnzmagcibqolghefk" + "expression": "vxrj" } ], "map": [ @@ -53,22 +53,22 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lvqzqtnawqnj" + "nqvphxgegchcirl" ], - "expression": "aqtbsiqzahqwlyxmnmpqwp", - "output": "edwqaukhlwsylutqmoxfp" + "expression": "tsdubjissmb", + "output": "qtlooqxmjlvbvomzqo" } ] }, "destinationSettings": { - "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", - "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" + "endpointRef": "saijwuzyaydhnfskthse", + "dataDestination": "jadrbxxkechcca" } } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -81,28 +81,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "uole", + "name": "kgeroeffhmxxvvq", "sourceSettings": { - "endpointRef": "eoeedatyjro", - "assetRef": "htuzxsnhqlii", + "endpointRef": "zzzefamssb", + "assetRef": "idvrzftcxeccqokxizaayv", "serializationFormat": "Json", - "schemaRef": "okclmamfunafjeslt", + "schemaRef": "e", "dataSources": [ - "kjiuwdcklmsrcrcgohxtsptl" + "hhgwhnoobvdxikesnjdrlkv" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "vzvxcefhbecejrrvg", + "schemaRef": "rqmgskpetfacuawgbs", "datasets": [ { - "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", + "key": "cmfyzoeykzndaurfkvszzdckugqpppucogtelzchrafysfotobdzcshd", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", + "schemaRef": "oh", "inputs": [ - "mzpv" + "xorlimkebqys" ], - "expression": "ciikrhquzvup" + "expression": "lcthkcfrwqvljyndihagkaskis" } ], "filter": [ @@ -110,9 +110,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "leiudbasupbvsdmblpnxdva" + "mlrkiixjdnwaygjvtroidht" ], - "expression": "mnzmagcibqolghefk" + "expression": "vxrj" } ], "map": [ @@ -120,35 +120,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lvqzqtnawqnj" + "nqvphxgegchcirl" ], - "expression": "aqtbsiqzahqwlyxmnmpqwp", - "output": "edwqaukhlwsylutqmoxfp" + "expression": "tsdubjissmb", + "output": "qtlooqxmjlvbvomzqo" } ] }, "destinationSettings": { - "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", - "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" + "endpointRef": "saijwuzyaydhnfskthse", + "dataDestination": "jadrbxxkechcca" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "udpvbyiefjyzswcdpxavyqgnxwk", - "type": "vkgszhkjsdljeslkyleib", + "name": "rsjnzenvufqrmvzvzvuveugso", + "type": "paxekun", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -162,28 +162,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "uole", + "name": "kgeroeffhmxxvvq", "sourceSettings": { - "endpointRef": "eoeedatyjro", - "assetRef": "htuzxsnhqlii", + "endpointRef": "zzzefamssb", + "assetRef": "idvrzftcxeccqokxizaayv", "serializationFormat": "Json", - "schemaRef": "okclmamfunafjeslt", + "schemaRef": "e", "dataSources": [ - "kjiuwdcklmsrcrcgohxtsptl" + "hhgwhnoobvdxikesnjdrlkv" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "vzvxcefhbecejrrvg", + "schemaRef": "rqmgskpetfacuawgbs", "datasets": [ { - "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", + "key": "cmfyzoeykzndaurfkvszzdckugqpppucogtelzchrafysfotobdzcshd", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", + "schemaRef": "oh", "inputs": [ - "mzpv" + "xorlimkebqys" ], - "expression": "ciikrhquzvup" + "expression": "lcthkcfrwqvljyndihagkaskis" } ], "filter": [ @@ -191,9 +191,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "leiudbasupbvsdmblpnxdva" + "mlrkiixjdnwaygjvtroidht" ], - "expression": "mnzmagcibqolghefk" + "expression": "vxrj" } ], "map": [ @@ -201,35 +201,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lvqzqtnawqnj" + "nqvphxgegchcirl" ], - "expression": "aqtbsiqzahqwlyxmnmpqwp", - "output": "edwqaukhlwsylutqmoxfp" + "expression": "tsdubjissmb", + "output": "qtlooqxmjlvbvomzqo" } ] }, "destinationSettings": { - "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", - "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" + "endpointRef": "saijwuzyaydhnfskthse", + "dataDestination": "jadrbxxkechcca" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "udpvbyiefjyzswcdpxavyqgnxwk", - "type": "vkgszhkjsdljeslkyleib", + "name": "rsjnzenvufqrmvzvzvuveugso", + "type": "paxekun", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json index ef2abe6300f6..fe5df511b7ee 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json index 5520277b1774..be545b03b556 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -17,28 +17,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "uole", + "name": "kgeroeffhmxxvvq", "sourceSettings": { - "endpointRef": "eoeedatyjro", - "assetRef": "htuzxsnhqlii", + "endpointRef": "zzzefamssb", + "assetRef": "idvrzftcxeccqokxizaayv", "serializationFormat": "Json", - "schemaRef": "okclmamfunafjeslt", + "schemaRef": "e", "dataSources": [ - "kjiuwdcklmsrcrcgohxtsptl" + "hhgwhnoobvdxikesnjdrlkv" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "vzvxcefhbecejrrvg", + "schemaRef": "rqmgskpetfacuawgbs", "datasets": [ { - "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", + "key": "cmfyzoeykzndaurfkvszzdckugqpppucogtelzchrafysfotobdzcshd", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", + "schemaRef": "oh", "inputs": [ - "mzpv" + "xorlimkebqys" ], - "expression": "ciikrhquzvup" + "expression": "lcthkcfrwqvljyndihagkaskis" } ], "filter": [ @@ -46,9 +46,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "leiudbasupbvsdmblpnxdva" + "mlrkiixjdnwaygjvtroidht" ], - "expression": "mnzmagcibqolghefk" + "expression": "vxrj" } ], "map": [ @@ -56,35 +56,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lvqzqtnawqnj" + "nqvphxgegchcirl" ], - "expression": "aqtbsiqzahqwlyxmnmpqwp", - "output": "edwqaukhlwsylutqmoxfp" + "expression": "tsdubjissmb", + "output": "qtlooqxmjlvbvomzqo" } ] }, "destinationSettings": { - "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", - "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" + "endpointRef": "saijwuzyaydhnfskthse", + "dataDestination": "jadrbxxkechcca" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "udpvbyiefjyzswcdpxavyqgnxwk", - "type": "vkgszhkjsdljeslkyleib", + "name": "rsjnzenvufqrmvzvzvuveugso", + "type": "paxekun", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json index 02cd07624b83..b38855dd0314 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Dataflow_ListByProfileResource_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_ListByProfileResource", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -18,28 +18,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "uole", + "name": "kgeroeffhmxxvvq", "sourceSettings": { - "endpointRef": "eoeedatyjro", - "assetRef": "htuzxsnhqlii", + "endpointRef": "zzzefamssb", + "assetRef": "idvrzftcxeccqokxizaayv", "serializationFormat": "Json", - "schemaRef": "okclmamfunafjeslt", + "schemaRef": "e", "dataSources": [ - "kjiuwdcklmsrcrcgohxtsptl" + "hhgwhnoobvdxikesnjdrlkv" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "vzvxcefhbecejrrvg", + "schemaRef": "rqmgskpetfacuawgbs", "datasets": [ { - "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", + "key": "cmfyzoeykzndaurfkvszzdckugqpppucogtelzchrafysfotobdzcshd", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", + "schemaRef": "oh", "inputs": [ - "mzpv" + "xorlimkebqys" ], - "expression": "ciikrhquzvup" + "expression": "lcthkcfrwqvljyndihagkaskis" } ], "filter": [ @@ -47,9 +47,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "leiudbasupbvsdmblpnxdva" + "mlrkiixjdnwaygjvtroidht" ], - "expression": "mnzmagcibqolghefk" + "expression": "vxrj" } ], "map": [ @@ -57,35 +57,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lvqzqtnawqnj" + "nqvphxgegchcirl" ], - "expression": "aqtbsiqzahqwlyxmnmpqwp", - "output": "edwqaukhlwsylutqmoxfp" + "expression": "tsdubjissmb", + "output": "qtlooqxmjlvbvomzqo" } ] }, "destinationSettings": { - "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", - "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" + "endpointRef": "saijwuzyaydhnfskthse", + "dataDestination": "jadrbxxkechcca" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "udpvbyiefjyzswcdpxavyqgnxwk", - "type": "vkgszhkjsdljeslkyleib", + "name": "rsjnzenvufqrmvzvzvuveugso", + "type": "paxekun", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json index 17f998778957..a7e52547c45d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "resource": { @@ -12,19 +12,19 @@ "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { "type": "None", "userAssignedIdentities": { - "key4294": {} + "key9448": {} } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar" + "location": "ydoysjyujygllpeqttistshqdcb" } }, "responses": { @@ -33,17 +33,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -51,26 +51,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -82,17 +82,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -100,26 +100,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json index fa39ea4b103f..1cb569ce4dc7 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json index cf715549ca12..f9a9e560811f 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,17 +13,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -31,26 +31,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json index 276ad8cd4d45..40dbe0cf324d 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations" }, "responses": { @@ -14,17 +14,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -32,30 +32,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/agidhjvl" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json index fc090fc9184d..8014acdb50d8 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_ListBySubscription_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListBySubscription", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2" + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352" }, "responses": { "200": { @@ -13,17 +13,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -31,30 +31,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/agidhjvl" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json index 33b4797f6ab7..78f885760c14 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Instance_Update_MaximumSet_Gen.json @@ -3,12 +3,12 @@ "operationId": "Instance_Update", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "properties": { "tags": { - "key9634": "lk" + "key3801": "rvtkxvfwpijgeugcxuzwszozxftt" } } }, @@ -18,17 +18,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -36,26 +36,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json index 67548679c822..43cdda131a39 100644 --- a/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json +++ b/specification/iotoperations/IoTOperations.Management/examples/2024-08-15-preview/Operations_List_MaximumSet_Gen.json @@ -9,19 +9,19 @@ "body": { "value": [ { - "name": "xoun", + "name": "eqovorzxnhwoqgxaduiadiuzqs", "isDataAction": true, "display": { - "provider": "xukdpfxtyhcdphnwwchmlqh", - "resource": "ujadshbcfzvdbmfkcfqxzywzro", - "operation": "rewimbbdfcvhh", + "provider": "eiztguxipfbnhqdv", + "resource": "tbt", + "operation": "drpmwofxppbaooelb", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit." }, "origin": "user", "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/atksei" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json index 8e427b19fd96..aafa73d2f6a1 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -17,38 +17,38 @@ "auth": { "x509": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } }, - "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", + "caCertConfigMap": "zoxllgdrumxvfhtzggebjljgwdk", "endpoint": "https://www.example.com", "headers": { - "key6099": "zqwfotkzttvzbx" + "key8387": "bobntvz" } }, "serviceAccountTokenSettings": { "audiences": [ - "awuyykdydnr" + "bnxnelhhpwuyejmmhtetdwacqql" ] }, "x509Settings": { "authorizationAttributes": { - "key4680": { + "key5002": { "attributes": { - "key6861": "ftvxyusinoeecsady" + "key3517": "ud" }, - "subject": "dqdmahhcofgbypuofwduns" + "subject": "evng" } }, - "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" + "trustedClientCaCert": "eztlgjvatxlqvkcr" } } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -64,51 +64,51 @@ "auth": { "x509": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } }, - "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", + "caCertConfigMap": "zoxllgdrumxvfhtzggebjljgwdk", "endpoint": "https://www.example.com", "headers": { - "key6099": "zqwfotkzttvzbx" + "key8387": "bobntvz" } }, "serviceAccountTokenSettings": { "audiences": [ - "awuyykdydnr" + "bnxnelhhpwuyejmmhtetdwacqql" ] }, "x509Settings": { "authorizationAttributes": { - "key4680": { + "key5002": { "attributes": { - "key6861": "ftvxyusinoeecsady" + "key3517": "ud" }, - "subject": "dqdmahhcofgbypuofwduns" + "subject": "evng" } }, - "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" + "trustedClientCaCert": "eztlgjvatxlqvkcr" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qhdoduzgqa", - "type": "l", + "name": "bgsl", + "type": "khyvsncilleyjc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -125,51 +125,51 @@ "auth": { "x509": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } }, - "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", + "caCertConfigMap": "zoxllgdrumxvfhtzggebjljgwdk", "endpoint": "https://www.example.com", "headers": { - "key6099": "zqwfotkzttvzbx" + "key8387": "bobntvz" } }, "serviceAccountTokenSettings": { "audiences": [ - "awuyykdydnr" + "bnxnelhhpwuyejmmhtetdwacqql" ] }, "x509Settings": { "authorizationAttributes": { - "key4680": { + "key5002": { "attributes": { - "key6861": "ftvxyusinoeecsady" + "key3517": "ud" }, - "subject": "dqdmahhcofgbypuofwduns" + "subject": "evng" } }, - "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" + "trustedClientCaCert": "eztlgjvatxlqvkcr" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qhdoduzgqa", - "type": "l", + "name": "bgsl", + "type": "khyvsncilleyjc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json index 01c369a0b522..4422c3e4ab57 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json index 32287ad53bd5..46a856ee306b 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -20,51 +20,51 @@ "auth": { "x509": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } }, - "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", + "caCertConfigMap": "zoxllgdrumxvfhtzggebjljgwdk", "endpoint": "https://www.example.com", "headers": { - "key6099": "zqwfotkzttvzbx" + "key8387": "bobntvz" } }, "serviceAccountTokenSettings": { "audiences": [ - "awuyykdydnr" + "bnxnelhhpwuyejmmhtetdwacqql" ] }, "x509Settings": { "authorizationAttributes": { - "key4680": { + "key5002": { "attributes": { - "key6861": "ftvxyusinoeecsady" + "key3517": "ud" }, - "subject": "dqdmahhcofgbypuofwduns" + "subject": "evng" } }, - "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" + "trustedClientCaCert": "eztlgjvatxlqvkcr" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qhdoduzgqa", - "type": "l", + "name": "bgsl", + "type": "khyvsncilleyjc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json index b0ba771bf070..157f3357a6ac 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthentication_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthentication_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -21,55 +21,55 @@ "auth": { "x509": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } }, - "caCertConfigMap": "cknjyctaxwpoeewabvyxzdnvrszpam", + "caCertConfigMap": "zoxllgdrumxvfhtzggebjljgwdk", "endpoint": "https://www.example.com", "headers": { - "key6099": "zqwfotkzttvzbx" + "key8387": "bobntvz" } }, "serviceAccountTokenSettings": { "audiences": [ - "awuyykdydnr" + "bnxnelhhpwuyejmmhtetdwacqql" ] }, "x509Settings": { "authorizationAttributes": { - "key4680": { + "key5002": { "attributes": { - "key6861": "ftvxyusinoeecsady" + "key3517": "ud" }, - "subject": "dqdmahhcofgbypuofwduns" + "subject": "evng" } }, - "trustedClientCaCert": "frriusqmgsuwyunbjrikodf" + "trustedClientCaCert": "eztlgjvatxlqvkcr" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authentications/resource-name123", - "name": "qhdoduzgqa", - "type": "l", + "name": "bgsl", + "type": "khyvsncilleyjc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/aqzu" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json index 34a46aad65bc..9ed213eadd5d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -18,28 +18,28 @@ { "method": "Connect", "topics": [ - "sogrvpvuwdvossiyoguudynoq" + "xxxhvvvgfgqiotfte" ] } ], "principals": { "attributes": [ { - "key7341": "ohhuwaqdagteh" + "key6601": "hgn" } ], "clientIds": [ - "wjxyjuehzeahskycinhaxpualwgpgh" + "eridpeherwhyxjjnpununuj" ], "usernames": [ - "ksfpwfrnqomajxmbcuklsagvw" + "tmxqbeaammwdlxrjl" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "ordrqfkzrwzwb" + "wkzbtpjqoivvpbxx" ], "method": "Read" } @@ -49,7 +49,7 @@ } }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -66,28 +66,28 @@ { "method": "Connect", "topics": [ - "sogrvpvuwdvossiyoguudynoq" + "xxxhvvvgfgqiotfte" ] } ], "principals": { "attributes": [ { - "key7341": "ohhuwaqdagteh" + "key6601": "hgn" } ], "clientIds": [ - "wjxyjuehzeahskycinhaxpualwgpgh" + "eridpeherwhyxjjnpununuj" ], "usernames": [ - "ksfpwfrnqomajxmbcuklsagvw" + "tmxqbeaammwdlxrjl" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "ordrqfkzrwzwb" + "wkzbtpjqoivvpbxx" ], "method": "Read" } @@ -98,19 +98,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "puqgnigsztnvwngxofcggpas", - "type": "ytqvrwlmiannhwvorbtpbzhpdm", + "name": "ginndyhytb", + "type": "xrlixhwbcttc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -128,28 +128,28 @@ { "method": "Connect", "topics": [ - "sogrvpvuwdvossiyoguudynoq" + "xxxhvvvgfgqiotfte" ] } ], "principals": { "attributes": [ { - "key7341": "ohhuwaqdagteh" + "key6601": "hgn" } ], "clientIds": [ - "wjxyjuehzeahskycinhaxpualwgpgh" + "eridpeherwhyxjjnpununuj" ], "usernames": [ - "ksfpwfrnqomajxmbcuklsagvw" + "tmxqbeaammwdlxrjl" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "ordrqfkzrwzwb" + "wkzbtpjqoivvpbxx" ], "method": "Read" } @@ -160,19 +160,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "puqgnigsztnvwngxofcggpas", - "type": "ytqvrwlmiannhwvorbtpbzhpdm", + "name": "ginndyhytb", + "type": "xrlixhwbcttc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json index d6c0f9886c1f..8a71cf0b4090 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json index 8240407c13d4..8ab452802360 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -21,28 +21,28 @@ { "method": "Connect", "topics": [ - "sogrvpvuwdvossiyoguudynoq" + "xxxhvvvgfgqiotfte" ] } ], "principals": { "attributes": [ { - "key7341": "ohhuwaqdagteh" + "key6601": "hgn" } ], "clientIds": [ - "wjxyjuehzeahskycinhaxpualwgpgh" + "eridpeherwhyxjjnpununuj" ], "usernames": [ - "ksfpwfrnqomajxmbcuklsagvw" + "tmxqbeaammwdlxrjl" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "ordrqfkzrwzwb" + "wkzbtpjqoivvpbxx" ], "method": "Read" } @@ -53,19 +53,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "puqgnigsztnvwngxofcggpas", - "type": "ytqvrwlmiannhwvorbtpbzhpdm", + "name": "ginndyhytb", + "type": "xrlixhwbcttc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json index c82434faa00a..5a9e5d9e04c8 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerAuthorization_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerAuthorization_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -22,28 +22,28 @@ { "method": "Connect", "topics": [ - "sogrvpvuwdvossiyoguudynoq" + "xxxhvvvgfgqiotfte" ] } ], "principals": { "attributes": [ { - "key7341": "ohhuwaqdagteh" + "key6601": "hgn" } ], "clientIds": [ - "wjxyjuehzeahskycinhaxpualwgpgh" + "eridpeherwhyxjjnpununuj" ], "usernames": [ - "ksfpwfrnqomajxmbcuklsagvw" + "tmxqbeaammwdlxrjl" ] }, "stateStoreResources": [ { "keyType": "Pattern", "keys": [ - "ordrqfkzrwzwb" + "wkzbtpjqoivvpbxx" ], "method": "Read" } @@ -54,23 +54,23 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/authorizations/resource-name123", - "name": "puqgnigsztnvwngxofcggpas", - "type": "ytqvrwlmiannhwvorbtpbzhpdm", + "name": "ginndyhytb", + "type": "xrlixhwbcttc", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/a" + "nextLink": "https://microsoft.com/auclyxpc" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json index 319ac4e25028..51f4341b86c3 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_CreateOrUpdate_MaximumSet_Gen.json @@ -3,31 +3,31 @@ "operationId": "BrokerListener_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", "listenerName": "resource-name123", "resource": { "properties": { - "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", + "serviceName": "nylfustgft", "ports": [ { - "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", - "authorizationRef": "wqfkqwuiuernmvt", - "nodePort": 3840, - "port": 8452, + "authenticationRef": "mwemlutltkxbc", + "authorizationRef": "xomdajpruoxofxeqqibvvzhtcjkwcz", + "nodePort": 2969, + "port": 6585, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "nhnltaullguzadmtbmfgx", - "secretName": "sckzqmesxuaeoajkcdqpuqvb", - "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", + "duration": "twptzhpugijolwjwpbmpt", + "secretName": "upsfnwjqzdphm", + "renewBefore": "i", "issuerRef": { - "group": "ctmhrxbsvzx", + "group": "nlptbdkswvspetdjdwjhrmfjfyhbv", "kind": "Issuer", - "name": "f" + "name": "uta" }, "privateKey": { "algorithm": "Ec256", @@ -35,17 +35,17 @@ }, "san": { "dns": [ - "gltzdoxjlnatlmiwkwcowttxdmd" + "yaqxbdeghjycatsaixqcewtfe" ], "ip": [ - "boanjeewupjcaofwoeqvtyjyet" + "hbwafnute" ] } }, "manual": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } } @@ -54,7 +54,7 @@ "serviceType": "ClusterIp" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -63,24 +63,24 @@ "200": { "body": { "properties": { - "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", + "serviceName": "nylfustgft", "ports": [ { - "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", - "authorizationRef": "wqfkqwuiuernmvt", - "nodePort": 3840, - "port": 8452, + "authenticationRef": "mwemlutltkxbc", + "authorizationRef": "xomdajpruoxofxeqqibvvzhtcjkwcz", + "nodePort": 2969, + "port": 6585, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "nhnltaullguzadmtbmfgx", - "secretName": "sckzqmesxuaeoajkcdqpuqvb", - "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", + "duration": "twptzhpugijolwjwpbmpt", + "secretName": "upsfnwjqzdphm", + "renewBefore": "i", "issuerRef": { - "group": "ctmhrxbsvzx", + "group": "nlptbdkswvspetdjdwjhrmfjfyhbv", "kind": "Issuer", - "name": "f" + "name": "uta" }, "privateKey": { "algorithm": "Ec256", @@ -88,17 +88,17 @@ }, "san": { "dns": [ - "gltzdoxjlnatlmiwkwcowttxdmd" + "yaqxbdeghjycatsaixqcewtfe" ], "ip": [ - "boanjeewupjcaofwoeqvtyjyet" + "hbwafnute" ] } }, "manual": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } } @@ -108,19 +108,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "zbmpca", - "type": "kqfsuiqzjhhdxyrwjtthoc", + "name": "iqbibugwaplk", + "type": "dg", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -130,24 +130,24 @@ }, "body": { "properties": { - "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", + "serviceName": "nylfustgft", "ports": [ { - "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", - "authorizationRef": "wqfkqwuiuernmvt", - "nodePort": 3840, - "port": 8452, + "authenticationRef": "mwemlutltkxbc", + "authorizationRef": "xomdajpruoxofxeqqibvvzhtcjkwcz", + "nodePort": 2969, + "port": 6585, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "nhnltaullguzadmtbmfgx", - "secretName": "sckzqmesxuaeoajkcdqpuqvb", - "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", + "duration": "twptzhpugijolwjwpbmpt", + "secretName": "upsfnwjqzdphm", + "renewBefore": "i", "issuerRef": { - "group": "ctmhrxbsvzx", + "group": "nlptbdkswvspetdjdwjhrmfjfyhbv", "kind": "Issuer", - "name": "f" + "name": "uta" }, "privateKey": { "algorithm": "Ec256", @@ -155,17 +155,17 @@ }, "san": { "dns": [ - "gltzdoxjlnatlmiwkwcowttxdmd" + "yaqxbdeghjycatsaixqcewtfe" ], "ip": [ - "boanjeewupjcaofwoeqvtyjyet" + "hbwafnute" ] } }, "manual": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } } @@ -175,19 +175,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "zbmpca", - "type": "kqfsuiqzjhhdxyrwjtthoc", + "name": "iqbibugwaplk", + "type": "dg", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json index 22e30159b9a4..a1d8b789acd7 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json index 98cf9cc88cef..6c2c62918b99 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -13,24 +13,24 @@ "200": { "body": { "properties": { - "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", + "serviceName": "nylfustgft", "ports": [ { - "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", - "authorizationRef": "wqfkqwuiuernmvt", - "nodePort": 3840, - "port": 8452, + "authenticationRef": "mwemlutltkxbc", + "authorizationRef": "xomdajpruoxofxeqqibvvzhtcjkwcz", + "nodePort": 2969, + "port": 6585, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "nhnltaullguzadmtbmfgx", - "secretName": "sckzqmesxuaeoajkcdqpuqvb", - "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", + "duration": "twptzhpugijolwjwpbmpt", + "secretName": "upsfnwjqzdphm", + "renewBefore": "i", "issuerRef": { - "group": "ctmhrxbsvzx", + "group": "nlptbdkswvspetdjdwjhrmfjfyhbv", "kind": "Issuer", - "name": "f" + "name": "uta" }, "privateKey": { "algorithm": "Ec256", @@ -38,17 +38,17 @@ }, "san": { "dns": [ - "gltzdoxjlnatlmiwkwcowttxdmd" + "yaqxbdeghjycatsaixqcewtfe" ], "ip": [ - "boanjeewupjcaofwoeqvtyjyet" + "hbwafnute" ] } }, "manual": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } } @@ -58,19 +58,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "zbmpca", - "type": "kqfsuiqzjhhdxyrwjtthoc", + "name": "iqbibugwaplk", + "type": "dg", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json index 543ce3dfb556..76e486212cbc 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/BrokerListener_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "BrokerListener_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,24 +14,24 @@ "value": [ { "properties": { - "serviceName": "kymzoarqrvytntxlaxuvydzenddfh", + "serviceName": "nylfustgft", "ports": [ { - "authenticationRef": "tvgixtnjowluglwzflvsvhxyuspymx", - "authorizationRef": "wqfkqwuiuernmvt", - "nodePort": 3840, - "port": 8452, + "authenticationRef": "mwemlutltkxbc", + "authorizationRef": "xomdajpruoxofxeqqibvvzhtcjkwcz", + "nodePort": 2969, + "port": 6585, "protocol": "Mqtt", "tls": { "mode": "Automatic", "certManagerCertificateSpec": { - "duration": "nhnltaullguzadmtbmfgx", - "secretName": "sckzqmesxuaeoajkcdqpuqvb", - "renewBefore": "unmsalqqtokhzslhlihipeclmxxjty", + "duration": "twptzhpugijolwjwpbmpt", + "secretName": "upsfnwjqzdphm", + "renewBefore": "i", "issuerRef": { - "group": "ctmhrxbsvzx", + "group": "nlptbdkswvspetdjdwjhrmfjfyhbv", "kind": "Issuer", - "name": "f" + "name": "uta" }, "privateKey": { "algorithm": "Ec256", @@ -39,17 +39,17 @@ }, "san": { "dns": [ - "gltzdoxjlnatlmiwkwcowttxdmd" + "yaqxbdeghjycatsaixqcewtfe" ], "ip": [ - "boanjeewupjcaofwoeqvtyjyet" + "hbwafnute" ] } }, "manual": { "secretRef": { - "name": "jucdtmgp", - "namespace": "iqxvsgwcxqfrrndjd" + "name": "jxovbgbszgykyqdzowyhycnizquf", + "namespace": "cyyshnszs" } } } @@ -59,19 +59,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123/listeners/resource-name123", - "name": "zbmpca", - "type": "kqfsuiqzjhhdxyrwjtthoc", + "name": "iqbibugwaplk", + "type": "dg", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json index 56c247abf39e..eff91df612c4 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123", @@ -11,20 +11,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 6873, - "maxMessageExpirySeconds": 6228, - "maxPacketSizeBytes": 6177, + "maxSessionExpirySeconds": 4229, + "maxMessageExpirySeconds": 6560, + "maxPacketSizeBytes": 5161, "subscriberQueueLimit": { - "length": 13, + "length": 11, "strategy": "None" }, - "maxReceiveMaximum": 1350, - "maxKeepAliveSeconds": 6434 + "maxReceiveMaximum": 8916, + "maxKeepAliveSeconds": 7571 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "nfyhesb", - "renewBefore": "fha", + "duration": "wkoizwtjmfpaaidp", + "renewBefore": "zjqzkiedjjlesjqoebpp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -33,46 +33,46 @@ }, "cardinality": { "backendChain": { - "partitions": 2, - "redundancyFactor": 4, - "workers": 14 + "partitions": 10, + "redundancyFactor": 3, + "workers": 10 }, "frontend": { - "replicas": 1, - "workers": 7 + "replicas": 14, + "workers": 14 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 279, - "timeoutSeconds": 56 + "intervalSeconds": 285, + "timeoutSeconds": 17 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "cacheSizeMegabytes": 126, + "cacheSizeMegabytes": 68, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 106 + "intervalSeconds": 26 }, "spanChannelCapacity": 1000 } @@ -80,84 +80,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } } @@ -168,7 +168,7 @@ "memoryProfile": "Tiny" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -179,20 +179,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 6873, - "maxMessageExpirySeconds": 6228, - "maxPacketSizeBytes": 6177, + "maxSessionExpirySeconds": 4229, + "maxMessageExpirySeconds": 6560, + "maxPacketSizeBytes": 5161, "subscriberQueueLimit": { - "length": 13, + "length": 11, "strategy": "None" }, - "maxReceiveMaximum": 1350, - "maxKeepAliveSeconds": 6434 + "maxReceiveMaximum": 8916, + "maxKeepAliveSeconds": 7571 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "nfyhesb", - "renewBefore": "fha", + "duration": "wkoizwtjmfpaaidp", + "renewBefore": "zjqzkiedjjlesjqoebpp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -201,46 +201,46 @@ }, "cardinality": { "backendChain": { - "partitions": 2, - "redundancyFactor": 4, - "workers": 14 + "partitions": 10, + "redundancyFactor": 3, + "workers": 10 }, "frontend": { - "replicas": 1, - "workers": 7 + "replicas": 14, + "workers": 14 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 279, - "timeoutSeconds": 56 + "intervalSeconds": 285, + "timeoutSeconds": 17 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "cacheSizeMegabytes": 126, + "cacheSizeMegabytes": 68, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 106 + "intervalSeconds": 26 }, "spanChannelCapacity": 1000 } @@ -248,84 +248,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } } @@ -337,19 +337,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "iycqgvcphj", - "type": "rlmzedsjhuktpi", + "name": "edkyistrotlghozusxtsce", + "type": "vhwrfhlunsduvq", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -361,20 +361,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 6873, - "maxMessageExpirySeconds": 6228, - "maxPacketSizeBytes": 6177, + "maxSessionExpirySeconds": 4229, + "maxMessageExpirySeconds": 6560, + "maxPacketSizeBytes": 5161, "subscriberQueueLimit": { - "length": 13, + "length": 11, "strategy": "None" }, - "maxReceiveMaximum": 1350, - "maxKeepAliveSeconds": 6434 + "maxReceiveMaximum": 8916, + "maxKeepAliveSeconds": 7571 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "nfyhesb", - "renewBefore": "fha", + "duration": "wkoizwtjmfpaaidp", + "renewBefore": "zjqzkiedjjlesjqoebpp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -383,46 +383,46 @@ }, "cardinality": { "backendChain": { - "partitions": 2, - "redundancyFactor": 4, - "workers": 14 + "partitions": 10, + "redundancyFactor": 3, + "workers": 10 }, "frontend": { - "replicas": 1, - "workers": 7 + "replicas": 14, + "workers": 14 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 279, - "timeoutSeconds": 56 + "intervalSeconds": 285, + "timeoutSeconds": 17 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "cacheSizeMegabytes": 126, + "cacheSizeMegabytes": 68, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 106 + "intervalSeconds": 26 }, "spanChannelCapacity": 1000 } @@ -430,84 +430,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } } @@ -519,19 +519,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "iycqgvcphj", - "type": "rlmzedsjhuktpi", + "name": "edkyistrotlghozusxtsce", + "type": "vhwrfhlunsduvq", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json index f2497c089fcd..1c9147dd8265 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json index c48230734a1b..b8e9d8ff1e9c 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "brokerName": "resource-name123" @@ -14,20 +14,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 6873, - "maxMessageExpirySeconds": 6228, - "maxPacketSizeBytes": 6177, + "maxSessionExpirySeconds": 4229, + "maxMessageExpirySeconds": 6560, + "maxPacketSizeBytes": 5161, "subscriberQueueLimit": { - "length": 13, + "length": 11, "strategy": "None" }, - "maxReceiveMaximum": 1350, - "maxKeepAliveSeconds": 6434 + "maxReceiveMaximum": 8916, + "maxKeepAliveSeconds": 7571 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "nfyhesb", - "renewBefore": "fha", + "duration": "wkoizwtjmfpaaidp", + "renewBefore": "zjqzkiedjjlesjqoebpp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -36,46 +36,46 @@ }, "cardinality": { "backendChain": { - "partitions": 2, - "redundancyFactor": 4, - "workers": 14 + "partitions": 10, + "redundancyFactor": 3, + "workers": 10 }, "frontend": { - "replicas": 1, - "workers": 7 + "replicas": 14, + "workers": 14 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 279, - "timeoutSeconds": 56 + "intervalSeconds": 285, + "timeoutSeconds": 17 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "cacheSizeMegabytes": 126, + "cacheSizeMegabytes": 68, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 106 + "intervalSeconds": 26 }, "spanChannelCapacity": 1000 } @@ -83,84 +83,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } } @@ -172,19 +172,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "iycqgvcphj", - "type": "rlmzedsjhuktpi", + "name": "edkyistrotlghozusxtsce", + "type": "vhwrfhlunsduvq", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json index 5d62f00721f4..cc65d3a18b40 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Broker_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Broker_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -15,20 +15,20 @@ "properties": { "advanced": { "clients": { - "maxSessionExpirySeconds": 6873, - "maxMessageExpirySeconds": 6228, - "maxPacketSizeBytes": 6177, + "maxSessionExpirySeconds": 4229, + "maxMessageExpirySeconds": 6560, + "maxPacketSizeBytes": 5161, "subscriberQueueLimit": { - "length": 13, + "length": 11, "strategy": "None" }, - "maxReceiveMaximum": 1350, - "maxKeepAliveSeconds": 6434 + "maxReceiveMaximum": 8916, + "maxKeepAliveSeconds": 7571 }, "encryptInternalTraffic": "Enabled", "internalCerts": { - "duration": "nfyhesb", - "renewBefore": "fha", + "duration": "wkoizwtjmfpaaidp", + "renewBefore": "zjqzkiedjjlesjqoebpp", "privateKey": { "algorithm": "Ec256", "rotationPolicy": "Always" @@ -37,46 +37,46 @@ }, "cardinality": { "backendChain": { - "partitions": 2, - "redundancyFactor": 4, - "workers": 14 + "partitions": 10, + "redundancyFactor": 3, + "workers": 10 }, "frontend": { - "replicas": 1, - "workers": 7 + "replicas": 14, + "workers": 14 } }, "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 }, "selfCheck": { "mode": "Enabled", - "intervalSeconds": 279, - "timeoutSeconds": 56 + "intervalSeconds": 285, + "timeoutSeconds": 17 }, "traces": { "mode": "Enabled", "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "cacheSizeMegabytes": 126, + "cacheSizeMegabytes": 68, "selfTracing": { "mode": "Enabled", - "intervalSeconds": 106 + "intervalSeconds": 26 }, "spanChannelCapacity": 1000 } @@ -84,84 +84,84 @@ "diskBackedMessageBuffer": { "maxSize": "500M", "ephemeralVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } }, "persistentVolumeClaimSpec": { - "volumeName": "khxcbbflz", - "volumeMode": "vubstbtjjkiejgaftdvtw", - "storageClassName": "a", + "volumeName": "yycllysuykpewwarvauk", + "volumeMode": "dekkvszu", + "storageClassName": "ovycmkktgotmbcapjceyssm", "accessModes": [ - "snvsg" + "abxf" ], "dataSource": { - "apiGroup": "kdxlrrnmpestgiqdxcq", - "kind": "efmxaqlrtkhtg", - "name": "slitwzefdquor" + "apiGroup": "bkdmbpmlkamhzlajeyxqxxclbzi", + "kind": "gsoiiuajfoopwwnypqo", + "name": "grgfmtjlgqaazhetusprgepj" }, "dataSourceRef": { - "apiGroup": "pst", - "kind": "mucmzrlcfcbrxnjrrqjigjkfd", - "name": "thdttdujpdcxvxt", - "namespace": "kvxpmgkhwuitye" + "apiGroup": "nguvrhmdmvpf", + "kind": "ekbzyysf", + "name": "fuhjyejib", + "namespace": "gojclrqynonqmftfivrwftbxkm" }, "resources": { "limits": { - "key1227": "stqrdbzkrjtcevaxjimhkglantv" + "key7467": "jdnvmvhkrijl" }, "requests": { - "key180": "vtxpa" + "key9111": "yfehjewezaeplwcsibimqxoo" } }, "selector": { "matchExpressions": [ { - "key": "qpddulzqpiormmcbee", + "key": "prvxuxuvkwkrxuwaowllymtkw", "operator": "In", "values": [ - "mevghryhs" + "nixsjzyqwjwjooi" ] } ], "matchLabels": { - "key7808": "cofchxowfjtfmpqstdqfshdr" + "key7628": "qtconcxdamoqi" } } } @@ -173,19 +173,19 @@ "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/brokers/resource-name123", - "name": "iycqgvcphj", - "type": "rlmzedsjhuktpi", + "name": "edkyistrotlghozusxtsce", + "type": "vhwrfhlunsduvq", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json index 1abf2b8d6f93..0644aea50697 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123", @@ -14,91 +14,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "tfbtzuofhqmkra", + "database": "mzlrxnaqgmcakeczkarulrhf", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "o" + "secretRef": "qyakoltthejoxfybcxagwltizou" }, "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "r", - "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" + "lakehouseName": "qfoytihxoyyjaahusvowtq", + "workspaceName": "gmjprookmtn" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "amqvjdyyrsdcacmuaqmdqd" + "secretRef": "fdcafkvkboryqo" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "consumerGroupId": "vzklnujksvcmxbfopjasopy", - "host": "evniscabwmrjjtf", + "consumerGroupId": "rhpyfaonnvaet", + "host": "sgwvjttjodvetzsozbcrcwcnvl", "batching": { "mode": "Enabled", - "latencyMs": 462, - "maxBytes": 9139, - "maxMessages": 598 + "latencyMs": 5503, + "maxBytes": 3103, + "maxMessages": 8941 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -106,48 +106,48 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" + "persistentVolumeClaimRef": "ujvhsehlmfdaod" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "serviceAccountTokenSettings": { - "audience": "pywuicgqzhwqyih" + "audience": "cpmztzrsxynusrpptbklxdwaokfma" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "clientIdPrefix": "qdiywebioiydzvlawsqqyx", - "host": "zrzh", + "clientIdPrefix": "yzerrpxnjidfwoozehbmacht", + "host": "x", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 0, + "qos": 1, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" } }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -161,91 +161,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "tfbtzuofhqmkra", + "database": "mzlrxnaqgmcakeczkarulrhf", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "o" + "secretRef": "qyakoltthejoxfybcxagwltizou" }, "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "r", - "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" + "lakehouseName": "qfoytihxoyyjaahusvowtq", + "workspaceName": "gmjprookmtn" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "amqvjdyyrsdcacmuaqmdqd" + "secretRef": "fdcafkvkboryqo" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "consumerGroupId": "vzklnujksvcmxbfopjasopy", - "host": "evniscabwmrjjtf", + "consumerGroupId": "rhpyfaonnvaet", + "host": "sgwvjttjodvetzsozbcrcwcnvl", "batching": { "mode": "Enabled", - "latencyMs": 462, - "maxBytes": 9139, - "maxMessages": 598 + "latencyMs": 5503, + "maxBytes": 3103, + "maxMessages": 8941 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -253,61 +253,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" + "persistentVolumeClaimRef": "ujvhsehlmfdaod" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "serviceAccountTokenSettings": { - "audience": "pywuicgqzhwqyih" + "audience": "cpmztzrsxynusrpptbklxdwaokfma" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "clientIdPrefix": "qdiywebioiydzvlawsqqyx", - "host": "zrzh", + "clientIdPrefix": "yzerrpxnjidfwoozehbmacht", + "host": "x", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 0, + "qos": 1, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "yrnljeyw", - "type": "nhtjvccvwmuonzblpupdaf", + "name": "uwxsuldqvq", + "type": "efivorgtksbxdb", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -322,91 +322,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "tfbtzuofhqmkra", + "database": "mzlrxnaqgmcakeczkarulrhf", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "o" + "secretRef": "qyakoltthejoxfybcxagwltizou" }, "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "r", - "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" + "lakehouseName": "qfoytihxoyyjaahusvowtq", + "workspaceName": "gmjprookmtn" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "amqvjdyyrsdcacmuaqmdqd" + "secretRef": "fdcafkvkboryqo" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "consumerGroupId": "vzklnujksvcmxbfopjasopy", - "host": "evniscabwmrjjtf", + "consumerGroupId": "rhpyfaonnvaet", + "host": "sgwvjttjodvetzsozbcrcwcnvl", "batching": { "mode": "Enabled", - "latencyMs": 462, - "maxBytes": 9139, - "maxMessages": 598 + "latencyMs": 5503, + "maxBytes": 3103, + "maxMessages": 8941 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -414,61 +414,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" + "persistentVolumeClaimRef": "ujvhsehlmfdaod" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "serviceAccountTokenSettings": { - "audience": "pywuicgqzhwqyih" + "audience": "cpmztzrsxynusrpptbklxdwaokfma" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "clientIdPrefix": "qdiywebioiydzvlawsqqyx", - "host": "zrzh", + "clientIdPrefix": "yzerrpxnjidfwoozehbmacht", + "host": "x", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 0, + "qos": 1, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "yrnljeyw", - "type": "nhtjvccvwmuonzblpupdaf", + "name": "uwxsuldqvq", + "type": "efivorgtksbxdb", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json index 422d6a660adf..c1309b97d559 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json index bee64c17240b..b0d5d557edba 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowEndpointName": "resource-name123" @@ -17,91 +17,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "tfbtzuofhqmkra", + "database": "mzlrxnaqgmcakeczkarulrhf", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "o" + "secretRef": "qyakoltthejoxfybcxagwltizou" }, "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "r", - "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" + "lakehouseName": "qfoytihxoyyjaahusvowtq", + "workspaceName": "gmjprookmtn" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "amqvjdyyrsdcacmuaqmdqd" + "secretRef": "fdcafkvkboryqo" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "consumerGroupId": "vzklnujksvcmxbfopjasopy", - "host": "evniscabwmrjjtf", + "consumerGroupId": "rhpyfaonnvaet", + "host": "sgwvjttjodvetzsozbcrcwcnvl", "batching": { "mode": "Enabled", - "latencyMs": 462, - "maxBytes": 9139, - "maxMessages": 598 + "latencyMs": 5503, + "maxBytes": 3103, + "maxMessages": 8941 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -109,61 +109,61 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" + "persistentVolumeClaimRef": "ujvhsehlmfdaod" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "serviceAccountTokenSettings": { - "audience": "pywuicgqzhwqyih" + "audience": "cpmztzrsxynusrpptbklxdwaokfma" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "clientIdPrefix": "qdiywebioiydzvlawsqqyx", - "host": "zrzh", + "clientIdPrefix": "yzerrpxnjidfwoozehbmacht", + "host": "x", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 0, + "qos": 1, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "yrnljeyw", - "type": "nhtjvccvwmuonzblpupdaf", + "name": "uwxsuldqvq", + "type": "efivorgtksbxdb", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json index d5295fb2e4fb..71ff77b56b80 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowEndpoint_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowEndpoint_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -18,91 +18,91 @@ "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, - "database": "tfbtzuofhqmkra", + "database": "mzlrxnaqgmcakeczkarulrhf", "host": "..kusto.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "dataLakeStorageSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "accessTokenSettings": { - "secretRef": "o" + "secretRef": "qyakoltthejoxfybcxagwltizou" }, "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "host": ".blob.core.windows.net", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "fabricOneLakeSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" } }, "names": { - "lakehouseName": "r", - "workspaceName": "lxuittyiehmgrlutrehyyayetzsye" + "lakehouseName": "qfoytihxoyyjaahusvowtq", + "workspaceName": "gmjprookmtn" }, "oneLakePathType": "Files", "host": "https://.fabric.microsoft.com", "batching": { - "latencySeconds": 1627, - "maxMessages": 5981 + "latencySeconds": 3671, + "maxMessages": 9197 } }, "kafkaSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "saslSettings": { "saslType": "Plain", - "secretRef": "amqvjdyyrsdcacmuaqmdqd" + "secretRef": "fdcafkvkboryqo" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "consumerGroupId": "vzklnujksvcmxbfopjasopy", - "host": "evniscabwmrjjtf", + "consumerGroupId": "rhpyfaonnvaet", + "host": "sgwvjttjodvetzsozbcrcwcnvl", "batching": { "mode": "Enabled", - "latencyMs": 462, - "maxBytes": 9139, - "maxMessages": 598 + "latencyMs": 5503, + "maxBytes": 3103, + "maxMessages": 8941 }, "copyMqttProperties": "Enabled", "compression": "None", @@ -110,65 +110,65 @@ "partitionStrategy": "Default", "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "localStorageSettings": { - "persistentVolumeClaimRef": "vrjwofvnydxcrtcxubnwrf" + "persistentVolumeClaimRef": "ujvhsehlmfdaod" }, "mqttSettings": { "authentication": { "method": "SystemAssignedManagedIdentity", "systemAssignedManagedIdentitySettings": { - "audience": "upzzwbbewitcscxglxzihyd" + "audience": "jtuzyam" }, "userAssignedManagedIdentitySettings": { "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2", - "scope": "wuwaunarfgqtvwjoiplujl", + "scope": "bcjgqpxtokpe", "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec" }, "serviceAccountTokenSettings": { - "audience": "pywuicgqzhwqyih" + "audience": "cpmztzrsxynusrpptbklxdwaokfma" }, "x509Settings": { - "secretRef": "svsoopmutfqqhxnrmqmnvxcuklif" + "secretRef": "lrjspzozbrsrkwpkkxdse" } }, - "clientIdPrefix": "qdiywebioiydzvlawsqqyx", - "host": "zrzh", + "clientIdPrefix": "yzerrpxnjidfwoozehbmacht", + "host": "x", "protocol": "Mqtt", "keepAliveSeconds": 0, "retain": "Keep", "maxInflightMessages": 0, - "qos": 0, + "qos": 1, "sessionExpirySeconds": 0, "tls": { "mode": "Enabled", - "trustedCaCertificateConfigMapRef": "bpeyirwwaenaysks" + "trustedCaCertificateConfigMapRef": "nxrumbgoo" }, "cloudEventMapping": "PassThrough" }, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowEndpoints/resource-name123", - "name": "yrnljeyw", - "type": "nhtjvccvwmuonzblpupdaf", + "name": "uwxsuldqvq", + "type": "efivorgtksbxdb", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/aaeblb" + "nextLink": "https://microsoft.com/af" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json index 124ad8df0375..7be93ab90bef 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -12,24 +12,24 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 } }, - "instanceCount": 8 + "instanceCount": 2 }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -41,37 +41,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 } }, - "instanceCount": 8, + "instanceCount": 2, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ckfcqxn", - "type": "fnblyebsknda", + "name": "hul", + "type": "nvwdxsw", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -84,37 +84,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 } }, - "instanceCount": 8, + "instanceCount": 2, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ckfcqxn", - "type": "fnblyebsknda", + "name": "hul", + "type": "nvwdxsw", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json index 1ea22d54a0cc..b701bde33962 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json index 2c723cbeedb0..3e752b73c9c8 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -15,37 +15,37 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 } }, - "instanceCount": 8, + "instanceCount": 2, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ckfcqxn", - "type": "fnblyebsknda", + "name": "hul", + "type": "nvwdxsw", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json index 45d111847b1f..78ca14319e1b 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/DataflowProfile_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "DataflowProfile_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -16,41 +16,41 @@ "diagnostics": { "logs": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "nyafplzt", - "intervalSeconds": 283, - "level": "qycbzlsootgudrdff" + "otlpGrpcEndpoint": "dpbkzdvykfalghibbgivylh", + "intervalSeconds": 270, + "level": "nzqxerdxfrp" }, - "level": "rcxdvppsikwzdynrfbhatgdyj" + "level": "hgxwrgjhrqpbvjdhbscpfttf" }, "metrics": { "opentelemetryExportConfig": { - "otlpGrpcEndpoint": "azvswwc", - "intervalSeconds": 178 + "otlpGrpcEndpoint": "n", + "intervalSeconds": 155 }, - "prometheusPort": 9044 + "prometheusPort": 9852 } }, - "instanceCount": 8, + "instanceCount": 2, "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123", - "name": "ckfcqxn", - "type": "fnblyebsknda", + "name": "hul", + "type": "nvwdxsw", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/ah" + "nextLink": "https://microsoft.com/ao" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json index 675931816d15..312caa486dc7 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -14,28 +14,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "uole", + "name": "kgeroeffhmxxvvq", "sourceSettings": { - "endpointRef": "eoeedatyjro", - "assetRef": "htuzxsnhqlii", + "endpointRef": "zzzefamssb", + "assetRef": "idvrzftcxeccqokxizaayv", "serializationFormat": "Json", - "schemaRef": "okclmamfunafjeslt", + "schemaRef": "e", "dataSources": [ - "kjiuwdcklmsrcrcgohxtsptl" + "hhgwhnoobvdxikesnjdrlkv" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "vzvxcefhbecejrrvg", + "schemaRef": "rqmgskpetfacuawgbs", "datasets": [ { - "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", + "key": "cmfyzoeykzndaurfkvszzdckugqpppucogtelzchrafysfotobdzcshd", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", + "schemaRef": "oh", "inputs": [ - "mzpv" + "xorlimkebqys" ], - "expression": "ciikrhquzvup" + "expression": "lcthkcfrwqvljyndihagkaskis" } ], "filter": [ @@ -43,9 +43,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "leiudbasupbvsdmblpnxdva" + "mlrkiixjdnwaygjvtroidht" ], - "expression": "mnzmagcibqolghefk" + "expression": "vxrj" } ], "map": [ @@ -53,22 +53,22 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lvqzqtnawqnj" + "nqvphxgegchcirl" ], - "expression": "aqtbsiqzahqwlyxmnmpqwp", - "output": "edwqaukhlwsylutqmoxfp" + "expression": "tsdubjissmb", + "output": "qtlooqxmjlvbvomzqo" } ] }, "destinationSettings": { - "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", - "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" + "endpointRef": "saijwuzyaydhnfskthse", + "dataDestination": "jadrbxxkechcca" } } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" } } @@ -81,28 +81,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "uole", + "name": "kgeroeffhmxxvvq", "sourceSettings": { - "endpointRef": "eoeedatyjro", - "assetRef": "htuzxsnhqlii", + "endpointRef": "zzzefamssb", + "assetRef": "idvrzftcxeccqokxizaayv", "serializationFormat": "Json", - "schemaRef": "okclmamfunafjeslt", + "schemaRef": "e", "dataSources": [ - "kjiuwdcklmsrcrcgohxtsptl" + "hhgwhnoobvdxikesnjdrlkv" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "vzvxcefhbecejrrvg", + "schemaRef": "rqmgskpetfacuawgbs", "datasets": [ { - "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", + "key": "cmfyzoeykzndaurfkvszzdckugqpppucogtelzchrafysfotobdzcshd", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", + "schemaRef": "oh", "inputs": [ - "mzpv" + "xorlimkebqys" ], - "expression": "ciikrhquzvup" + "expression": "lcthkcfrwqvljyndihagkaskis" } ], "filter": [ @@ -110,9 +110,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "leiudbasupbvsdmblpnxdva" + "mlrkiixjdnwaygjvtroidht" ], - "expression": "mnzmagcibqolghefk" + "expression": "vxrj" } ], "map": [ @@ -120,35 +120,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lvqzqtnawqnj" + "nqvphxgegchcirl" ], - "expression": "aqtbsiqzahqwlyxmnmpqwp", - "output": "edwqaukhlwsylutqmoxfp" + "expression": "tsdubjissmb", + "output": "qtlooqxmjlvbvomzqo" } ] }, "destinationSettings": { - "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", - "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" + "endpointRef": "saijwuzyaydhnfskthse", + "dataDestination": "jadrbxxkechcca" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "udpvbyiefjyzswcdpxavyqgnxwk", - "type": "vkgszhkjsdljeslkyleib", + "name": "rsjnzenvufqrmvzvzvuveugso", + "type": "paxekun", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -162,28 +162,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "uole", + "name": "kgeroeffhmxxvvq", "sourceSettings": { - "endpointRef": "eoeedatyjro", - "assetRef": "htuzxsnhqlii", + "endpointRef": "zzzefamssb", + "assetRef": "idvrzftcxeccqokxizaayv", "serializationFormat": "Json", - "schemaRef": "okclmamfunafjeslt", + "schemaRef": "e", "dataSources": [ - "kjiuwdcklmsrcrcgohxtsptl" + "hhgwhnoobvdxikesnjdrlkv" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "vzvxcefhbecejrrvg", + "schemaRef": "rqmgskpetfacuawgbs", "datasets": [ { - "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", + "key": "cmfyzoeykzndaurfkvszzdckugqpppucogtelzchrafysfotobdzcshd", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", + "schemaRef": "oh", "inputs": [ - "mzpv" + "xorlimkebqys" ], - "expression": "ciikrhquzvup" + "expression": "lcthkcfrwqvljyndihagkaskis" } ], "filter": [ @@ -191,9 +191,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "leiudbasupbvsdmblpnxdva" + "mlrkiixjdnwaygjvtroidht" ], - "expression": "mnzmagcibqolghefk" + "expression": "vxrj" } ], "map": [ @@ -201,35 +201,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lvqzqtnawqnj" + "nqvphxgegchcirl" ], - "expression": "aqtbsiqzahqwlyxmnmpqwp", - "output": "edwqaukhlwsylutqmoxfp" + "expression": "tsdubjissmb", + "output": "qtlooqxmjlvbvomzqo" } ] }, "destinationSettings": { - "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", - "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" + "endpointRef": "saijwuzyaydhnfskthse", + "dataDestination": "jadrbxxkechcca" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "udpvbyiefjyzswcdpxavyqgnxwk", - "type": "vkgszhkjsdljeslkyleib", + "name": "rsjnzenvufqrmvzvzvuveugso", + "type": "paxekun", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json index ef2abe6300f6..fe5df511b7ee 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json index 5520277b1774..be545b03b556 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123", @@ -17,28 +17,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "uole", + "name": "kgeroeffhmxxvvq", "sourceSettings": { - "endpointRef": "eoeedatyjro", - "assetRef": "htuzxsnhqlii", + "endpointRef": "zzzefamssb", + "assetRef": "idvrzftcxeccqokxizaayv", "serializationFormat": "Json", - "schemaRef": "okclmamfunafjeslt", + "schemaRef": "e", "dataSources": [ - "kjiuwdcklmsrcrcgohxtsptl" + "hhgwhnoobvdxikesnjdrlkv" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "vzvxcefhbecejrrvg", + "schemaRef": "rqmgskpetfacuawgbs", "datasets": [ { - "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", + "key": "cmfyzoeykzndaurfkvszzdckugqpppucogtelzchrafysfotobdzcshd", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", + "schemaRef": "oh", "inputs": [ - "mzpv" + "xorlimkebqys" ], - "expression": "ciikrhquzvup" + "expression": "lcthkcfrwqvljyndihagkaskis" } ], "filter": [ @@ -46,9 +46,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "leiudbasupbvsdmblpnxdva" + "mlrkiixjdnwaygjvtroidht" ], - "expression": "mnzmagcibqolghefk" + "expression": "vxrj" } ], "map": [ @@ -56,35 +56,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lvqzqtnawqnj" + "nqvphxgegchcirl" ], - "expression": "aqtbsiqzahqwlyxmnmpqwp", - "output": "edwqaukhlwsylutqmoxfp" + "expression": "tsdubjissmb", + "output": "qtlooqxmjlvbvomzqo" } ] }, "destinationSettings": { - "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", - "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" + "endpointRef": "saijwuzyaydhnfskthse", + "dataDestination": "jadrbxxkechcca" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "udpvbyiefjyzswcdpxavyqgnxwk", - "type": "vkgszhkjsdljeslkyleib", + "name": "rsjnzenvufqrmvzvzvuveugso", + "type": "paxekun", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json index 02cd07624b83..b38855dd0314 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Dataflow_ListByProfileResource_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Dataflow_ListByProfileResource", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "dataflowProfileName": "resource-name123" @@ -18,28 +18,28 @@ "operations": [ { "operationType": "DataflowOperation", - "name": "uole", + "name": "kgeroeffhmxxvvq", "sourceSettings": { - "endpointRef": "eoeedatyjro", - "assetRef": "htuzxsnhqlii", + "endpointRef": "zzzefamssb", + "assetRef": "idvrzftcxeccqokxizaayv", "serializationFormat": "Json", - "schemaRef": "okclmamfunafjeslt", + "schemaRef": "e", "dataSources": [ - "kjiuwdcklmsrcrcgohxtsptl" + "hhgwhnoobvdxikesnjdrlkv" ] }, "builtInTransformationSettings": { "serializationFormat": "Delta", - "schemaRef": "vzvxcefhbecejrrvg", + "schemaRef": "rqmgskpetfacuawgbs", "datasets": [ { - "key": "ounuthvocjufgjbmsoxhwntdtyngidcxdmr", + "key": "cmfyzoeykzndaurfkvszzdckugqpppucogtelzchrafysfotobdzcshd", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", - "schemaRef": "mjsgsouihavsvqgyboyuigbtolm", + "schemaRef": "oh", "inputs": [ - "mzpv" + "xorlimkebqys" ], - "expression": "ciikrhquzvup" + "expression": "lcthkcfrwqvljyndihagkaskis" } ], "filter": [ @@ -47,9 +47,9 @@ "type": "Filter", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "leiudbasupbvsdmblpnxdva" + "mlrkiixjdnwaygjvtroidht" ], - "expression": "mnzmagcibqolghefk" + "expression": "vxrj" } ], "map": [ @@ -57,35 +57,35 @@ "type": "NewProperties", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "inputs": [ - "lvqzqtnawqnj" + "nqvphxgegchcirl" ], - "expression": "aqtbsiqzahqwlyxmnmpqwp", - "output": "edwqaukhlwsylutqmoxfp" + "expression": "tsdubjissmb", + "output": "qtlooqxmjlvbvomzqo" } ] }, "destinationSettings": { - "endpointRef": "ymajfybinapzxuhcuhplmmmzamik", - "dataDestination": "wfheuthbyrytlnsnhlhppojpsvvadl" + "endpointRef": "saijwuzyaydhnfskthse", + "dataDestination": "jadrbxxkechcca" } } ], "provisioningState": "Succeeded" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123/dataflowProfiles/resource-name123/dataflows/resource-name123", - "name": "udpvbyiefjyzswcdpxavyqgnxwk", - "type": "vkgszhkjsdljeslkyleib", + "name": "rsjnzenvufqrmvzvzvuveugso", + "type": "paxekun", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json index 17f998778957..a7e52547c45d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_CreateOrUpdate_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_CreateOrUpdate", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "resource": { @@ -12,19 +12,19 @@ "schemaRegistryNamespace": "resource-name123" }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { "type": "None", "userAssignedIdentities": { - "key4294": {} + "key9448": {} } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar" + "location": "ydoysjyujygllpeqttistshqdcb" } }, "responses": { @@ -33,17 +33,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -51,26 +51,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } }, @@ -82,17 +82,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -100,26 +100,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json index fa39ea4b103f..1cb569ce4dc7 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Delete_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Delete", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json index cf715549ca12..f9a9e560811f 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Get_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_Get", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123" }, @@ -13,17 +13,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -31,26 +31,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json index 276ad8cd4d45..40dbe0cf324d 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListByResourceGroup_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListByResourceGroup", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations" }, "responses": { @@ -14,17 +14,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -32,30 +32,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/agidhjvl" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json index fc090fc9184d..8014acdb50d8 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_ListBySubscription_MaximumSet_Gen.json @@ -3,7 +3,7 @@ "operationId": "Instance_ListBySubscription", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2" + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352" }, "responses": { "200": { @@ -13,17 +13,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -31,30 +31,30 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } ], - "nextLink": "https://microsoft.com/agidhjvl" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json index 33b4797f6ab7..78f885760c14 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Instance_Update_MaximumSet_Gen.json @@ -3,12 +3,12 @@ "operationId": "Instance_Update", "parameters": { "api-version": "2024-08-15-preview", - "subscriptionId": "9BFE383A-D9DE-4598-99CC-DD95D8AB9AA2", + "subscriptionId": "81A12961-96BA-45F5-9C08-E9579C3D8352", "resourceGroupName": "rgiotoperations", "instanceName": "resource-name123", "properties": { "tags": { - "key9634": "lk" + "key3801": "rvtkxvfwpijgeugcxuzwszozxftt" } } }, @@ -18,17 +18,17 @@ "properties": { "description": "Lorem ipsum odor amet, consectetuer adipiscing elit.", "provisioningState": "Succeeded", - "version": "ususmcw", + "version": "yuatcrcaocorsribiqfnfhjxjgo", "schemaRegistryNamespace": "resource-name123", "serviceAccounts": [ { - "name": "agyjpfmqrshdikyybmjwlv", - "namespace": "loltfmbk" + "name": "wnxypxnutamatbaguxsr", + "namespace": "jjuszgxrqcofgjhkmhcs" } ] }, "extendedLocation": { - "name": "rqecgknkzdgdhvmskzoe", + "name": "uc", "type": "CustomLocation" }, "identity": { @@ -36,26 +36,26 @@ "tenantId": "ed060aa2-71ff-4d3f-99c4-a9138356fdec", "type": "None", "userAssignedIdentities": { - "key4294": { + "key9448": { "principalId": "4a6e4195-75b8-4685-aa0c-0b5704779327", "clientId": "fb90f267-8872-431a-a76a-a1cec5d3c4d2" } } }, "tags": { - "key4491": "vxcfu" + "key2631": "gylmlnmqolneqlmlzuodfvmgcuxq" }, - "location": "zofxlkvgdssjqujsqdomtrar", + "location": "ydoysjyujygllpeqttistshqdcb", "id": "/subscriptions/0000000-0000-0000-0000-000000000000/resourceGroups/resourceGroup123/providers/Microsoft.IoTOperations/instances/resource-name123", - "name": "yhhmr", - "type": "qfwrgcrmzkfvfhqp", + "name": "eqrihcohr", + "type": "igdvpwoyndzfequdbfbqvwhhyrp", "systemData": { - "createdBy": "bgljasywvqcsk", + "createdBy": "efhwt", "createdByType": "User", - "createdAt": "2024-08-08T22:32:29.052Z", - "lastModifiedBy": "lbrqzefrhphebzwjt", + "createdAt": "2024-08-08T22:35:49.758Z", + "lastModifiedBy": "hepjjsqpcdy", "lastModifiedByType": "User", - "lastModifiedAt": "2024-08-08T22:32:29.052Z" + "lastModifiedAt": "2024-08-08T22:35:49.758Z" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json index 67548679c822..43cdda131a39 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/examples/Operations_List_MaximumSet_Gen.json @@ -9,19 +9,19 @@ "body": { "value": [ { - "name": "xoun", + "name": "eqovorzxnhwoqgxaduiadiuzqs", "isDataAction": true, "display": { - "provider": "xukdpfxtyhcdphnwwchmlqh", - "resource": "ujadshbcfzvdbmfkcfqxzywzro", - "operation": "rewimbbdfcvhh", + "provider": "eiztguxipfbnhqdv", + "resource": "tbt", + "operation": "drpmwofxppbaooelb", "description": "Lorem ipsum odor amet, consectetuer adipiscing elit." }, "origin": "user", "actionType": "Internal" } ], - "nextLink": "https://microsoft.com/atksei" + "nextLink": "https://microsoft.com/a" } } } diff --git a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json index 11f83f358875..8cc0bfd5c536 100644 --- a/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json +++ b/specification/iotoperations/resource-manager/Microsoft.IoTOperations/preview/2024-08-15-preview/iotoperations.json @@ -6012,6 +6012,7 @@ }, "ServiceAccountProperties": { "type": "object", + "description": "The properties of a Service Account.", "properties": { "name": { "type": "string", From e568fa7b26d519a23807386ce1f377f0c93cc4d5 Mon Sep 17 00:00:00 2001 From: henrymorales Date: Thu, 8 Aug 2024 15:37:33 -0700 Subject: [PATCH 16/16] tsv --- .../IoTOperations.Management/models/base.tsp | 2 +- .../models/dataflows/dataflowEndpoints.tsp | 38 ++++++++++--------- .../models/instance.tsp | 2 +- 3 files changed, 23 insertions(+), 19 deletions(-) diff --git a/specification/iotoperations/IoTOperations.Management/models/base.tsp b/specification/iotoperations/IoTOperations.Management/models/base.tsp index fff2cc67d55e..f911c28279d6 100644 --- a/specification/iotoperations/IoTOperations.Management/models/base.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/base.tsp @@ -233,4 +233,4 @@ union x509CertificateMethod { @doc("x509Certificate Option") x509Certificate: x509Certificate, -} \ No newline at end of file +} diff --git a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp index 2c2356311dff..2de255423d12 100644 --- a/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/dataflows/dataflowEndpoints.tsp @@ -108,9 +108,9 @@ model DataflowEndpointDataExplorerAuthentication { } @doc("DataflowEndpoint Data Explorer Authentication Method properties") -union DataExplorerAuthMethod { - ManagedIdentityMethod -}; +union DataExplorerAuthMethod { + ManagedIdentityMethod, +} @doc("Azure Data Lake endpoint properties") model DataflowEndpointDataLakeStorage { @@ -139,10 +139,10 @@ model DataflowEndpointDataLakeStorageAuthentication { #suppress "@azure-tools/typespec-autorest/union-unsupported" @doc("DataflowEndpoint Data Lake Storage Authentication Method properties") -union DataLakeStorageAuthMethod { +union DataLakeStorageAuthMethod { ManagedIdentityMethod, - AccessTokeMethod -}; + AccessTokeMethod, +} @doc("Microsoft Fabric endpoint properties") model DataflowEndpointFabricOneLake { @@ -173,9 +173,9 @@ model DataFlowEndpointFabricOneLakeAuthentication { #suppress "@azure-tools/typespec-autorest/union-unsupported" @doc("DataflowEndpoint Fabric One Lake Authentication Method properties") -union FabricOneLakeAuthMethod { - ManagedIdentityMethod -}; +union FabricOneLakeAuthMethod { + ManagedIdentityMethod, +} @doc("Microsoft Fabric endpoint Names properties") model DataflowEndpointFabricOneLakeNames { @@ -200,7 +200,9 @@ union DataflowEndpointFabricPathType { @doc("Kafka endpoint properties") model DataflowEndpointKafka { @doc("Authentication configuration. NOTE - only authentication property is allowed per entry.") - authentication?: DataFlowEndpointKafkaAuthentication = #{ method: KafkaAuthMethod.Anonymous }; + authentication?: DataFlowEndpointKafkaAuthentication = #{ + method: KafkaAuthMethod.Anonymous, + }; @doc("Consumer group ID.") consumerGroupId?: string; @@ -245,14 +247,14 @@ model DataFlowEndpointKafkaAuthentication { } @doc("DataflowEndpoint Kafka Authentication Method properties") -union KafkaAuthMethod { +union KafkaAuthMethod { ManagedIdentityMethod, SaslMethod, x509CertificateMethod, @doc("Anonymous Option.") - Anonymous: "Anonymous"; -}; + Anonymous: "Anonymous", +} @doc("Kafka endpoint Batching properties") model DataflowEndpointKafkaBatching { @@ -332,7 +334,9 @@ model DataflowEndpointLocalStorage { @doc("Broker endpoint properties") model DataflowEndpointMqtt { @doc("authentication properties. DEFAULT: kubernetes.audience=aio-mq-internal. NOTE - Enum field only property is allowed") - authentication?: DataflowEndpointMqttAuthentication = #{ method: MqttAuthMethod.Anonymous }; + authentication?: DataflowEndpointMqttAuthentication = #{ + method: MqttAuthMethod.Anonymous, + }; @doc("Client ID prefix. Client ID generated by the dataflow is -TBD. Optional; no prefix if omitted.") clientIdPrefix?: string; @@ -385,14 +389,14 @@ model DataflowEndpointMqttAuthentication { } @doc("DataflowEndpoint Mqtt Authentication Method properties") -union MqttAuthMethod { +union MqttAuthMethod { ManagedIdentityMethod, SaslMethod, x509CertificateMethod, @doc("Anonymous Option.") - Anonymous: "Anonymous"; -}; + Anonymous: "Anonymous", +} @doc("Broker Retain types") union MqttRetainType { diff --git a/specification/iotoperations/IoTOperations.Management/models/instance.tsp b/specification/iotoperations/IoTOperations.Management/models/instance.tsp index 2ad55497554a..9b9449d99e7e 100644 --- a/specification/iotoperations/IoTOperations.Management/models/instance.tsp +++ b/specification/iotoperations/IoTOperations.Management/models/instance.tsp @@ -51,7 +51,7 @@ model InstanceProperties { @doc("The service accounts to be used for federated credentials.") @visibility("read") - @OpenAPI.extension("x-ms-identifiers",[]) + @OpenAPI.extension("x-ms-identifiers", []) serviceAccounts?: ServiceAccountProperties[]; }