Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class V1AwsDataConnection(object):
and the value is json key in definition.
"""
swagger_types = {
'available_in_non_aws_providers': 'bool',
'destination': 'str',
'kms_arn': 'str',
'region': 'str',
Expand All @@ -54,6 +55,7 @@ class V1AwsDataConnection(object):
}

attribute_map = {
'available_in_non_aws_providers': 'availableInNonAwsProviders',
'destination': 'destination',
'kms_arn': 'kmsArn',
'region': 'region',
Expand All @@ -66,8 +68,9 @@ class V1AwsDataConnection(object):
'source': 'source'
}

def __init__(self, destination: 'str' =None, kms_arn: 'str' =None, region: 'str' =None, secret_arn_name: 'str' =None, secret_arn_value: 'str' =None, secret_id_access_key_id: 'str' =None, secret_id_secret_access_key: 'str' =None, secret_value_access_key_id: 'str' =None, secret_value_secret_access_key: 'str' =None, source: 'str' =None): # noqa: E501
def __init__(self, available_in_non_aws_providers: 'bool' =None, destination: 'str' =None, kms_arn: 'str' =None, region: 'str' =None, secret_arn_name: 'str' =None, secret_arn_value: 'str' =None, secret_id_access_key_id: 'str' =None, secret_id_secret_access_key: 'str' =None, secret_value_access_key_id: 'str' =None, secret_value_secret_access_key: 'str' =None, source: 'str' =None): # noqa: E501
"""V1AwsDataConnection - a model defined in Swagger""" # noqa: E501
self._available_in_non_aws_providers = None
self._destination = None
self._kms_arn = None
self._region = None
Expand All @@ -79,6 +82,8 @@ def __init__(self, destination: 'str' =None, kms_arn: 'str' =None, region: 'str'
self._secret_value_secret_access_key = None
self._source = None
self.discriminator = None
if available_in_non_aws_providers is not None:
self.available_in_non_aws_providers = available_in_non_aws_providers
if destination is not None:
self.destination = destination
if kms_arn is not None:
Expand All @@ -100,6 +105,29 @@ def __init__(self, destination: 'str' =None, kms_arn: 'str' =None, region: 'str'
if source is not None:
self.source = source

@property
def available_in_non_aws_providers(self) -> 'bool':
"""Gets the available_in_non_aws_providers of this V1AwsDataConnection. # noqa: E501

When true, mount on non-AWS Studios via project-role STS. Default false (AWS-only). # noqa: E501

:return: The available_in_non_aws_providers of this V1AwsDataConnection. # noqa: E501
:rtype: bool
"""
return self._available_in_non_aws_providers

@available_in_non_aws_providers.setter
def available_in_non_aws_providers(self, available_in_non_aws_providers: 'bool'):
"""Sets the available_in_non_aws_providers of this V1AwsDataConnection.

When true, mount on non-AWS Studios via project-role STS. Default false (AWS-only). # noqa: E501

:param available_in_non_aws_providers: The available_in_non_aws_providers of this V1AwsDataConnection. # noqa: E501
:type: bool
"""

self._available_in_non_aws_providers = available_in_non_aws_providers

@property
def destination(self) -> 'str':
"""Gets the destination of this V1AwsDataConnection. # noqa: E501
Expand Down
Loading