gamsapi 52.5.0__cp312-cp312-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- gams/__init__.py +27 -0
- gams/_version.py +1 -0
- gams/connect/__init__.py +28 -0
- gams/connect/agents/__init__.py +24 -0
- gams/connect/agents/_excel/__init__.py +32 -0
- gams/connect/agents/_excel/excelagent.py +312 -0
- gams/connect/agents/_excel/workbook.py +155 -0
- gams/connect/agents/_sqlconnectors/__init__.py +42 -0
- gams/connect/agents/_sqlconnectors/_accesshandler.py +211 -0
- gams/connect/agents/_sqlconnectors/_databasehandler.py +250 -0
- gams/connect/agents/_sqlconnectors/_mysqlhandler.py +168 -0
- gams/connect/agents/_sqlconnectors/_postgreshandler.py +131 -0
- gams/connect/agents/_sqlconnectors/_pyodbchandler.py +112 -0
- gams/connect/agents/_sqlconnectors/_sqlalchemyhandler.py +74 -0
- gams/connect/agents/_sqlconnectors/_sqlitehandler.py +262 -0
- gams/connect/agents/_sqlconnectors/_sqlserverhandler.py +179 -0
- gams/connect/agents/concatenate.py +440 -0
- gams/connect/agents/connectagent.py +743 -0
- gams/connect/agents/csvreader.py +675 -0
- gams/connect/agents/csvwriter.py +151 -0
- gams/connect/agents/domainwriter.py +143 -0
- gams/connect/agents/excelreader.py +756 -0
- gams/connect/agents/excelwriter.py +467 -0
- gams/connect/agents/filter.py +223 -0
- gams/connect/agents/gamsreader.py +112 -0
- gams/connect/agents/gamswriter.py +239 -0
- gams/connect/agents/gdxreader.py +109 -0
- gams/connect/agents/gdxwriter.py +146 -0
- gams/connect/agents/labelmanipulator.py +303 -0
- gams/connect/agents/projection.py +539 -0
- gams/connect/agents/pythoncode.py +71 -0
- gams/connect/agents/rawcsvreader.py +248 -0
- gams/connect/agents/rawexcelreader.py +312 -0
- gams/connect/agents/schema/CSVReader.yaml +92 -0
- gams/connect/agents/schema/CSVWriter.yaml +44 -0
- gams/connect/agents/schema/Concatenate.yaml +52 -0
- gams/connect/agents/schema/DomainWriter.yaml +25 -0
- gams/connect/agents/schema/ExcelReader.yaml +121 -0
- gams/connect/agents/schema/ExcelWriter.yaml +78 -0
- gams/connect/agents/schema/Filter.yaml +74 -0
- gams/connect/agents/schema/GAMSReader.yaml +20 -0
- gams/connect/agents/schema/GAMSWriter.yaml +47 -0
- gams/connect/agents/schema/GDXReader.yaml +23 -0
- gams/connect/agents/schema/GDXWriter.yaml +32 -0
- gams/connect/agents/schema/LabelManipulator.yaml +99 -0
- gams/connect/agents/schema/Projection.yaml +24 -0
- gams/connect/agents/schema/PythonCode.yaml +6 -0
- gams/connect/agents/schema/RawCSVReader.yaml +34 -0
- gams/connect/agents/schema/RawExcelReader.yaml +42 -0
- gams/connect/agents/schema/SQLReader.yaml +75 -0
- gams/connect/agents/schema/SQLWriter.yaml +103 -0
- gams/connect/agents/sqlreader.py +301 -0
- gams/connect/agents/sqlwriter.py +276 -0
- gams/connect/connectdatabase.py +275 -0
- gams/connect/connectvalidator.py +93 -0
- gams/connect/errors.py +34 -0
- gams/control/__init__.py +136 -0
- gams/control/database.py +2231 -0
- gams/control/execution.py +1900 -0
- gams/control/options.py +2792 -0
- gams/control/workspace.py +1198 -0
- gams/core/__init__.py +24 -0
- gams/core/cfg/__init__.py +26 -0
- gams/core/cfg/_cfgmcc.cp312-win_amd64.pyd +0 -0
- gams/core/cfg/cfgmcc.py +519 -0
- gams/core/dct/__init__.py +26 -0
- gams/core/dct/_dctmcc.cp312-win_amd64.pyd +0 -0
- gams/core/dct/dctmcc.py +574 -0
- gams/core/embedded/__init__.py +26 -0
- gams/core/embedded/gamsemb.py +1024 -0
- gams/core/emp/__init__.py +24 -0
- gams/core/emp/emplexer.py +89 -0
- gams/core/emp/empyacc.py +281 -0
- gams/core/gdx/__init__.py +26 -0
- gams/core/gdx/_gdxcc.cp312-win_amd64.pyd +0 -0
- gams/core/gdx/gdxcc.py +866 -0
- gams/core/gev/__init__.py +26 -0
- gams/core/gev/_gevmcc.cp312-win_amd64.pyd +0 -0
- gams/core/gev/gevmcc.py +855 -0
- gams/core/gmd/__init__.py +26 -0
- gams/core/gmd/_gmdcc.cp312-win_amd64.pyd +0 -0
- gams/core/gmd/gmdcc.py +917 -0
- gams/core/gmo/__init__.py +26 -0
- gams/core/gmo/_gmomcc.cp312-win_amd64.pyd +0 -0
- gams/core/gmo/gmomcc.py +2046 -0
- gams/core/idx/__init__.py +26 -0
- gams/core/idx/_idxcc.cp312-win_amd64.pyd +0 -0
- gams/core/idx/idxcc.py +510 -0
- gams/core/numpy/__init__.py +29 -0
- gams/core/numpy/_gams2numpy.cp312-win_amd64.pyd +0 -0
- gams/core/numpy/gams2numpy.py +1048 -0
- gams/core/opt/__init__.py +26 -0
- gams/core/opt/_optcc.cp312-win_amd64.pyd +0 -0
- gams/core/opt/optcc.py +840 -0
- gams/engine/__init__.py +204 -0
- gams/engine/api/__init__.py +13 -0
- gams/engine/api/auth_api.py +7653 -0
- gams/engine/api/cleanup_api.py +751 -0
- gams/engine/api/default_api.py +887 -0
- gams/engine/api/hypercube_api.py +2629 -0
- gams/engine/api/jobs_api.py +5229 -0
- gams/engine/api/licenses_api.py +2220 -0
- gams/engine/api/namespaces_api.py +7783 -0
- gams/engine/api/usage_api.py +5627 -0
- gams/engine/api/users_api.py +5931 -0
- gams/engine/api_client.py +804 -0
- gams/engine/api_response.py +21 -0
- gams/engine/configuration.py +601 -0
- gams/engine/exceptions.py +216 -0
- gams/engine/models/__init__.py +86 -0
- gams/engine/models/bad_input.py +89 -0
- gams/engine/models/cleanable_job_result.py +104 -0
- gams/engine/models/cleanable_job_result_page.py +113 -0
- gams/engine/models/engine_license.py +107 -0
- gams/engine/models/files_not_found.py +93 -0
- gams/engine/models/forwarded_token_response.py +112 -0
- gams/engine/models/generic_key_value_pair.py +89 -0
- gams/engine/models/hypercube.py +160 -0
- gams/engine/models/hypercube_page.py +111 -0
- gams/engine/models/hypercube_summary.py +91 -0
- gams/engine/models/hypercube_token.py +97 -0
- gams/engine/models/identity_provider.py +107 -0
- gams/engine/models/identity_provider_ldap.py +121 -0
- gams/engine/models/identity_provider_oauth2.py +146 -0
- gams/engine/models/identity_provider_oauth2_scope.py +89 -0
- gams/engine/models/identity_provider_oauth2_with_secret.py +152 -0
- gams/engine/models/identity_provider_oidc.py +133 -0
- gams/engine/models/identity_provider_oidc_with_secret.py +143 -0
- gams/engine/models/inex.py +91 -0
- gams/engine/models/invitation.py +136 -0
- gams/engine/models/invitation_quota.py +106 -0
- gams/engine/models/invitation_token.py +87 -0
- gams/engine/models/job.py +165 -0
- gams/engine/models/job_no_text_entry.py +138 -0
- gams/engine/models/job_no_text_entry_page.py +111 -0
- gams/engine/models/license.py +91 -0
- gams/engine/models/log_piece.py +96 -0
- gams/engine/models/message.py +87 -0
- gams/engine/models/message_and_token.py +99 -0
- gams/engine/models/message_with_webhook_id.py +89 -0
- gams/engine/models/model_auth_token.py +87 -0
- gams/engine/models/model_configuration.py +125 -0
- gams/engine/models/model_default_instance.py +99 -0
- gams/engine/models/model_default_user_instance.py +98 -0
- gams/engine/models/model_hypercube_job.py +106 -0
- gams/engine/models/model_hypercube_usage.py +130 -0
- gams/engine/models/model_instance_info.py +116 -0
- gams/engine/models/model_instance_info_full.py +123 -0
- gams/engine/models/model_instance_pool_info.py +112 -0
- gams/engine/models/model_job_labels.py +179 -0
- gams/engine/models/model_job_usage.py +133 -0
- gams/engine/models/model_pool_usage.py +124 -0
- gams/engine/models/model_usage.py +115 -0
- gams/engine/models/model_user.py +96 -0
- gams/engine/models/model_userinstance_info.py +119 -0
- gams/engine/models/model_userinstancepool_info.py +95 -0
- gams/engine/models/model_version.py +91 -0
- gams/engine/models/models.py +120 -0
- gams/engine/models/namespace.py +104 -0
- gams/engine/models/namespace_quota.py +96 -0
- gams/engine/models/namespace_with_permission.py +96 -0
- gams/engine/models/not_found.py +91 -0
- gams/engine/models/password_policy.py +97 -0
- gams/engine/models/perm_and_username.py +89 -0
- gams/engine/models/quota.py +117 -0
- gams/engine/models/quota_exceeded.py +97 -0
- gams/engine/models/status_code_meaning.py +89 -0
- gams/engine/models/stream_entry.py +89 -0
- gams/engine/models/system_wide_license.py +92 -0
- gams/engine/models/text_entries.py +87 -0
- gams/engine/models/text_entry.py +101 -0
- gams/engine/models/time_span.py +95 -0
- gams/engine/models/time_span_pool_worker.py +99 -0
- gams/engine/models/token_forward_error.py +87 -0
- gams/engine/models/user.py +127 -0
- gams/engine/models/user_group_member.py +96 -0
- gams/engine/models/user_groups.py +108 -0
- gams/engine/models/vapid_info.py +87 -0
- gams/engine/models/webhook.py +138 -0
- gams/engine/models/webhook_parameterized_event.py +99 -0
- gams/engine/py.typed +0 -0
- gams/engine/rest.py +258 -0
- gams/magic/__init__.py +32 -0
- gams/magic/gams_magic.py +142 -0
- gams/magic/interactive.py +402 -0
- gams/tools/__init__.py +30 -0
- gams/tools/errors.py +34 -0
- gams/tools/toolcollection/__init__.py +24 -0
- gams/tools/toolcollection/alg/__init__.py +24 -0
- gams/tools/toolcollection/alg/rank.py +51 -0
- gams/tools/toolcollection/data/__init__.py +24 -0
- gams/tools/toolcollection/data/csvread.py +444 -0
- gams/tools/toolcollection/data/csvwrite.py +311 -0
- gams/tools/toolcollection/data/exceldump.py +47 -0
- gams/tools/toolcollection/data/sqlitewrite.py +276 -0
- gams/tools/toolcollection/gdxservice/__init__.py +24 -0
- gams/tools/toolcollection/gdxservice/gdxencoding.py +104 -0
- gams/tools/toolcollection/gdxservice/gdxrename.py +94 -0
- gams/tools/toolcollection/linalg/__init__.py +24 -0
- gams/tools/toolcollection/linalg/cholesky.py +57 -0
- gams/tools/toolcollection/linalg/eigenvalue.py +56 -0
- gams/tools/toolcollection/linalg/eigenvector.py +58 -0
- gams/tools/toolcollection/linalg/invert.py +55 -0
- gams/tools/toolcollection/linalg/ols.py +138 -0
- gams/tools/toolcollection/tooltemplate.py +321 -0
- gams/tools/toolcollection/win32/__init__.py +24 -0
- gams/tools/toolcollection/win32/excelmerge.py +93 -0
- gams/tools/toolcollection/win32/exceltalk.py +76 -0
- gams/tools/toolcollection/win32/msappavail.py +49 -0
- gams/tools/toolcollection/win32/shellexecute.py +54 -0
- gams/tools/tools.py +116 -0
- gams/transfer/__init__.py +35 -0
- gams/transfer/_abcs/__init__.py +37 -0
- gams/transfer/_abcs/container_abcs.py +433 -0
- gams/transfer/_internals/__init__.py +63 -0
- gams/transfer/_internals/algorithms.py +436 -0
- gams/transfer/_internals/casepreservingdict.py +124 -0
- gams/transfer/_internals/constants.py +270 -0
- gams/transfer/_internals/domainviolation.py +103 -0
- gams/transfer/_internals/specialvalues.py +172 -0
- gams/transfer/containers/__init__.py +26 -0
- gams/transfer/containers/_container.py +1794 -0
- gams/transfer/containers/_io/__init__.py +28 -0
- gams/transfer/containers/_io/containers.py +164 -0
- gams/transfer/containers/_io/gdx.py +1029 -0
- gams/transfer/containers/_io/gmd.py +872 -0
- gams/transfer/containers/_mixins/__init__.py +26 -0
- gams/transfer/containers/_mixins/ccc.py +1274 -0
- gams/transfer/syms/__init__.py +33 -0
- gams/transfer/syms/_methods/__init__.py +24 -0
- gams/transfer/syms/_methods/tables.py +120 -0
- gams/transfer/syms/_methods/toDict.py +115 -0
- gams/transfer/syms/_methods/toList.py +83 -0
- gams/transfer/syms/_methods/toValue.py +60 -0
- gams/transfer/syms/_mixins/__init__.py +32 -0
- gams/transfer/syms/_mixins/equals.py +626 -0
- gams/transfer/syms/_mixins/generateRecords.py +499 -0
- gams/transfer/syms/_mixins/pivot.py +313 -0
- gams/transfer/syms/_mixins/pve.py +627 -0
- gams/transfer/syms/_mixins/sa.py +27 -0
- gams/transfer/syms/_mixins/sapve.py +27 -0
- gams/transfer/syms/_mixins/saua.py +27 -0
- gams/transfer/syms/_mixins/sauapve.py +199 -0
- gams/transfer/syms/_mixins/spve.py +1528 -0
- gams/transfer/syms/_mixins/ve.py +936 -0
- gams/transfer/syms/container_syms/__init__.py +31 -0
- gams/transfer/syms/container_syms/_alias.py +984 -0
- gams/transfer/syms/container_syms/_equation.py +333 -0
- gams/transfer/syms/container_syms/_parameter.py +973 -0
- gams/transfer/syms/container_syms/_set.py +604 -0
- gams/transfer/syms/container_syms/_universe_alias.py +461 -0
- gams/transfer/syms/container_syms/_variable.py +321 -0
- gamsapi-52.5.0.dist-info/METADATA +150 -0
- gamsapi-52.5.0.dist-info/RECORD +257 -0
- gamsapi-52.5.0.dist-info/WHEEL +5 -0
- gamsapi-52.5.0.dist-info/licenses/LICENSE +22 -0
- gamsapi-52.5.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
dimensionMap:
|
|
2
|
+
type: dict
|
|
3
|
+
default: null
|
|
4
|
+
nullable: true
|
|
5
|
+
emptyUel:
|
|
6
|
+
type: string
|
|
7
|
+
default: "-"
|
|
8
|
+
outputDimensions:
|
|
9
|
+
default: all
|
|
10
|
+
oneof:
|
|
11
|
+
- type: string
|
|
12
|
+
allowed: [all]
|
|
13
|
+
- type: list
|
|
14
|
+
schema:
|
|
15
|
+
type: string
|
|
16
|
+
parameterName:
|
|
17
|
+
type: string
|
|
18
|
+
default: parameterOutput
|
|
19
|
+
setName:
|
|
20
|
+
type: string
|
|
21
|
+
default: setOutput
|
|
22
|
+
skip:
|
|
23
|
+
type: string
|
|
24
|
+
default: null
|
|
25
|
+
nullable: true
|
|
26
|
+
allowed: [set, par]
|
|
27
|
+
symbolsDimension:
|
|
28
|
+
type: boolean
|
|
29
|
+
default: true
|
|
30
|
+
universalDimension:
|
|
31
|
+
type: string
|
|
32
|
+
default: uni
|
|
33
|
+
trace:
|
|
34
|
+
type: integer
|
|
35
|
+
default: 0
|
|
36
|
+
symbols:
|
|
37
|
+
default: all
|
|
38
|
+
oneof:
|
|
39
|
+
- type: string
|
|
40
|
+
allowed: [all]
|
|
41
|
+
- type: list
|
|
42
|
+
schema:
|
|
43
|
+
type: dict
|
|
44
|
+
allow_unknown: false
|
|
45
|
+
schema:
|
|
46
|
+
name:
|
|
47
|
+
type: string
|
|
48
|
+
required: true
|
|
49
|
+
newName:
|
|
50
|
+
type: string
|
|
51
|
+
default: null
|
|
52
|
+
nullable: true
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
dropDomainViolations:
|
|
2
|
+
type: [boolean, string]
|
|
3
|
+
default: false
|
|
4
|
+
allowed: [true, false, before, after]
|
|
5
|
+
trace:
|
|
6
|
+
type: integer
|
|
7
|
+
default: 0
|
|
8
|
+
symbols:
|
|
9
|
+
default: all
|
|
10
|
+
oneof:
|
|
11
|
+
- type: string
|
|
12
|
+
allowed: [all]
|
|
13
|
+
- type: list
|
|
14
|
+
schema:
|
|
15
|
+
type: dict
|
|
16
|
+
allow_unknown: false
|
|
17
|
+
schema:
|
|
18
|
+
name:
|
|
19
|
+
type: string
|
|
20
|
+
required: true
|
|
21
|
+
dropDomainViolations:
|
|
22
|
+
type: [boolean, string]
|
|
23
|
+
default: null
|
|
24
|
+
allowed: [true, false, before, after]
|
|
25
|
+
nullable: true
|
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
file:
|
|
2
|
+
type: string
|
|
3
|
+
required: true
|
|
4
|
+
type:
|
|
5
|
+
type: string
|
|
6
|
+
default: par
|
|
7
|
+
allowed: [par, set]
|
|
8
|
+
columnDimension:
|
|
9
|
+
type: integer
|
|
10
|
+
default: 1
|
|
11
|
+
min: 0
|
|
12
|
+
max: 20
|
|
13
|
+
rowDimension:
|
|
14
|
+
type: integer
|
|
15
|
+
default: 1
|
|
16
|
+
min: 0
|
|
17
|
+
max: 20
|
|
18
|
+
autoMerge:
|
|
19
|
+
type: boolean
|
|
20
|
+
default: false
|
|
21
|
+
mergedCells:
|
|
22
|
+
type: boolean
|
|
23
|
+
default: false
|
|
24
|
+
ignoreText:
|
|
25
|
+
type: [boolean, string]
|
|
26
|
+
default: infer
|
|
27
|
+
allowed: [true, false, infer]
|
|
28
|
+
indexSubstitutions:
|
|
29
|
+
type: dict
|
|
30
|
+
default: null
|
|
31
|
+
nullable: true
|
|
32
|
+
valueSubstitutions:
|
|
33
|
+
type: dict
|
|
34
|
+
default: null
|
|
35
|
+
nullable: true
|
|
36
|
+
skipEmpty:
|
|
37
|
+
type: integer
|
|
38
|
+
default: 1
|
|
39
|
+
index:
|
|
40
|
+
type: string
|
|
41
|
+
default: null
|
|
42
|
+
required: true
|
|
43
|
+
excludes: [symbols]
|
|
44
|
+
nullable: true
|
|
45
|
+
trace:
|
|
46
|
+
type: integer
|
|
47
|
+
default: 0
|
|
48
|
+
symbols:
|
|
49
|
+
type: list
|
|
50
|
+
default: null
|
|
51
|
+
required: true
|
|
52
|
+
excludes: [index]
|
|
53
|
+
nullable: true
|
|
54
|
+
schema:
|
|
55
|
+
type: dict
|
|
56
|
+
schema:
|
|
57
|
+
name:
|
|
58
|
+
type: string
|
|
59
|
+
required: true
|
|
60
|
+
type:
|
|
61
|
+
type: string
|
|
62
|
+
default: null
|
|
63
|
+
allowed: [par, set]
|
|
64
|
+
nullable: true
|
|
65
|
+
range:
|
|
66
|
+
type: string
|
|
67
|
+
default: null
|
|
68
|
+
nullable: true
|
|
69
|
+
columnDimension:
|
|
70
|
+
type: integer
|
|
71
|
+
default: null
|
|
72
|
+
min: 0
|
|
73
|
+
max: 20
|
|
74
|
+
nullable: true
|
|
75
|
+
rowDimension:
|
|
76
|
+
type: integer
|
|
77
|
+
default: null
|
|
78
|
+
min: 0
|
|
79
|
+
max: 20
|
|
80
|
+
nullable: true
|
|
81
|
+
autoMerge:
|
|
82
|
+
type: boolean
|
|
83
|
+
default: null
|
|
84
|
+
nullable: true
|
|
85
|
+
mergedCells:
|
|
86
|
+
type: boolean
|
|
87
|
+
default: null
|
|
88
|
+
nullable: true
|
|
89
|
+
ignoreColumns:
|
|
90
|
+
default: null
|
|
91
|
+
nullable: true
|
|
92
|
+
oneof:
|
|
93
|
+
- type: [integer, string]
|
|
94
|
+
- type: list
|
|
95
|
+
schema:
|
|
96
|
+
type: [integer, string]
|
|
97
|
+
ignoreRows:
|
|
98
|
+
default: null
|
|
99
|
+
nullable: true
|
|
100
|
+
oneof:
|
|
101
|
+
- type: [integer, string]
|
|
102
|
+
- type: list
|
|
103
|
+
schema:
|
|
104
|
+
type: [integer, string]
|
|
105
|
+
ignoreText:
|
|
106
|
+
type: [boolean, string]
|
|
107
|
+
default: null
|
|
108
|
+
allowed: [true, false, infer]
|
|
109
|
+
nullable: true
|
|
110
|
+
indexSubstitutions:
|
|
111
|
+
type: dict
|
|
112
|
+
default: null
|
|
113
|
+
nullable: true
|
|
114
|
+
valueSubstitutions:
|
|
115
|
+
type: dict
|
|
116
|
+
default: null
|
|
117
|
+
nullable: true
|
|
118
|
+
skipEmpty:
|
|
119
|
+
type: integer
|
|
120
|
+
default: null
|
|
121
|
+
nullable: true
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
file:
|
|
2
|
+
type: string
|
|
3
|
+
required: true
|
|
4
|
+
columnDimension:
|
|
5
|
+
default: infer
|
|
6
|
+
oneof:
|
|
7
|
+
- type: string
|
|
8
|
+
allowed: [infer]
|
|
9
|
+
- type: integer
|
|
10
|
+
min: 0
|
|
11
|
+
max: 20
|
|
12
|
+
clearSheet:
|
|
13
|
+
type: boolean
|
|
14
|
+
default: false
|
|
15
|
+
mergedCells:
|
|
16
|
+
type: boolean
|
|
17
|
+
default: false
|
|
18
|
+
tableOfContents:
|
|
19
|
+
default: false
|
|
20
|
+
oneof:
|
|
21
|
+
- type: boolean
|
|
22
|
+
- type: dict
|
|
23
|
+
schema:
|
|
24
|
+
sheetName:
|
|
25
|
+
type: string
|
|
26
|
+
default: "Table Of Contents"
|
|
27
|
+
sort:
|
|
28
|
+
type: boolean
|
|
29
|
+
default: false
|
|
30
|
+
valueSubstitutions:
|
|
31
|
+
type: dict
|
|
32
|
+
default: null
|
|
33
|
+
nullable: true
|
|
34
|
+
index:
|
|
35
|
+
type: string
|
|
36
|
+
default: null
|
|
37
|
+
nullable: true
|
|
38
|
+
trace:
|
|
39
|
+
type: integer
|
|
40
|
+
default: 0
|
|
41
|
+
symbols:
|
|
42
|
+
default: all
|
|
43
|
+
oneof:
|
|
44
|
+
- type: string
|
|
45
|
+
allowed: [all]
|
|
46
|
+
- type: list
|
|
47
|
+
schema:
|
|
48
|
+
type: dict
|
|
49
|
+
allow_unknown: false
|
|
50
|
+
schema:
|
|
51
|
+
name:
|
|
52
|
+
type: string
|
|
53
|
+
required: true
|
|
54
|
+
range:
|
|
55
|
+
type: string
|
|
56
|
+
default: null
|
|
57
|
+
nullable: true
|
|
58
|
+
columnDimension:
|
|
59
|
+
default: null
|
|
60
|
+
nullable: true
|
|
61
|
+
oneof:
|
|
62
|
+
- type: integer
|
|
63
|
+
min: 0
|
|
64
|
+
max: 20
|
|
65
|
+
- type: string
|
|
66
|
+
allowed: [infer]
|
|
67
|
+
clearSheet:
|
|
68
|
+
type: boolean
|
|
69
|
+
default: null
|
|
70
|
+
nullable: true
|
|
71
|
+
mergedCells:
|
|
72
|
+
type: boolean
|
|
73
|
+
default: null
|
|
74
|
+
nullable: true
|
|
75
|
+
valueSubstitutions:
|
|
76
|
+
type: dict
|
|
77
|
+
default: null
|
|
78
|
+
nullable: true
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
name:
|
|
2
|
+
type: string
|
|
3
|
+
required: true
|
|
4
|
+
newName:
|
|
5
|
+
type: string
|
|
6
|
+
required: true
|
|
7
|
+
trace:
|
|
8
|
+
type: integer
|
|
9
|
+
default: 0
|
|
10
|
+
labelFilters:
|
|
11
|
+
type: list
|
|
12
|
+
default: null
|
|
13
|
+
nullable: true
|
|
14
|
+
schema:
|
|
15
|
+
type: dict
|
|
16
|
+
schema:
|
|
17
|
+
dimension:
|
|
18
|
+
default: all
|
|
19
|
+
oneof:
|
|
20
|
+
- type: string
|
|
21
|
+
allowed: [all]
|
|
22
|
+
- type: integer
|
|
23
|
+
min: 1
|
|
24
|
+
max: 20
|
|
25
|
+
keep:
|
|
26
|
+
type: list
|
|
27
|
+
default: null
|
|
28
|
+
nullable: true
|
|
29
|
+
required: true
|
|
30
|
+
excludes: [regex, reject]
|
|
31
|
+
schema:
|
|
32
|
+
type: string
|
|
33
|
+
regex:
|
|
34
|
+
type: string
|
|
35
|
+
default: null
|
|
36
|
+
nullable: true
|
|
37
|
+
required: true
|
|
38
|
+
excludes: [keep, reject]
|
|
39
|
+
reject:
|
|
40
|
+
type: list
|
|
41
|
+
default: null
|
|
42
|
+
nullable: true
|
|
43
|
+
required: true
|
|
44
|
+
excludes: [regex, keep]
|
|
45
|
+
schema:
|
|
46
|
+
type: string
|
|
47
|
+
valueFilters:
|
|
48
|
+
type: list
|
|
49
|
+
default: null
|
|
50
|
+
nullable: true
|
|
51
|
+
schema:
|
|
52
|
+
type: dict
|
|
53
|
+
schema:
|
|
54
|
+
attribute:
|
|
55
|
+
type: string
|
|
56
|
+
default: all
|
|
57
|
+
allowed: [all, value, level, marginal, upper, lower, scale]
|
|
58
|
+
rule:
|
|
59
|
+
type: string
|
|
60
|
+
default: null
|
|
61
|
+
nullable: true
|
|
62
|
+
ruleIdentifier:
|
|
63
|
+
type: string
|
|
64
|
+
default: x
|
|
65
|
+
rejectSpecialValues:
|
|
66
|
+
default: null
|
|
67
|
+
nullable: true
|
|
68
|
+
oneof:
|
|
69
|
+
- type: string
|
|
70
|
+
allowed: [EPS, INF, -INF, UNDEF, NA]
|
|
71
|
+
- type: list
|
|
72
|
+
schema:
|
|
73
|
+
type: string
|
|
74
|
+
allowed: [EPS, INF, -INF, UNDEF, NA]
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
trace:
|
|
2
|
+
type: integer
|
|
3
|
+
default: 0
|
|
4
|
+
symbols:
|
|
5
|
+
default: all
|
|
6
|
+
oneof:
|
|
7
|
+
- type: string
|
|
8
|
+
allowed: [all]
|
|
9
|
+
- type: list
|
|
10
|
+
schema:
|
|
11
|
+
type: dict
|
|
12
|
+
allow_unknown: false
|
|
13
|
+
schema:
|
|
14
|
+
name:
|
|
15
|
+
type: string
|
|
16
|
+
required: true
|
|
17
|
+
newName:
|
|
18
|
+
type: string
|
|
19
|
+
default: null
|
|
20
|
+
nullable: true
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
domainCheckType:
|
|
2
|
+
type: string
|
|
3
|
+
default: default
|
|
4
|
+
allowed: [filtered, checked, default]
|
|
5
|
+
duplicateRecords:
|
|
6
|
+
type: string
|
|
7
|
+
default: all
|
|
8
|
+
allowed: [all, first, last, none]
|
|
9
|
+
mergeType:
|
|
10
|
+
type: string
|
|
11
|
+
default: default
|
|
12
|
+
allowed: [replace, merge, default]
|
|
13
|
+
trace:
|
|
14
|
+
type: integer
|
|
15
|
+
default: 0
|
|
16
|
+
symbols:
|
|
17
|
+
default: all
|
|
18
|
+
oneof:
|
|
19
|
+
- type: string
|
|
20
|
+
allowed: [all]
|
|
21
|
+
- type: list
|
|
22
|
+
schema:
|
|
23
|
+
type: dict
|
|
24
|
+
allow_unknown: false
|
|
25
|
+
schema:
|
|
26
|
+
name:
|
|
27
|
+
type: string
|
|
28
|
+
required: true
|
|
29
|
+
newName:
|
|
30
|
+
type: string
|
|
31
|
+
default: null
|
|
32
|
+
nullable: true
|
|
33
|
+
domainCheckType:
|
|
34
|
+
type: string
|
|
35
|
+
default: null
|
|
36
|
+
allowed: [filtered, checked, default]
|
|
37
|
+
nullable: true
|
|
38
|
+
duplicateRecords:
|
|
39
|
+
type: string
|
|
40
|
+
default: null
|
|
41
|
+
allowed: [all, first, last, none]
|
|
42
|
+
nullable: true
|
|
43
|
+
mergeType:
|
|
44
|
+
type: string
|
|
45
|
+
default: null
|
|
46
|
+
allowed: [replace, merge, default]
|
|
47
|
+
nullable: true
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
file:
|
|
2
|
+
type: string
|
|
3
|
+
required: true
|
|
4
|
+
trace:
|
|
5
|
+
type: integer
|
|
6
|
+
default: 0
|
|
7
|
+
symbols:
|
|
8
|
+
default: all
|
|
9
|
+
oneof:
|
|
10
|
+
- type: string
|
|
11
|
+
allowed: [all]
|
|
12
|
+
- type: list
|
|
13
|
+
schema:
|
|
14
|
+
type: dict
|
|
15
|
+
allow_unknown: false
|
|
16
|
+
schema:
|
|
17
|
+
name:
|
|
18
|
+
type: string
|
|
19
|
+
required: true
|
|
20
|
+
newName:
|
|
21
|
+
type: string
|
|
22
|
+
default: null
|
|
23
|
+
nullable: true
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
file:
|
|
2
|
+
type: string
|
|
3
|
+
required: true
|
|
4
|
+
duplicateRecords:
|
|
5
|
+
type: string
|
|
6
|
+
default: all
|
|
7
|
+
allowed: [all, first, last, none]
|
|
8
|
+
trace:
|
|
9
|
+
type: integer
|
|
10
|
+
default: 0
|
|
11
|
+
symbols:
|
|
12
|
+
default: all
|
|
13
|
+
oneof:
|
|
14
|
+
- type: string
|
|
15
|
+
allowed: [all]
|
|
16
|
+
- type: list
|
|
17
|
+
schema:
|
|
18
|
+
type: dict
|
|
19
|
+
allow_unknown: false
|
|
20
|
+
schema:
|
|
21
|
+
name:
|
|
22
|
+
type: string
|
|
23
|
+
required: true
|
|
24
|
+
newName:
|
|
25
|
+
type: string
|
|
26
|
+
default: null
|
|
27
|
+
nullable: true
|
|
28
|
+
duplicateRecords:
|
|
29
|
+
type: string
|
|
30
|
+
default: null
|
|
31
|
+
allowed: [all, first, last, none]
|
|
32
|
+
nullable: true
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
case:
|
|
2
|
+
type: dict
|
|
3
|
+
default: null
|
|
4
|
+
required: true
|
|
5
|
+
excludes: [map, regex, code]
|
|
6
|
+
nullable: true
|
|
7
|
+
schema:
|
|
8
|
+
rule:
|
|
9
|
+
type: string
|
|
10
|
+
required: true
|
|
11
|
+
allowed: [lower, upper, capitalize]
|
|
12
|
+
outputSet:
|
|
13
|
+
type: string
|
|
14
|
+
default: null
|
|
15
|
+
nullable: true
|
|
16
|
+
code:
|
|
17
|
+
type: dict
|
|
18
|
+
default: null
|
|
19
|
+
required: true
|
|
20
|
+
excludes: [map, case, regex]
|
|
21
|
+
nullable: true
|
|
22
|
+
schema:
|
|
23
|
+
rule:
|
|
24
|
+
type: string
|
|
25
|
+
required: true
|
|
26
|
+
ruleIdentifier:
|
|
27
|
+
type: string
|
|
28
|
+
default: x
|
|
29
|
+
outputSet:
|
|
30
|
+
type: string
|
|
31
|
+
default: null
|
|
32
|
+
nullable: true
|
|
33
|
+
map:
|
|
34
|
+
type: dict
|
|
35
|
+
default: null
|
|
36
|
+
required: true
|
|
37
|
+
excludes: [case, regex, code]
|
|
38
|
+
nullable: true
|
|
39
|
+
schema:
|
|
40
|
+
setName:
|
|
41
|
+
type: string
|
|
42
|
+
required: true
|
|
43
|
+
invert:
|
|
44
|
+
type: boolean
|
|
45
|
+
default: false
|
|
46
|
+
regex:
|
|
47
|
+
type: dict
|
|
48
|
+
default: null
|
|
49
|
+
required: true
|
|
50
|
+
excludes: [map, case, code]
|
|
51
|
+
nullable: true
|
|
52
|
+
schema:
|
|
53
|
+
pattern:
|
|
54
|
+
type: string
|
|
55
|
+
required: true
|
|
56
|
+
replace:
|
|
57
|
+
type: string
|
|
58
|
+
required: true
|
|
59
|
+
outputSet:
|
|
60
|
+
type: string
|
|
61
|
+
default: null
|
|
62
|
+
nullable: true
|
|
63
|
+
dimension:
|
|
64
|
+
default: all
|
|
65
|
+
oneof:
|
|
66
|
+
- type: string
|
|
67
|
+
allowed: [all]
|
|
68
|
+
- type: integer
|
|
69
|
+
min: 1
|
|
70
|
+
max: 20
|
|
71
|
+
trace:
|
|
72
|
+
type: integer
|
|
73
|
+
default: 0
|
|
74
|
+
symbols:
|
|
75
|
+
default: all
|
|
76
|
+
oneof:
|
|
77
|
+
- type: string
|
|
78
|
+
allowed: [all]
|
|
79
|
+
- type: list
|
|
80
|
+
schema:
|
|
81
|
+
type: dict
|
|
82
|
+
allow_unknown: false
|
|
83
|
+
schema:
|
|
84
|
+
name:
|
|
85
|
+
type: string
|
|
86
|
+
required: true
|
|
87
|
+
newName:
|
|
88
|
+
type: string
|
|
89
|
+
default: null
|
|
90
|
+
nullable: true
|
|
91
|
+
dimension:
|
|
92
|
+
default: null
|
|
93
|
+
nullable: true
|
|
94
|
+
oneof:
|
|
95
|
+
- type: string
|
|
96
|
+
allowed: [all]
|
|
97
|
+
- type: integer
|
|
98
|
+
min: 1
|
|
99
|
+
max: 20
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name:
|
|
2
|
+
required: true
|
|
3
|
+
oneof:
|
|
4
|
+
- type: string
|
|
5
|
+
- type: list
|
|
6
|
+
schema:
|
|
7
|
+
type: [string]
|
|
8
|
+
newName:
|
|
9
|
+
type: string
|
|
10
|
+
required: true
|
|
11
|
+
aggregationMethod:
|
|
12
|
+
type: string
|
|
13
|
+
default: null
|
|
14
|
+
nullable: true
|
|
15
|
+
asSet:
|
|
16
|
+
type: boolean
|
|
17
|
+
default: false
|
|
18
|
+
text:
|
|
19
|
+
type: string
|
|
20
|
+
default: null
|
|
21
|
+
nullable: true
|
|
22
|
+
trace:
|
|
23
|
+
type: integer
|
|
24
|
+
default: 0
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
file:
|
|
2
|
+
type: string
|
|
3
|
+
required: true
|
|
4
|
+
cName:
|
|
5
|
+
type: string
|
|
6
|
+
default: c
|
|
7
|
+
columnLabel:
|
|
8
|
+
type: string
|
|
9
|
+
default: C
|
|
10
|
+
rName:
|
|
11
|
+
type: string
|
|
12
|
+
default: r
|
|
13
|
+
rowLabel:
|
|
14
|
+
type: string
|
|
15
|
+
default: R
|
|
16
|
+
vfName:
|
|
17
|
+
type: string
|
|
18
|
+
default: vf
|
|
19
|
+
vsName:
|
|
20
|
+
type: string
|
|
21
|
+
default: vs
|
|
22
|
+
vuName:
|
|
23
|
+
type: string
|
|
24
|
+
default: vu
|
|
25
|
+
readAsString:
|
|
26
|
+
type: boolean
|
|
27
|
+
default: true
|
|
28
|
+
readCSVArguments:
|
|
29
|
+
type: dict
|
|
30
|
+
default: null
|
|
31
|
+
nullable: true
|
|
32
|
+
trace:
|
|
33
|
+
type: integer
|
|
34
|
+
default: 0
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
file:
|
|
2
|
+
type: string
|
|
3
|
+
required: true
|
|
4
|
+
cName:
|
|
5
|
+
type: string
|
|
6
|
+
default: c
|
|
7
|
+
columnLabel:
|
|
8
|
+
type: string
|
|
9
|
+
default: C
|
|
10
|
+
rName:
|
|
11
|
+
type: string
|
|
12
|
+
default: r
|
|
13
|
+
rowLabel:
|
|
14
|
+
type: string
|
|
15
|
+
default: R
|
|
16
|
+
sName:
|
|
17
|
+
type: string
|
|
18
|
+
default: s
|
|
19
|
+
sheetLabel:
|
|
20
|
+
type: string
|
|
21
|
+
default: S
|
|
22
|
+
vfName:
|
|
23
|
+
type: string
|
|
24
|
+
default: vf
|
|
25
|
+
vsName:
|
|
26
|
+
type: string
|
|
27
|
+
default: vs
|
|
28
|
+
vuName:
|
|
29
|
+
type: string
|
|
30
|
+
default: vu
|
|
31
|
+
wName:
|
|
32
|
+
type: string
|
|
33
|
+
default: w
|
|
34
|
+
wsName:
|
|
35
|
+
type: string
|
|
36
|
+
default: ws
|
|
37
|
+
mergedCells:
|
|
38
|
+
type: boolean
|
|
39
|
+
default: false
|
|
40
|
+
trace:
|
|
41
|
+
type: integer
|
|
42
|
+
default: 0
|