Skip to content

Commit d982de7

Browse files
authored
Generated from 73dab353224c59ad704cdd7632f734e316128aa4 (#3109)
fix credentialResult value format to byte
1 parent 7ff60da commit d982de7

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

azure-mgmt-containerservice/azure/mgmt/containerservice/models/credential_result.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ class CredentialResult(Model):
2020
2121
:ivar name: The name of the credential.
2222
:vartype name: str
23-
:ivar value: The value of the credential.
24-
:vartype value: str
23+
:ivar value: Base64-encoded Kubernetes configuration file.
24+
:vartype value: bytearray
2525
"""
2626

2727
_validation = {
@@ -31,7 +31,7 @@ class CredentialResult(Model):
3131

3232
_attribute_map = {
3333
'name': {'key': 'name', 'type': 'str'},
34-
'value': {'key': 'value', 'type': 'str'},
34+
'value': {'key': 'value', 'type': 'bytearray'},
3535
}
3636

3737
def __init__(self, **kwargs):

azure-mgmt-containerservice/azure/mgmt/containerservice/models/credential_result_py3.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ class CredentialResult(Model):
2020
2121
:ivar name: The name of the credential.
2222
:vartype name: str
23-
:ivar value: The value of the credential.
24-
:vartype value: str
23+
:ivar value: Base64-encoded Kubernetes configuration file.
24+
:vartype value: bytearray
2525
"""
2626

2727
_validation = {
@@ -31,7 +31,7 @@ class CredentialResult(Model):
3131

3232
_attribute_map = {
3333
'name': {'key': 'name', 'type': 'str'},
34-
'value': {'key': 'value', 'type': 'str'},
34+
'value': {'key': 'value', 'type': 'bytearray'},
3535
}
3636

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

azure-mgmt-containerservice/azure/mgmt/containerservice/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "4.2.1"
12+
VERSION = "4.1.0"
1313

0 commit comments

Comments
 (0)