Skip to content

Commit dbee627

Browse files
author
CDO Jenkins
committed
Update OpenAPI.yaml from staging
1 parent ddc99bb commit dbee627

14 files changed

+223
-223
lines changed

cdo-sdk/python/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Use the documentation to explore the endpoints Security Cloud Control has to off
44
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
55

66
- API version: 1.5.0
7-
- Package version: 1.2.637
7+
- Package version: 1.2.638
88
- Generator version: 7.4.0
99
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
1010

cdo-sdk/python/cdo_sdk_python/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "1.2.637"
18+
__version__ = "1.2.638"
1919

2020
# import apis into sdk package
2121
from cdo_sdk_python.api.ai_assistant_api import AIAssistantApi

cdo-sdk/python/cdo_sdk_python/api_client.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def __init__(
8888
self.default_headers[header_name] = header_value
8989
self.cookie = cookie
9090
# Set default User-Agent.
91-
self.user_agent = 'OpenAPI-Generator/1.2.637/python'
91+
self.user_agent = 'OpenAPI-Generator/1.2.638/python'
9292
self.client_side_validation = configuration.client_side_validation
9393

9494
def __enter__(self):

cdo-sdk/python/cdo_sdk_python/configuration.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ def to_debug_report(self):
380380
"OS: {env}\n"\
381381
"Python Version: {pyversion}\n"\
382382
"Version of the API: 1.5.0\n"\
383-
"SDK Package Version: 1.2.637".\
383+
"SDK Package Version: 1.2.638".\
384384
format(env=sys.platform, pyversion=sys.version)
385385

386386
def get_host_settings(self):

cdo-sdk/python/cdo_sdk_python/models/jsp_property_group_descriptor.py

+11-11
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ class JspPropertyGroupDescriptor(BaseModel):
2727
"""
2828
JspPropertyGroupDescriptor
2929
""" # noqa: E501
30-
error_on_undeclared_namespace: Optional[StrictStr] = Field(default=None, alias="errorOnUndeclaredNamespace")
31-
el_ignored: Optional[StrictStr] = Field(default=None, alias="elIgnored")
32-
error_on_el_not_found: Optional[StrictStr] = Field(default=None, alias="errorOnELNotFound")
33-
page_encoding: Optional[StrictStr] = Field(default=None, alias="pageEncoding")
30+
buffer: Optional[StrictStr] = None
3431
scripting_invalid: Optional[StrictStr] = Field(default=None, alias="scriptingInvalid")
3532
is_xml: Optional[StrictStr] = Field(default=None, alias="isXml")
3633
include_preludes: Optional[List[StrictStr]] = Field(default=None, alias="includePreludes")
3734
include_codas: Optional[List[StrictStr]] = Field(default=None, alias="includeCodas")
3835
deferred_syntax_allowed_as_literal: Optional[StrictStr] = Field(default=None, alias="deferredSyntaxAllowedAsLiteral")
3936
trim_directive_whitespaces: Optional[StrictStr] = Field(default=None, alias="trimDirectiveWhitespaces")
40-
buffer: Optional[StrictStr] = None
37+
error_on_undeclared_namespace: Optional[StrictStr] = Field(default=None, alias="errorOnUndeclaredNamespace")
38+
el_ignored: Optional[StrictStr] = Field(default=None, alias="elIgnored")
39+
error_on_el_not_found: Optional[StrictStr] = Field(default=None, alias="errorOnELNotFound")
40+
page_encoding: Optional[StrictStr] = Field(default=None, alias="pageEncoding")
4141
default_content_type: Optional[StrictStr] = Field(default=None, alias="defaultContentType")
4242
url_patterns: Optional[List[StrictStr]] = Field(default=None, alias="urlPatterns")
43-
__properties: ClassVar[List[str]] = ["errorOnUndeclaredNamespace", "elIgnored", "errorOnELNotFound", "pageEncoding", "scriptingInvalid", "isXml", "includePreludes", "includeCodas", "deferredSyntaxAllowedAsLiteral", "trimDirectiveWhitespaces", "buffer", "defaultContentType", "urlPatterns"]
43+
__properties: ClassVar[List[str]] = ["buffer", "scriptingInvalid", "isXml", "includePreludes", "includeCodas", "deferredSyntaxAllowedAsLiteral", "trimDirectiveWhitespaces", "errorOnUndeclaredNamespace", "elIgnored", "errorOnELNotFound", "pageEncoding", "defaultContentType", "urlPatterns"]
4444

4545
model_config = ConfigDict(
4646
populate_by_name=True,
@@ -93,17 +93,17 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
9393
return cls.model_validate(obj)
9494

9595
_obj = cls.model_validate({
96-
"errorOnUndeclaredNamespace": obj.get("errorOnUndeclaredNamespace"),
97-
"elIgnored": obj.get("elIgnored"),
98-
"errorOnELNotFound": obj.get("errorOnELNotFound"),
99-
"pageEncoding": obj.get("pageEncoding"),
96+
"buffer": obj.get("buffer"),
10097
"scriptingInvalid": obj.get("scriptingInvalid"),
10198
"isXml": obj.get("isXml"),
10299
"includePreludes": obj.get("includePreludes"),
103100
"includeCodas": obj.get("includeCodas"),
104101
"deferredSyntaxAllowedAsLiteral": obj.get("deferredSyntaxAllowedAsLiteral"),
105102
"trimDirectiveWhitespaces": obj.get("trimDirectiveWhitespaces"),
106-
"buffer": obj.get("buffer"),
103+
"errorOnUndeclaredNamespace": obj.get("errorOnUndeclaredNamespace"),
104+
"elIgnored": obj.get("elIgnored"),
105+
"errorOnELNotFound": obj.get("errorOnELNotFound"),
106+
"pageEncoding": obj.get("pageEncoding"),
107107
"defaultContentType": obj.get("defaultContentType"),
108108
"urlPatterns": obj.get("urlPatterns")
109109
})

cdo-sdk/python/cdo_sdk_python/models/session_cookie_config.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ class SessionCookieConfig(BaseModel):
2727
"""
2828
SessionCookieConfig
2929
""" # noqa: E501
30-
http_only: Optional[StrictBool] = Field(default=None, alias="httpOnly")
3130
name: Optional[StrictStr] = None
3231
path: Optional[StrictStr] = None
3332
attributes: Optional[Dict[str, StrictStr]] = None
3433
comment: Optional[StrictStr] = None
3534
domain: Optional[StrictStr] = None
35+
http_only: Optional[StrictBool] = Field(default=None, alias="httpOnly")
3636
secure: Optional[StrictBool] = None
3737
max_age: Optional[StrictInt] = Field(default=None, alias="maxAge")
38-
__properties: ClassVar[List[str]] = ["httpOnly", "name", "path", "attributes", "comment", "domain", "secure", "maxAge"]
38+
__properties: ClassVar[List[str]] = ["name", "path", "attributes", "comment", "domain", "httpOnly", "secure", "maxAge"]
3939

4040
model_config = ConfigDict(
4141
populate_by_name=True,
@@ -88,12 +88,12 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
8888
return cls.model_validate(obj)
8989

9090
_obj = cls.model_validate({
91-
"httpOnly": obj.get("httpOnly"),
9291
"name": obj.get("name"),
9392
"path": obj.get("path"),
9493
"attributes": obj.get("attributes"),
9594
"comment": obj.get("comment"),
9695
"domain": obj.get("domain"),
96+
"httpOnly": obj.get("httpOnly"),
9797
"secure": obj.get("secure"),
9898
"maxAge": obj.get("maxAge")
9999
})

cdo-sdk/python/docs/JspPropertyGroupDescriptor.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**error_on_undeclared_namespace** | **str** | | [optional]
9-
**el_ignored** | **str** | | [optional]
10-
**error_on_el_not_found** | **str** | | [optional]
11-
**page_encoding** | **str** | | [optional]
8+
**buffer** | **str** | | [optional]
129
**scripting_invalid** | **str** | | [optional]
1310
**is_xml** | **str** | | [optional]
1411
**include_preludes** | **List[str]** | | [optional]
1512
**include_codas** | **List[str]** | | [optional]
1613
**deferred_syntax_allowed_as_literal** | **str** | | [optional]
1714
**trim_directive_whitespaces** | **str** | | [optional]
18-
**buffer** | **str** | | [optional]
15+
**error_on_undeclared_namespace** | **str** | | [optional]
16+
**el_ignored** | **str** | | [optional]
17+
**error_on_el_not_found** | **str** | | [optional]
18+
**page_encoding** | **str** | | [optional]
1919
**default_content_type** | **str** | | [optional]
2020
**url_patterns** | **List[str]** | | [optional]
2121

cdo-sdk/python/docs/SessionCookieConfig.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**http_only** | **bool** | | [optional]
98
**name** | **str** | | [optional]
109
**path** | **str** | | [optional]
1110
**attributes** | **Dict[str, str]** | | [optional]
1211
**comment** | **str** | | [optional]
1312
**domain** | **str** | | [optional]
13+
**http_only** | **bool** | | [optional]
1414
**secure** | **bool** | | [optional]
1515
**max_age** | **int** | | [optional]
1616

cdo-sdk/python/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "cdo_sdk_python"
3-
version = "1.2.637"
3+
version = "1.2.638"
44
description = "Cisco Security Cloud Control API"
55
authors = ["Cisco Security Cloud Control TAC <[email protected]>"]
66
license = "NoLicense"

cdo-sdk/python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "cdo-sdk-python"
25-
VERSION = "1.2.637"
25+
VERSION = "1.2.638"
2626
PYTHON_REQUIRES = ">=3.7"
2727
REQUIRES = [
2828
"urllib3 >= 1.25.3, < 2.1.0",

object-service-openapi.yaml

+4-4
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,15 @@ paths:
113113
$ref: '#/components/schemas/CreateRequest'
114114
required: true
115115
responses:
116-
"403":
117-
$ref: '#/components/responses/http403Forbidden'
118116
"201":
119117
description: A descriptive representation of the created Security Cloud
120118
Control object.
121119
content:
122120
application/json:
123121
schema:
124122
$ref: '#/components/schemas/ObjectResponse'
123+
"403":
124+
$ref: '#/components/responses/http403Forbidden'
125125
"401":
126126
$ref: '#/components/responses/http401Unauthorised'
127127
"400":
@@ -383,8 +383,6 @@ paths:
383383
format: uuid
384384
example: 7131daad-e813-4b8f-8f42-be1e241e8cdb
385385
responses:
386-
"403":
387-
$ref: '#/components/responses/http403Forbidden'
388386
"200":
389387
description: A descriptive representation of the created Security Cloud
390388
Control object.
@@ -394,6 +392,8 @@ paths:
394392
type: array
395393
items:
396394
$ref: '#/components/schemas/ReferenceInfo'
395+
"403":
396+
$ref: '#/components/responses/http403Forbidden'
397397
"401":
398398
$ref: '#/components/responses/http401Unauthorised'
399399
"400":

openapi.yaml

+10-10
Original file line numberDiff line numberDiff line change
@@ -9434,13 +9434,7 @@ components:
94349434
JspPropertyGroupDescriptor:
94359435
type: object
94369436
properties:
9437-
errorOnUndeclaredNamespace:
9438-
type: string
9439-
elIgnored:
9440-
type: string
9441-
errorOnELNotFound:
9442-
type: string
9443-
pageEncoding:
9437+
buffer:
94449438
type: string
94459439
scriptingInvalid:
94469440
type: string
@@ -9458,7 +9452,13 @@ components:
94589452
type: string
94599453
trimDirectiveWhitespaces:
94609454
type: string
9461-
buffer:
9455+
errorOnUndeclaredNamespace:
9456+
type: string
9457+
elIgnored:
9458+
type: string
9459+
errorOnELNotFound:
9460+
type: string
9461+
pageEncoding:
94629462
type: string
94639463
defaultContentType:
94649464
type: string
@@ -9668,8 +9668,6 @@ components:
96689668
SessionCookieConfig:
96699669
type: object
96709670
properties:
9671-
httpOnly:
9672-
type: boolean
96739671
name:
96749672
type: string
96759673
path:
@@ -9683,6 +9681,8 @@ components:
96839681
deprecated: true
96849682
domain:
96859683
type: string
9684+
httpOnly:
9685+
type: boolean
96869686
secure:
96879687
type: boolean
96889688
maxAge:

postman-collection.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)