Skip to content

Commit

Permalink
Generated from 73dab353224c59ad704cdd7632f734e316128aa4 (#3109)
Browse files Browse the repository at this point in the history
fix credentialResult value format to byte
  • Loading branch information
AutorestCI authored Aug 8, 2018
1 parent 7ff60da commit d982de7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class CredentialResult(Model):
:ivar name: The name of the credential.
:vartype name: str
:ivar value: The value of the credential.
:vartype value: str
:ivar value: Base64-encoded Kubernetes configuration file.
:vartype value: bytearray
"""

_validation = {
Expand All @@ -31,7 +31,7 @@ class CredentialResult(Model):

_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'value': {'key': 'value', 'type': 'str'},
'value': {'key': 'value', 'type': 'bytearray'},
}

def __init__(self, **kwargs):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ class CredentialResult(Model):
:ivar name: The name of the credential.
:vartype name: str
:ivar value: The value of the credential.
:vartype value: str
:ivar value: Base64-encoded Kubernetes configuration file.
:vartype value: bytearray
"""

_validation = {
Expand All @@ -31,7 +31,7 @@ class CredentialResult(Model):

_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'value': {'key': 'value', 'type': 'str'},
'value': {'key': 'value', 'type': 'bytearray'},
}

def __init__(self, **kwargs) -> None:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "4.2.1"
VERSION = "4.1.0"

0 comments on commit d982de7

Please sign in to comment.