Skip to content

Commit cd32a99

Browse files
authored
Generated from 989e7b0c282b2fd93eda33260b929a28ae975cbe (#3191)
Remove extra prep files, update the readme
1 parent 7b6f693 commit cd32a99

File tree

122 files changed

+485
-393
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+485
-393
lines changed

azure-mgmt-logic/azure/mgmt/logic/logic_management_client.py

+39-91
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,26 @@
1313
from msrest import Serializer, Deserializer
1414
from msrestazure import AzureConfiguration
1515
from .version import VERSION
16-
from msrest.pipeline import ClientRawResponse
17-
from msrestazure.azure_exceptions import CloudError
18-
import uuid
1916
from .operations.workflows_operations import WorkflowsOperations
2017
from .operations.workflow_versions_operations import WorkflowVersionsOperations
2118
from .operations.workflow_triggers_operations import WorkflowTriggersOperations
19+
from .operations.workflow_version_triggers_operations import WorkflowVersionTriggersOperations
2220
from .operations.workflow_trigger_histories_operations import WorkflowTriggerHistoriesOperations
2321
from .operations.workflow_runs_operations import WorkflowRunsOperations
2422
from .operations.workflow_run_actions_operations import WorkflowRunActionsOperations
2523
from .operations.workflow_run_action_repetitions_operations import WorkflowRunActionRepetitionsOperations
26-
from .operations.workflow_run_action_scoped_repetitions_operations import WorkflowRunActionScopedRepetitionsOperations
24+
from .operations.workflow_run_action_scope_repetitions_operations import WorkflowRunActionScopeRepetitionsOperations
2725
from .operations.workflow_run_operations import WorkflowRunOperations
2826
from .operations.integration_accounts_operations import IntegrationAccountsOperations
2927
from .operations.integration_account_assemblies_operations import IntegrationAccountAssembliesOperations
3028
from .operations.integration_account_batch_configurations_operations import IntegrationAccountBatchConfigurationsOperations
31-
from .operations.schemas_operations import SchemasOperations
32-
from .operations.maps_operations import MapsOperations
33-
from .operations.partners_operations import PartnersOperations
34-
from .operations.agreements_operations import AgreementsOperations
35-
from .operations.certificates_operations import CertificatesOperations
36-
from .operations.sessions_operations import SessionsOperations
29+
from .operations.integration_account_schemas_operations import IntegrationAccountSchemasOperations
30+
from .operations.integration_account_maps_operations import IntegrationAccountMapsOperations
31+
from .operations.integration_account_partners_operations import IntegrationAccountPartnersOperations
32+
from .operations.integration_account_agreements_operations import IntegrationAccountAgreementsOperations
33+
from .operations.integration_account_certificates_operations import IntegrationAccountCertificatesOperations
34+
from .operations.integration_account_sessions_operations import IntegrationAccountSessionsOperations
35+
from .operations.operations import Operations
3736
from . import models
3837

3938

@@ -81,6 +80,8 @@ class LogicManagementClient(SDKClient):
8180
:vartype workflow_versions: azure.mgmt.logic.operations.WorkflowVersionsOperations
8281
:ivar workflow_triggers: WorkflowTriggers operations
8382
:vartype workflow_triggers: azure.mgmt.logic.operations.WorkflowTriggersOperations
83+
:ivar workflow_version_triggers: WorkflowVersionTriggers operations
84+
:vartype workflow_version_triggers: azure.mgmt.logic.operations.WorkflowVersionTriggersOperations
8485
:ivar workflow_trigger_histories: WorkflowTriggerHistories operations
8586
:vartype workflow_trigger_histories: azure.mgmt.logic.operations.WorkflowTriggerHistoriesOperations
8687
:ivar workflow_runs: WorkflowRuns operations
@@ -89,8 +90,8 @@ class LogicManagementClient(SDKClient):
8990
:vartype workflow_run_actions: azure.mgmt.logic.operations.WorkflowRunActionsOperations
9091
:ivar workflow_run_action_repetitions: WorkflowRunActionRepetitions operations
9192
:vartype workflow_run_action_repetitions: azure.mgmt.logic.operations.WorkflowRunActionRepetitionsOperations
92-
:ivar workflow_run_action_scoped_repetitions: WorkflowRunActionScopedRepetitions operations
93-
:vartype workflow_run_action_scoped_repetitions: azure.mgmt.logic.operations.WorkflowRunActionScopedRepetitionsOperations
93+
:ivar workflow_run_action_scope_repetitions: WorkflowRunActionScopeRepetitions operations
94+
:vartype workflow_run_action_scope_repetitions: azure.mgmt.logic.operations.WorkflowRunActionScopeRepetitionsOperations
9495
:ivar workflow_run_operations: WorkflowRunOperations operations
9596
:vartype workflow_run_operations: azure.mgmt.logic.operations.WorkflowRunOperations
9697
:ivar integration_accounts: IntegrationAccounts operations
@@ -99,18 +100,20 @@ class LogicManagementClient(SDKClient):
99100
:vartype integration_account_assemblies: azure.mgmt.logic.operations.IntegrationAccountAssembliesOperations
100101
:ivar integration_account_batch_configurations: IntegrationAccountBatchConfigurations operations
101102
:vartype integration_account_batch_configurations: azure.mgmt.logic.operations.IntegrationAccountBatchConfigurationsOperations
102-
:ivar schemas: Schemas operations
103-
:vartype schemas: azure.mgmt.logic.operations.SchemasOperations
104-
:ivar maps: Maps operations
105-
:vartype maps: azure.mgmt.logic.operations.MapsOperations
106-
:ivar partners: Partners operations
107-
:vartype partners: azure.mgmt.logic.operations.PartnersOperations
108-
:ivar agreements: Agreements operations
109-
:vartype agreements: azure.mgmt.logic.operations.AgreementsOperations
110-
:ivar certificates: Certificates operations
111-
:vartype certificates: azure.mgmt.logic.operations.CertificatesOperations
112-
:ivar sessions: Sessions operations
113-
:vartype sessions: azure.mgmt.logic.operations.SessionsOperations
103+
:ivar integration_account_schemas: IntegrationAccountSchemas operations
104+
:vartype integration_account_schemas: azure.mgmt.logic.operations.IntegrationAccountSchemasOperations
105+
:ivar integration_account_maps: IntegrationAccountMaps operations
106+
:vartype integration_account_maps: azure.mgmt.logic.operations.IntegrationAccountMapsOperations
107+
:ivar integration_account_partners: IntegrationAccountPartners operations
108+
:vartype integration_account_partners: azure.mgmt.logic.operations.IntegrationAccountPartnersOperations
109+
:ivar integration_account_agreements: IntegrationAccountAgreements operations
110+
:vartype integration_account_agreements: azure.mgmt.logic.operations.IntegrationAccountAgreementsOperations
111+
:ivar integration_account_certificates: IntegrationAccountCertificates operations
112+
:vartype integration_account_certificates: azure.mgmt.logic.operations.IntegrationAccountCertificatesOperations
113+
:ivar integration_account_sessions: IntegrationAccountSessions operations
114+
:vartype integration_account_sessions: azure.mgmt.logic.operations.IntegrationAccountSessionsOperations
115+
:ivar operations: Operations operations
116+
:vartype operations: azure.mgmt.logic.operations.Operations
114117
115118
:param credentials: Credentials needed for the client to connect to Azure.
116119
:type credentials: :mod:`A msrestazure Credentials
@@ -127,7 +130,7 @@ def __init__(
127130
super(LogicManagementClient, self).__init__(self.config.credentials, self.config)
128131

129132
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
130-
self.api_version = '2016-06-01'
133+
self.api_version = '2018-07-01-preview'
131134
self._serialize = Serializer(client_models)
132135
self._deserialize = Deserializer(client_models)
133136

@@ -137,6 +140,8 @@ def __init__(
137140
self._client, self.config, self._serialize, self._deserialize)
138141
self.workflow_triggers = WorkflowTriggersOperations(
139142
self._client, self.config, self._serialize, self._deserialize)
143+
self.workflow_version_triggers = WorkflowVersionTriggersOperations(
144+
self._client, self.config, self._serialize, self._deserialize)
140145
self.workflow_trigger_histories = WorkflowTriggerHistoriesOperations(
141146
self._client, self.config, self._serialize, self._deserialize)
142147
self.workflow_runs = WorkflowRunsOperations(
@@ -145,7 +150,7 @@ def __init__(
145150
self._client, self.config, self._serialize, self._deserialize)
146151
self.workflow_run_action_repetitions = WorkflowRunActionRepetitionsOperations(
147152
self._client, self.config, self._serialize, self._deserialize)
148-
self.workflow_run_action_scoped_repetitions = WorkflowRunActionScopedRepetitionsOperations(
153+
self.workflow_run_action_scope_repetitions = WorkflowRunActionScopeRepetitionsOperations(
149154
self._client, self.config, self._serialize, self._deserialize)
150155
self.workflow_run_operations = WorkflowRunOperations(
151156
self._client, self.config, self._serialize, self._deserialize)
@@ -155,74 +160,17 @@ def __init__(
155160
self._client, self.config, self._serialize, self._deserialize)
156161
self.integration_account_batch_configurations = IntegrationAccountBatchConfigurationsOperations(
157162
self._client, self.config, self._serialize, self._deserialize)
158-
self.schemas = SchemasOperations(
163+
self.integration_account_schemas = IntegrationAccountSchemasOperations(
159164
self._client, self.config, self._serialize, self._deserialize)
160-
self.maps = MapsOperations(
165+
self.integration_account_maps = IntegrationAccountMapsOperations(
161166
self._client, self.config, self._serialize, self._deserialize)
162-
self.partners = PartnersOperations(
167+
self.integration_account_partners = IntegrationAccountPartnersOperations(
163168
self._client, self.config, self._serialize, self._deserialize)
164-
self.agreements = AgreementsOperations(
169+
self.integration_account_agreements = IntegrationAccountAgreementsOperations(
165170
self._client, self.config, self._serialize, self._deserialize)
166-
self.certificates = CertificatesOperations(
171+
self.integration_account_certificates = IntegrationAccountCertificatesOperations(
167172
self._client, self.config, self._serialize, self._deserialize)
168-
self.sessions = SessionsOperations(
173+
self.integration_account_sessions = IntegrationAccountSessionsOperations(
174+
self._client, self.config, self._serialize, self._deserialize)
175+
self.operations = Operations(
169176
self._client, self.config, self._serialize, self._deserialize)
170-
171-
def list_operations(
172-
self, custom_headers=None, raw=False, **operation_config):
173-
"""Lists all of the available Logic REST API operations.
174-
175-
:param dict custom_headers: headers that will be added to the request
176-
:param bool raw: returns the direct response alongside the
177-
deserialized response
178-
:param operation_config: :ref:`Operation configuration
179-
overrides<msrest:optionsforoperations>`.
180-
:return: An iterator like instance of Operation
181-
:rtype:
182-
~azure.mgmt.logic.models.OperationPaged[~azure.mgmt.logic.models.Operation]
183-
:raises:
184-
:class:`ErrorResponseException<azure.mgmt.logic.models.ErrorResponseException>`
185-
"""
186-
def internal_paging(next_link=None, raw=False):
187-
188-
if not next_link:
189-
# Construct URL
190-
url = self.list_operations.metadata['url']
191-
192-
# Construct parameters
193-
query_parameters = {}
194-
query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str')
195-
196-
else:
197-
url = next_link
198-
query_parameters = {}
199-
200-
# Construct headers
201-
header_parameters = {}
202-
header_parameters['Accept'] = 'application/json'
203-
if self.config.generate_client_request_id:
204-
header_parameters['x-ms-client-request-id'] = str(uuid.uuid1())
205-
if custom_headers:
206-
header_parameters.update(custom_headers)
207-
if self.config.accept_language is not None:
208-
header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str')
209-
210-
# Construct and send request
211-
request = self._client.get(url, query_parameters, header_parameters)
212-
response = self._client.send(request, stream=False, **operation_config)
213-
214-
if response.status_code not in [200]:
215-
raise models.ErrorResponseException(self._deserialize, response)
216-
217-
return response
218-
219-
# Deserialize response
220-
deserialized = models.OperationPaged(internal_paging, self._deserialize.dependencies)
221-
222-
if raw:
223-
header_dict = {}
224-
client_raw_response = models.OperationPaged(internal_paging, self._deserialize.dependencies, header_dict)
225-
return client_raw_response
226-
227-
return deserialized
228-
list_operations.metadata = {'url': '/providers/Microsoft.Logic/operations'}

azure-mgmt-logic/azure/mgmt/logic/models/access_key_regenerate_action_definition.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class AccessKeyRegenerateActionDefinition(Model):
2727
}
2828

2929
_attribute_map = {
30-
'key_type': {'key': 'keyType', 'type': 'AccessKeyType'},
30+
'key_type': {'key': 'keyType', 'type': 'str'},
3131
}
3232

3333
def __init__(self, **kwargs):

azure-mgmt-logic/azure/mgmt/logic/models/access_key_regenerate_action_definition_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class AccessKeyRegenerateActionDefinition(Model):
2727
}
2828

2929
_attribute_map = {
30-
'key_type': {'key': 'keyType', 'type': 'AccessKeyType'},
30+
'key_type': {'key': 'keyType', 'type': 'str'},
3131
}
3232

3333
def __init__(self, *, key_type, **kwargs) -> None:

azure-mgmt-logic/azure/mgmt/logic/models/as2_mdn_settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class AS2MdnSettings(Model):
6464
'sign_outbound_mdn_if_optional': {'key': 'signOutboundMdnIfOptional', 'type': 'bool'},
6565
'mdn_text': {'key': 'mdnText', 'type': 'str'},
6666
'send_inbound_mdn_to_message_box': {'key': 'sendInboundMdnToMessageBox', 'type': 'bool'},
67-
'mic_hashing_algorithm': {'key': 'micHashingAlgorithm', 'type': 'HashingAlgorithm'},
67+
'mic_hashing_algorithm': {'key': 'micHashingAlgorithm', 'type': 'str'},
6868
}
6969

7070
def __init__(self, **kwargs):

azure-mgmt-logic/azure/mgmt/logic/models/as2_mdn_settings_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ class AS2MdnSettings(Model):
6464
'sign_outbound_mdn_if_optional': {'key': 'signOutboundMdnIfOptional', 'type': 'bool'},
6565
'mdn_text': {'key': 'mdnText', 'type': 'str'},
6666
'send_inbound_mdn_to_message_box': {'key': 'sendInboundMdnToMessageBox', 'type': 'bool'},
67-
'mic_hashing_algorithm': {'key': 'micHashingAlgorithm', 'type': 'HashingAlgorithm'},
67+
'mic_hashing_algorithm': {'key': 'micHashingAlgorithm', 'type': 'str'},
6868
}
6969

7070
def __init__(self, *, need_mdn: bool, sign_mdn: bool, send_mdn_asynchronously: bool, sign_outbound_mdn_if_optional: bool, send_inbound_mdn_to_message_box: bool, mic_hashing_algorithm, receipt_delivery_url: str=None, disposition_notification_to: str=None, mdn_text: str=None, **kwargs) -> None:

azure-mgmt-logic/azure/mgmt/logic/models/as2_validation_settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class AS2ValidationSettings(Model):
7272
'interchange_duplicates_validity_days': {'key': 'interchangeDuplicatesValidityDays', 'type': 'int'},
7373
'check_certificate_revocation_list_on_send': {'key': 'checkCertificateRevocationListOnSend', 'type': 'bool'},
7474
'check_certificate_revocation_list_on_receive': {'key': 'checkCertificateRevocationListOnReceive', 'type': 'bool'},
75-
'encryption_algorithm': {'key': 'encryptionAlgorithm', 'type': 'EncryptionAlgorithm'},
75+
'encryption_algorithm': {'key': 'encryptionAlgorithm', 'type': 'str'},
7676
'signing_algorithm': {'key': 'signingAlgorithm', 'type': 'str'},
7777
}
7878

azure-mgmt-logic/azure/mgmt/logic/models/as2_validation_settings_py3.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class AS2ValidationSettings(Model):
7272
'interchange_duplicates_validity_days': {'key': 'interchangeDuplicatesValidityDays', 'type': 'int'},
7373
'check_certificate_revocation_list_on_send': {'key': 'checkCertificateRevocationListOnSend', 'type': 'bool'},
7474
'check_certificate_revocation_list_on_receive': {'key': 'checkCertificateRevocationListOnReceive', 'type': 'bool'},
75-
'encryption_algorithm': {'key': 'encryptionAlgorithm', 'type': 'EncryptionAlgorithm'},
75+
'encryption_algorithm': {'key': 'encryptionAlgorithm', 'type': 'str'},
7676
'signing_algorithm': {'key': 'signingAlgorithm', 'type': 'str'},
7777
}
7878

azure-mgmt-logic/azure/mgmt/logic/models/edifact_delimiter_override.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ class EdifactDelimiterOverride(Model):
6767
'component_separator': {'key': 'componentSeparator', 'type': 'int'},
6868
'segment_terminator': {'key': 'segmentTerminator', 'type': 'int'},
6969
'repetition_separator': {'key': 'repetitionSeparator', 'type': 'int'},
70-
'segment_terminator_suffix': {'key': 'segmentTerminatorSuffix', 'type': 'SegmentTerminatorSuffix'},
71-
'decimal_point_indicator': {'key': 'decimalPointIndicator', 'type': 'EdifactDecimalIndicator'},
70+
'segment_terminator_suffix': {'key': 'segmentTerminatorSuffix', 'type': 'str'},
71+
'decimal_point_indicator': {'key': 'decimalPointIndicator', 'type': 'str'},
7272
'release_indicator': {'key': 'releaseIndicator', 'type': 'int'},
7373
'message_association_assigned_code': {'key': 'messageAssociationAssignedCode', 'type': 'str'},
7474
'target_namespace': {'key': 'targetNamespace', 'type': 'str'},

azure-mgmt-logic/azure/mgmt/logic/models/edifact_delimiter_override_py3.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ class EdifactDelimiterOverride(Model):
6767
'component_separator': {'key': 'componentSeparator', 'type': 'int'},
6868
'segment_terminator': {'key': 'segmentTerminator', 'type': 'int'},
6969
'repetition_separator': {'key': 'repetitionSeparator', 'type': 'int'},
70-
'segment_terminator_suffix': {'key': 'segmentTerminatorSuffix', 'type': 'SegmentTerminatorSuffix'},
71-
'decimal_point_indicator': {'key': 'decimalPointIndicator', 'type': 'EdifactDecimalIndicator'},
70+
'segment_terminator_suffix': {'key': 'segmentTerminatorSuffix', 'type': 'str'},
71+
'decimal_point_indicator': {'key': 'decimalPointIndicator', 'type': 'str'},
7272
'release_indicator': {'key': 'releaseIndicator', 'type': 'int'},
7373
'message_association_assigned_code': {'key': 'messageAssociationAssignedCode', 'type': 'str'},
7474
'target_namespace': {'key': 'targetNamespace', 'type': 'str'},

azure-mgmt-logic/azure/mgmt/logic/models/edifact_framing_settings.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ class EdifactFramingSettings(Model):
7272
'segment_terminator': {'key': 'segmentTerminator', 'type': 'int'},
7373
'release_indicator': {'key': 'releaseIndicator', 'type': 'int'},
7474
'repetition_separator': {'key': 'repetitionSeparator', 'type': 'int'},
75-
'character_set': {'key': 'characterSet', 'type': 'EdifactCharacterSet'},
76-
'decimal_point_indicator': {'key': 'decimalPointIndicator', 'type': 'EdifactDecimalIndicator'},
77-
'segment_terminator_suffix': {'key': 'segmentTerminatorSuffix', 'type': 'SegmentTerminatorSuffix'},
75+
'character_set': {'key': 'characterSet', 'type': 'str'},
76+
'decimal_point_indicator': {'key': 'decimalPointIndicator', 'type': 'str'},
77+
'segment_terminator_suffix': {'key': 'segmentTerminatorSuffix', 'type': 'str'},
7878
}
7979

8080
def __init__(self, **kwargs):

azure-mgmt-logic/azure/mgmt/logic/models/edifact_framing_settings_py3.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ class EdifactFramingSettings(Model):
7272
'segment_terminator': {'key': 'segmentTerminator', 'type': 'int'},
7373
'release_indicator': {'key': 'releaseIndicator', 'type': 'int'},
7474
'repetition_separator': {'key': 'repetitionSeparator', 'type': 'int'},
75-
'character_set': {'key': 'characterSet', 'type': 'EdifactCharacterSet'},
76-
'decimal_point_indicator': {'key': 'decimalPointIndicator', 'type': 'EdifactDecimalIndicator'},
77-
'segment_terminator_suffix': {'key': 'segmentTerminatorSuffix', 'type': 'SegmentTerminatorSuffix'},
75+
'character_set': {'key': 'characterSet', 'type': 'str'},
76+
'decimal_point_indicator': {'key': 'decimalPointIndicator', 'type': 'str'},
77+
'segment_terminator_suffix': {'key': 'segmentTerminatorSuffix', 'type': 'str'},
7878
}
7979

8080
def __init__(self, *, protocol_version: int, data_element_separator: int, component_separator: int, segment_terminator: int, release_indicator: int, repetition_separator: int, character_set, decimal_point_indicator, segment_terminator_suffix, service_code_list_directory_version: str=None, character_encoding: str=None, **kwargs) -> None:

azure-mgmt-logic/azure/mgmt/logic/models/edifact_message_filter.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class EdifactMessageFilter(Model):
2828
}
2929

3030
_attribute_map = {
31-
'message_filter_type': {'key': 'messageFilterType', 'type': 'MessageFilterType'},
31+
'message_filter_type': {'key': 'messageFilterType', 'type': 'str'},
3232
}
3333

3434
def __init__(self, **kwargs):

0 commit comments

Comments
 (0)