forked from Azure/azure-sdk-for-python
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CodeGen from PR 14533 in Azure/azure-rest-api-specs
Addpersonalizerv1point1swagger (Azure#14533) * added swagger and examples for personalizer v1.1 preview * moved folder * added new version to readme * prettier changes * fixed breaking changes * removed custom words * changed endpoint name * prettier * custom word * custom words * added apim-key to security Co-authored-by: Oren Michaely <[email protected]> Co-authored-by: Oren Michaely <[email protected]>
- Loading branch information
1 parent
bdaea28
commit f40f7f0
Showing
34 changed files
with
2,737 additions
and
868 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
sdk/cognitiveservices/azure-cognitiveservices-personalizer/MANIFEST.in
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
include _meta.json | ||
recursive-include tests *.py *.yaml | ||
include *.md | ||
include azure/__init__.py | ||
|
8 changes: 8 additions & 0 deletions
8
sdk/cognitiveservices/azure-cognitiveservices-personalizer/_meta.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"autorest": "V2", | ||
"use": "@microsoft.azure/autorest.python@~4.0.71", | ||
"commit": "161fef472946f8ceae7f843dd6bd45704f8226f1", | ||
"repository_url": "https://github.com/Azure/azure-rest-api-specs", | ||
"autorest_command": "autorest specification/cognitiveservices/data-plane/Personalizer/readme.md --keep-version-file --multiapi --no-async --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk [email protected]/autorest.python@~4.0.71 --version=V2", | ||
"readme": "specification/cognitiveservices/data-plane/Personalizer/readme.md" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
...ure-cognitiveservices-personalizer/azure/cognitiveservices/personalizer/_configuration.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# 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. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest import Configuration | ||
|
||
from .version import VERSION | ||
|
||
|
||
class PersonalizerClientConfiguration(Configuration): | ||
"""Configuration for PersonalizerClient | ||
Note that all parameters used to create this instance are saved as instance | ||
attributes. | ||
:param endpoint: Supported Cognitive Services endpoint. | ||
:type endpoint: str | ||
:param credentials: Subscription credentials which uniquely identify | ||
client subscription. | ||
:type credentials: None | ||
""" | ||
|
||
def __init__( | ||
self, endpoint, credentials): | ||
|
||
if endpoint is None: | ||
raise ValueError("Parameter 'endpoint' must not be None.") | ||
if credentials is None: | ||
raise ValueError("Parameter 'credentials' must not be None.") | ||
base_url = '{Endpoint}/personalizer/v1.0' | ||
|
||
super(PersonalizerClientConfiguration, self).__init__(base_url) | ||
|
||
# Starting Autorest.Python 4.0.64, make connection pool activated by default | ||
self.keep_alive = True | ||
|
||
self.add_user_agent('azure-cognitiveservices-personalizer/{}'.format(VERSION)) | ||
|
||
self.endpoint = endpoint | ||
self.credentials = credentials |
75 changes: 75 additions & 0 deletions
75
...gnitiveservices-personalizer/azure/cognitiveservices/personalizer/_personalizer_client.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
# 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. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.service_client import SDKClient | ||
from msrest import Serializer, Deserializer | ||
|
||
from ._configuration import PersonalizerClientConfiguration | ||
from .operations import PersonalizerClientOperationsMixin | ||
from msrest.exceptions import HttpOperationError | ||
from .operations import ServiceConfigurationOperations | ||
from .operations import PolicyOperations | ||
from .operations import EvaluationsOperations | ||
from .operations import EventsOperations | ||
from .operations import LogOperations | ||
from .operations import ModelOperations | ||
from . import models | ||
|
||
|
||
class PersonalizerClient(PersonalizerClientOperationsMixin, SDKClient): | ||
"""Personalizer Service is an Azure Cognitive Service that makes it easy to target content and experiences without complex pre-analysis or cleanup of past data. Given a context and featurized content, the Personalizer Service returns which content item to show to users in rewardActionId. As rewards are sent in response to the use of rewardActionId, the reinforcement learning algorithm will improve the model and improve performance of future rank calls. | ||
:ivar config: Configuration for client. | ||
:vartype config: PersonalizerClientConfiguration | ||
:ivar service_configuration: ServiceConfiguration operations | ||
:vartype service_configuration: azure.cognitiveservices.personalizer.operations.ServiceConfigurationOperations | ||
:ivar policy: Policy operations | ||
:vartype policy: azure.cognitiveservices.personalizer.operations.PolicyOperations | ||
:ivar evaluations: Evaluations operations | ||
:vartype evaluations: azure.cognitiveservices.personalizer.operations.EvaluationsOperations | ||
:ivar events: Events operations | ||
:vartype events: azure.cognitiveservices.personalizer.operations.EventsOperations | ||
:ivar log: Log operations | ||
:vartype log: azure.cognitiveservices.personalizer.operations.LogOperations | ||
:ivar model: Model operations | ||
:vartype model: azure.cognitiveservices.personalizer.operations.ModelOperations | ||
:param endpoint: Supported Cognitive Services endpoint. | ||
:type endpoint: str | ||
:param credentials: Subscription credentials which uniquely identify | ||
client subscription. | ||
:type credentials: None | ||
""" | ||
|
||
def __init__( | ||
self, endpoint, credentials): | ||
|
||
self.config = PersonalizerClientConfiguration(endpoint, credentials) | ||
super(PersonalizerClient, self).__init__(self.config.credentials, self.config) | ||
|
||
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} | ||
self.api_version = 'v1.0' | ||
self._serialize = Serializer(client_models) | ||
self._deserialize = Deserializer(client_models) | ||
|
||
self.service_configuration = ServiceConfigurationOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.policy = PolicyOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.evaluations = EvaluationsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.events = EventsOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.log = LogOperations( | ||
self._client, self.config, self._serialize, self._deserialize) | ||
self.model = ModelOperations( | ||
self._client, self.config, self._serialize, self._deserialize) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.