Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
cd6487b
added lva sdk package
hivyas Nov 17, 2020
9b01c04
Merge remote-tracking branch 'upstream/master'
hivyas Dec 11, 2020
9297d4f
updating ci file
hivyas Dec 11, 2020
40a1827
Merge remote-tracking branch 'upstream/master'
hivyas Dec 15, 2020
9e71cfe
Merge remote-tracking branch 'upstream/master'
hivyas Jan 6, 2021
dbeed32
Merge remote-tracking branch 'upstream/master'
hivyas Jan 8, 2021
e667530
fixing confict\
hivyas Mar 24, 2021
f102840
deleteing folder
hivyas Mar 24, 2021
d9d30e3
Merge remote-tracking branch 'upstream/master'
hivyas Mar 24, 2021
75e7827
regenerated and renamed to pipeline terminology
hivyas Mar 25, 2021
db5306e
changing package name
hivyas Apr 15, 2021
8c372e5
changed package name
hivyas Apr 16, 2021
bd53b5a
changing name
hivyas Apr 27, 2021
82e6962
Merge branch 'master' into lvaSdkUpdate
hivyas Apr 29, 2021
db59141
restoring old lva sdk
hivyas Apr 29, 2021
5edd22e
Merge branch 'lvaSdkUpdate' of https://github.com/hivyas/azure-sdk-fo…
hivyas Apr 29, 2021
96a47bb
restored old lva sdk autorest.md
hivyas Apr 29, 2021
e6a89f5
ignoring nspkg readme
hivyas Apr 29, 2021
6a85c74
removing nspkg from dev_requirements
hivyas Apr 29, 2021
dba64bc
rebasing
hivyas Apr 29, 2021
eeff79b
rebasing
hivyas Apr 29, 2021
200bc69
adding back deleted file
hivyas Apr 29, 2021
7dc0b69
corectin nspkg
hivyas Apr 29, 2021
d0c54e7
updating readme
hivyas May 7, 2021
ea6f2de
fixing broken link
hivyas May 7, 2021
d6ed32c
removing media-nspkg from ci file
hivyas May 7, 2021
952dc26
removing old terminology
hivyas May 11, 2021
73d6ac9
generated path is 3 parts
hivyas May 12, 2021
c8831a7
rebasing with master
hivyas May 13, 2021
b7c18bd
updating namespace name
hivyas May 13, 2021
62b94e8
reverting old sdk folder'
hivyas May 13, 2021
8c9dc34
removing video-nspkg
hivyas May 13, 2021
45fa708
fixing linting issue
hivyas May 13, 2021
f222b0d
addressing pr comments
hivyas May 13, 2021
6610202
pr comments
hivyas May 13, 2021
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
Next Next commit
added lva sdk package
  • Loading branch information
hivyas committed Nov 17, 2020
commit cd6487b96f14b329906f440ee1cdf30549615b39
8 changes: 8 additions & 0 deletions sdk/media/azure-media-lva-edge/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

# Release History

-------------------

## 0.0.1 (Unreleased)

- Training day!
4 changes: 4 additions & 0 deletions sdk/media/azure-media-lva-edge/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
recursive-include tests *.py
include *.md
include azure/__init__.py
recursive-include samples *.py *.md
38 changes: 38 additions & 0 deletions sdk/media/azure-media-lva-edge/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# Azure App Configuration client library for Python SDK Training

Azure App Configuration is a managed service that helps developers centralize their application configurations simply and securely.

Modern programs, especially programs running in a cloud, generally have many components that are distributed in nature. Spreading configuration settings across these components can lead to hard-to-troubleshoot errors during an application deployment. Use App Configuration to securely store all the settings for your application in one place.

Use the client library for App Configuration to create and manage application configuration settings.

## Prerequisites

* Python 2.7, or 3.5 or later is required to use this package.
* You need an [Azure subscription][azure_sub], and a [Configuration Store][configuration_store] to use this package.

To create a Configuration Store, you can use the Azure Portal or [Azure CLI][azure_cli].

After that, create the Configuration Store:

```Powershell
az appconfig create --name <config-store-name> --resource-group <resource-group-name> --location eastus
```


## Contributing

This project welcomes contributions and suggestions. Most contributions require
you to agree to a Contributor License Agreement (CLA) declaring that you have
the right to, and actually do, grant us the rights to use your contribution.
For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether
you need to provide a CLA and decorate the PR appropriately (e.g., label,
comment). Simply follow the instructions provided by the bot. You will only
need to do this once across all repos using our CLA.

This project has adopted the
[Microsoft Open Source Code of Conduct][code_of_conduct]. For more information,
see the Code of Conduct FAQ or contact [email protected] with any
additional questions or comments.
7 changes: 7 additions & 0 deletions sdk/media/azure-media-lva-edge/azure/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# --------------------------------------------------------------------------

__path__ = __import__("pkgutil").extend_path(__path__, __name__)
20 changes: 20 additions & 0 deletions sdk/media/azure-media-lva-edge/azure/media/lva/edge/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore
from azure.media.lva.edge._generated.models import MediaGraphTopologySetRequestBody, MediaGraphTopologySetRequest, MediaGraphInstanceSetRequest, MediaGraphInstanceSetRequestBody

def _OverrideTopologySetRequestSerialize(self):
graph_body = MediaGraphTopologySetRequestBody(name=self.graph.name)
graph_body.system_data = self.graph.system_data
graph_body.properties = self.graph.properties

return graph_body.serialize()

MediaGraphTopologySetRequest.serialize = _OverrideTopologySetRequestSerialize

def _OverrideInstanceSetRequestSerialize(self):
graph_body = MediaGraphInstanceSetRequestBody(name=self.instance.name)
graph_body.system_data = self.instance.system_data
graph_body.properties = self.instance.properties

return graph_body.serialize()

MediaGraphInstanceSetRequest.serialize = _OverrideInstanceSetRequestSerialize
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "1.0"
Original file line number Diff line number Diff line change
@@ -0,0 +1,199 @@
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

try:
from ._models_py3 import ItemNonSetRequestBase
from ._models_py3 import MediaGraphAssetSink
from ._models_py3 import MediaGraphCertificateSource
from ._models_py3 import MediaGraphCognitiveServicesVisionExtension
from ._models_py3 import MediaGraphCredentials
from ._models_py3 import MediaGraphEndpoint
from ._models_py3 import MediaGraphExtensionProcessorBase
from ._models_py3 import MediaGraphFileSink
from ._models_py3 import MediaGraphFrameRateFilterProcessor
from ._models_py3 import MediaGraphGrpcExtension
from ._models_py3 import MediaGraphGrpcExtensionDataTransfer
from ._models_py3 import MediaGraphHttpExtension
from ._models_py3 import MediaGraphHttpHeaderCredentials
from ._models_py3 import MediaGraphImage
from ._models_py3 import MediaGraphImageFormat
from ._models_py3 import MediaGraphImageFormatEncoded
from ._models_py3 import MediaGraphImageFormatRaw
from ._models_py3 import MediaGraphImageScale
from ._models_py3 import MediaGraphInstance
from ._models_py3 import MediaGraphInstanceActivateRequest
from ._models_py3 import MediaGraphInstanceCollection
from ._models_py3 import MediaGraphInstanceDeActivateRequest
from ._models_py3 import MediaGraphInstanceDeleteRequest
from ._models_py3 import MediaGraphInstanceGetRequest
from ._models_py3 import MediaGraphInstanceListRequest
from ._models_py3 import MediaGraphInstanceProperties
from ._models_py3 import MediaGraphInstanceSetRequest
from ._models_py3 import MediaGraphInstanceSetRequestBody
from ._models_py3 import MediaGraphIoTHubMessageSink
from ._models_py3 import MediaGraphIoTHubMessageSource
from ._models_py3 import MediaGraphMotionDetectionProcessor
from ._models_py3 import MediaGraphNodeInput
from ._models_py3 import MediaGraphOutputSelector
from ._models_py3 import MediaGraphParameterDeclaration
from ._models_py3 import MediaGraphParameterDefinition
from ._models_py3 import MediaGraphPemCertificateList
from ._models_py3 import MediaGraphProcessor
from ._models_py3 import MediaGraphRtspSource
from ._models_py3 import MediaGraphSignalGateProcessor
from ._models_py3 import MediaGraphSink
from ._models_py3 import MediaGraphSource
from ._models_py3 import MediaGraphSystemData
from ._models_py3 import MediaGraphTlsEndpoint
from ._models_py3 import MediaGraphTlsValidationOptions
from ._models_py3 import MediaGraphTopology
from ._models_py3 import MediaGraphTopologyCollection
from ._models_py3 import MediaGraphTopologyDeleteRequest
from ._models_py3 import MediaGraphTopologyGetRequest
from ._models_py3 import MediaGraphTopologyListRequest
from ._models_py3 import MediaGraphTopologyProperties
from ._models_py3 import MediaGraphTopologySetRequest
from ._models_py3 import MediaGraphTopologySetRequestBody
from ._models_py3 import MediaGraphUnsecuredEndpoint
from ._models_py3 import MediaGraphUsernamePasswordCredentials
from ._models_py3 import OperationBase
except (SyntaxError, ImportError):
from ._models import ItemNonSetRequestBase # type: ignore
from ._models import MediaGraphAssetSink # type: ignore
from ._models import MediaGraphCertificateSource # type: ignore
from ._models import MediaGraphCognitiveServicesVisionExtension # type: ignore
from ._models import MediaGraphCredentials # type: ignore
from ._models import MediaGraphEndpoint # type: ignore
from ._models import MediaGraphExtensionProcessorBase # type: ignore
from ._models import MediaGraphFileSink # type: ignore
from ._models import MediaGraphFrameRateFilterProcessor # type: ignore
from ._models import MediaGraphGrpcExtension # type: ignore
from ._models import MediaGraphGrpcExtensionDataTransfer # type: ignore
from ._models import MediaGraphHttpExtension # type: ignore
from ._models import MediaGraphHttpHeaderCredentials # type: ignore
from ._models import MediaGraphImage # type: ignore
from ._models import MediaGraphImageFormat # type: ignore
from ._models import MediaGraphImageFormatEncoded # type: ignore
from ._models import MediaGraphImageFormatRaw # type: ignore
from ._models import MediaGraphImageScale # type: ignore
from ._models import MediaGraphInstance # type: ignore
from ._models import MediaGraphInstanceActivateRequest # type: ignore
from ._models import MediaGraphInstanceCollection # type: ignore
from ._models import MediaGraphInstanceDeActivateRequest # type: ignore
from ._models import MediaGraphInstanceDeleteRequest # type: ignore
from ._models import MediaGraphInstanceGetRequest # type: ignore
from ._models import MediaGraphInstanceListRequest # type: ignore
from ._models import MediaGraphInstanceProperties # type: ignore
from ._models import MediaGraphInstanceSetRequest # type: ignore
from ._models import MediaGraphInstanceSetRequestBody # type: ignore
from ._models import MediaGraphIoTHubMessageSink # type: ignore
from ._models import MediaGraphIoTHubMessageSource # type: ignore
from ._models import MediaGraphMotionDetectionProcessor # type: ignore
from ._models import MediaGraphNodeInput # type: ignore
from ._models import MediaGraphOutputSelector # type: ignore
from ._models import MediaGraphParameterDeclaration # type: ignore
from ._models import MediaGraphParameterDefinition # type: ignore
from ._models import MediaGraphPemCertificateList # type: ignore
from ._models import MediaGraphProcessor # type: ignore
from ._models import MediaGraphRtspSource # type: ignore
from ._models import MediaGraphSignalGateProcessor # type: ignore
from ._models import MediaGraphSink # type: ignore
from ._models import MediaGraphSource # type: ignore
from ._models import MediaGraphSystemData # type: ignore
from ._models import MediaGraphTlsEndpoint # type: ignore
from ._models import MediaGraphTlsValidationOptions # type: ignore
from ._models import MediaGraphTopology # type: ignore
from ._models import MediaGraphTopologyCollection # type: ignore
from ._models import MediaGraphTopologyDeleteRequest # type: ignore
from ._models import MediaGraphTopologyGetRequest # type: ignore
from ._models import MediaGraphTopologyListRequest # type: ignore
from ._models import MediaGraphTopologyProperties # type: ignore
from ._models import MediaGraphTopologySetRequest # type: ignore
from ._models import MediaGraphTopologySetRequestBody # type: ignore
from ._models import MediaGraphUnsecuredEndpoint # type: ignore
from ._models import MediaGraphUsernamePasswordCredentials # type: ignore
from ._models import OperationBase # type: ignore

from ._definitionsfor_live_video_analyticson_io_tedge_enums import (
MediaGraphGrpcExtensionDataTransferMode,
MediaGraphImageEncodingFormat,
MediaGraphImageFormatRawPixelFormat,
MediaGraphImageScaleMode,
MediaGraphInstanceState,
MediaGraphMotionDetectionSensitivity,
MediaGraphOutputSelectorOperator,
MediaGraphParameterType,
MediaGraphRtspTransport,
)

__all__ = [
'ItemNonSetRequestBase',
'MediaGraphAssetSink',
'MediaGraphCertificateSource',
'MediaGraphCognitiveServicesVisionExtension',
'MediaGraphCredentials',
'MediaGraphEndpoint',
'MediaGraphExtensionProcessorBase',
'MediaGraphFileSink',
'MediaGraphFrameRateFilterProcessor',
'MediaGraphGrpcExtension',
'MediaGraphGrpcExtensionDataTransfer',
'MediaGraphHttpExtension',
'MediaGraphHttpHeaderCredentials',
'MediaGraphImage',
'MediaGraphImageFormat',
'MediaGraphImageFormatEncoded',
'MediaGraphImageFormatRaw',
'MediaGraphImageScale',
'MediaGraphInstance',
'MediaGraphInstanceActivateRequest',
'MediaGraphInstanceCollection',
'MediaGraphInstanceDeActivateRequest',
'MediaGraphInstanceDeleteRequest',
'MediaGraphInstanceGetRequest',
'MediaGraphInstanceListRequest',
'MediaGraphInstanceProperties',
'MediaGraphInstanceSetRequest',
'MediaGraphInstanceSetRequestBody',
'MediaGraphIoTHubMessageSink',
'MediaGraphIoTHubMessageSource',
'MediaGraphMotionDetectionProcessor',
'MediaGraphNodeInput',
'MediaGraphOutputSelector',
'MediaGraphParameterDeclaration',
'MediaGraphParameterDefinition',
'MediaGraphPemCertificateList',
'MediaGraphProcessor',
'MediaGraphRtspSource',
'MediaGraphSignalGateProcessor',
'MediaGraphSink',
'MediaGraphSource',
'MediaGraphSystemData',
'MediaGraphTlsEndpoint',
'MediaGraphTlsValidationOptions',
'MediaGraphTopology',
'MediaGraphTopologyCollection',
'MediaGraphTopologyDeleteRequest',
'MediaGraphTopologyGetRequest',
'MediaGraphTopologyListRequest',
'MediaGraphTopologyProperties',
'MediaGraphTopologySetRequest',
'MediaGraphTopologySetRequestBody',
'MediaGraphUnsecuredEndpoint',
'MediaGraphUsernamePasswordCredentials',
'OperationBase',
'MediaGraphGrpcExtensionDataTransferMode',
'MediaGraphImageEncodingFormat',
'MediaGraphImageFormatRawPixelFormat',
'MediaGraphImageScaleMode',
'MediaGraphInstanceState',
'MediaGraphMotionDetectionSensitivity',
'MediaGraphOutputSelectorOperator',
'MediaGraphParameterType',
'MediaGraphRtspTransport',
]
Loading