Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sdk/iotoperations/azure-mgmt-iotoperations/_meta.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"commit": "ab67c148ec716a0d0075770742d54468f128c72e",
"commit": "d7489550d8dca2126c7a653867261cdbe0e4ac61",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"typespec_src": "specification/iotoperations/IoTOperations.Management",
"@azure-tools/typespec-python": "0.37.0"
"@azure-tools/typespec-python": "0.37.3"
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "1.0.0"
VERSION = "1.0.0b1"
Original file line number Diff line number Diff line change
Expand Up @@ -1693,8 +1693,8 @@ class DataflowEndpointDataExplorer(_model_base.Model):
~azure.mgmt.iotoperations.models.DataflowEndpointDataExplorerAuthentication
:ivar database: Database name. Required.
:vartype database: str
:ivar host: Host of the Azure Data Explorer in the form of
:code:`<cluster>`.:code:`<region>`.kusto.windows.net . Required.
:ivar host: Host of the Azure Data Explorer in the form of :code:`<cluster>`.\\
:code:`<region>`.kusto.windows.net . Required.
:vartype host: str
:ivar batching: Azure Data Explorer endpoint batching configuration.
:vartype batching: ~azure.mgmt.iotoperations.models.BatchingConfiguration
Expand All @@ -1706,8 +1706,8 @@ class DataflowEndpointDataExplorer(_model_base.Model):
database: str = rest_field()
"""Database name. Required."""
host: str = rest_field()
"""Host of the Azure Data Explorer in the form of
:code:`<cluster>`.:code:`<region>`.kusto.windows.net . Required."""
"""Host of the Azure Data Explorer in the form of :code:`<cluster>`.\
:code:`<region>`.kusto.windows.net . Required."""
batching: Optional["_models.BatchingConfiguration"] = rest_field()
"""Azure Data Explorer endpoint batching configuration."""

Expand Down Expand Up @@ -1903,8 +1903,8 @@ class DataflowEndpointFabricOneLake(_model_base.Model):
or files. Required. Known values are: "Files" and "Tables".
:vartype one_lake_path_type: str or
~azure.mgmt.iotoperations.models.DataflowEndpointFabricPathType
:ivar host: Host of the Microsoft Fabric in the form of
https://:code:`<host>`.fabric.microsoft.com. Required.
:ivar host: Host of the Microsoft Fabric in the form of https://\\
:code:`<host>`.fabric.microsoft.com. Required.
:vartype host: str
:ivar batching: Batching configuration.
:vartype batching: ~azure.mgmt.iotoperations.models.BatchingConfiguration
Expand All @@ -1919,7 +1919,7 @@ class DataflowEndpointFabricOneLake(_model_base.Model):
"""Type of location of the data in the workspace. Can be either tables or files. Required. Known
values are: \"Files\" and \"Tables\"."""
host: str = rest_field()
"""Host of the Microsoft Fabric in the form of https://:code:`<host>`.fabric.microsoft.com.
"""Host of the Microsoft Fabric in the form of https://\ :code:`<host>`.fabric.microsoft.com.
Required."""
batching: Optional["_models.BatchingConfiguration"] = rest_field()
"""Batching configuration."""
Expand Down Expand Up @@ -2275,7 +2275,7 @@ class DataflowEndpointMqtt(_model_base.Model):
:ivar client_id_prefix: Client ID prefix. Client ID generated by the dataflow is
:code:`<prefix>`-TBD. Optional; no prefix if omitted.
:vartype client_id_prefix: str
:ivar host: Host of the Broker in the form of :code:`<hostname>`::code:`<port>`. Optional;
:ivar host: Host of the Broker in the form of :code:`<hostname>`:\\ :code:`<port>`. Optional;
connects to Broker if omitted.
:vartype host: str
:ivar protocol: Enable or disable websockets. Known values are: "Mqtt" and "WebSockets".
Expand Down Expand Up @@ -2307,7 +2307,7 @@ class DataflowEndpointMqtt(_model_base.Model):
"""Client ID prefix. Client ID generated by the dataflow is :code:`<prefix>`-TBD. Optional; no
prefix if omitted."""
host: Optional[str] = rest_field()
"""Host of the Broker in the form of :code:`<hostname>`::code:`<port>`. Optional; connects to
"""Host of the Broker in the form of :code:`<hostname>`:\ :code:`<port>`. Optional; connects to
Broker if omitted."""
protocol: Optional[Union[str, "_models.BrokerProtocolType"]] = rest_field()
"""Enable or disable websockets. Known values are: \"Mqtt\" and \"WebSockets\"."""
Expand Down Expand Up @@ -3566,21 +3566,21 @@ class Operation(_model_base.Model):
is_data_action: Optional[bool] = rest_field(name="isDataAction", visibility=["read"])
"""Whether the operation applies to data-plane. This is \"true\" for data-plane operations and
\"false\" for Azure Resource Manager/control-plane operations."""
display: Optional["_models.OperationDisplay"] = rest_field(visibility=["read"])
display: Optional["_models.OperationDisplay"] = rest_field()
"""Localized display information for this particular operation."""
origin: Optional[Union[str, "_models.Origin"]] = rest_field(visibility=["read"])
"""The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit
logs UX. Default value is \"user,system\". Known values are: \"user\", \"system\", and
\"user,system\"."""
action_type: Optional[Union[str, "_models.ActionType"]] = rest_field(name="actionType")
action_type: Optional[Union[str, "_models.ActionType"]] = rest_field(name="actionType", visibility=["read"])
"""Extensible enum. Indicates the action type. \"Internal\" refers to actions that are for
internal only APIs. \"Internal\""""

@overload
def __init__(
self,
*,
action_type: Optional[Union[str, "_models.ActionType"]] = None,
display: Optional["_models.OperationDisplay"] = None,
) -> None: ...

@overload
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
directory: specification/iotoperations/IoTOperations.Management
commit: ab67c148ec716a0d0075770742d54468f128c72e
commit: d7489550d8dca2126c7a653867261cdbe0e4ac61
repo: Azure/azure-rest-api-specs
additionalDirectories:
Loading