diff --git a/MANIFEST b/MANIFEST index c9378ca..7491270 100644 --- a/MANIFEST +++ b/MANIFEST @@ -102,6 +102,8 @@ strongdm/roles_history_pb2.py strongdm/roles_history_pb2_grpc.py strongdm/roles_pb2.py strongdm/roles_pb2_grpc.py +strongdm/secret_engine_policy_pb2_grpc.py +strongdm/secret_engine_types_pb2_grpc.py strongdm/secret_store_healths_pb2.py strongdm/secret_store_healths_pb2_grpc.py strongdm/secret_store_types_pb2.py diff --git a/setup.py b/setup.py index cf93926..36c6671 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name='strongdm', packages=['strongdm'], - version='11.8.0', + version='11.9.0', license='apache-2.0', description='strongDM SDK for the Python programming language.', long_description=long_description, @@ -32,7 +32,7 @@ author_email='sdk-feedback@strongdm.com', url='https://github.com/strongdm/strongdm-sdk-python', download_url= - 'https://github.com/strongdm/strongdm-sdk-python/archive/v11.8.0.tar.gz', + 'https://github.com/strongdm/strongdm-sdk-python/archive/v11.9.0.tar.gz', keywords=[ 'strongDM', 'sdm', 'api', 'automation', 'security', 'audit', 'database', 'server', 'ssh', 'rdp' diff --git a/strongdm.egg-info/PKG-INFO b/strongdm.egg-info/PKG-INFO index df4ece8..921aca0 100644 --- a/strongdm.egg-info/PKG-INFO +++ b/strongdm.egg-info/PKG-INFO @@ -1,12 +1,12 @@ Metadata-Version: 2.1 Name: strongdm -Version: 11.8.0 +Version: 11.9.0 Summary: strongDM SDK for the Python programming language. Home-page: https://github.com/strongdm/strongdm-sdk-python Author: strongDM Team Author-email: sdk-feedback@strongdm.com License: apache-2.0 -Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v11.8.0.tar.gz +Download-URL: https://github.com/strongdm/strongdm-sdk-python/archive/v11.9.0.tar.gz Keywords: strongDM,sdm,api,automation,security,audit,database,server,ssh,rdp Platform: UNKNOWN Classifier: Development Status :: 4 - Beta diff --git a/strongdm.egg-info/SOURCES.txt b/strongdm.egg-info/SOURCES.txt index 9f2eb87..38cad07 100644 --- a/strongdm.egg-info/SOURCES.txt +++ b/strongdm.egg-info/SOURCES.txt @@ -101,6 +101,8 @@ strongdm/roles_history_pb2.py strongdm/roles_history_pb2_grpc.py strongdm/roles_pb2.py strongdm/roles_pb2_grpc.py +strongdm/secret_engine_policy_pb2_grpc.py +strongdm/secret_engine_types_pb2_grpc.py strongdm/secret_store_healths_pb2.py strongdm/secret_store_healths_pb2_grpc.py strongdm/secret_store_types_pb2.py diff --git a/strongdm/client.py b/strongdm/client.py index bd6d240..fed2628 100644 --- a/strongdm/client.py +++ b/strongdm/client.py @@ -33,7 +33,7 @@ DEFAULT_BASE_RETRY_DELAY = 0.0030 # 30 ms DEFAULT_MAX_RETRY_DELAY = 300 # 300 seconds API_VERSION = '2024-03-28' -USER_AGENT = 'strongdm-sdk-python/11.8.0' +USER_AGENT = 'strongdm-sdk-python/11.9.0' class Client: @@ -370,18 +370,18 @@ def __init__(self, See `strongdm.svc.RolesHistory`. ''' - self.secret_store_healths = svc.SecretStoreHealths(channel, self) - ''' - SecretStoreHealths exposes health states for secret stores. - - See `strongdm.svc.SecretStoreHealths`. - ''' self.secret_stores = svc.SecretStores(channel, self) ''' SecretStores are servers where resource secrets (passwords, keys) are stored. See `strongdm.svc.SecretStores`. ''' + self.secret_store_healths = svc.SecretStoreHealths(channel, self) + ''' + SecretStoreHealths exposes health states for secret stores. + + See `strongdm.svc.SecretStoreHealths`. + ''' self.secret_stores_history = svc.SecretStoresHistory(channel, self) ''' SecretStoresHistory records all changes to the state of a SecretStore. diff --git a/strongdm/constants.py b/strongdm/constants.py index e27ec58..dac19f3 100755 --- a/strongdm/constants.py +++ b/strongdm/constants.py @@ -105,6 +105,7 @@ class ActivityEntityType: ORGANIZATION = "organization" INSTALLATION = "installation" SECRET_STORE = "secretstore" + SECRET_ENGINE = "secretengine" REMOTE_IDENTITY_GROUP = "remote_identity_group" REMOTE_IDENTITY = "remote_identity" IDENTITY_SET = "identity_set" @@ -114,6 +115,7 @@ class ActivityEntityType: APPROVAL_FLOW = "approval_flow" APPROVAL_FLOW_STEP = "approval_flow_step" APPROVAL_FLOW_APPROVER = "approval_flow_approver" + MANAGED_SECRET = "managed_secret" NODE = "node" PEERING_GROUP = "peering_group" PEERING_GROUP_NODE = "peering_group_node" @@ -244,6 +246,9 @@ class ActivityVerb: SECRET_STORE_ADDED = "secret store added" SECRET_STORE_UPDATED = "secret store updated" SECRET_STORE_DELETED = "secret store deleted" + SECRET_ENGINE_ADDED = "secret engine added" + SECRET_ENGINE_UPDATED = "secret engine updated" + SECRET_ENGINE_DELETED = "secret engine deleted" REMOTE_IDENTITY_GROUP_CREATED = "remote identity group created" REMOTE_IDENTITY_GROUP_UPDATED = "remote identity group updated" REMOTE_IDENTITY_GROUP_DELETED = "remote identity group deleted" @@ -313,6 +318,10 @@ class ActivityVerb: USER_INTEGRATION_DEAUTHORIZED = "user deauthorized integration" SERVICE_NOW_TOKEN_ADDED = "ServiceNow token created" SERVICE_NOW_TOKEN_DELETED = "ServiceNow token deleted" + MANAGED_SECRET_CREATED = "managed secret created" + MANAGED_SECRET_UPDATED = "managed secret updated" + MANAGED_SECRET_EXPIRATION_TIME_UPDATED = "managed secret expiration time updated" + MANAGED_SECRET_DELETED = "managed secret deleted" # Permissions, all permissions that may be granted to an account. @@ -327,6 +336,11 @@ class Permission: DATASOURCE_UPDATE = "datasource:update" RESOURCE_LOCK_DELETE = "resourcelock:delete" RESOURCE_LOCK_LIST = "resourcelock:list" + SECRET_ENGINE_CREATE = "secretengine:create" + SECRET_ENGINE_LIST = "secretengine:list" + SECRET_ENGINE_DELETE = "secretengine:delete" + SECRET_ENGINE_UPDATE = "secretengine:update" + SECRET_ENGINE_STATUS = "secretengine:status" SECRET_STORE_CREATE = "secretstore:create" SECRET_STORE_LIST = "secretstore:list" SECRET_STORE_DELETE = "secretstore:delete" @@ -370,6 +384,7 @@ class Permission: ORG_AUDIT_ORG = "audit:organization" ORG_AUDIT_REMOTE_IDENTITIES = "audit:remoteidentities" ORG_AUDIT_REMOTE_IDENTITY_GROUPS = "audit:remoteidentitygroups" + ORG_AUDIT_SECRET_ENGINES = "audit:secretengines" ORG_AUDIT_SECRET_STORES = "audit:secretstores" ORG_AUDIT_WORKFLOWS = "audit:workflows" ORG_AUDIT_APPROVAL_FLOWS = "audit:approvalflows" @@ -402,6 +417,11 @@ class Permission: BILLING_READ = "billing:read" CREDENTIAL_READ = "credential:read" CREDENTIAL_WRITE = "credential:write" + MANAGED_SECRET_CREATE = "managedsecret:create" + MANAGED_SECRET_LIST = "managedsecret:list" + MANAGED_SECRET_DELETE = "managedsecret:delete" + MANAGED_SECRET_UPDATE = "managedsecret:update" + MANAGED_SECRET_READ = "managedsecret:read" # Query Categories, all the categories of resource against which queries are logged. diff --git a/strongdm/drivers_pb2.py b/strongdm/drivers_pb2.py index aa57fa1..0b3a854 100644 --- a/strongdm/drivers_pb2.py +++ b/strongdm/drivers_pb2.py @@ -30,7 +30,7 @@ from . import tags_pb2 as tags__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\rdrivers.proto\x12\x02v1\x1a\roptions.proto\x1a\ntags.proto\"\xe3\x43\n\x08Resource\x12\x45\n\x03\x61ks\x18\xa5\x06 \x01(\x0b\x32\x07.v1.AKSB,\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03\x61ks\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x62\n\x0e\x61ks_basic_auth\x18\xa6\x06 \x01(\x0b\x32\x10.v1.AKSBasicAuthB5\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0c\x61kshttpbasic\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12q\n\x13\x61ks_service_account\x18\xa7\x06 \x01(\x0b\x32\x15.v1.AKSServiceAccountB:\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61ksserviceaccount\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\xa6\x01\n&aks_service_account_user_impersonation\x18\xaa\x06 \x01(\x0b\x32&.v1.AKSServiceAccountUserImpersonationBK\xf2\xf8\xb3\x07<\xca\xf3\xb3\x07\x37\xc2\xf4\xb3\x07\x32\n\x0cjson_gateway\x12\"aksserviceaccountuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12z\n\x16\x61ks_user_impersonation\x18\xae\x06 \x01(\x0b\x32\x18.v1.AKSUserImpersonationB=\xf2\xf8\xb3\x07.\xca\xf3\xb3\x07)\xc2\xf4\xb3\x07$\n\x0cjson_gateway\x12\x14\x61ksuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x45\n\x03\x61ws\x18\xfc\x11 \x01(\x0b\x32\x07.v1.AWSB,\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03\x61ws\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12[\n\x0b\x61ws_console\x18\xb8\x17 \x01(\x0b\x32\x0e.v1.AWSConsoleB3\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nawsConsole\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x85\x01\n\x1b\x61ws_console_static_key_pair\x18\xb9\x17 \x01(\x0b\x32\x1b.v1.AWSConsoleStaticKeyPairB@\xf2\xf8\xb3\x07\x31\xca\xf3\xb3\x07,\xc2\xf4\xb3\x07\'\n\x0cjson_gateway\x12\x17\x61wsConsoleStaticKeyPair\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12X\n\namazon_eks\x18\xa2\x06 \x01(\x0b\x32\r.v1.AmazonEKSB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tamazoneks\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x87\x01\n\x1b\x61mazon_eks_instance_profile\x18\xa9\x06 \x01(\x0b\x32\x1c.v1.AmazonEKSInstanceProfileBA\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x0cjson_gateway\x12\x18\x61mazoneksinstanceprofile\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\xbc\x01\n.amazon_eks_instance_profile_user_impersonation\x18\xad\x06 \x01(\x0b\x32-.v1.AmazonEKSInstanceProfileUserImpersonationBR\xf2\xf8\xb3\x07\x43\xca\xf3\xb3\x07>\xc2\xf4\xb3\x07\x39\n\x0cjson_gateway\x12)amazoneksinstanceprofileuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x8d\x01\n\x1d\x61mazon_eks_user_impersonation\x18\xb2\x06 \x01(\x0b\x32\x1e.v1.AmazonEKSUserImpersonationBC\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x0cjson_gateway\x12\x1a\x61mazoneksuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12U\n\tamazon_es\x18\xd8\x04 \x01(\x0b\x32\x0c.v1.AmazonESB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x61mazones\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12m\n\x11\x61mazon_mqamqp_091\x18\xc5\x13 \x01(\x0b\x32\x13.v1.AmazonMQAMQP091B:\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61mazonmq-amqp-091\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12M\n\x06\x61thena\x18\x64 \x01(\x0b\x32\n.v1.AthenaB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x61thena\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12_\n\x0c\x61urora_mysql\x18\xcd\x08 \x01(\x0b\x32\x0f.v1.AuroraMysqlB5\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0c\x61urora-mysql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12h\n\x0f\x61urora_postgres\x18\x95\n \x01(\x0b\x32\x12.v1.AuroraPostgresB8\xf2\xf8\xb3\x07)\xca\xf3\xb3\x07$\xc2\xf4\xb3\x07\x1f\n\x0cjson_gateway\x12\x0f\x61urora-postgres\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12q\n\x13\x61urora_postgres_iam\x18\x9d\n \x01(\x0b\x32\x15.v1.AuroraPostgresIAMB:\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61urorapostgresiam\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05\x61zure\x18\xf0\x15 \x01(\x0b\x32\t.v1.AzureB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x61zure\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x66\n\x11\x61zure_certificate\x18\xf1\x15 \x01(\x0b\x32\x14.v1.AzureCertificateB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tazurecert\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12[\n\x0b\x61zure_mysql\x18\xd3\x08 \x01(\x0b\x32\x0e.v1.AzureMysqlB3\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nazuremysql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x64\n\x0e\x61zure_postgres\x18\x9b\n \x01(\x0b\x32\x11.v1.AzurePostgresB6\xf2\xf8\xb3\x07\'\xca\xf3\xb3\x07\"\xc2\xf4\xb3\x07\x1d\n\x0cjson_gateway\x12\razurepostgres\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x93\x01\n\x1f\x61zure_postgres_managed_identity\x18\x9c\n \x01(\x0b\x32 .v1.AzurePostgresManagedIdentityBE\xf2\xf8\xb3\x07\x36\xca\xf3\xb3\x07\x31\xc2\xf4\xb3\x07,\n\x0cjson_gateway\x12\x1c\x61zurepostgresmanagedidentity\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12U\n\tbig_query\x18\xc8\x01 \x01(\x0b\x32\x0c.v1.BigQueryB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x62igquery\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tcassandra\x18\xac\x02 \x01(\x0b\x32\r.v1.CassandraB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tcassandra\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05\x63itus\x18\x99\n \x01(\x0b\x32\t.v1.CitusB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x63itus\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12T\n\x08\x63lustrix\x18\xce\x08 \x01(\x0b\x32\x0c.v1.ClustrixB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x63lustrix\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tcockroach\x18\x97\n \x01(\x0b\x32\r.v1.CockroachB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tcockroach\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12J\n\x06\x64\x62_2_i\x18\xe0\x12 \x01(\x0b\x32\x08.v1.DB2IB-\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x0cjson_gateway\x12\x04\x64\x62\x32i\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12P\n\x08\x64\x62_2_luw\x18\x98\x11 \x01(\x0b\x32\n.v1.DB2LUWB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x64\x62\x32luw\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12h\n\x10\x64ocument_db_host\x18\x9c\x08 \x01(\x0b\x32\x12.v1.DocumentDBHostB7\xf2\xf8\xb3\x07(\xca\xf3\xb3\x07#\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0e\x64ocumentdbhost\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12{\n\x17\x64ocument_db_replica_set\x18\x9d\x08 \x01(\x0b\x32\x18.v1.DocumentDBReplicaSetB=\xf2\xf8\xb3\x07.\xca\xf3\xb3\x07)\xc2\xf4\xb3\x07$\n\x0cjson_gateway\x12\x14\x64ocumentdbreplicaset\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05\x64ruid\x18\x90\x03 \x01(\x0b\x32\t.v1.DruidB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x64ruid\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12S\n\tdynamo_db\x18\xf4\x03 \x01(\x0b\x32\x0c.v1.DynamoDBB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x64ynamo\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12Q\n\x07\x65lastic\x18\xd9\x04 \x01(\x0b\x32\x0b.v1.ElasticB0\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07\x65lastic\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x64\n\x11\x65lasticache_redis\x18\xc1\x0c \x01(\x0b\x32\x14.v1.ElasticacheRedisB0\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07\x65\x63redis\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x45\n\x03gcp\x18\x8c\x15 \x01(\x0b\x32\x07.v1.GCPB,\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03gcp\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12X\n\ngoogle_gke\x18\xa3\x06 \x01(\x0b\x32\r.v1.GoogleGKEB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tgooglegke\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x8d\x01\n\x1dgoogle_gke_user_impersonation\x18\xb0\x06 \x01(\x0b\x32\x1e.v1.GoogleGKEUserImpersonationBC\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x0cjson_gateway\x12\x1agooglegkeuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tgreenplum\x18\x96\n \x01(\x0b\x32\r.v1.GreenplumB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tgreenplum\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12U\n\thttp_auth\x18\xbe\x05 \x01(\x0b\x32\x0c.v1.HTTPAuthB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08httpAuth\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x61\n\x0fhttp_basic_auth\x18\xbc\x05 \x01(\x0b\x32\x11.v1.HTTPBasicAuthB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\thttpBasic\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\\\n\x0chttp_no_auth\x18\xbd\x05 \x01(\x0b\x32\x0e.v1.HTTPNoAuthB3\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nhttpNoAuth\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12Z\n\nkubernetes\x18\xa0\x06 \x01(\x0b\x32\x0e.v1.KubernetesB3\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nkubernetes\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12w\n\x15kubernetes_basic_auth\x18\xa1\x06 \x01(\x0b\x32\x17.v1.KubernetesBasicAuthB<\xf2\xf8\xb3\x07-\xca\xf3\xb3\x07(\xc2\xf4\xb3\x07#\n\x0cjson_gateway\x12\x13kuberneteshttpbasic\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x86\x01\n\x1akubernetes_service_account\x18\xa4\x06 \x01(\x0b\x32\x1c.v1.KubernetesServiceAccountBA\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x0cjson_gateway\x12\x18kubernetesserviceaccount\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\xbb\x01\n-kubernetes_service_account_user_impersonation\x18\xa8\x06 \x01(\x0b\x32-.v1.KubernetesServiceAccountUserImpersonationBR\xf2\xf8\xb3\x07\x43\xca\xf3\xb3\x07>\xc2\xf4\xb3\x07\x39\n\x0cjson_gateway\x12)kubernetesserviceaccountuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x8f\x01\n\x1dkubernetes_user_impersonation\x18\xac\x06 \x01(\x0b\x32\x1f.v1.KubernetesUserImpersonationBD\xf2\xf8\xb3\x07\x35\xca\xf3\xb3\x07\x30\xc2\xf4\xb3\x07+\n\x0cjson_gateway\x12\x1bkubernetesuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12X\n\nmtls_mysql\x18\xd2\x08 \x01(\x0b\x32\r.v1.MTLSMysqlB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmTLSMysql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x61\n\rmtls_postgres\x18\x9a\n \x01(\x0b\x32\x10.v1.MTLSPostgresB5\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0cmTLSPostgres\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05maria\x18\xcf\x08 \x01(\x0b\x32\t.v1.MariaB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05maria\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tmemcached\x18\x84\x07 \x01(\x0b\x32\r.v1.MemcachedB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmemcached\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12N\n\x06memsql\x18\xd0\x08 \x01(\x0b\x32\n.v1.MemsqlB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06memsql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12X\n\nmongo_host\x18\xea\x07 \x01(\x0b\x32\r.v1.MongoHostB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmongoHost\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x61\n\x11mongo_legacy_host\x18\xe8\x07 \x01(\x0b\x32\x13.v1.MongoLegacyHostB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mongo\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12x\n\x17mongo_legacy_replicaset\x18\xe9\x07 \x01(\x0b\x32\x19.v1.MongoLegacyReplicasetB9\xf2\xf8\xb3\x07*\xca\xf3\xb3\x07%\xc2\xf4\xb3\x07 \n\x0cjson_gateway\x12\x10mongo-replicaset\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12k\n\x11mongo_replica_set\x18\xeb\x07 \x01(\x0b\x32\x13.v1.MongoReplicaSetB8\xf2\xf8\xb3\x07)\xca\xf3\xb3\x07$\xc2\xf4\xb3\x07\x1f\n\x0cjson_gateway\x12\x0fmongoReplicaSet\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12w\n\x15mongo_sharded_cluster\x18\x9e\x08 \x01(\x0b\x32\x17.v1.MongoShardedClusterB<\xf2\xf8\xb3\x07-\xca\xf3\xb3\x07(\xc2\xf4\xb3\x07#\n\x0cjson_gateway\x12\x13mongoshardedcluster\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05mysql\x18\xcc\x08 \x01(\x0b\x32\t.v1.MysqlB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mysql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12Q\n\x07neptune\x18\xca\x11 \x01(\x0b\x32\x0b.v1.NeptuneB0\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07neptune\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12[\n\x0bneptune_iam\x18\x99\x11 \x01(\x0b\x32\x0e.v1.NeptuneIAMB3\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nneptuneiam\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12N\n\x06oracle\x18\xb0\t \x01(\x0b\x32\n.v1.OracleB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06oracle\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12T\n\x08postgres\x18\x94\n \x01(\x0b\x32\x0c.v1.PostgresB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08postgres\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12N\n\x06presto\x18\xf8\n \x01(\x0b\x32\n.v1.PrestoB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06presto\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x45\n\x03rdp\x18\xdc\x0b \x01(\x0b\x32\x07.v1.RDPB,\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03rdp\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12R\n\x08rdp_cert\x18\xdd\x0b \x01(\x0b\x32\x0b.v1.RDPCertB0\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07rdpCert\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12h\n\x10rds_postgres_iam\x18\x9e\n \x01(\x0b\x32\x12.v1.RDSPostgresIAMB7\xf2\xf8\xb3\x07(\xca\xf3\xb3\x07#\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0erdspostgresiam\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12m\n\x11rabbit_mqamqp_091\x18\xc4\x13 \x01(\x0b\x32\x13.v1.RabbitMQAMQP091B:\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11rabbitmq-amqp-091\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12O\n\x07raw_tcp\x18\xa8\x14 \x01(\x0b\x32\n.v1.RawTCPB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06rawtcp\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05redis\x18\xc0\x0c \x01(\x0b\x32\t.v1.RedisB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05redis\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12T\n\x08redshift\x18\x98\n \x01(\x0b\x32\x0c.v1.RedshiftB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08redshift\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12T\n\nsql_server\x18\x88\x0e \x01(\x0b\x32\r.v1.SQLServerB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mssql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12k\n\x13sql_server_azure_ad\x18\x8d\x0e \x01(\x0b\x32\x14.v1.SQLServerAzureADB5\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0cmssqlAzureAD\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12r\n\x16sql_server_kerberos_ad\x18\x92\x0e \x01(\x0b\x32\x17.v1.SQLServerKerberosADB6\xf2\xf8\xb3\x07\'\xca\xf3\xb3\x07\"\xc2\xf4\xb3\x07\x1d\n\x0cjson_gateway\x12\rmssqlKerberos\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x45\n\x03ssh\x18\xec\x0e \x01(\x0b\x32\x07.v1.SSHB,\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03ssh\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12R\n\x08ssh_cert\x18\xed\x0e \x01(\x0b\x32\x0b.v1.SSHCertB0\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07sshCert\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12h\n\x10ssh_customer_key\x18\xee\x0e \x01(\x0b\x32\x12.v1.SSHCustomerKeyB7\xf2\xf8\xb3\x07(\xca\xf3\xb3\x07#\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0esshCustomerKey\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12^\n\x0cssh_password\x18\xf0\x0e \x01(\x0b\x32\x0f.v1.SSHPasswordB4\xf2\xf8\xb3\x07%\xca\xf3\xb3\x07 \xc2\xf4\xb3\x07\x1b\n\x0cjson_gateway\x12\x0bsshPassword\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12^\n\x0csingle_store\x18\xd1\x08 \x01(\x0b\x32\x0f.v1.SingleStoreB4\xf2\xf8\xb3\x07%\xca\xf3\xb3\x07 \xc2\xf4\xb3\x07\x1b\n\x0cjson_gateway\x12\x0bsinglestore\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tsnowflake\x18\xa4\r \x01(\x0b\x32\r.v1.SnowflakeB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tsnowflake\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tsnowsight\x18\xa5\r \x01(\x0b\x32\r.v1.SnowsightB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tsnowsight\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12N\n\x06sybase\x18\xd0\x0f \x01(\x0b\x32\n.v1.SybaseB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06sybase\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12U\n\tsybase_iq\x18\xd1\x0f \x01(\x0b\x32\x0c.v1.SybaseIQB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08sybaseIQ\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12T\n\x08teradata\x18\xb4\x10 \x01(\x0b\x32\x0c.v1.TeradataB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08teradata\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05trino\x18\xf9\n \x01(\x0b\x32\t.v1.TrinoB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05trino\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00:c\xfa\xf8\xb3\x07T\xc2\xf3\xb3\x07O\xa2\xf3\xb3\x07!tf_examples/resource_resource.txt\xaa\xf3\xb3\x07$tf_examples/resource_data_source.txt\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\x42p\n\x08resource\x12\x64\xaa\xf8\xb3\x07\t\xaa\xf8\xb3\x07\x04name\xaa\xf8\xb3\x07\t\xaa\xf8\xb3\x07\x04tags\xaa\xf8\xb3\x07\x14\xaa\xf8\xb3\x07\x0fsecret_store_id\xaa\xf8\xb3\x07\x12\xaa\xf8\xb3\x07\regress_filter\xaa\xf8\xb3\x07\x13\xaa\xf8\xb3\x07\x0e\x62ind_interface\"\xf2\x11\n\x03\x41KS\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\x13 \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x03 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\x05 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x07 \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x11 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x12 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x0b \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\n \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0c \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:[\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07J\xca\xf3\xb3\x07\x45\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03\x61ks\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03\x61ks\xc2\xf4\xb3\x07\x19\n\x12terraform-provider\x12\x03\x61ks\"\xa8\x0b\n\x0c\x41KSBasicAuth\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x05 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12s\n\x08password\x18\x04 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhttp-password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x06 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12s\n\x08username\x18\x03 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhttp-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:}\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07l\xca\xf3\xb3\x07g\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x61kshttpbasic\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0c\x61kshttpbasic\xc2\xf4\xb3\x07$\n\x12terraform-provider\x12\x0e\x61ks_basic_auth\"\x97\x10\n\x11\x41KSServiceAccount\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\r \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x0b \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x0c \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x04 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x06 \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x05 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12l\n\x05token\x18\x03 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tapi-token\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x87\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07v\xca\xf3\xb3\x07q\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x61ksserviceaccount\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61ksserviceaccount\xc2\xf4\xb3\x07)\n\x12terraform-provider\x12\x13\x61ks_service_account\"\x84\x0b\n\"AKSServiceAccountUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x04 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12l\n\x05token\x18\x03 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tapi-token\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xbe\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\xac\x01\xca\xf3\xb3\x07\xa6\x01\xc2\xf4\xb3\x07)\n\x03\x63li\x12\"aksserviceaccountuserimpersonation\xc2\xf4\xb3\x07\x32\n\x0cjson_gateway\x12\"aksserviceaccountuserimpersonation\xc2\xf4\xb3\x07<\n\x12terraform-provider\x12&aks_service_account_user_impersonation\"\xde\x0c\n\x14\x41KSUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x03 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\x05 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x07 \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\n \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:\x90\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x7f\xca\xf3\xb3\x07z\xc2\xf4\xb3\x07\x1b\n\x03\x63li\x12\x14\x61ksuserimpersonation\xc2\xf4\xb3\x07$\n\x0cjson_gateway\x12\x14\x61ksuserimpersonation\xc2\xf4\xb3\x07,\n\x12terraform-provider\x12\x16\x61ks_user_impersonation\"\xdd\t\n\x03\x41WS\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x01 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12healthcheck_region\x18\x04 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12healthcheck-region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\n \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x06 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x02 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:[\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07J\xca\xf3\xb3\x07\x45\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03\x61ws\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03\x61ws\xc2\xf4\xb3\x07\x19\n\x12terraform-provider\x12\x03\x61ws\"\xc4\x0c\n\nAWSConsole\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12\x8e\x01\n\x14\x65nable_env_variables\x18\x01 \x01(\x08\x42p\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07-\xca\xf3\xb3\x07(\xc2\xf4\xb3\x07#\n\x03\x63li\x12\x1c\x65nable-environment-variables\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa4\x01\n#identity_alias_healthcheck_username\x18\t \x01(\tBw\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fidentity_set_id\x18\x08 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x02 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x04 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x0esession_expiry\x18\x05 \x01(\x05\x42j\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\'\xca\xf3\xb3\x07\"\xc2\xf4\xb3\x07\x1d\n\x03\x63li\x12\x16session-expiry-seconds\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\tsubdomain\x18\x06 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:q\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07`\xca\xf3\xb3\x07[\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nawsConsole\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nawsConsole\xc2\xf4\xb3\x07!\n\x12terraform-provider\x12\x0b\x61ws_console\"\xe7\r\n\x17\x41WSConsoleStaticKeyPair\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12u\n\naccess_key\x18\x01 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\xa4\x01\n#identity_alias_healthcheck_username\x18\n \x01(\tBw\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fidentity_set_id\x18\t \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x08 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x05 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x02 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x0esession_expiry\x18\x06 \x01(\x05\x42j\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\'\xca\xf3\xb3\x07\"\xc2\xf4\xb3\x07\x1d\n\x03\x63li\x12\x16session-expiry-seconds\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\tsubdomain\x18\x07 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:\x9d\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x8b\x01\xca\xf3\xb3\x07\x85\x01\xc2\xf4\xb3\x07\x1e\n\x03\x63li\x12\x17\x61wsConsoleStaticKeyPair\xc2\xf4\xb3\x07\'\n\x0cjson_gateway\x12\x17\x61wsConsoleStaticKeyPair\xc2\xf4\xb3\x07\x31\n\x12terraform-provider\x12\x1b\x61ws_console_static_key_pair\"\xf8\x14\n\tAmazonEKS\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\x12 \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x04 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x0c\x63luster_name\x18\x07 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x63luster-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x10 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x11 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x0c \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x0b \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0f \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x08 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\n \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x03 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:n\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07]\xca\xf3\xb3\x07X\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tamazoneks\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tamazoneks\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\namazon_eks\"\xbf\x13\n\x18\x41mazonEKSInstanceProfile\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\x12 \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x02 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x0c\x63luster_name\x18\x05 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x63luster-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x10 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x11 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x08 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\n \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\t \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0f \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x04 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x07 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x9f\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x8d\x01\xca\xf3\xb3\x07\x87\x01\xc2\xf4\xb3\x07\x1f\n\x03\x63li\x12\x18\x61mazoneksinstanceprofile\xc2\xf4\xb3\x07(\n\x0cjson_gateway\x12\x18\x61mazoneksinstanceprofile\xc2\xf4\xb3\x07\x31\n\x12terraform-provider\x12\x1b\x61mazon_eks_instance_profile\"\xaa\x0e\n)AmazonEKSInstanceProfileUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x02 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x0c\x63luster_name\x18\x05 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x63luster-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x08 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0f \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x04 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x07 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xd4\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\xc2\x01\xca\xf3\xb3\x07\xbc\x01\xc2\xf4\xb3\x07\x30\n\x03\x63li\x12)amazoneksinstanceprofileuserimpersonation\xc2\xf4\xb3\x07\x39\n\x0cjson_gateway\x12)amazoneksinstanceprofileuserimpersonation\xc2\xf4\xb3\x07\x44\n\x12terraform-provider\x12.amazon_eks_instance_profile_user_impersonation\"\xe6\x0f\n\x1a\x41mazonEKSUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x04 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x0c\x63luster_name\x18\x07 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x63luster-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0f \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x08 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\n \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x03 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xa5\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x93\x01\xca\xf3\xb3\x07\x8d\x01\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61mazoneksuserimpersonation\xc2\xf4\xb3\x07*\n\x0cjson_gateway\x12\x1a\x61mazoneksuserimpersonation\xc2\xf4\xb3\x07\x33\n\x12terraform-provider\x12\x1d\x61mazon_eks_user_impersonation\"\xc9\n\n\x08\x41mazonES\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x04 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x65ndpoint\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x01 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x07 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x02 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:k\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Z\xca\xf3\xb3\x07U\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x61mazones\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x61mazones\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tamazon_es\"\xd5\t\n\x0f\x41mazonMQAMQP091\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x08 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x85\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07t\xca\xf3\xb3\x07o\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x61mazonmq-amqp-091\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61mazonmq-amqp-091\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11\x61mazonmq_amqp_091\"\xd0\n\n\x06\x41thena\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12y\n\naccess_key\x18\x01 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x61ws-access-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x06output\x18\x03 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12s3-output-location\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x05 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x07 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x84\x01\n\x11secret_access_key\x18\x02 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x61ws-secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:d\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07S\xca\xf3\xb3\x07N\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06\x61thena\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x61thena\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06\x61thena\"\xe3\x0b\n\x0b\x41uroraMysql\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\n \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:v\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x65\xca\xf3\xb3\x07`\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x61urora-mysql\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0c\x61urora-mysql\xc2\xf4\xb3\x07\"\n\x12terraform-provider\x12\x0c\x61urora_mysql\"\xc8\n\n\x0e\x41uroraPostgres\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x7f\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07n\xca\xf3\xb3\x07i\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0f\x61urora-postgres\xc2\xf4\xb3\x07\x1f\n\x0cjson_gateway\x12\x0f\x61urora-postgres\xc2\xf4\xb3\x07%\n\x12terraform-provider\x12\x0f\x61urora_postgres\"\xd7\x0b\n\x11\x41uroraPostgresIAM\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13role_assumption_arn\x18\n \x01(\tBg\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13role-assumption-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x87\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07v\xca\xf3\xb3\x07q\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x61urorapostgresiam\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61urorapostgresiam\xc2\xf4\xb3\x07)\n\x12terraform-provider\x12\x13\x61urora_postgres_iam\"\xc4\x07\n\x05\x41zure\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06\x61pp_id\x18\x01 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06\x61pp-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x08 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12p\n\ttenant_id\x18\x02 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\ttenant-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05\x61zure\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x61zure\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05\x61zure\"\xf0\x07\n\x10\x41zureCertificate\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06\x61pp_id\x18\x01 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06\x61pp-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12{\n\x12\x63lient_certificate\x18\x03 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0b\x63\x65rtificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\n \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12p\n\ttenant_id\x18\x02 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\ttenant-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:u\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x64\xca\xf3\xb3\x07_\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tazurecert\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tazurecert\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11\x61zure_certificate\"\xdd\x0b\n\nAzureMysql\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\t \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:q\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07`\xca\xf3\xb3\x07[\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nazuremysql\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nazuremysql\xc2\xf4\xb3\x07!\n\x12terraform-provider\x12\x0b\x61zure_mysql\"\xc2\n\n\rAzurePostgres\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:z\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07i\xca\xf3\xb3\x07\x64\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\razurepostgres\xc2\xf4\xb3\x07\x1d\n\x0cjson_gateway\x12\razurepostgres\xc2\xf4\xb3\x07$\n\x12terraform-provider\x12\x0e\x61zure_postgres\"\xa6\x0c\n\x1c\x41zurePostgresManagedIdentity\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\n \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xab\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x99\x01\xca\xf3\xb3\x07\x93\x01\xc2\xf4\xb3\x07#\n\x03\x63li\x12\x1c\x61zurepostgresmanagedidentity\xc2\xf4\xb3\x07,\n\x0cjson_gateway\x12\x1c\x61zurepostgresmanagedidentity\xc2\xf4\xb3\x07\x35\n\x12terraform-provider\x12\x1f\x61zure_postgres_managed_identity\"\xc7\x08\n\x08\x42igQuery\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0bprivate_key\x18\x01 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bprivate-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12l\n\x07project\x18\x02 \x01(\tB[\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x18\xca\xf3\xb3\x07\x13\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07project\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:k\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Z\xca\xf3\xb3\x07U\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x62igquery\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x62igquery\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tbig_query\"\xb6\t\n\tCassandra\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x06 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tcassandra\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tcassandra\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tcassandra\"\xa1\n\n\x05\x43itus\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05\x63itus\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x63itus\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05\x63itus\"\xd4\x0b\n\x08\x43lustrix\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\t \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:j\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Y\xca\xf3\xb3\x07T\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x63lustrix\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x63lustrix\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08\x63lustrix\"\xb1\n\n\tCockroach\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tcockroach\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tcockroach\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tcockroach\"\xa4\t\n\x04\x44\x42\x32I\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x07 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:`\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07O\xca\xf3\xb3\x07J\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04\x64\x62\x32i\xc2\xf4\xb3\x07\x14\n\x0cjson_gateway\x12\x04\x64\x62\x32i\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06\x64\x62_2_i\"\xa4\t\n\x06\x44\x42\x32LUW\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:f\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07U\xca\xf3\xb3\x07P\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06\x64\x62\x32luw\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x64\x62\x32luw\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08\x64\x62_2_luw\"\xce\t\n\x0e\x44ocumentDBHost\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:~\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07m\xca\xf3\xb3\x07h\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0e\x64ocumentdbhost\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0e\x64ocumentdbhost\xc2\xf4\xb3\x07&\n\x12terraform-provider\x12\x10\x64ocument_db_host\"\xfc\n\n\x14\x44ocumentDBReplicaSet\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x63onnect_to_replica\x18\x07 \x01(\x08\x42\x66\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63onnect-to-replica\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0breplica_set\x18\x06 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0breplica-set\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x92\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x80\x01\xca\xf3\xb3\x07{\xc2\xf4\xb3\x07\x1b\n\x03\x63li\x12\x14\x64ocumentdbreplicaset\xc2\xf4\xb3\x07$\n\x0cjson_gateway\x12\x14\x64ocumentdbreplicaset\xc2\xf4\xb3\x07-\n\x12terraform-provider\x12\x17\x64ocument_db_replica_set\"\xae\x08\n\x05\x44ruid\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05\x64ruid\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x64ruid\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05\x64ruid\"\xc5\n\n\x08\x44ynamoDB\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x01 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x65ndpoint\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x07 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x02 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:g\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07V\xca\xf3\xb3\x07Q\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06\x64ynamo\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x64ynamo\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tdynamo_db\"\xae\t\n\x07\x45lastic\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x06 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:g\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07V\xca\xf3\xb3\x07Q\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07\x65lastic\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07\x65lastic\xc2\xf4\xb3\x07\x1d\n\x12terraform-provider\x12\x07\x65lastic\"\xc1\t\n\x10\x45lasticacheRedis\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x04 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x05 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:q\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07`\xca\xf3\xb3\x07[\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07\x65\x63redis\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07\x65\x63redis\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11\x65lasticache_redis\"\xcc\x06\n\x03GCP\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12p\n\x07keyfile\x18\x01 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bsvc-keyfile\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x0b \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06scopes\x18\x02 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06scopes\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:[\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07J\xca\xf3\xb3\x07\x45\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03gcp\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03gcp\xc2\xf4\xb3\x07\x19\n\x12terraform-provider\x12\x03gcp\"\xb1\x10\n\tGoogleGKE\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\x11 \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x02 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x0f \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x10 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x06 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x08 \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x07 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0e \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13service_account_key\x18\x04 \x01(\tBg\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13service-account-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:n\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07]\xca\xf3\xb3\x07X\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tgooglegke\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tgooglegke\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\ngoogle_gke\"\x9f\x0b\n\x1aGoogleGKEUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x02 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x06 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0c \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13service_account_key\x18\x04 \x01(\tBg\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13service-account-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xa5\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x93\x01\xca\xf3\xb3\x07\x8d\x01\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1agooglegkeuserimpersonation\xc2\xf4\xb3\x07*\n\x0cjson_gateway\x12\x1agooglegkeuserimpersonation\xc2\xf4\xb3\x07\x33\n\x12terraform-provider\x12\x1dgoogle_gke_user_impersonation\"\xb1\n\n\tGreenplum\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tgreenplum\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tgreenplum\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tgreenplum\"\xf7\t\n\x08HTTPAuth\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12t\n\x0b\x61uth_header\x18\x03 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0b\x61uth-header\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x0c\x64\x65\x66\x61ult_path\x18\x05 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x64\x65\x66\x61ult-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11headers_blacklist\x18\x04 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11headers-exclusion\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12y\n\x10healthcheck_path\x18\x02 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bhealth-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rhost_override\x18\x07 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhost-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\tsubdomain\x18\x06 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x64\n\x03url\x18\x01 \x01(\tBW\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x14\xca\xf3\xb3\x07\x0f\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03url\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:k\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Z\xca\xf3\xb3\x07U\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08httpAuth\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08httpAuth\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\thttp_auth\"\xee\n\n\rHTTPBasicAuth\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12v\n\x0c\x64\x65\x66\x61ult_path\x18\x06 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x64\x65\x66\x61ult-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11headers_blacklist\x18\x05 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11headers-exclusion\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12y\n\x10healthcheck_path\x18\x02 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bhealth-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rhost_override\x18\x08 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhost-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12u\n\tsubdomain\x18\x07 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x64\n\x03url\x18\x01 \x01(\tBW\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x14\xca\xf3\xb3\x07\x0f\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03url\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:s\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x62\xca\xf3\xb3\x07]\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\thttpBasic\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\thttpBasic\xc2\xf4\xb3\x07%\n\x12terraform-provider\x12\x0fhttp_basic_auth\"\x8a\t\n\nHTTPNoAuth\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12v\n\x0c\x64\x65\x66\x61ult_path\x18\x04 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x64\x65\x66\x61ult-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11headers_blacklist\x18\x03 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11headers-exclusion\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12y\n\x10healthcheck_path\x18\x02 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bhealth-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rhost_override\x18\x06 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhost-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\tsubdomain\x18\x05 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x64\n\x03url\x18\x01 \x01(\tBW\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x14\xca\xf3\xb3\x07\x0f\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03url\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:r\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x61\xca\xf3\xb3\x07\\\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nhttpNoAuth\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nhttpNoAuth\xc2\xf4\xb3\x07\"\n\x12terraform-provider\x12\x0chttp_no_auth\"\x8e\x12\n\nKubernetes\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\x13 \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x03 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\x05 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x07 \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x11 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x12 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x0b \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\n \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0c \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:p\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07_\xca\xf3\xb3\x07Z\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nkubernetes\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nkubernetes\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\nkubernetes\"\xc6\x0b\n\x13KubernetesBasicAuth\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x05 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12s\n\x08password\x18\x04 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhttp-password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x06 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12s\n\x08username\x18\x03 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhttp-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x93\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x81\x01\xca\xf3\xb3\x07|\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13kuberneteshttpbasic\xc2\xf4\xb3\x07#\n\x0cjson_gateway\x12\x13kuberneteshttpbasic\xc2\xf4\xb3\x07+\n\x12terraform-provider\x12\x15kubernetes_basic_auth\"\xb5\x10\n\x18KubernetesServiceAccount\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\r \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x0b \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x0c \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x04 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x06 \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x05 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12l\n\x05token\x18\x03 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tapi-token\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x9e\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x8c\x01\xca\xf3\xb3\x07\x86\x01\xc2\xf4\xb3\x07\x1f\n\x03\x63li\x12\x18kubernetesserviceaccount\xc2\xf4\xb3\x07(\n\x0cjson_gateway\x12\x18kubernetesserviceaccount\xc2\xf4\xb3\x07\x30\n\x12terraform-provider\x12\x1akubernetes_service_account\"\xa0\x0b\n)KubernetesServiceAccountUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x04 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12l\n\x05token\x18\x03 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tapi-token\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xd3\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\xc1\x01\xca\xf3\xb3\x07\xbb\x01\xc2\xf4\xb3\x07\x30\n\x03\x63li\x12)kubernetesserviceaccountuserimpersonation\xc2\xf4\xb3\x07\x39\n\x0cjson_gateway\x12)kubernetesserviceaccountuserimpersonation\xc2\xf4\xb3\x07\x43\n\x12terraform-provider\x12-kubernetes_service_account_user_impersonation\"\xfc\x0c\n\x1bKubernetesUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x03 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\x05 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x07 \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\n \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:\xa7\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x95\x01\xca\xf3\xb3\x07\x8f\x01\xc2\xf4\xb3\x07\"\n\x03\x63li\x12\x1bkubernetesuserimpersonation\xc2\xf4\xb3\x07+\n\x0cjson_gateway\x12\x1bkubernetesuserimpersonation\xc2\xf4\xb3\x07\x33\n\x12terraform-provider\x12\x1dkubernetes_user_impersonation\"\xd8\x0f\n\tMTLSMysql\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x07 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\t \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x0b \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x0e \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0bserver_name\x18\r \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bserver-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\x10 \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:s\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x62\xca\xf3\xb3\x07]\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tmTLSMysql\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmTLSMysql\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\nmtls_mysql\"\xb8\x0e\n\x0cMTLSPostgres\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x08 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\n \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x0c \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0bserver_name\x18\x0e \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bserver-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:w\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x66\xca\xf3\xb3\x07\x61\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0cmTLSPostgres\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0cmTLSPostgres\xc2\xf4\xb3\x07#\n\x12terraform-provider\x12\rmtls_postgres\"\xc8\x0b\n\x05Maria\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\t \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05maria\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05maria\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05maria\"\xde\x06\n\tMemcached\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tmemcached\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmemcached\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tmemcached\"\xcc\x0b\n\x06Memsql\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\t \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:d\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07S\xca\xf3\xb3\x07N\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06memsql\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06memsql\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06memsql\"\xb1\n\n\tMongoHost\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x08 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:n\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07]\xca\xf3\xb3\x07X\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tmongoHost\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmongoHost\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\nmongo_host\"\xbb\n\n\x0fMongoLegacyHost\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x08 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:r\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x61\xca\xf3\xb3\x07\\\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05mongo\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mongo\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11mongo_legacy_host\"\xd9\x0c\n\x15MongoLegacyReplicaset\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x63onnect_to_replica\x18\x08 \x01(\x08\x42\x66\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63onnect-to-replica\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0breplica_set\x18\x07 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0breplica-set\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\t \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x8e\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07}\xca\xf3\xb3\x07x\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10mongo-replicaset\xc2\xf4\xb3\x07 \n\x0cjson_gateway\x12\x10mongo-replicaset\xc2\xf4\xb3\x07-\n\x12terraform-provider\x12\x17mongo_legacy_replicaset\"\xc6\x0c\n\x0fMongoReplicaSet\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x63onnect_to_replica\x18\x08 \x01(\x08\x42\x66\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63onnect-to-replica\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0breplica_set\x18\x07 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0breplica-set\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\t \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x81\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07p\xca\xf3\xb3\x07k\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fmongoReplicaSet\xc2\xf4\xb3\x07\x1f\n\x0cjson_gateway\x12\x0fmongoReplicaSet\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11mongo_replica_set\"\xf3\t\n\x13MongoShardedCluster\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x06 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x8d\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07|\xca\xf3\xb3\x07w\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13mongoshardedcluster\xc2\xf4\xb3\x07#\n\x0cjson_gateway\x12\x13mongoshardedcluster\xc2\xf4\xb3\x07+\n\x12terraform-provider\x12\x15mongo_sharded_cluster\"\xc8\x0b\n\x05Mysql\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\n \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05mysql\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mysql\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05mysql\"\xd6\x06\n\x07Neptune\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:g\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07V\xca\xf3\xb3\x07Q\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07neptune\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07neptune\xc2\xf4\xb3\x07\x1d\n\x12terraform-provider\x12\x07neptune\"\xb9\x0b\n\nNeptuneIAM\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x04 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x07 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x08 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x05 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:q\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07`\xca\xf3\xb3\x07[\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nneptuneiam\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nneptuneiam\xc2\xf4\xb3\x07!\n\x12terraform-provider\x12\x0bneptune_iam\"\x9a\n\n\x06Oracle\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x06 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x07 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:d\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07S\xca\xf3\xb3\x07N\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06oracle\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06oracle\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06oracle\"\xad\n\n\x08Postgres\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:j\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Y\xca\xf3\xb3\x07T\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08postgres\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08postgres\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08postgres\"\x9a\n\n\x06Presto\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x07 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:d\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07S\xca\xf3\xb3\x07N\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06presto\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06presto\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06presto\"\xb3\n\n\x03RDP\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x90\x01\n\x19\x64owngrade_nla_connections\x18\x06 \x01(\x08\x42m\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07*\xca\xf3\xb3\x07%\xc2\xf4\xb3\x07 \n\x03\x63li\x12\x19\x64owngrade-nla-connections\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rlock_required\x18\n \x01(\x08\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rlock-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:[\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07J\xca\xf3\xb3\x07\x45\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03rdp\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03rdp\xc2\xf4\xb3\x07\x19\n\x12terraform-provider\x12\x03rdp\"\xa2\n\n\x07RDPCert\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x06 \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x05 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x04 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x8a\x01\n\x08username\x18\x02 \x01(\tBx\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xda\xf4\xb3\x07\x12leased-credentials:h\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07W\xca\xf3\xb3\x07R\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07rdpCert\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07rdpCert\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08rdp_cert\"\xca\x0b\n\x0eRDSPostgresIAM\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13role_assumption_arn\x18\n \x01(\tBg\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13role-assumption-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:~\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07m\xca\xf3\xb3\x07h\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0erdspostgresiam\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0erdspostgresiam\xc2\xf4\xb3\x07&\n\x12terraform-provider\x12\x10rds_postgres_iam\"\xd5\t\n\x0fRabbitMQAMQP091\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x08 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x85\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07t\xca\xf3\xb3\x07o\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11rabbitmq-amqp-091\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11rabbitmq-amqp-091\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11rabbitmq_amqp_091\"\xd3\x06\n\x06RawTCP\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:e\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07T\xca\xf3\xb3\x07O\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06rawtcp\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06rawtcp\xc2\xf4\xb3\x07\x1d\n\x12terraform-provider\x12\x07raw_tcp\"\xa6\t\n\x05Redis\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x04 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x06 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05redis\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05redis\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05redis\"\xad\n\n\x08Redshift\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:j\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Y\xca\xf3\xb3\x07T\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08redshift\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08redshift\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08redshift\"\xad\x0c\n\tSQLServer\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x94\x01\n\x1b\x61llow_deprecated_encryption\x18\t \x01(\x08\x42o\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07,\xca\xf3\xb3\x07\'\xc2\xf4\xb3\x07\"\n\x03\x63li\x12\x1b\x61llow-deprecated-encryption\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x08 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x07 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06schema\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06schema\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:f\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07U\xca\xf3\xb3\x07P\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05mssql\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mssql\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\nsql_server\"\xbb\r\n\x10SQLServerAzureAD\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x94\x01\n\x1b\x61llow_deprecated_encryption\x18\n \x01(\x08\x42o\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07,\xca\xf3\xb3\x07\'\xc2\xf4\xb3\x07\"\n\x03\x63li\x12\x1b\x61llow-deprecated-encryption\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12p\n\tclient_id\x18\x02 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tclient-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x08 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x07 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06schema\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06schema\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06secret\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06secret\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12p\n\ttenant_id\x18\t \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\ttenant-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:}\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07l\xca\xf3\xb3\x07g\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0cmssqlAzureAD\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0cmssqlAzureAD\xc2\xf4\xb3\x07)\n\x12terraform-provider\x12\x13sql_server_azure_ad\"\xa2\x0f\n\x13SQLServerKerberosAD\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x94\x01\n\x1b\x61llow_deprecated_encryption\x18\x0c \x01(\x08\x42o\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07,\xca\xf3\xb3\x07\'\xc2\xf4\xb3\x07\"\n\x03\x63li\x12\x1b\x61llow-deprecated-encryption\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06keytab\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06keytab\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nkrb_config\x18\t \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nkrb-config\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11override_database\x18\x08 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x07 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12h\n\x05realm\x18\x0b \x01(\tBY\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x16\xca\xf3\xb3\x07\x11\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05realm\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12j\n\x06schema\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06schema\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12r\n\nserver_spn\x18\n \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nserver-spn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x82\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07q\xca\xf3\xb3\x07l\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rmssqlKerberos\xc2\xf4\xb3\x07\x1d\n\x0cjson_gateway\x12\rmssqlKerberos\xc2\xf4\xb3\x07,\n\x12terraform-provider\x12\x16sql_server_kerberos_ad\"\xb5\x0b\n\x03SSH\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x9a\x01\n\x1e\x61llow_deprecated_key_exchanges\x18\x06 \x01(\x08\x42r\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07/\xca\xf3\xb3\x07*\xc2\xf4\xb3\x07%\n\x03\x63li\x12\x1e\x61llow-deprecated-key-exchanges\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08key_type\x18\x08 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08key-type\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fport_forwarding\x18\x05 \x01(\x08\x42\x63\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fport-forwarding\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12r\n\npublic_key\x18\x04 \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\npublic-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:[\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07J\xca\xf3\xb3\x07\x45\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03ssh\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03ssh\xc2\xf4\xb3\x07\x19\n\x12terraform-provider\x12\x03ssh\"\xad\r\n\x07SSHCert\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x9a\x01\n\x1e\x61llow_deprecated_key_exchanges\x18\x05 \x01(\x08\x42r\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07/\xca\xf3\xb3\x07*\xc2\xf4\xb3\x07%\n\x03\x63li\x12\x1e\x61llow-deprecated-key-exchanges\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x08 \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x07 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08key_type\x18\t \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08key-type\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fport_forwarding\x18\x04 \x01(\x08\x42\x63\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fport-forwarding\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x06 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x8a\x01\n\x08username\x18\x02 \x01(\tBx\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xda\xf4\xb3\x07\x12leased-credentials:h\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07W\xca\xf3\xb3\x07R\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07sshCert\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07sshCert\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08ssh_cert\"\xf5\n\n\x0eSSHCustomerKey\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x9a\x01\n\x1e\x61llow_deprecated_key_exchanges\x18\x06 \x01(\x08\x42r\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07/\xca\xf3\xb3\x07*\xc2\xf4\xb3\x07%\n\x03\x63li\x12\x1e\x61llow-deprecated-key-exchanges\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fport_forwarding\x18\x05 \x01(\x08\x42\x63\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fport-forwarding\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0bprivate_key\x18\x04 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bprivate-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:~\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07m\xca\xf3\xb3\x07h\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0esshCustomerKey\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0esshCustomerKey\xc2\xf4\xb3\x07&\n\x12terraform-provider\x12\x10ssh_customer_key\"\xe7\n\n\x0bSSHPassword\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x9a\x01\n\x1e\x61llow_deprecated_key_exchanges\x18\x06 \x01(\x08\x42r\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07/\xca\xf3\xb3\x07*\xc2\xf4\xb3\x07%\n\x03\x63li\x12\x1e\x61llow-deprecated-key-exchanges\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fport_forwarding\x18\x05 \x01(\x08\x42\x63\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fport-forwarding\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:y\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07h\xca\xf3\xb3\x07\x63\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bsshPassword\xc2\xf4\xb3\x07\x1b\n\x0cjson_gateway\x12\x0bsshPassword\xc2\xf4\xb3\x07\"\n\x12terraform-provider\x12\x0cssh_password\"\xe1\x0b\n\x0bSingleStore\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\t \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:t\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x63\xca\xf3\xb3\x07^\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bsinglestore\xc2\xf4\xb3\x07\x1b\n\x0cjson_gateway\x12\x0bsinglestore\xc2\xf4\xb3\x07\"\n\x12terraform-provider\x12\x0csingle_store\"\xb2\t\n\tSnowflake\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x06 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06schema\x18\x05 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06schema\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tsnowflake\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tsnowflake\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tsnowflake\"\xa5\x07\n\tSnowsight\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12\x86\x01\n\x14healthcheck_username\x18\x0b \x01(\tBh\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07%\xca\xf3\xb3\x07 \xc2\xf4\xb3\x07\x1b\n\x03\x63li\x12\x14healthcheck_username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12w\n\x0csamlMetadata\x18\x01 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rsaml-metadata\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12p\n\tsubdomain\x18\x02 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tsubdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tsnowsight\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tsnowsight\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tsnowsight\"\xb2\x08\n\x06Sybase\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x04 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:d\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07S\xca\xf3\xb3\x07N\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06sybase\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06sybase\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06sybase\"\xbb\x08\n\x08SybaseIQ\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x04 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:k\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Z\xca\xf3\xb3\x07U\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08sybaseIQ\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08sybaseIQ\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tsybase_iq\"\xba\x08\n\x08Teradata\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:j\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Y\xca\xf3\xb3\x07T\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08teradata\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08teradata\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08teradata\"\xa3\t\n\x05Trino\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:f\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07U\xca\xf3\xb3\x07P\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05trino\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05trino\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05trinoBc\n\x19\x63om.strongdm.api.plumbingB\x0f\x44riversPlumbingZ5github.com/strongdm/strongdm-sdk-go/v3/internal/v1;v1b\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\rdrivers.proto\x12\x02v1\x1a\roptions.proto\x1a\ntags.proto\"\xbf\x45\n\x08Resource\x12\x45\n\x03\x61ks\x18\xa5\x06 \x01(\x0b\x32\x07.v1.AKSB,\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03\x61ks\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x62\n\x0e\x61ks_basic_auth\x18\xa6\x06 \x01(\x0b\x32\x10.v1.AKSBasicAuthB5\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0c\x61kshttpbasic\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12q\n\x13\x61ks_service_account\x18\xa7\x06 \x01(\x0b\x32\x15.v1.AKSServiceAccountB:\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61ksserviceaccount\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\xa6\x01\n&aks_service_account_user_impersonation\x18\xaa\x06 \x01(\x0b\x32&.v1.AKSServiceAccountUserImpersonationBK\xf2\xf8\xb3\x07<\xca\xf3\xb3\x07\x37\xc2\xf4\xb3\x07\x32\n\x0cjson_gateway\x12\"aksserviceaccountuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12z\n\x16\x61ks_user_impersonation\x18\xae\x06 \x01(\x0b\x32\x18.v1.AKSUserImpersonationB=\xf2\xf8\xb3\x07.\xca\xf3\xb3\x07)\xc2\xf4\xb3\x07$\n\x0cjson_gateway\x12\x14\x61ksuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x45\n\x03\x61ws\x18\xfc\x11 \x01(\x0b\x32\x07.v1.AWSB,\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03\x61ws\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12[\n\x0b\x61ws_console\x18\xb8\x17 \x01(\x0b\x32\x0e.v1.AWSConsoleB3\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nawsConsole\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x85\x01\n\x1b\x61ws_console_static_key_pair\x18\xb9\x17 \x01(\x0b\x32\x1b.v1.AWSConsoleStaticKeyPairB@\xf2\xf8\xb3\x07\x31\xca\xf3\xb3\x07,\xc2\xf4\xb3\x07\'\n\x0cjson_gateway\x12\x17\x61wsConsoleStaticKeyPair\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12X\n\namazon_eks\x18\xa2\x06 \x01(\x0b\x32\r.v1.AmazonEKSB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tamazoneks\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x87\x01\n\x1b\x61mazon_eks_instance_profile\x18\xa9\x06 \x01(\x0b\x32\x1c.v1.AmazonEKSInstanceProfileBA\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x0cjson_gateway\x12\x18\x61mazoneksinstanceprofile\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\xbc\x01\n.amazon_eks_instance_profile_user_impersonation\x18\xad\x06 \x01(\x0b\x32-.v1.AmazonEKSInstanceProfileUserImpersonationBR\xf2\xf8\xb3\x07\x43\xca\xf3\xb3\x07>\xc2\xf4\xb3\x07\x39\n\x0cjson_gateway\x12)amazoneksinstanceprofileuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x8d\x01\n\x1d\x61mazon_eks_user_impersonation\x18\xb2\x06 \x01(\x0b\x32\x1e.v1.AmazonEKSUserImpersonationBC\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x0cjson_gateway\x12\x1a\x61mazoneksuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12U\n\tamazon_es\x18\xd8\x04 \x01(\x0b\x32\x0c.v1.AmazonESB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x61mazones\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12m\n\x11\x61mazon_mqamqp_091\x18\xc5\x13 \x01(\x0b\x32\x13.v1.AmazonMQAMQP091B:\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61mazonmq-amqp-091\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12M\n\x06\x61thena\x18\x64 \x01(\x0b\x32\n.v1.AthenaB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x61thena\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12_\n\x0c\x61urora_mysql\x18\xcd\x08 \x01(\x0b\x32\x0f.v1.AuroraMysqlB5\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0c\x61urora-mysql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12h\n\x0f\x61urora_postgres\x18\x95\n \x01(\x0b\x32\x12.v1.AuroraPostgresB8\xf2\xf8\xb3\x07)\xca\xf3\xb3\x07$\xc2\xf4\xb3\x07\x1f\n\x0cjson_gateway\x12\x0f\x61urora-postgres\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12q\n\x13\x61urora_postgres_iam\x18\x9d\n \x01(\x0b\x32\x15.v1.AuroraPostgresIAMB:\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61urorapostgresiam\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05\x61zure\x18\xf0\x15 \x01(\x0b\x32\t.v1.AzureB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x61zure\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x66\n\x11\x61zure_certificate\x18\xf1\x15 \x01(\x0b\x32\x14.v1.AzureCertificateB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tazurecert\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12[\n\x0b\x61zure_mysql\x18\xd3\x08 \x01(\x0b\x32\x0e.v1.AzureMysqlB3\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nazuremysql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x64\n\x0e\x61zure_postgres\x18\x9b\n \x01(\x0b\x32\x11.v1.AzurePostgresB6\xf2\xf8\xb3\x07\'\xca\xf3\xb3\x07\"\xc2\xf4\xb3\x07\x1d\n\x0cjson_gateway\x12\razurepostgres\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x93\x01\n\x1f\x61zure_postgres_managed_identity\x18\x9c\n \x01(\x0b\x32 .v1.AzurePostgresManagedIdentityBE\xf2\xf8\xb3\x07\x36\xca\xf3\xb3\x07\x31\xc2\xf4\xb3\x07,\n\x0cjson_gateway\x12\x1c\x61zurepostgresmanagedidentity\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12U\n\tbig_query\x18\xc8\x01 \x01(\x0b\x32\x0c.v1.BigQueryB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x62igquery\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tcassandra\x18\xac\x02 \x01(\x0b\x32\r.v1.CassandraB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tcassandra\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05\x63itus\x18\x99\n \x01(\x0b\x32\t.v1.CitusB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x63itus\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12T\n\x08\x63lustrix\x18\xce\x08 \x01(\x0b\x32\x0c.v1.ClustrixB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x63lustrix\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tcockroach\x18\x97\n \x01(\x0b\x32\r.v1.CockroachB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tcockroach\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12p\n\x12\x63ouchbase_database\x18\x81\x19 \x01(\x0b\x32\x15.v1.CouchbaseDatabaseB:\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x63ouchbaseDatabase\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12h\n\x10\x63ouchbase_web_ui\x18\x80\x19 \x01(\x0b\x32\x12.v1.CouchbaseWebUIB7\xf2\xf8\xb3\x07(\xca\xf3\xb3\x07#\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0e\x63ouchbaseWebUI\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12J\n\x06\x64\x62_2_i\x18\xe0\x12 \x01(\x0b\x32\x08.v1.DB2IB-\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x0cjson_gateway\x12\x04\x64\x62\x32i\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12P\n\x08\x64\x62_2_luw\x18\x98\x11 \x01(\x0b\x32\n.v1.DB2LUWB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x64\x62\x32luw\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12h\n\x10\x64ocument_db_host\x18\x9c\x08 \x01(\x0b\x32\x12.v1.DocumentDBHostB7\xf2\xf8\xb3\x07(\xca\xf3\xb3\x07#\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0e\x64ocumentdbhost\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12{\n\x17\x64ocument_db_replica_set\x18\x9d\x08 \x01(\x0b\x32\x18.v1.DocumentDBReplicaSetB=\xf2\xf8\xb3\x07.\xca\xf3\xb3\x07)\xc2\xf4\xb3\x07$\n\x0cjson_gateway\x12\x14\x64ocumentdbreplicaset\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05\x64ruid\x18\x90\x03 \x01(\x0b\x32\t.v1.DruidB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x64ruid\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12S\n\tdynamo_db\x18\xf4\x03 \x01(\x0b\x32\x0c.v1.DynamoDBB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x64ynamo\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12Q\n\x07\x65lastic\x18\xd9\x04 \x01(\x0b\x32\x0b.v1.ElasticB0\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07\x65lastic\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x64\n\x11\x65lasticache_redis\x18\xc1\x0c \x01(\x0b\x32\x14.v1.ElasticacheRedisB0\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07\x65\x63redis\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x45\n\x03gcp\x18\x8c\x15 \x01(\x0b\x32\x07.v1.GCPB,\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03gcp\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12X\n\ngoogle_gke\x18\xa3\x06 \x01(\x0b\x32\r.v1.GoogleGKEB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tgooglegke\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x8d\x01\n\x1dgoogle_gke_user_impersonation\x18\xb0\x06 \x01(\x0b\x32\x1e.v1.GoogleGKEUserImpersonationBC\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x0cjson_gateway\x12\x1agooglegkeuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tgreenplum\x18\x96\n \x01(\x0b\x32\r.v1.GreenplumB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tgreenplum\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12U\n\thttp_auth\x18\xbe\x05 \x01(\x0b\x32\x0c.v1.HTTPAuthB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08httpAuth\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x61\n\x0fhttp_basic_auth\x18\xbc\x05 \x01(\x0b\x32\x11.v1.HTTPBasicAuthB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\thttpBasic\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\\\n\x0chttp_no_auth\x18\xbd\x05 \x01(\x0b\x32\x0e.v1.HTTPNoAuthB3\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nhttpNoAuth\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12Z\n\nkubernetes\x18\xa0\x06 \x01(\x0b\x32\x0e.v1.KubernetesB3\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nkubernetes\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12w\n\x15kubernetes_basic_auth\x18\xa1\x06 \x01(\x0b\x32\x17.v1.KubernetesBasicAuthB<\xf2\xf8\xb3\x07-\xca\xf3\xb3\x07(\xc2\xf4\xb3\x07#\n\x0cjson_gateway\x12\x13kuberneteshttpbasic\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x86\x01\n\x1akubernetes_service_account\x18\xa4\x06 \x01(\x0b\x32\x1c.v1.KubernetesServiceAccountBA\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x0cjson_gateway\x12\x18kubernetesserviceaccount\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\xbb\x01\n-kubernetes_service_account_user_impersonation\x18\xa8\x06 \x01(\x0b\x32-.v1.KubernetesServiceAccountUserImpersonationBR\xf2\xf8\xb3\x07\x43\xca\xf3\xb3\x07>\xc2\xf4\xb3\x07\x39\n\x0cjson_gateway\x12)kubernetesserviceaccountuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x8f\x01\n\x1dkubernetes_user_impersonation\x18\xac\x06 \x01(\x0b\x32\x1f.v1.KubernetesUserImpersonationBD\xf2\xf8\xb3\x07\x35\xca\xf3\xb3\x07\x30\xc2\xf4\xb3\x07+\n\x0cjson_gateway\x12\x1bkubernetesuserimpersonation\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12X\n\nmtls_mysql\x18\xd2\x08 \x01(\x0b\x32\r.v1.MTLSMysqlB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmTLSMysql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x61\n\rmtls_postgres\x18\x9a\n \x01(\x0b\x32\x10.v1.MTLSPostgresB5\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0cmTLSPostgres\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05maria\x18\xcf\x08 \x01(\x0b\x32\t.v1.MariaB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05maria\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tmemcached\x18\x84\x07 \x01(\x0b\x32\r.v1.MemcachedB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmemcached\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12N\n\x06memsql\x18\xd0\x08 \x01(\x0b\x32\n.v1.MemsqlB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06memsql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12X\n\nmongo_host\x18\xea\x07 \x01(\x0b\x32\r.v1.MongoHostB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmongoHost\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x61\n\x11mongo_legacy_host\x18\xe8\x07 \x01(\x0b\x32\x13.v1.MongoLegacyHostB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mongo\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12x\n\x17mongo_legacy_replicaset\x18\xe9\x07 \x01(\x0b\x32\x19.v1.MongoLegacyReplicasetB9\xf2\xf8\xb3\x07*\xca\xf3\xb3\x07%\xc2\xf4\xb3\x07 \n\x0cjson_gateway\x12\x10mongo-replicaset\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12k\n\x11mongo_replica_set\x18\xeb\x07 \x01(\x0b\x32\x13.v1.MongoReplicaSetB8\xf2\xf8\xb3\x07)\xca\xf3\xb3\x07$\xc2\xf4\xb3\x07\x1f\n\x0cjson_gateway\x12\x0fmongoReplicaSet\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12w\n\x15mongo_sharded_cluster\x18\x9e\x08 \x01(\x0b\x32\x17.v1.MongoShardedClusterB<\xf2\xf8\xb3\x07-\xca\xf3\xb3\x07(\xc2\xf4\xb3\x07#\n\x0cjson_gateway\x12\x13mongoshardedcluster\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05mysql\x18\xcc\x08 \x01(\x0b\x32\t.v1.MysqlB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mysql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12Q\n\x07neptune\x18\xca\x11 \x01(\x0b\x32\x0b.v1.NeptuneB0\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07neptune\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12[\n\x0bneptune_iam\x18\x99\x11 \x01(\x0b\x32\x0e.v1.NeptuneIAMB3\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nneptuneiam\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12N\n\x06oracle\x18\xb0\t \x01(\x0b\x32\n.v1.OracleB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06oracle\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12T\n\x08postgres\x18\x94\n \x01(\x0b\x32\x0c.v1.PostgresB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08postgres\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12N\n\x06presto\x18\xf8\n \x01(\x0b\x32\n.v1.PrestoB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06presto\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x45\n\x03rdp\x18\xdc\x0b \x01(\x0b\x32\x07.v1.RDPB,\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03rdp\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12R\n\x08rdp_cert\x18\xdd\x0b \x01(\x0b\x32\x0b.v1.RDPCertB0\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07rdpCert\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12h\n\x10rds_postgres_iam\x18\x9e\n \x01(\x0b\x32\x12.v1.RDSPostgresIAMB7\xf2\xf8\xb3\x07(\xca\xf3\xb3\x07#\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0erdspostgresiam\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12m\n\x11rabbit_mqamqp_091\x18\xc4\x13 \x01(\x0b\x32\x13.v1.RabbitMQAMQP091B:\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11rabbitmq-amqp-091\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12O\n\x07raw_tcp\x18\xa8\x14 \x01(\x0b\x32\n.v1.RawTCPB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06rawtcp\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05redis\x18\xc0\x0c \x01(\x0b\x32\t.v1.RedisB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05redis\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12T\n\x08redshift\x18\x98\n \x01(\x0b\x32\x0c.v1.RedshiftB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08redshift\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12T\n\nsql_server\x18\x88\x0e \x01(\x0b\x32\r.v1.SQLServerB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mssql\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12k\n\x13sql_server_azure_ad\x18\x8d\x0e \x01(\x0b\x32\x14.v1.SQLServerAzureADB5\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0cmssqlAzureAD\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12r\n\x16sql_server_kerberos_ad\x18\x92\x0e \x01(\x0b\x32\x17.v1.SQLServerKerberosADB6\xf2\xf8\xb3\x07\'\xca\xf3\xb3\x07\"\xc2\xf4\xb3\x07\x1d\n\x0cjson_gateway\x12\rmssqlKerberos\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12\x45\n\x03ssh\x18\xec\x0e \x01(\x0b\x32\x07.v1.SSHB,\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03ssh\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12R\n\x08ssh_cert\x18\xed\x0e \x01(\x0b\x32\x0b.v1.SSHCertB0\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07sshCert\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12h\n\x10ssh_customer_key\x18\xee\x0e \x01(\x0b\x32\x12.v1.SSHCustomerKeyB7\xf2\xf8\xb3\x07(\xca\xf3\xb3\x07#\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0esshCustomerKey\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12^\n\x0cssh_password\x18\xf0\x0e \x01(\x0b\x32\x0f.v1.SSHPasswordB4\xf2\xf8\xb3\x07%\xca\xf3\xb3\x07 \xc2\xf4\xb3\x07\x1b\n\x0cjson_gateway\x12\x0bsshPassword\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12^\n\x0csingle_store\x18\xd1\x08 \x01(\x0b\x32\x0f.v1.SingleStoreB4\xf2\xf8\xb3\x07%\xca\xf3\xb3\x07 \xc2\xf4\xb3\x07\x1b\n\x0cjson_gateway\x12\x0bsinglestore\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tsnowflake\x18\xa4\r \x01(\x0b\x32\r.v1.SnowflakeB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tsnowflake\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12W\n\tsnowsight\x18\xa5\r \x01(\x0b\x32\r.v1.SnowsightB2\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tsnowsight\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12N\n\x06sybase\x18\xd0\x0f \x01(\x0b\x32\n.v1.SybaseB/\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06sybase\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12U\n\tsybase_iq\x18\xd1\x0f \x01(\x0b\x32\x0c.v1.SybaseIQB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08sybaseIQ\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12T\n\x08teradata\x18\xb4\x10 \x01(\x0b\x32\x0c.v1.TeradataB1\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08teradata\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00\x12K\n\x05trino\x18\xf9\n \x01(\x0b\x32\t.v1.TrinoB.\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05trino\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01H\x00:c\xfa\xf8\xb3\x07T\xc2\xf3\xb3\x07O\xa2\xf3\xb3\x07!tf_examples/resource_resource.txt\xaa\xf3\xb3\x07$tf_examples/resource_data_source.txt\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\x42p\n\x08resource\x12\x64\xaa\xf8\xb3\x07\t\xaa\xf8\xb3\x07\x04name\xaa\xf8\xb3\x07\t\xaa\xf8\xb3\x07\x04tags\xaa\xf8\xb3\x07\x14\xaa\xf8\xb3\x07\x0fsecret_store_id\xaa\xf8\xb3\x07\x12\xaa\xf8\xb3\x07\regress_filter\xaa\xf8\xb3\x07\x13\xaa\xf8\xb3\x07\x0e\x62ind_interface\"\xc6\x12\n\x03\x41KS\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\x13 \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x03 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\x05 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x07 \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x11 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x12 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x0b \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\n \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0c \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:[\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07J\xca\xf3\xb3\x07\x45\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03\x61ks\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03\x61ks\xc2\xf4\xb3\x07\x19\n\x12terraform-provider\x12\x03\x61ks\"\xfc\x0b\n\x0c\x41KSBasicAuth\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x05 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12s\n\x08password\x18\x04 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhttp-password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x06 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12s\n\x08username\x18\x03 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhttp-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:}\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07l\xca\xf3\xb3\x07g\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x61kshttpbasic\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0c\x61kshttpbasic\xc2\xf4\xb3\x07$\n\x12terraform-provider\x12\x0e\x61ks_basic_auth\"\xeb\x10\n\x11\x41KSServiceAccount\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\r \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x0b \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x0c \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x04 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x06 \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x05 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12l\n\x05token\x18\x03 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tapi-token\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x87\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07v\xca\xf3\xb3\x07q\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x61ksserviceaccount\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61ksserviceaccount\xc2\xf4\xb3\x07)\n\x12terraform-provider\x12\x13\x61ks_service_account\"\xd8\x0b\n\"AKSServiceAccountUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x04 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12l\n\x05token\x18\x03 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tapi-token\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xbe\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\xac\x01\xca\xf3\xb3\x07\xa6\x01\xc2\xf4\xb3\x07)\n\x03\x63li\x12\"aksserviceaccountuserimpersonation\xc2\xf4\xb3\x07\x32\n\x0cjson_gateway\x12\"aksserviceaccountuserimpersonation\xc2\xf4\xb3\x07<\n\x12terraform-provider\x12&aks_service_account_user_impersonation\"\xb2\r\n\x14\x41KSUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x03 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\x05 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x07 \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\n \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:\x90\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x7f\xca\xf3\xb3\x07z\xc2\xf4\xb3\x07\x1b\n\x03\x63li\x12\x14\x61ksuserimpersonation\xc2\xf4\xb3\x07$\n\x0cjson_gateway\x12\x14\x61ksuserimpersonation\xc2\xf4\xb3\x07,\n\x12terraform-provider\x12\x16\x61ks_user_impersonation\"\xb1\n\n\x03\x41WS\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x01 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12healthcheck_region\x18\x04 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12healthcheck-region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\n \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x06 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x02 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:[\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07J\xca\xf3\xb3\x07\x45\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03\x61ws\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03\x61ws\xc2\xf4\xb3\x07\x19\n\x12terraform-provider\x12\x03\x61ws\"\x98\r\n\nAWSConsole\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12\x8e\x01\n\x14\x65nable_env_variables\x18\x01 \x01(\x08\x42p\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07-\xca\xf3\xb3\x07(\xc2\xf4\xb3\x07#\n\x03\x63li\x12\x1c\x65nable-environment-variables\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa4\x01\n#identity_alias_healthcheck_username\x18\t \x01(\tBw\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fidentity_set_id\x18\x08 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x02 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x04 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x0esession_expiry\x18\x05 \x01(\x05\x42j\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\'\xca\xf3\xb3\x07\"\xc2\xf4\xb3\x07\x1d\n\x03\x63li\x12\x16session-expiry-seconds\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\tsubdomain\x18\x06 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:q\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07`\xca\xf3\xb3\x07[\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nawsConsole\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nawsConsole\xc2\xf4\xb3\x07!\n\x12terraform-provider\x12\x0b\x61ws_console\"\xbb\x0e\n\x17\x41WSConsoleStaticKeyPair\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12u\n\naccess_key\x18\x01 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\xa4\x01\n#identity_alias_healthcheck_username\x18\n \x01(\tBw\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fidentity_set_id\x18\t \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x08 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x05 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x02 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x0esession_expiry\x18\x06 \x01(\x05\x42j\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\'\xca\xf3\xb3\x07\"\xc2\xf4\xb3\x07\x1d\n\x03\x63li\x12\x16session-expiry-seconds\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\tsubdomain\x18\x07 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:\x9d\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x8b\x01\xca\xf3\xb3\x07\x85\x01\xc2\xf4\xb3\x07\x1e\n\x03\x63li\x12\x17\x61wsConsoleStaticKeyPair\xc2\xf4\xb3\x07\'\n\x0cjson_gateway\x12\x17\x61wsConsoleStaticKeyPair\xc2\xf4\xb3\x07\x31\n\x12terraform-provider\x12\x1b\x61ws_console_static_key_pair\"\xcc\x15\n\tAmazonEKS\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\x12 \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x04 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x0c\x63luster_name\x18\x07 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x63luster-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x10 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x11 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x0c \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x0b \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0f \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x08 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\n \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x03 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:n\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07]\xca\xf3\xb3\x07X\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tamazoneks\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tamazoneks\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\namazon_eks\"\x93\x14\n\x18\x41mazonEKSInstanceProfile\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\x12 \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x02 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x0c\x63luster_name\x18\x05 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x63luster-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x10 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x11 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x08 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\n \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\t \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0f \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x04 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x07 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x9f\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x8d\x01\xca\xf3\xb3\x07\x87\x01\xc2\xf4\xb3\x07\x1f\n\x03\x63li\x12\x18\x61mazoneksinstanceprofile\xc2\xf4\xb3\x07(\n\x0cjson_gateway\x12\x18\x61mazoneksinstanceprofile\xc2\xf4\xb3\x07\x31\n\x12terraform-provider\x12\x1b\x61mazon_eks_instance_profile\"\xfe\x0e\n)AmazonEKSInstanceProfileUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x02 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x0c\x63luster_name\x18\x05 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x63luster-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x08 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0f \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x04 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x07 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xd4\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\xc2\x01\xca\xf3\xb3\x07\xbc\x01\xc2\xf4\xb3\x07\x30\n\x03\x63li\x12)amazoneksinstanceprofileuserimpersonation\xc2\xf4\xb3\x07\x39\n\x0cjson_gateway\x12)amazoneksinstanceprofileuserimpersonation\xc2\xf4\xb3\x07\x44\n\x12terraform-provider\x12.amazon_eks_instance_profile_user_impersonation\"\xba\x10\n\x1a\x41mazonEKSUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x04 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x0c\x63luster_name\x18\x07 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x63luster-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0f \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x08 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\n \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x03 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xa5\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x93\x01\xca\xf3\xb3\x07\x8d\x01\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61mazoneksuserimpersonation\xc2\xf4\xb3\x07*\n\x0cjson_gateway\x12\x1a\x61mazoneksuserimpersonation\xc2\xf4\xb3\x07\x33\n\x12terraform-provider\x12\x1d\x61mazon_eks_user_impersonation\"\x9d\x0b\n\x08\x41mazonES\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x04 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x65ndpoint\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x01 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x07 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x02 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:k\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Z\xca\xf3\xb3\x07U\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x61mazones\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x61mazones\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tamazon_es\"\xa9\n\n\x0f\x41mazonMQAMQP091\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x08 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x85\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07t\xca\xf3\xb3\x07o\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x61mazonmq-amqp-091\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61mazonmq-amqp-091\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11\x61mazonmq_amqp_091\"\xa4\x0b\n\x06\x41thena\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12y\n\naccess_key\x18\x01 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x61ws-access-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x06output\x18\x03 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12s3-output-location\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x05 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x07 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x84\x01\n\x11secret_access_key\x18\x02 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x61ws-secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:d\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07S\xca\xf3\xb3\x07N\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06\x61thena\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x61thena\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06\x61thena\"\xb7\x0c\n\x0b\x41uroraMysql\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\n \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:v\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x65\xca\xf3\xb3\x07`\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x61urora-mysql\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0c\x61urora-mysql\xc2\xf4\xb3\x07\"\n\x12terraform-provider\x12\x0c\x61urora_mysql\"\x9c\x0b\n\x0e\x41uroraPostgres\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x7f\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07n\xca\xf3\xb3\x07i\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0f\x61urora-postgres\xc2\xf4\xb3\x07\x1f\n\x0cjson_gateway\x12\x0f\x61urora-postgres\xc2\xf4\xb3\x07%\n\x12terraform-provider\x12\x0f\x61urora_postgres\"\xab\x0c\n\x11\x41uroraPostgresIAM\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13role_assumption_arn\x18\n \x01(\tBg\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13role-assumption-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x87\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07v\xca\xf3\xb3\x07q\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x61urorapostgresiam\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x61urorapostgresiam\xc2\xf4\xb3\x07)\n\x12terraform-provider\x12\x13\x61urora_postgres_iam\"\x98\x08\n\x05\x41zure\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06\x61pp_id\x18\x01 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06\x61pp-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x08 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12p\n\ttenant_id\x18\x02 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\ttenant-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05\x61zure\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x61zure\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05\x61zure\"\xc4\x08\n\x10\x41zureCertificate\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06\x61pp_id\x18\x01 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06\x61pp-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12{\n\x12\x63lient_certificate\x18\x03 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0b\x63\x65rtificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\n \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12p\n\ttenant_id\x18\x02 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\ttenant-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:u\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x64\xca\xf3\xb3\x07_\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tazurecert\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tazurecert\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11\x61zure_certificate\"\xb1\x0c\n\nAzureMysql\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\t \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:q\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07`\xca\xf3\xb3\x07[\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nazuremysql\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nazuremysql\xc2\xf4\xb3\x07!\n\x12terraform-provider\x12\x0b\x61zure_mysql\"\x96\x0b\n\rAzurePostgres\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:z\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07i\xca\xf3\xb3\x07\x64\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\razurepostgres\xc2\xf4\xb3\x07\x1d\n\x0cjson_gateway\x12\razurepostgres\xc2\xf4\xb3\x07$\n\x12terraform-provider\x12\x0e\x61zure_postgres\"\xfa\x0c\n\x1c\x41zurePostgresManagedIdentity\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\n \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xab\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x99\x01\xca\xf3\xb3\x07\x93\x01\xc2\xf4\xb3\x07#\n\x03\x63li\x12\x1c\x61zurepostgresmanagedidentity\xc2\xf4\xb3\x07,\n\x0cjson_gateway\x12\x1c\x61zurepostgresmanagedidentity\xc2\xf4\xb3\x07\x35\n\x12terraform-provider\x12\x1f\x61zure_postgres_managed_identity\"\x9b\t\n\x08\x42igQuery\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0bprivate_key\x18\x01 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bprivate-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12l\n\x07project\x18\x02 \x01(\tB[\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x18\xca\xf3\xb3\x07\x13\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07project\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:k\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Z\xca\xf3\xb3\x07U\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x62igquery\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x62igquery\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tbig_query\"\x8a\n\n\tCassandra\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x06 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tcassandra\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tcassandra\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tcassandra\"\xf5\n\n\x05\x43itus\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05\x63itus\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x63itus\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05\x63itus\"\xa8\x0c\n\x08\x43lustrix\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\t \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:j\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Y\xca\xf3\xb3\x07T\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x63lustrix\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08\x63lustrix\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08\x63lustrix\"\x85\x0b\n\tCockroach\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tcockroach\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tcockroach\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tcockroach\"\x9e\x0b\n\x11\x43ouchbaseDatabase\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x08 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12p\n\tn1ql_port\x18\x04 \x01(\x05\x42]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tn1ql-port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\t \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x07 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x86\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07u\xca\xf3\xb3\x07p\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x63ouchbaseDatabase\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11\x63ouchbaseDatabase\xc2\xf4\xb3\x07(\n\x12terraform-provider\x12\x12\x63ouchbase_database\"\xd8\x08\n\x0e\x43ouchbaseWebUI\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\tsubdomain\x18\x04 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x64\n\x03url\x18\x01 \x01(\tBW\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x14\xca\xf3\xb3\x07\x0f\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03url\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:~\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07m\xca\xf3\xb3\x07h\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0e\x63ouchbaseWebUI\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0e\x63ouchbaseWebUI\xc2\xf4\xb3\x07&\n\x12terraform-provider\x12\x10\x63ouchbase_web_ui\"\xf8\t\n\x04\x44\x42\x32I\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x07 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:`\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07O\xca\xf3\xb3\x07J\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04\x64\x62\x32i\xc2\xf4\xb3\x07\x14\n\x0cjson_gateway\x12\x04\x64\x62\x32i\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06\x64\x62_2_i\"\xf8\t\n\x06\x44\x42\x32LUW\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:f\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07U\xca\xf3\xb3\x07P\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06\x64\x62\x32luw\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x64\x62\x32luw\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08\x64\x62_2_luw\"\xa2\n\n\x0e\x44ocumentDBHost\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:~\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07m\xca\xf3\xb3\x07h\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0e\x64ocumentdbhost\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0e\x64ocumentdbhost\xc2\xf4\xb3\x07&\n\x12terraform-provider\x12\x10\x64ocument_db_host\"\xd0\x0b\n\x14\x44ocumentDBReplicaSet\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x63onnect_to_replica\x18\x07 \x01(\x08\x42\x66\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63onnect-to-replica\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0breplica_set\x18\x06 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0breplica-set\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x92\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x80\x01\xca\xf3\xb3\x07{\xc2\xf4\xb3\x07\x1b\n\x03\x63li\x12\x14\x64ocumentdbreplicaset\xc2\xf4\xb3\x07$\n\x0cjson_gateway\x12\x14\x64ocumentdbreplicaset\xc2\xf4\xb3\x07-\n\x12terraform-provider\x12\x17\x64ocument_db_replica_set\"\x82\t\n\x05\x44ruid\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05\x64ruid\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05\x64ruid\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05\x64ruid\"\x99\x0b\n\x08\x44ynamoDB\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x01 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x65ndpoint\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x07 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x02 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:g\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07V\xca\xf3\xb3\x07Q\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06\x64ynamo\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06\x64ynamo\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tdynamo_db\"\x82\n\n\x07\x45lastic\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x06 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:g\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07V\xca\xf3\xb3\x07Q\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07\x65lastic\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07\x65lastic\xc2\xf4\xb3\x07\x1d\n\x12terraform-provider\x12\x07\x65lastic\"\x95\n\n\x10\x45lasticacheRedis\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x04 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x05 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:q\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07`\xca\xf3\xb3\x07[\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07\x65\x63redis\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07\x65\x63redis\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11\x65lasticache_redis\"\xa0\x07\n\x03GCP\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12p\n\x07keyfile\x18\x01 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bsvc-keyfile\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x0b \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06scopes\x18\x02 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06scopes\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:[\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07J\xca\xf3\xb3\x07\x45\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03gcp\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03gcp\xc2\xf4\xb3\x07\x19\n\x12terraform-provider\x12\x03gcp\"\x85\x11\n\tGoogleGKE\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\x11 \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x02 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x0f \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x10 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x06 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x08 \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x07 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0e \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13service_account_key\x18\x04 \x01(\tBg\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13service-account-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:n\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07]\xca\xf3\xb3\x07X\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tgooglegke\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tgooglegke\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\ngoogle_gke\"\xf3\x0b\n\x1aGoogleGKEUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x02 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x06 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0c \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13service_account_key\x18\x04 \x01(\tBg\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13service-account-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xa5\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x93\x01\xca\xf3\xb3\x07\x8d\x01\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1agooglegkeuserimpersonation\xc2\xf4\xb3\x07*\n\x0cjson_gateway\x12\x1agooglegkeuserimpersonation\xc2\xf4\xb3\x07\x33\n\x12terraform-provider\x12\x1dgoogle_gke_user_impersonation\"\x85\x0b\n\tGreenplum\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tgreenplum\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tgreenplum\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tgreenplum\"\xcb\n\n\x08HTTPAuth\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12t\n\x0b\x61uth_header\x18\x03 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0b\x61uth-header\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12v\n\x0c\x64\x65\x66\x61ult_path\x18\x05 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x64\x65\x66\x61ult-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11headers_blacklist\x18\x04 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11headers-exclusion\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12y\n\x10healthcheck_path\x18\x02 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bhealth-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rhost_override\x18\x07 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhost-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\tsubdomain\x18\x06 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x64\n\x03url\x18\x01 \x01(\tBW\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x14\xca\xf3\xb3\x07\x0f\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03url\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:k\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Z\xca\xf3\xb3\x07U\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08httpAuth\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08httpAuth\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\thttp_auth\"\xc2\x0b\n\rHTTPBasicAuth\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12v\n\x0c\x64\x65\x66\x61ult_path\x18\x06 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x64\x65\x66\x61ult-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11headers_blacklist\x18\x05 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11headers-exclusion\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12y\n\x10healthcheck_path\x18\x02 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bhealth-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rhost_override\x18\x08 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhost-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12u\n\tsubdomain\x18\x07 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x64\n\x03url\x18\x01 \x01(\tBW\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x14\xca\xf3\xb3\x07\x0f\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03url\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:s\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x62\xca\xf3\xb3\x07]\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\thttpBasic\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\thttpBasic\xc2\xf4\xb3\x07%\n\x12terraform-provider\x12\x0fhttp_basic_auth\"\xde\t\n\nHTTPNoAuth\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12v\n\x0c\x64\x65\x66\x61ult_path\x18\x04 \x01(\tB`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0c\x64\x65\x66\x61ult-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11headers_blacklist\x18\x03 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11headers-exclusion\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12y\n\x10healthcheck_path\x18\x02 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bhealth-path\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rhost_override\x18\x06 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhost-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\tsubdomain\x18\x05 \x01(\tBb\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1f\xca\xf3\xb3\x07\x1a\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0ehttp-subdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x64\n\x03url\x18\x01 \x01(\tBW\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x14\xca\xf3\xb3\x07\x0f\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03url\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:r\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x61\xca\xf3\xb3\x07\\\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nhttpNoAuth\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nhttpNoAuth\xc2\xf4\xb3\x07\"\n\x12terraform-provider\x12\x0chttp_no_auth\"\xe2\x12\n\nKubernetes\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\x13 \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x03 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\x05 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x07 \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x11 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x12 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x0b \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\n \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x0c \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:p\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07_\xca\xf3\xb3\x07Z\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nkubernetes\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nkubernetes\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\nkubernetes\"\x9a\x0c\n\x13KubernetesBasicAuth\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x05 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12s\n\x08password\x18\x04 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhttp-password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x06 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12s\n\x08username\x18\x03 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rhttp-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x93\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x81\x01\xca\xf3\xb3\x07|\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13kuberneteshttpbasic\xc2\xf4\xb3\x07#\n\x0cjson_gateway\x12\x13kuberneteshttpbasic\xc2\xf4\xb3\x07+\n\x12terraform-provider\x12\x15kubernetes_basic_auth\"\x89\x11\n\x18KubernetesServiceAccount\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x92\x01\n\x1a\x61llow_resource_role_bypass\x18\r \x01(\x08\x42n\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07+\xca\xf3\xb3\x07&\xc2\xf4\xb3\x07!\n\x03\x63li\x12\x1a\x61llow-resource-role-bypass\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11\x64iscovery_enabled\x18\x0b \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11\x64iscovery-enabled\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x64iscovery_username\x18\x0c \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x64iscovery-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x04 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x06 \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x05 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12l\n\x05token\x18\x03 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tapi-token\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x9e\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x8c\x01\xca\xf3\xb3\x07\x86\x01\xc2\xf4\xb3\x07\x1f\n\x03\x63li\x12\x18kubernetesserviceaccount\xc2\xf4\xb3\x07(\n\x0cjson_gateway\x12\x18kubernetesserviceaccount\xc2\xf4\xb3\x07\x30\n\x12terraform-provider\x12\x1akubernetes_service_account\"\xf4\x0b\n)KubernetesServiceAccountUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xca\x02\n\x15healthcheck_namespace\x18\x04 \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12l\n\x05token\x18\x03 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tapi-token\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\xd3\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\xc1\x01\xca\xf3\xb3\x07\xbb\x01\xc2\xf4\xb3\x07\x30\n\x03\x63li\x12)kubernetesserviceaccountuserimpersonation\xc2\xf4\xb3\x07\x39\n\x0cjson_gateway\x12)kubernetesserviceaccountuserimpersonation\xc2\xf4\xb3\x07\x43\n\x12terraform-provider\x12-kubernetes_service_account_user_impersonation\"\xd0\r\n\x1bKubernetesUserImpersonation\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x03 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\x05 \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x07 \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\xca\x02\n\x15healthcheck_namespace\x18\t \x01(\tB\xaa\x02\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\xe6\x01\xca\xf3\xb3\x07\xe0\x01\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15healthcheck-namespace\x9a\xf5\xb3\x07\xb9\x01\n\x12terraform-provider\x12\xa2\x01The path used to check the health of your connection. Defaults to `default`. This field is required, and is only marked as optional for backwards compatibility.\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x02 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\n \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:\xa7\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x95\x01\xca\xf3\xb3\x07\x8f\x01\xc2\xf4\xb3\x07\"\n\x03\x63li\x12\x1bkubernetesuserimpersonation\xc2\xf4\xb3\x07+\n\x0cjson_gateway\x12\x1bkubernetesuserimpersonation\xc2\xf4\xb3\x07\x33\n\x12terraform-provider\x12\x1dkubernetes_user_impersonation\"\xac\x10\n\tMTLSMysql\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x07 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\t \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x0b \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x0e \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0bserver_name\x18\r \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bserver-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\x10 \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:s\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x62\xca\xf3\xb3\x07]\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tmTLSMysql\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmTLSMysql\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\nmtls_mysql\"\x8c\x0f\n\x0cMTLSPostgres\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x88\x01\n\x15\x63\x65rtificate_authority\x18\x08 \x01(\tBi\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07&\xca\xf3\xb3\x07!\xc2\xf4\xb3\x07\x1c\n\x03\x63li\x12\x15\x63\x65rtificate-authority\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x82\x01\n\x12\x63lient_certificate\x18\n \x01(\tBf\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63lient-certificate\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nclient_key\x18\x0c \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nclient-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0bserver_name\x18\x0e \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bserver-name\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:w\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x66\xca\xf3\xb3\x07\x61\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0cmTLSPostgres\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0cmTLSPostgres\xc2\xf4\xb3\x07#\n\x12terraform-provider\x12\rmtls_postgres\"\x9c\x0c\n\x05Maria\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\t \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05maria\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05maria\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05maria\"\xb2\x07\n\tMemcached\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tmemcached\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmemcached\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tmemcached\"\xa0\x0c\n\x06Memsql\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\t \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:d\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07S\xca\xf3\xb3\x07N\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06memsql\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06memsql\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06memsql\"\x85\x0b\n\tMongoHost\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x08 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:n\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07]\xca\xf3\xb3\x07X\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tmongoHost\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tmongoHost\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\nmongo_host\"\x8f\x0b\n\x0fMongoLegacyHost\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x08 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:r\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x61\xca\xf3\xb3\x07\\\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05mongo\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mongo\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11mongo_legacy_host\"\xad\r\n\x15MongoLegacyReplicaset\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x63onnect_to_replica\x18\x08 \x01(\x08\x42\x66\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63onnect-to-replica\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0breplica_set\x18\x07 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0breplica-set\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\t \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x8e\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07}\xca\xf3\xb3\x07x\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10mongo-replicaset\xc2\xf4\xb3\x07 \n\x0cjson_gateway\x12\x10mongo-replicaset\xc2\xf4\xb3\x07-\n\x12terraform-provider\x12\x17mongo_legacy_replicaset\"\x9a\r\n\x0fMongoReplicaSet\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x82\x01\n\x12\x63onnect_to_replica\x18\x08 \x01(\x08\x42\x66\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07#\xca\xf3\xb3\x07\x1e\xc2\xf4\xb3\x07\x19\n\x03\x63li\x12\x12\x63onnect-to-replica\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0breplica_set\x18\x07 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0breplica-set\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\t \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x81\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07p\xca\xf3\xb3\x07k\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fmongoReplicaSet\xc2\xf4\xb3\x07\x1f\n\x0cjson_gateway\x12\x0fmongoReplicaSet\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11mongo_replica_set\"\xc7\n\n\x13MongoShardedCluster\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rauth_database\x18\x02 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rauth-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x06 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x8d\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07|\xca\xf3\xb3\x07w\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13mongoshardedcluster\xc2\xf4\xb3\x07#\n\x0cjson_gateway\x12\x13mongoshardedcluster\xc2\xf4\xb3\x07+\n\x12terraform-provider\x12\x15mongo_sharded_cluster\"\x9c\x0c\n\x05Mysql\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\n \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05mysql\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mysql\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05mysql\"\xaa\x07\n\x07Neptune\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:g\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07V\xca\xf3\xb3\x07Q\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07neptune\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07neptune\xc2\xf4\xb3\x07\x1d\n\x12terraform-provider\x12\x07neptune\"\x8d\x0c\n\nNeptuneIAM\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12u\n\naccess_key\x18\x04 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\raccess-key-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x65ndpoint\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x65ndpoint\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08role_arn\x18\x07 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08role-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12~\n\x10role_external_id\x18\x08 \x01(\tBd\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07!\xca\xf3\xb3\x07\x1c\xc2\xf4\xb3\x07\x17\n\x03\x63li\x12\x10role-external-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11secret_access_key\x18\x05 \x01(\tBe\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11secret-access-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:q\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07`\xca\xf3\xb3\x07[\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nneptuneiam\xc2\xf4\xb3\x07\x1a\n\x0cjson_gateway\x12\nneptuneiam\xc2\xf4\xb3\x07!\n\x12terraform-provider\x12\x0bneptune_iam\"\xee\n\n\x06Oracle\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x06 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x07 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:d\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07S\xca\xf3\xb3\x07N\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06oracle\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06oracle\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06oracle\"\x81\x0b\n\x08Postgres\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:j\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Y\xca\xf3\xb3\x07T\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08postgres\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08postgres\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08postgres\"\xee\n\n\x06Presto\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x07 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:d\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07S\xca\xf3\xb3\x07N\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06presto\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06presto\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06presto\"\x87\x0b\n\x03RDP\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x90\x01\n\x19\x64owngrade_nla_connections\x18\x06 \x01(\x08\x42m\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07*\xca\xf3\xb3\x07%\xc2\xf4\xb3\x07 \n\x03\x63li\x12\x19\x64owngrade-nla-connections\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rlock_required\x18\n \x01(\x08\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rlock-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:[\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07J\xca\xf3\xb3\x07\x45\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03rdp\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03rdp\xc2\xf4\xb3\x07\x19\n\x12terraform-provider\x12\x03rdp\"\xf6\n\n\x07RDPCert\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x06 \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x05 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x04 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x8a\x01\n\x08username\x18\x02 \x01(\tBx\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xda\xf4\xb3\x07\x12leased-credentials:h\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07W\xca\xf3\xb3\x07R\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07rdpCert\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07rdpCert\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08rdp_cert\"\x9e\x0c\n\x0eRDSPostgresIAM\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06region\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06region\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13role_assumption_arn\x18\n \x01(\tBg\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13role-assumption-arn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:~\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07m\xca\xf3\xb3\x07h\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0erdspostgresiam\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0erdspostgresiam\xc2\xf4\xb3\x07&\n\x12terraform-provider\x12\x10rds_postgres_iam\"\xa9\n\n\x0fRabbitMQAMQP091\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x08 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x85\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07t\xca\xf3\xb3\x07o\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11rabbitmq-amqp-091\xc2\xf4\xb3\x07!\n\x0cjson_gateway\x12\x11rabbitmq-amqp-091\xc2\xf4\xb3\x07\'\n\x12terraform-provider\x12\x11rabbitmq_amqp_091\"\xa7\x07\n\x06RawTCP\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:e\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07T\xca\xf3\xb3\x07O\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06rawtcp\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06rawtcp\xc2\xf4\xb3\x07\x1d\n\x12terraform-provider\x12\x07raw_tcp\"\xfa\t\n\x05Redis\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x04 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x02 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12v\n\x0ctls_required\x18\x06 \x01(\x08\x42`\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1d\xca\xf3\xb3\x07\x18\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0ctls-required\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:a\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07P\xca\xf3\xb3\x07K\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05redis\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05redis\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05redis\"\x81\x0b\n\x08Redshift\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x07 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:j\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Y\xca\xf3\xb3\x07T\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08redshift\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08redshift\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08redshift\"\x81\r\n\tSQLServer\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x94\x01\n\x1b\x61llow_deprecated_encryption\x18\t \x01(\x08\x42o\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07,\xca\xf3\xb3\x07\'\xc2\xf4\xb3\x07\"\n\x03\x63li\x12\x1b\x61llow-deprecated-encryption\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x08 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x07 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06schema\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06schema\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:f\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07U\xca\xf3\xb3\x07P\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05mssql\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05mssql\xc2\xf4\xb3\x07 \n\x12terraform-provider\x12\nsql_server\"\x8f\x0e\n\x10SQLServerAzureAD\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x94\x01\n\x1b\x61llow_deprecated_encryption\x18\n \x01(\x08\x42o\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07,\xca\xf3\xb3\x07\'\xc2\xf4\xb3\x07\"\n\x03\x63li\x12\x1b\x61llow-deprecated-encryption\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12p\n\tclient_id\x18\x02 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tclient-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x80\x01\n\x11override_database\x18\x08 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x07 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06schema\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06schema\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06secret\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06secret\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12p\n\ttenant_id\x18\t \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\ttenant-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:}\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07l\xca\xf3\xb3\x07g\xc2\xf4\xb3\x07\x13\n\x03\x63li\x12\x0cmssqlAzureAD\xc2\xf4\xb3\x07\x1c\n\x0cjson_gateway\x12\x0cmssqlAzureAD\xc2\xf4\xb3\x07)\n\x12terraform-provider\x12\x13sql_server_azure_ad\"\xf6\x0f\n\x13SQLServerKerberosAD\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x94\x01\n\x1b\x61llow_deprecated_encryption\x18\x0c \x01(\x08\x42o\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07,\xca\xf3\xb3\x07\'\xc2\xf4\xb3\x07\"\n\x03\x63li\x12\x1b\x61llow-deprecated-encryption\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06keytab\x18\x03 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06keytab\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12r\n\nkrb_config\x18\t \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nkrb-config\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x80\x01\n\x11override_database\x18\x08 \x01(\x08\x42\x65\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\"\xca\xf3\xb3\x07\x1d\xc2\xf4\xb3\x07\x18\n\x03\x63li\x12\x11override-database\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x07 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12h\n\x05realm\x18\x0b \x01(\tBY\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x16\xca\xf3\xb3\x07\x11\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05realm\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12j\n\x06schema\x18\x06 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06schema\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12r\n\nserver_spn\x18\n \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\nserver-spn\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:\x82\x01\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07q\xca\xf3\xb3\x07l\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rmssqlKerberos\xc2\xf4\xb3\x07\x1d\n\x0cjson_gateway\x12\rmssqlKerberos\xc2\xf4\xb3\x07,\n\x12terraform-provider\x12\x16sql_server_kerberos_ad\"\x89\x0c\n\x03SSH\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x9a\x01\n\x1e\x61llow_deprecated_key_exchanges\x18\x06 \x01(\x08\x42r\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07/\xca\xf3\xb3\x07*\xc2\xf4\xb3\x07%\n\x03\x63li\x12\x1e\x61llow-deprecated-key-exchanges\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08key_type\x18\x08 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08key-type\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fport_forwarding\x18\x05 \x01(\x08\x42\x63\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fport-forwarding\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12r\n\npublic_key\x18\x04 \x01(\tB^\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1b\xca\xf3\xb3\x07\x16\xc2\xf4\xb3\x07\x11\n\x03\x63li\x12\npublic-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:[\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07J\xca\xf3\xb3\x07\x45\xc2\xf4\xb3\x07\n\n\x03\x63li\x12\x03ssh\xc2\xf4\xb3\x07\x13\n\x0cjson_gateway\x12\x03ssh\xc2\xf4\xb3\x07\x19\n\x12terraform-provider\x12\x03ssh\"\x81\x0e\n\x07SSHCert\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x9a\x01\n\x1e\x61llow_deprecated_key_exchanges\x18\x05 \x01(\x08\x42r\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07/\xca\xf3\xb3\x07*\xc2\xf4\xb3\x07%\n\x03\x63li\x12\x1e\x61llow-deprecated-key-exchanges\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xbd\x01\n#identity_alias_healthcheck_username\x18\x08 \x01(\tB\x8f\x01\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x34\xca\xf3\xb3\x07/\xc2\xf4\xb3\x07*\n\x03\x63li\x12#identity-alias-healthcheck-username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x13\xda\xf4\xb3\x07\x0eidentity-alias\x12|\n\x0fidentity_set_id\x18\x07 \x01(\tBc\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fidentity-set-id\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08key_type\x18\t \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08key-type\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fport_forwarding\x18\x04 \x01(\x08\x42\x63\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fport-forwarding\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x06 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x8a\x01\n\x08username\x18\x02 \x01(\tBx\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xda\xf4\xb3\x07\x12leased-credentials:h\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07W\xca\xf3\xb3\x07R\xc2\xf4\xb3\x07\x0e\n\x03\x63li\x12\x07sshCert\xc2\xf4\xb3\x07\x17\n\x0cjson_gateway\x12\x07sshCert\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08ssh_cert\"\xc9\x0b\n\x0eSSHCustomerKey\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x9a\x01\n\x1e\x61llow_deprecated_key_exchanges\x18\x06 \x01(\x08\x42r\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07/\xca\xf3\xb3\x07*\xc2\xf4\xb3\x07%\n\x03\x63li\x12\x1e\x61llow-deprecated-key-exchanges\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fport_forwarding\x18\x05 \x01(\x08\x42\x63\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fport-forwarding\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12t\n\x0bprivate_key\x18\x04 \x01(\tB_\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1c\xca\xf3\xb3\x07\x17\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bprivate-key\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:~\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07m\xca\xf3\xb3\x07h\xc2\xf4\xb3\x07\x15\n\x03\x63li\x12\x0esshCustomerKey\xc2\xf4\xb3\x07\x1e\n\x0cjson_gateway\x12\x0esshCustomerKey\xc2\xf4\xb3\x07&\n\x12terraform-provider\x12\x10ssh_customer_key\"\xbb\x0b\n\x0bSSHPassword\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x9a\x01\n\x1e\x61llow_deprecated_key_exchanges\x18\x06 \x01(\x08\x42r\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07/\xca\xf3\xb3\x07*\xc2\xf4\xb3\x07%\n\x03\x63li\x12\x1e\x61llow-deprecated-key-exchanges\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x03 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12|\n\x0fport_forwarding\x18\x05 \x01(\x08\x42\x63\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07 \xca\xf3\xb3\x07\x1b\xc2\xf4\xb3\x07\x16\n\x03\x63li\x12\x0fport-forwarding\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x07 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:y\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07h\xca\xf3\xb3\x07\x63\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bsshPassword\xc2\xf4\xb3\x07\x1b\n\x0cjson_gateway\x12\x0bsshPassword\xc2\xf4\xb3\x07\"\n\x12terraform-provider\x12\x0cssh_password\"\xb5\x0c\n\x0bSingleStore\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x06 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x05 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\x84\x01\n\x13require_native_auth\x18\x07 \x01(\x08\x42g\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07$\xca\xf3\xb3\x07\x1f\xc2\xf4\xb3\x07\x1a\n\x03\x63li\x12\x13require-native-auth\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12\xa0\x01\n!use_azure_single_server_usernames\x18\t \x01(\x08\x42u\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x32\xca\xf3\xb3\x07-\xc2\xf4\xb3\x07(\n\x03\x63li\x12!use-azure-single-server-usernames\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:t\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\x63\xca\xf3\xb3\x07^\xc2\xf4\xb3\x07\x12\n\x03\x63li\x12\x0bsinglestore\xc2\xf4\xb3\x07\x1b\n\x0cjson_gateway\x12\x0bsinglestore\xc2\xf4\xb3\x07\"\n\x12terraform-provider\x12\x0csingle_store\"\x86\n\n\tSnowflake\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x04 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12x\n\rport_override\x18\x06 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12j\n\x06schema\x18\x05 \x01(\tBZ\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x17\xca\xf3\xb3\x07\x12\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06schema\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tsnowflake\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tsnowflake\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tsnowflake\"\xf9\x07\n\tSnowsight\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12\x86\x01\n\x14healthcheck_username\x18\x0b \x01(\tBh\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07%\xca\xf3\xb3\x07 \xc2\xf4\xb3\x07\x1b\n\x03\x63li\x12\x14healthcheck_username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12w\n\x0csamlMetadata\x18\x01 \x01(\tBa\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rsaml-metadata\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12p\n\tsubdomain\x18\x02 \x01(\tB]\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1a\xca\xf3\xb3\x07\x15\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tsubdomain\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:m\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07\\\xca\xf3\xb3\x07W\xc2\xf4\xb3\x07\x10\n\x03\x63li\x12\tsnowsight\xc2\xf4\xb3\x07\x19\n\x0cjson_gateway\x12\tsnowsight\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tsnowsight\"\x86\t\n\x06Sybase\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x04 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:d\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07S\xca\xf3\xb3\x07N\xc2\xf4\xb3\x07\r\n\x03\x63li\x12\x06sybase\xc2\xf4\xb3\x07\x16\n\x0cjson_gateway\x12\x06sybase\xc2\xf4\xb3\x07\x1c\n\x12terraform-provider\x12\x06sybase\"\x8f\t\n\x08SybaseIQ\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x05 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x04 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x03 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:k\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Z\xca\xf3\xb3\x07U\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08sybaseIQ\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08sybaseIQ\xc2\xf4\xb3\x07\x1f\n\x12terraform-provider\x12\tsybase_iq\"\x8e\t\n\x08Teradata\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01:j\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07Y\xca\xf3\xb3\x07T\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08teradata\xc2\xf4\xb3\x07\x18\n\x0cjson_gateway\x12\x08teradata\xc2\xf4\xb3\x07\x1e\n\x12terraform-provider\x12\x08teradata\"\xf7\t\n\x05Trino\x12\x18\n\x02id\x18\x80\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12$\n\x04name\x18\x81\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\x12O\n\x07healthy\x18\x82\x80\x02 \x01(\x08\x42<\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x18\xb2\xf4\xb3\x07\x13!terraform-provider\x12$\n\x04tags\x18\x83\x80\x02 \x01(\x0b\x32\x08.v1.TagsB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12/\n\x0fsecret_store_id\x18\x84\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe0\xf3\xb3\x07\x01\x12#\n\regress_filter\x18\x85\x80\x02 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12.\n\x0e\x62ind_interface\x18\x86\x80\x02 \x01(\tB\x14\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\x12R\n\x12gateway_cluster_id\x18\x88\x80\x02 \x01(\tB4\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x0f\xb2\xf4\xb3\x07\ngo_private\xf2\xf8\xb3\x07\x11\xb2\xf4\xb3\x07\x0cjson_gateway\x12S\n\tsubdomain\x18\x87\x80\x02 \x01(\tB>\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08\x64\x61tabase\x18\x03 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08\x64\x61tabase\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08hostname\x18\x01 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08hostname\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08password\x18\x02 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08password\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x01\x12\x66\n\x04port\x18\x05 \x01(\x05\x42X\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x15\xca\xf3\xb3\x07\x10\xc2\xf4\xb3\x07\x0b\n\x03\x63li\x12\x04port\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12x\n\rport_override\x18\x04 \x01(\x05\x42\x61\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x1e\xca\xf3\xb3\x07\x19\xc2\xf4\xb3\x07\x14\n\x03\x63li\x12\rport-override\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x01\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00\x12n\n\x08username\x18\x06 \x01(\tB\\\x18\x00\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x19\xca\xf3\xb3\x07\x14\xc2\xf4\xb3\x07\x0f\n\x03\x63li\x12\x08username\xf2\xf8\xb3\x07\x05\xd0\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xc0\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xe8\xf3\xb3\x07\x00\xf2\xf8\xb3\x07\x05\x98\xf4\xb3\x07\x00\xf2\xf8\xb3\x07\x05\xa0\xf4\xb3\x07\x00:f\x18\x00\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\xfa\xf8\xb3\x07U\xca\xf3\xb3\x07P\x88\xf4\xb3\x07\x01\xc2\xf4\xb3\x07\x0c\n\x03\x63li\x12\x05trino\xc2\xf4\xb3\x07\x15\n\x0cjson_gateway\x12\x05trino\xc2\xf4\xb3\x07\x1b\n\x12terraform-provider\x12\x05trinoBc\n\x19\x63om.strongdm.api.plumbingB\x0f\x44riversPlumbingZ5github.com/strongdm/strongdm-sdk-go/v3/internal/v1;v1b\x06proto3') @@ -63,6 +63,8 @@ _CITUS = DESCRIPTOR.message_types_by_name['Citus'] _CLUSTRIX = DESCRIPTOR.message_types_by_name['Clustrix'] _COCKROACH = DESCRIPTOR.message_types_by_name['Cockroach'] +_COUCHBASEDATABASE = DESCRIPTOR.message_types_by_name['CouchbaseDatabase'] +_COUCHBASEWEBUI = DESCRIPTOR.message_types_by_name['CouchbaseWebUI'] _DB2I = DESCRIPTOR.message_types_by_name['DB2I'] _DB2LUW = DESCRIPTOR.message_types_by_name['DB2LUW'] _DOCUMENTDBHOST = DESCRIPTOR.message_types_by_name['DocumentDBHost'] @@ -323,6 +325,20 @@ }) _sym_db.RegisterMessage(Cockroach) +CouchbaseDatabase = _reflection.GeneratedProtocolMessageType('CouchbaseDatabase', (_message.Message,), { + 'DESCRIPTOR' : _COUCHBASEDATABASE, + '__module__' : 'drivers_pb2' + # @@protoc_insertion_point(class_scope:v1.CouchbaseDatabase) + }) +_sym_db.RegisterMessage(CouchbaseDatabase) + +CouchbaseWebUI = _reflection.GeneratedProtocolMessageType('CouchbaseWebUI', (_message.Message,), { + 'DESCRIPTOR' : _COUCHBASEWEBUI, + '__module__' : 'drivers_pb2' + # @@protoc_insertion_point(class_scope:v1.CouchbaseWebUI) + }) +_sym_db.RegisterMessage(CouchbaseWebUI) + DB2I = _reflection.GeneratedProtocolMessageType('DB2I', (_message.Message,), { 'DESCRIPTOR' : _DB2I, '__module__' : 'drivers_pb2' @@ -784,6 +800,10 @@ _RESOURCE.fields_by_name['clustrix']._serialized_options = b'\362\370\263\007\"\312\363\263\007\035\302\364\263\007\030\n\014json_gateway\022\010clustrix\362\370\263\007\005\260\363\263\007\001' _RESOURCE.fields_by_name['cockroach']._options = None _RESOURCE.fields_by_name['cockroach']._serialized_options = b'\362\370\263\007#\312\363\263\007\036\302\364\263\007\031\n\014json_gateway\022\tcockroach\362\370\263\007\005\260\363\263\007\001' + _RESOURCE.fields_by_name['couchbase_database']._options = None + _RESOURCE.fields_by_name['couchbase_database']._serialized_options = b'\362\370\263\007+\312\363\263\007&\302\364\263\007!\n\014json_gateway\022\021couchbaseDatabase\362\370\263\007\005\260\363\263\007\001' + _RESOURCE.fields_by_name['couchbase_web_ui']._options = None + _RESOURCE.fields_by_name['couchbase_web_ui']._serialized_options = b'\362\370\263\007(\312\363\263\007#\302\364\263\007\036\n\014json_gateway\022\016couchbaseWebUI\362\370\263\007\005\260\363\263\007\001' _RESOURCE.fields_by_name['db_2_i']._options = None _RESOURCE.fields_by_name['db_2_i']._serialized_options = b'\362\370\263\007\036\312\363\263\007\031\302\364\263\007\024\n\014json_gateway\022\004db2i\362\370\263\007\005\260\363\263\007\001' _RESOURCE.fields_by_name['db_2_luw']._options = None @@ -914,6 +934,8 @@ _AKS.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AKS.fields_by_name['bind_interface']._options = None _AKS.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AKS.fields_by_name['gateway_cluster_id']._options = None + _AKS.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AKS.fields_by_name['subdomain']._options = None _AKS.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AKS.fields_by_name['allow_resource_role_bypass']._options = None @@ -956,6 +978,8 @@ _AKSBASICAUTH.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AKSBASICAUTH.fields_by_name['bind_interface']._options = None _AKSBASICAUTH.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AKSBASICAUTH.fields_by_name['gateway_cluster_id']._options = None + _AKSBASICAUTH.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AKSBASICAUTH.fields_by_name['subdomain']._options = None _AKSBASICAUTH.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AKSBASICAUTH.fields_by_name['healthcheck_namespace']._options = None @@ -986,6 +1010,8 @@ _AKSSERVICEACCOUNT.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AKSSERVICEACCOUNT.fields_by_name['bind_interface']._options = None _AKSSERVICEACCOUNT.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AKSSERVICEACCOUNT.fields_by_name['gateway_cluster_id']._options = None + _AKSSERVICEACCOUNT.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AKSSERVICEACCOUNT.fields_by_name['subdomain']._options = None _AKSSERVICEACCOUNT.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AKSSERVICEACCOUNT.fields_by_name['allow_resource_role_bypass']._options = None @@ -1024,6 +1050,8 @@ _AKSSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AKSSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['bind_interface']._options = None _AKSSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AKSSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._options = None + _AKSSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AKSSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['subdomain']._options = None _AKSSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AKSSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['healthcheck_namespace']._options = None @@ -1052,6 +1080,8 @@ _AKSUSERIMPERSONATION.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AKSUSERIMPERSONATION.fields_by_name['bind_interface']._options = None _AKSUSERIMPERSONATION.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AKSUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._options = None + _AKSUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AKSUSERIMPERSONATION.fields_by_name['subdomain']._options = None _AKSUSERIMPERSONATION.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AKSUSERIMPERSONATION.fields_by_name['certificate_authority']._options = None @@ -1084,6 +1114,8 @@ _AWS.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AWS.fields_by_name['bind_interface']._options = None _AWS.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AWS.fields_by_name['gateway_cluster_id']._options = None + _AWS.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AWS.fields_by_name['subdomain']._options = None _AWS.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AWS.fields_by_name['access_key']._options = None @@ -1114,6 +1146,8 @@ _AWSCONSOLE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AWSCONSOLE.fields_by_name['bind_interface']._options = None _AWSCONSOLE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AWSCONSOLE.fields_by_name['gateway_cluster_id']._options = None + _AWSCONSOLE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AWSCONSOLE.fields_by_name['enable_env_variables']._options = None _AWSCONSOLE.fields_by_name['enable_env_variables']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007-\312\363\263\007(\302\364\263\007#\n\003cli\022\034enable-environment-variables\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AWSCONSOLE.fields_by_name['identity_alias_healthcheck_username']._options = None @@ -1148,6 +1182,8 @@ _AWSCONSOLESTATICKEYPAIR.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AWSCONSOLESTATICKEYPAIR.fields_by_name['bind_interface']._options = None _AWSCONSOLESTATICKEYPAIR.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AWSCONSOLESTATICKEYPAIR.fields_by_name['gateway_cluster_id']._options = None + _AWSCONSOLESTATICKEYPAIR.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AWSCONSOLESTATICKEYPAIR.fields_by_name['access_key']._options = None _AWSCONSOLESTATICKEYPAIR.fields_by_name['access_key']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\036\312\363\263\007\031\302\364\263\007\024\n\003cli\022\raccess-key-id\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\001' _AWSCONSOLESTATICKEYPAIR.fields_by_name['identity_alias_healthcheck_username']._options = None @@ -1184,6 +1220,8 @@ _AMAZONEKS.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AMAZONEKS.fields_by_name['bind_interface']._options = None _AMAZONEKS.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AMAZONEKS.fields_by_name['gateway_cluster_id']._options = None + _AMAZONEKS.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AMAZONEKS.fields_by_name['subdomain']._options = None _AMAZONEKS.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AMAZONEKS.fields_by_name['access_key']._options = None @@ -1232,6 +1270,8 @@ _AMAZONEKSINSTANCEPROFILE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AMAZONEKSINSTANCEPROFILE.fields_by_name['bind_interface']._options = None _AMAZONEKSINSTANCEPROFILE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AMAZONEKSINSTANCEPROFILE.fields_by_name['gateway_cluster_id']._options = None + _AMAZONEKSINSTANCEPROFILE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AMAZONEKSINSTANCEPROFILE.fields_by_name['subdomain']._options = None _AMAZONEKSINSTANCEPROFILE.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AMAZONEKSINSTANCEPROFILE.fields_by_name['allow_resource_role_bypass']._options = None @@ -1276,6 +1316,8 @@ _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION.fields_by_name['bind_interface']._options = None _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._options = None + _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION.fields_by_name['subdomain']._options = None _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION.fields_by_name['certificate_authority']._options = None @@ -1310,6 +1352,8 @@ _AMAZONEKSUSERIMPERSONATION.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AMAZONEKSUSERIMPERSONATION.fields_by_name['bind_interface']._options = None _AMAZONEKSUSERIMPERSONATION.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AMAZONEKSUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._options = None + _AMAZONEKSUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AMAZONEKSUSERIMPERSONATION.fields_by_name['subdomain']._options = None _AMAZONEKSUSERIMPERSONATION.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AMAZONEKSUSERIMPERSONATION.fields_by_name['access_key']._options = None @@ -1348,6 +1392,8 @@ _AMAZONES.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AMAZONES.fields_by_name['bind_interface']._options = None _AMAZONES.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AMAZONES.fields_by_name['gateway_cluster_id']._options = None + _AMAZONES.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AMAZONES.fields_by_name['subdomain']._options = None _AMAZONES.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AMAZONES.fields_by_name['access_key']._options = None @@ -1380,6 +1426,8 @@ _AMAZONMQAMQP091.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AMAZONMQAMQP091.fields_by_name['bind_interface']._options = None _AMAZONMQAMQP091.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AMAZONMQAMQP091.fields_by_name['gateway_cluster_id']._options = None + _AMAZONMQAMQP091.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AMAZONMQAMQP091.fields_by_name['subdomain']._options = None _AMAZONMQAMQP091.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AMAZONMQAMQP091.fields_by_name['hostname']._options = None @@ -1410,6 +1458,8 @@ _ATHENA.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _ATHENA.fields_by_name['bind_interface']._options = None _ATHENA.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _ATHENA.fields_by_name['gateway_cluster_id']._options = None + _ATHENA.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _ATHENA.fields_by_name['subdomain']._options = None _ATHENA.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _ATHENA.fields_by_name['access_key']._options = None @@ -1442,6 +1492,8 @@ _AURORAMYSQL.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AURORAMYSQL.fields_by_name['bind_interface']._options = None _AURORAMYSQL.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AURORAMYSQL.fields_by_name['gateway_cluster_id']._options = None + _AURORAMYSQL.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AURORAMYSQL.fields_by_name['subdomain']._options = None _AURORAMYSQL.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AURORAMYSQL.fields_by_name['database']._options = None @@ -1476,6 +1528,8 @@ _AURORAPOSTGRES.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AURORAPOSTGRES.fields_by_name['bind_interface']._options = None _AURORAPOSTGRES.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AURORAPOSTGRES.fields_by_name['gateway_cluster_id']._options = None + _AURORAPOSTGRES.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AURORAPOSTGRES.fields_by_name['subdomain']._options = None _AURORAPOSTGRES.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AURORAPOSTGRES.fields_by_name['database']._options = None @@ -1508,6 +1562,8 @@ _AURORAPOSTGRESIAM.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AURORAPOSTGRESIAM.fields_by_name['bind_interface']._options = None _AURORAPOSTGRESIAM.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AURORAPOSTGRESIAM.fields_by_name['gateway_cluster_id']._options = None + _AURORAPOSTGRESIAM.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AURORAPOSTGRESIAM.fields_by_name['subdomain']._options = None _AURORAPOSTGRESIAM.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AURORAPOSTGRESIAM.fields_by_name['database']._options = None @@ -1542,6 +1598,8 @@ _AZURE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AZURE.fields_by_name['bind_interface']._options = None _AZURE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AZURE.fields_by_name['gateway_cluster_id']._options = None + _AZURE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AZURE.fields_by_name['subdomain']._options = None _AZURE.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AZURE.fields_by_name['app_id']._options = None @@ -1568,6 +1626,8 @@ _AZURECERTIFICATE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AZURECERTIFICATE.fields_by_name['bind_interface']._options = None _AZURECERTIFICATE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AZURECERTIFICATE.fields_by_name['gateway_cluster_id']._options = None + _AZURECERTIFICATE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AZURECERTIFICATE.fields_by_name['subdomain']._options = None _AZURECERTIFICATE.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AZURECERTIFICATE.fields_by_name['app_id']._options = None @@ -1594,6 +1654,8 @@ _AZUREMYSQL.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AZUREMYSQL.fields_by_name['bind_interface']._options = None _AZUREMYSQL.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AZUREMYSQL.fields_by_name['gateway_cluster_id']._options = None + _AZUREMYSQL.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AZUREMYSQL.fields_by_name['subdomain']._options = None _AZUREMYSQL.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AZUREMYSQL.fields_by_name['database']._options = None @@ -1628,6 +1690,8 @@ _AZUREPOSTGRES.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AZUREPOSTGRES.fields_by_name['bind_interface']._options = None _AZUREPOSTGRES.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AZUREPOSTGRES.fields_by_name['gateway_cluster_id']._options = None + _AZUREPOSTGRES.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AZUREPOSTGRES.fields_by_name['subdomain']._options = None _AZUREPOSTGRES.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AZUREPOSTGRES.fields_by_name['database']._options = None @@ -1660,6 +1724,8 @@ _AZUREPOSTGRESMANAGEDIDENTITY.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _AZUREPOSTGRESMANAGEDIDENTITY.fields_by_name['bind_interface']._options = None _AZUREPOSTGRESMANAGEDIDENTITY.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _AZUREPOSTGRESMANAGEDIDENTITY.fields_by_name['gateway_cluster_id']._options = None + _AZUREPOSTGRESMANAGEDIDENTITY.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _AZUREPOSTGRESMANAGEDIDENTITY.fields_by_name['subdomain']._options = None _AZUREPOSTGRESMANAGEDIDENTITY.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _AZUREPOSTGRESMANAGEDIDENTITY.fields_by_name['database']._options = None @@ -1694,6 +1760,8 @@ _BIGQUERY.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _BIGQUERY.fields_by_name['bind_interface']._options = None _BIGQUERY.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _BIGQUERY.fields_by_name['gateway_cluster_id']._options = None + _BIGQUERY.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _BIGQUERY.fields_by_name['subdomain']._options = None _BIGQUERY.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _BIGQUERY.fields_by_name['endpoint']._options = None @@ -1722,6 +1790,8 @@ _CASSANDRA.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _CASSANDRA.fields_by_name['bind_interface']._options = None _CASSANDRA.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _CASSANDRA.fields_by_name['gateway_cluster_id']._options = None + _CASSANDRA.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _CASSANDRA.fields_by_name['subdomain']._options = None _CASSANDRA.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _CASSANDRA.fields_by_name['hostname']._options = None @@ -1752,6 +1822,8 @@ _CITUS.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _CITUS.fields_by_name['bind_interface']._options = None _CITUS.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _CITUS.fields_by_name['gateway_cluster_id']._options = None + _CITUS.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _CITUS.fields_by_name['subdomain']._options = None _CITUS.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _CITUS.fields_by_name['database']._options = None @@ -1784,6 +1856,8 @@ _CLUSTRIX.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _CLUSTRIX.fields_by_name['bind_interface']._options = None _CLUSTRIX.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _CLUSTRIX.fields_by_name['gateway_cluster_id']._options = None + _CLUSTRIX.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _CLUSTRIX.fields_by_name['subdomain']._options = None _CLUSTRIX.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _CLUSTRIX.fields_by_name['database']._options = None @@ -1818,6 +1892,8 @@ _COCKROACH.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _COCKROACH.fields_by_name['bind_interface']._options = None _COCKROACH.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _COCKROACH.fields_by_name['gateway_cluster_id']._options = None + _COCKROACH.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _COCKROACH.fields_by_name['subdomain']._options = None _COCKROACH.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _COCKROACH.fields_by_name['database']._options = None @@ -1836,6 +1912,68 @@ _COCKROACH.fields_by_name['username']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\031\312\363\263\007\024\302\364\263\007\017\n\003cli\022\010username\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\001' _COCKROACH._options = None _COCKROACH._serialized_options = b'\030\000\372\370\263\007\005\250\363\263\007\001\372\370\263\007\\\312\363\263\007W\302\364\263\007\020\n\003cli\022\tcockroach\302\364\263\007\031\n\014json_gateway\022\tcockroach\302\364\263\007\037\n\022terraform-provider\022\tcockroach' + _COUCHBASEDATABASE.fields_by_name['id']._options = None + _COUCHBASEDATABASE.fields_by_name['id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' + _COUCHBASEDATABASE.fields_by_name['name']._options = None + _COUCHBASEDATABASE.fields_by_name['name']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\300\363\263\007\001' + _COUCHBASEDATABASE.fields_by_name['healthy']._options = None + _COUCHBASEDATABASE.fields_by_name['healthy']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\230\364\263\007\001\362\370\263\007\006\262\364\263\007\001*\362\370\263\007\030\262\364\263\007\023!terraform-provider' + _COUCHBASEDATABASE.fields_by_name['tags']._options = None + _COUCHBASEDATABASE.fields_by_name['tags']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' + _COUCHBASEDATABASE.fields_by_name['secret_store_id']._options = None + _COUCHBASEDATABASE.fields_by_name['secret_store_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\340\363\263\007\001' + _COUCHBASEDATABASE.fields_by_name['egress_filter']._options = None + _COUCHBASEDATABASE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' + _COUCHBASEDATABASE.fields_by_name['bind_interface']._options = None + _COUCHBASEDATABASE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _COUCHBASEDATABASE.fields_by_name['gateway_cluster_id']._options = None + _COUCHBASEDATABASE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' + _COUCHBASEDATABASE.fields_by_name['subdomain']._options = None + _COUCHBASEDATABASE.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' + _COUCHBASEDATABASE.fields_by_name['hostname']._options = None + _COUCHBASEDATABASE.fields_by_name['hostname']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\031\312\363\263\007\024\302\364\263\007\017\n\003cli\022\010hostname\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' + _COUCHBASEDATABASE.fields_by_name['n1ql_port']._options = None + _COUCHBASEDATABASE.fields_by_name['n1ql_port']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\032\312\363\263\007\025\302\364\263\007\020\n\003cli\022\tn1ql-port\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' + _COUCHBASEDATABASE.fields_by_name['password']._options = None + _COUCHBASEDATABASE.fields_by_name['password']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\031\312\363\263\007\024\302\364\263\007\017\n\003cli\022\010password\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\001\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\001' + _COUCHBASEDATABASE.fields_by_name['port']._options = None + _COUCHBASEDATABASE.fields_by_name['port']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\025\312\363\263\007\020\302\364\263\007\013\n\003cli\022\004port\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' + _COUCHBASEDATABASE.fields_by_name['port_override']._options = None + _COUCHBASEDATABASE.fields_by_name['port_override']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\036\312\363\263\007\031\302\364\263\007\024\n\003cli\022\rport-override\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' + _COUCHBASEDATABASE.fields_by_name['tls_required']._options = None + _COUCHBASEDATABASE.fields_by_name['tls_required']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\035\312\363\263\007\030\302\364\263\007\023\n\003cli\022\014tls-required\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' + _COUCHBASEDATABASE.fields_by_name['username']._options = None + _COUCHBASEDATABASE.fields_by_name['username']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\031\312\363\263\007\024\302\364\263\007\017\n\003cli\022\010username\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\001' + _COUCHBASEDATABASE._options = None + _COUCHBASEDATABASE._serialized_options = b'\030\000\372\370\263\007\005\250\363\263\007\001\372\370\263\007u\312\363\263\007p\302\364\263\007\030\n\003cli\022\021couchbaseDatabase\302\364\263\007!\n\014json_gateway\022\021couchbaseDatabase\302\364\263\007(\n\022terraform-provider\022\022couchbase_database' + _COUCHBASEWEBUI.fields_by_name['id']._options = None + _COUCHBASEWEBUI.fields_by_name['id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' + _COUCHBASEWEBUI.fields_by_name['name']._options = None + _COUCHBASEWEBUI.fields_by_name['name']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\300\363\263\007\001' + _COUCHBASEWEBUI.fields_by_name['healthy']._options = None + _COUCHBASEWEBUI.fields_by_name['healthy']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\230\364\263\007\001\362\370\263\007\006\262\364\263\007\001*\362\370\263\007\030\262\364\263\007\023!terraform-provider' + _COUCHBASEWEBUI.fields_by_name['tags']._options = None + _COUCHBASEWEBUI.fields_by_name['tags']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' + _COUCHBASEWEBUI.fields_by_name['secret_store_id']._options = None + _COUCHBASEWEBUI.fields_by_name['secret_store_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\340\363\263\007\001' + _COUCHBASEWEBUI.fields_by_name['egress_filter']._options = None + _COUCHBASEWEBUI.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' + _COUCHBASEWEBUI.fields_by_name['bind_interface']._options = None + _COUCHBASEWEBUI.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _COUCHBASEWEBUI.fields_by_name['gateway_cluster_id']._options = None + _COUCHBASEWEBUI.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' + _COUCHBASEWEBUI.fields_by_name['password']._options = None + _COUCHBASEWEBUI.fields_by_name['password']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\031\312\363\263\007\024\302\364\263\007\017\n\003cli\022\010password\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\001\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\001' + _COUCHBASEWEBUI.fields_by_name['port_override']._options = None + _COUCHBASEWEBUI.fields_by_name['port_override']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\036\312\363\263\007\031\302\364\263\007\024\n\003cli\022\rport-override\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' + _COUCHBASEWEBUI.fields_by_name['subdomain']._options = None + _COUCHBASEWEBUI.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\037\312\363\263\007\032\302\364\263\007\025\n\003cli\022\016http-subdomain\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' + _COUCHBASEWEBUI.fields_by_name['url']._options = None + _COUCHBASEWEBUI.fields_by_name['url']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\024\312\363\263\007\017\302\364\263\007\n\n\003cli\022\003url\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' + _COUCHBASEWEBUI.fields_by_name['username']._options = None + _COUCHBASEWEBUI.fields_by_name['username']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\031\312\363\263\007\024\302\364\263\007\017\n\003cli\022\010username\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\001' + _COUCHBASEWEBUI._options = None + _COUCHBASEWEBUI._serialized_options = b'\030\000\372\370\263\007\005\250\363\263\007\001\372\370\263\007m\312\363\263\007h\302\364\263\007\025\n\003cli\022\016couchbaseWebUI\302\364\263\007\036\n\014json_gateway\022\016couchbaseWebUI\302\364\263\007&\n\022terraform-provider\022\020couchbase_web_ui' _DB2I.fields_by_name['id']._options = None _DB2I.fields_by_name['id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _DB2I.fields_by_name['name']._options = None @@ -1850,6 +1988,8 @@ _DB2I.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _DB2I.fields_by_name['bind_interface']._options = None _DB2I.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _DB2I.fields_by_name['gateway_cluster_id']._options = None + _DB2I.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _DB2I.fields_by_name['subdomain']._options = None _DB2I.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _DB2I.fields_by_name['hostname']._options = None @@ -1880,6 +2020,8 @@ _DB2LUW.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _DB2LUW.fields_by_name['bind_interface']._options = None _DB2LUW.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _DB2LUW.fields_by_name['gateway_cluster_id']._options = None + _DB2LUW.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _DB2LUW.fields_by_name['subdomain']._options = None _DB2LUW.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _DB2LUW.fields_by_name['database']._options = None @@ -1910,6 +2052,8 @@ _DOCUMENTDBHOST.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _DOCUMENTDBHOST.fields_by_name['bind_interface']._options = None _DOCUMENTDBHOST.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _DOCUMENTDBHOST.fields_by_name['gateway_cluster_id']._options = None + _DOCUMENTDBHOST.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _DOCUMENTDBHOST.fields_by_name['subdomain']._options = None _DOCUMENTDBHOST.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _DOCUMENTDBHOST.fields_by_name['auth_database']._options = None @@ -1940,6 +2084,8 @@ _DOCUMENTDBREPLICASET.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _DOCUMENTDBREPLICASET.fields_by_name['bind_interface']._options = None _DOCUMENTDBREPLICASET.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _DOCUMENTDBREPLICASET.fields_by_name['gateway_cluster_id']._options = None + _DOCUMENTDBREPLICASET.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _DOCUMENTDBREPLICASET.fields_by_name['subdomain']._options = None _DOCUMENTDBREPLICASET.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _DOCUMENTDBREPLICASET.fields_by_name['auth_database']._options = None @@ -1972,6 +2118,8 @@ _DRUID.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _DRUID.fields_by_name['bind_interface']._options = None _DRUID.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _DRUID.fields_by_name['gateway_cluster_id']._options = None + _DRUID.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _DRUID.fields_by_name['subdomain']._options = None _DRUID.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _DRUID.fields_by_name['hostname']._options = None @@ -2000,6 +2148,8 @@ _DYNAMODB.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _DYNAMODB.fields_by_name['bind_interface']._options = None _DYNAMODB.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _DYNAMODB.fields_by_name['gateway_cluster_id']._options = None + _DYNAMODB.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _DYNAMODB.fields_by_name['subdomain']._options = None _DYNAMODB.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _DYNAMODB.fields_by_name['access_key']._options = None @@ -2032,6 +2182,8 @@ _ELASTIC.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _ELASTIC.fields_by_name['bind_interface']._options = None _ELASTIC.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _ELASTIC.fields_by_name['gateway_cluster_id']._options = None + _ELASTIC.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _ELASTIC.fields_by_name['subdomain']._options = None _ELASTIC.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _ELASTIC.fields_by_name['hostname']._options = None @@ -2062,6 +2214,8 @@ _ELASTICACHEREDIS.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _ELASTICACHEREDIS.fields_by_name['bind_interface']._options = None _ELASTICACHEREDIS.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _ELASTICACHEREDIS.fields_by_name['gateway_cluster_id']._options = None + _ELASTICACHEREDIS.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _ELASTICACHEREDIS.fields_by_name['subdomain']._options = None _ELASTICACHEREDIS.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _ELASTICACHEREDIS.fields_by_name['hostname']._options = None @@ -2092,6 +2246,8 @@ _GCP.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _GCP.fields_by_name['bind_interface']._options = None _GCP.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _GCP.fields_by_name['gateway_cluster_id']._options = None + _GCP.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _GCP.fields_by_name['subdomain']._options = None _GCP.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _GCP.fields_by_name['keyfile']._options = None @@ -2116,6 +2272,8 @@ _GOOGLEGKE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _GOOGLEGKE.fields_by_name['bind_interface']._options = None _GOOGLEGKE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _GOOGLEGKE.fields_by_name['gateway_cluster_id']._options = None + _GOOGLEGKE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _GOOGLEGKE.fields_by_name['subdomain']._options = None _GOOGLEGKE.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _GOOGLEGKE.fields_by_name['allow_resource_role_bypass']._options = None @@ -2154,6 +2312,8 @@ _GOOGLEGKEUSERIMPERSONATION.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _GOOGLEGKEUSERIMPERSONATION.fields_by_name['bind_interface']._options = None _GOOGLEGKEUSERIMPERSONATION.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _GOOGLEGKEUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._options = None + _GOOGLEGKEUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _GOOGLEGKEUSERIMPERSONATION.fields_by_name['subdomain']._options = None _GOOGLEGKEUSERIMPERSONATION.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _GOOGLEGKEUSERIMPERSONATION.fields_by_name['certificate_authority']._options = None @@ -2182,6 +2342,8 @@ _GREENPLUM.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _GREENPLUM.fields_by_name['bind_interface']._options = None _GREENPLUM.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _GREENPLUM.fields_by_name['gateway_cluster_id']._options = None + _GREENPLUM.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _GREENPLUM.fields_by_name['subdomain']._options = None _GREENPLUM.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _GREENPLUM.fields_by_name['database']._options = None @@ -2214,6 +2376,8 @@ _HTTPAUTH.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _HTTPAUTH.fields_by_name['bind_interface']._options = None _HTTPAUTH.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _HTTPAUTH.fields_by_name['gateway_cluster_id']._options = None + _HTTPAUTH.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _HTTPAUTH.fields_by_name['auth_header']._options = None _HTTPAUTH.fields_by_name['auth_header']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\034\312\363\263\007\027\302\364\263\007\022\n\003cli\022\013auth-header\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\001\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\001' _HTTPAUTH.fields_by_name['default_path']._options = None @@ -2244,6 +2408,8 @@ _HTTPBASICAUTH.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _HTTPBASICAUTH.fields_by_name['bind_interface']._options = None _HTTPBASICAUTH.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _HTTPBASICAUTH.fields_by_name['gateway_cluster_id']._options = None + _HTTPBASICAUTH.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _HTTPBASICAUTH.fields_by_name['default_path']._options = None _HTTPBASICAUTH.fields_by_name['default_path']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\035\312\363\263\007\030\302\364\263\007\023\n\003cli\022\014default-path\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _HTTPBASICAUTH.fields_by_name['headers_blacklist']._options = None @@ -2276,6 +2442,8 @@ _HTTPNOAUTH.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _HTTPNOAUTH.fields_by_name['bind_interface']._options = None _HTTPNOAUTH.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _HTTPNOAUTH.fields_by_name['gateway_cluster_id']._options = None + _HTTPNOAUTH.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _HTTPNOAUTH.fields_by_name['default_path']._options = None _HTTPNOAUTH.fields_by_name['default_path']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\035\312\363\263\007\030\302\364\263\007\023\n\003cli\022\014default-path\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _HTTPNOAUTH.fields_by_name['headers_blacklist']._options = None @@ -2304,6 +2472,8 @@ _KUBERNETES.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _KUBERNETES.fields_by_name['bind_interface']._options = None _KUBERNETES.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _KUBERNETES.fields_by_name['gateway_cluster_id']._options = None + _KUBERNETES.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _KUBERNETES.fields_by_name['subdomain']._options = None _KUBERNETES.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _KUBERNETES.fields_by_name['allow_resource_role_bypass']._options = None @@ -2346,6 +2516,8 @@ _KUBERNETESBASICAUTH.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _KUBERNETESBASICAUTH.fields_by_name['bind_interface']._options = None _KUBERNETESBASICAUTH.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _KUBERNETESBASICAUTH.fields_by_name['gateway_cluster_id']._options = None + _KUBERNETESBASICAUTH.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _KUBERNETESBASICAUTH.fields_by_name['subdomain']._options = None _KUBERNETESBASICAUTH.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _KUBERNETESBASICAUTH.fields_by_name['healthcheck_namespace']._options = None @@ -2376,6 +2548,8 @@ _KUBERNETESSERVICEACCOUNT.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _KUBERNETESSERVICEACCOUNT.fields_by_name['bind_interface']._options = None _KUBERNETESSERVICEACCOUNT.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _KUBERNETESSERVICEACCOUNT.fields_by_name['gateway_cluster_id']._options = None + _KUBERNETESSERVICEACCOUNT.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _KUBERNETESSERVICEACCOUNT.fields_by_name['subdomain']._options = None _KUBERNETESSERVICEACCOUNT.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _KUBERNETESSERVICEACCOUNT.fields_by_name['allow_resource_role_bypass']._options = None @@ -2414,6 +2588,8 @@ _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['bind_interface']._options = None _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._options = None + _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['subdomain']._options = None _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION.fields_by_name['healthcheck_namespace']._options = None @@ -2442,6 +2618,8 @@ _KUBERNETESUSERIMPERSONATION.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _KUBERNETESUSERIMPERSONATION.fields_by_name['bind_interface']._options = None _KUBERNETESUSERIMPERSONATION.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _KUBERNETESUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._options = None + _KUBERNETESUSERIMPERSONATION.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _KUBERNETESUSERIMPERSONATION.fields_by_name['subdomain']._options = None _KUBERNETESUSERIMPERSONATION.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _KUBERNETESUSERIMPERSONATION.fields_by_name['certificate_authority']._options = None @@ -2474,6 +2652,8 @@ _MTLSMYSQL.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MTLSMYSQL.fields_by_name['bind_interface']._options = None _MTLSMYSQL.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MTLSMYSQL.fields_by_name['gateway_cluster_id']._options = None + _MTLSMYSQL.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MTLSMYSQL.fields_by_name['subdomain']._options = None _MTLSMYSQL.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MTLSMYSQL.fields_by_name['certificate_authority']._options = None @@ -2516,6 +2696,8 @@ _MTLSPOSTGRES.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MTLSPOSTGRES.fields_by_name['bind_interface']._options = None _MTLSPOSTGRES.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MTLSPOSTGRES.fields_by_name['gateway_cluster_id']._options = None + _MTLSPOSTGRES.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MTLSPOSTGRES.fields_by_name['subdomain']._options = None _MTLSPOSTGRES.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MTLSPOSTGRES.fields_by_name['certificate_authority']._options = None @@ -2556,6 +2738,8 @@ _MARIA.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MARIA.fields_by_name['bind_interface']._options = None _MARIA.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MARIA.fields_by_name['gateway_cluster_id']._options = None + _MARIA.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MARIA.fields_by_name['subdomain']._options = None _MARIA.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MARIA.fields_by_name['database']._options = None @@ -2590,6 +2774,8 @@ _MEMCACHED.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MEMCACHED.fields_by_name['bind_interface']._options = None _MEMCACHED.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MEMCACHED.fields_by_name['gateway_cluster_id']._options = None + _MEMCACHED.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MEMCACHED.fields_by_name['subdomain']._options = None _MEMCACHED.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MEMCACHED.fields_by_name['hostname']._options = None @@ -2614,6 +2800,8 @@ _MEMSQL.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MEMSQL.fields_by_name['bind_interface']._options = None _MEMSQL.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MEMSQL.fields_by_name['gateway_cluster_id']._options = None + _MEMSQL.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MEMSQL.fields_by_name['subdomain']._options = None _MEMSQL.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MEMSQL.fields_by_name['database']._options = None @@ -2648,6 +2836,8 @@ _MONGOHOST.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MONGOHOST.fields_by_name['bind_interface']._options = None _MONGOHOST.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MONGOHOST.fields_by_name['gateway_cluster_id']._options = None + _MONGOHOST.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MONGOHOST.fields_by_name['subdomain']._options = None _MONGOHOST.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MONGOHOST.fields_by_name['auth_database']._options = None @@ -2680,6 +2870,8 @@ _MONGOLEGACYHOST.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MONGOLEGACYHOST.fields_by_name['bind_interface']._options = None _MONGOLEGACYHOST.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MONGOLEGACYHOST.fields_by_name['gateway_cluster_id']._options = None + _MONGOLEGACYHOST.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MONGOLEGACYHOST.fields_by_name['subdomain']._options = None _MONGOLEGACYHOST.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MONGOLEGACYHOST.fields_by_name['auth_database']._options = None @@ -2712,6 +2904,8 @@ _MONGOLEGACYREPLICASET.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MONGOLEGACYREPLICASET.fields_by_name['bind_interface']._options = None _MONGOLEGACYREPLICASET.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MONGOLEGACYREPLICASET.fields_by_name['gateway_cluster_id']._options = None + _MONGOLEGACYREPLICASET.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MONGOLEGACYREPLICASET.fields_by_name['subdomain']._options = None _MONGOLEGACYREPLICASET.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MONGOLEGACYREPLICASET.fields_by_name['auth_database']._options = None @@ -2748,6 +2942,8 @@ _MONGOREPLICASET.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MONGOREPLICASET.fields_by_name['bind_interface']._options = None _MONGOREPLICASET.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MONGOREPLICASET.fields_by_name['gateway_cluster_id']._options = None + _MONGOREPLICASET.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MONGOREPLICASET.fields_by_name['subdomain']._options = None _MONGOREPLICASET.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MONGOREPLICASET.fields_by_name['auth_database']._options = None @@ -2784,6 +2980,8 @@ _MONGOSHARDEDCLUSTER.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MONGOSHARDEDCLUSTER.fields_by_name['bind_interface']._options = None _MONGOSHARDEDCLUSTER.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MONGOSHARDEDCLUSTER.fields_by_name['gateway_cluster_id']._options = None + _MONGOSHARDEDCLUSTER.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MONGOSHARDEDCLUSTER.fields_by_name['subdomain']._options = None _MONGOSHARDEDCLUSTER.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MONGOSHARDEDCLUSTER.fields_by_name['auth_database']._options = None @@ -2814,6 +3012,8 @@ _MYSQL.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _MYSQL.fields_by_name['bind_interface']._options = None _MYSQL.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _MYSQL.fields_by_name['gateway_cluster_id']._options = None + _MYSQL.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _MYSQL.fields_by_name['subdomain']._options = None _MYSQL.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _MYSQL.fields_by_name['database']._options = None @@ -2848,6 +3048,8 @@ _NEPTUNE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _NEPTUNE.fields_by_name['bind_interface']._options = None _NEPTUNE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _NEPTUNE.fields_by_name['gateway_cluster_id']._options = None + _NEPTUNE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _NEPTUNE.fields_by_name['subdomain']._options = None _NEPTUNE.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _NEPTUNE.fields_by_name['endpoint']._options = None @@ -2872,6 +3074,8 @@ _NEPTUNEIAM.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _NEPTUNEIAM.fields_by_name['bind_interface']._options = None _NEPTUNEIAM.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _NEPTUNEIAM.fields_by_name['gateway_cluster_id']._options = None + _NEPTUNEIAM.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _NEPTUNEIAM.fields_by_name['subdomain']._options = None _NEPTUNEIAM.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _NEPTUNEIAM.fields_by_name['access_key']._options = None @@ -2906,6 +3110,8 @@ _ORACLE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _ORACLE.fields_by_name['bind_interface']._options = None _ORACLE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _ORACLE.fields_by_name['gateway_cluster_id']._options = None + _ORACLE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _ORACLE.fields_by_name['subdomain']._options = None _ORACLE.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _ORACLE.fields_by_name['database']._options = None @@ -2938,6 +3144,8 @@ _POSTGRES.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _POSTGRES.fields_by_name['bind_interface']._options = None _POSTGRES.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _POSTGRES.fields_by_name['gateway_cluster_id']._options = None + _POSTGRES.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _POSTGRES.fields_by_name['subdomain']._options = None _POSTGRES.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _POSTGRES.fields_by_name['database']._options = None @@ -2970,6 +3178,8 @@ _PRESTO.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _PRESTO.fields_by_name['bind_interface']._options = None _PRESTO.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _PRESTO.fields_by_name['gateway_cluster_id']._options = None + _PRESTO.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _PRESTO.fields_by_name['subdomain']._options = None _PRESTO.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _PRESTO.fields_by_name['database']._options = None @@ -3002,6 +3212,8 @@ _RDP.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _RDP.fields_by_name['bind_interface']._options = None _RDP.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _RDP.fields_by_name['gateway_cluster_id']._options = None + _RDP.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _RDP.fields_by_name['subdomain']._options = None _RDP.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _RDP.fields_by_name['downgrade_nla_connections']._options = None @@ -3034,6 +3246,8 @@ _RDPCERT.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _RDPCERT.fields_by_name['bind_interface']._options = None _RDPCERT.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _RDPCERT.fields_by_name['gateway_cluster_id']._options = None + _RDPCERT.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _RDPCERT.fields_by_name['subdomain']._options = None _RDPCERT.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _RDPCERT.fields_by_name['hostname']._options = None @@ -3064,6 +3278,8 @@ _RDSPOSTGRESIAM.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _RDSPOSTGRESIAM.fields_by_name['bind_interface']._options = None _RDSPOSTGRESIAM.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _RDSPOSTGRESIAM.fields_by_name['gateway_cluster_id']._options = None + _RDSPOSTGRESIAM.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _RDSPOSTGRESIAM.fields_by_name['subdomain']._options = None _RDSPOSTGRESIAM.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _RDSPOSTGRESIAM.fields_by_name['database']._options = None @@ -3098,6 +3314,8 @@ _RABBITMQAMQP091.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _RABBITMQAMQP091.fields_by_name['bind_interface']._options = None _RABBITMQAMQP091.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _RABBITMQAMQP091.fields_by_name['gateway_cluster_id']._options = None + _RABBITMQAMQP091.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _RABBITMQAMQP091.fields_by_name['subdomain']._options = None _RABBITMQAMQP091.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _RABBITMQAMQP091.fields_by_name['hostname']._options = None @@ -3128,6 +3346,8 @@ _RAWTCP.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _RAWTCP.fields_by_name['bind_interface']._options = None _RAWTCP.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _RAWTCP.fields_by_name['gateway_cluster_id']._options = None + _RAWTCP.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _RAWTCP.fields_by_name['subdomain']._options = None _RAWTCP.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _RAWTCP.fields_by_name['hostname']._options = None @@ -3152,6 +3372,8 @@ _REDIS.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _REDIS.fields_by_name['bind_interface']._options = None _REDIS.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _REDIS.fields_by_name['gateway_cluster_id']._options = None + _REDIS.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _REDIS.fields_by_name['subdomain']._options = None _REDIS.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _REDIS.fields_by_name['hostname']._options = None @@ -3182,6 +3404,8 @@ _REDSHIFT.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _REDSHIFT.fields_by_name['bind_interface']._options = None _REDSHIFT.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _REDSHIFT.fields_by_name['gateway_cluster_id']._options = None + _REDSHIFT.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _REDSHIFT.fields_by_name['subdomain']._options = None _REDSHIFT.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _REDSHIFT.fields_by_name['database']._options = None @@ -3214,6 +3438,8 @@ _SQLSERVER.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SQLSERVER.fields_by_name['bind_interface']._options = None _SQLSERVER.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SQLSERVER.fields_by_name['gateway_cluster_id']._options = None + _SQLSERVER.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SQLSERVER.fields_by_name['subdomain']._options = None _SQLSERVER.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SQLSERVER.fields_by_name['allow_deprecated_encryption']._options = None @@ -3250,6 +3476,8 @@ _SQLSERVERAZUREAD.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SQLSERVERAZUREAD.fields_by_name['bind_interface']._options = None _SQLSERVERAZUREAD.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SQLSERVERAZUREAD.fields_by_name['gateway_cluster_id']._options = None + _SQLSERVERAZUREAD.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SQLSERVERAZUREAD.fields_by_name['subdomain']._options = None _SQLSERVERAZUREAD.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SQLSERVERAZUREAD.fields_by_name['allow_deprecated_encryption']._options = None @@ -3288,6 +3516,8 @@ _SQLSERVERKERBEROSAD.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SQLSERVERKERBEROSAD.fields_by_name['bind_interface']._options = None _SQLSERVERKERBEROSAD.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SQLSERVERKERBEROSAD.fields_by_name['gateway_cluster_id']._options = None + _SQLSERVERKERBEROSAD.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SQLSERVERKERBEROSAD.fields_by_name['subdomain']._options = None _SQLSERVERKERBEROSAD.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SQLSERVERKERBEROSAD.fields_by_name['allow_deprecated_encryption']._options = None @@ -3330,6 +3560,8 @@ _SSH.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SSH.fields_by_name['bind_interface']._options = None _SSH.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SSH.fields_by_name['gateway_cluster_id']._options = None + _SSH.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SSH.fields_by_name['subdomain']._options = None _SSH.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SSH.fields_by_name['allow_deprecated_key_exchanges']._options = None @@ -3364,6 +3596,8 @@ _SSHCERT.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SSHCERT.fields_by_name['bind_interface']._options = None _SSHCERT.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SSHCERT.fields_by_name['gateway_cluster_id']._options = None + _SSHCERT.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SSHCERT.fields_by_name['subdomain']._options = None _SSHCERT.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SSHCERT.fields_by_name['allow_deprecated_key_exchanges']._options = None @@ -3400,6 +3634,8 @@ _SSHCUSTOMERKEY.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SSHCUSTOMERKEY.fields_by_name['bind_interface']._options = None _SSHCUSTOMERKEY.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SSHCUSTOMERKEY.fields_by_name['gateway_cluster_id']._options = None + _SSHCUSTOMERKEY.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SSHCUSTOMERKEY.fields_by_name['subdomain']._options = None _SSHCUSTOMERKEY.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SSHCUSTOMERKEY.fields_by_name['allow_deprecated_key_exchanges']._options = None @@ -3432,6 +3668,8 @@ _SSHPASSWORD.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SSHPASSWORD.fields_by_name['bind_interface']._options = None _SSHPASSWORD.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SSHPASSWORD.fields_by_name['gateway_cluster_id']._options = None + _SSHPASSWORD.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SSHPASSWORD.fields_by_name['subdomain']._options = None _SSHPASSWORD.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SSHPASSWORD.fields_by_name['allow_deprecated_key_exchanges']._options = None @@ -3464,6 +3702,8 @@ _SINGLESTORE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SINGLESTORE.fields_by_name['bind_interface']._options = None _SINGLESTORE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SINGLESTORE.fields_by_name['gateway_cluster_id']._options = None + _SINGLESTORE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SINGLESTORE.fields_by_name['subdomain']._options = None _SINGLESTORE.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SINGLESTORE.fields_by_name['database']._options = None @@ -3498,6 +3738,8 @@ _SNOWFLAKE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SNOWFLAKE.fields_by_name['bind_interface']._options = None _SNOWFLAKE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SNOWFLAKE.fields_by_name['gateway_cluster_id']._options = None + _SNOWFLAKE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SNOWFLAKE.fields_by_name['subdomain']._options = None _SNOWFLAKE.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SNOWFLAKE.fields_by_name['database']._options = None @@ -3528,6 +3770,8 @@ _SNOWSIGHT.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SNOWSIGHT.fields_by_name['bind_interface']._options = None _SNOWSIGHT.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SNOWSIGHT.fields_by_name['gateway_cluster_id']._options = None + _SNOWSIGHT.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SNOWSIGHT.fields_by_name['healthcheck_username']._options = None _SNOWSIGHT.fields_by_name['healthcheck_username']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007%\312\363\263\007 \302\364\263\007\033\n\003cli\022\024healthcheck_username\362\370\263\007\005\320\364\263\007\000\362\370\263\007\005\300\363\263\007\001\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SNOWSIGHT.fields_by_name['port_override']._options = None @@ -3552,6 +3796,8 @@ _SYBASE.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SYBASE.fields_by_name['bind_interface']._options = None _SYBASE.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SYBASE.fields_by_name['gateway_cluster_id']._options = None + _SYBASE.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SYBASE.fields_by_name['subdomain']._options = None _SYBASE.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SYBASE.fields_by_name['hostname']._options = None @@ -3580,6 +3826,8 @@ _SYBASEIQ.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _SYBASEIQ.fields_by_name['bind_interface']._options = None _SYBASEIQ.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _SYBASEIQ.fields_by_name['gateway_cluster_id']._options = None + _SYBASEIQ.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _SYBASEIQ.fields_by_name['subdomain']._options = None _SYBASEIQ.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _SYBASEIQ.fields_by_name['hostname']._options = None @@ -3608,6 +3856,8 @@ _TERADATA.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _TERADATA.fields_by_name['bind_interface']._options = None _TERADATA.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _TERADATA.fields_by_name['gateway_cluster_id']._options = None + _TERADATA.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _TERADATA.fields_by_name['subdomain']._options = None _TERADATA.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _TERADATA.fields_by_name['hostname']._options = None @@ -3636,6 +3886,8 @@ _TRINO.fields_by_name['egress_filter']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _TRINO.fields_by_name['bind_interface']._options = None _TRINO.fields_by_name['bind_interface']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001' + _TRINO.fields_by_name['gateway_cluster_id']._options = None + _TRINO.fields_by_name['gateway_cluster_id']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001\362\370\263\007\017\262\364\263\007\ngo_private\362\370\263\007\021\262\364\263\007\014json_gateway' _TRINO.fields_by_name['subdomain']._options = None _TRINO.fields_by_name['subdomain']._serialized_options = b'\030\000\362\370\263\007\005\260\363\263\007\001\362\370\263\007\005\320\364\263\007\001\362\370\263\007\005\300\363\263\007\000\362\370\263\007\005\350\363\263\007\000\362\370\263\007\005\230\364\263\007\000\362\370\263\007\005\240\364\263\007\000' _TRINO.fields_by_name['database']._options = None @@ -3653,175 +3905,179 @@ _TRINO._options = None _TRINO._serialized_options = b'\030\000\372\370\263\007\005\250\363\263\007\001\372\370\263\007U\312\363\263\007P\210\364\263\007\001\302\364\263\007\014\n\003cli\022\005trino\302\364\263\007\025\n\014json_gateway\022\005trino\302\364\263\007\033\n\022terraform-provider\022\005trino' _RESOURCE._serialized_start=49 - _RESOURCE._serialized_end=8724 - _AKS._serialized_start=8727 - _AKS._serialized_end=11017 - _AKSBASICAUTH._serialized_start=11020 - _AKSBASICAUTH._serialized_end=12468 - _AKSSERVICEACCOUNT._serialized_start=12471 - _AKSSERVICEACCOUNT._serialized_end=14542 - _AKSSERVICEACCOUNTUSERIMPERSONATION._serialized_start=14545 - _AKSSERVICEACCOUNTUSERIMPERSONATION._serialized_end=15957 - _AKSUSERIMPERSONATION._serialized_start=15960 - _AKSUSERIMPERSONATION._serialized_end=17590 - _AWS._serialized_start=17593 - _AWS._serialized_end=18838 - _AWSCONSOLE._serialized_start=18841 - _AWSCONSOLE._serialized_end=20445 - _AWSCONSOLESTATICKEYPAIR._serialized_start=20448 - _AWSCONSOLESTATICKEYPAIR._serialized_end=22215 - _AMAZONEKS._serialized_start=22218 - _AMAZONEKS._serialized_end=24898 - _AMAZONEKSINSTANCEPROFILE._serialized_start=24901 - _AMAZONEKSINSTANCEPROFILE._serialized_end=27396 - _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION._serialized_start=27399 - _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION._serialized_end=29233 - _AMAZONEKSUSERIMPERSONATION._serialized_start=29236 - _AMAZONEKSUSERIMPERSONATION._serialized_end=31258 - _AMAZONES._serialized_start=31261 - _AMAZONES._serialized_end=32614 - _AMAZONMQAMQP091._serialized_start=32617 - _AMAZONMQAMQP091._serialized_end=33854 - _ATHENA._serialized_start=33857 - _ATHENA._serialized_end=35217 - _AURORAMYSQL._serialized_start=35220 - _AURORAMYSQL._serialized_end=36727 - _AURORAPOSTGRES._serialized_start=36730 - _AURORAPOSTGRES._serialized_end=38082 - _AURORAPOSTGRESIAM._serialized_start=38085 - _AURORAPOSTGRESIAM._serialized_end=39580 - _AZURE._serialized_start=39583 - _AZURE._serialized_end=40547 - _AZURECERTIFICATE._serialized_start=40550 - _AZURECERTIFICATE._serialized_end=41558 - _AZUREMYSQL._serialized_start=41561 - _AZUREMYSQL._serialized_end=43062 - _AZUREPOSTGRES._serialized_start=43065 - _AZUREPOSTGRES._serialized_end=44411 - _AZUREPOSTGRESMANAGEDIDENTITY._serialized_start=44414 - _AZUREPOSTGRESMANAGEDIDENTITY._serialized_end=45988 - _BIGQUERY._serialized_start=45991 - _BIGQUERY._serialized_end=47086 - _CASSANDRA._serialized_start=47089 - _CASSANDRA._serialized_end=48295 - _CITUS._serialized_start=48298 - _CITUS._serialized_end=49611 - _CLUSTRIX._serialized_start=49614 - _CLUSTRIX._serialized_end=51106 - _COCKROACH._serialized_start=51109 - _COCKROACH._serialized_end=52438 - _DB2I._serialized_start=52441 - _DB2I._serialized_end=53629 - _DB2LUW._serialized_start=53632 - _DB2LUW._serialized_end=54820 - _DOCUMENTDBHOST._serialized_start=54823 - _DOCUMENTDBHOST._serialized_end=56053 - _DOCUMENTDBREPLICASET._serialized_start=56056 - _DOCUMENTDBREPLICASET._serialized_end=57460 - _DRUID._serialized_start=57463 - _DRUID._serialized_end=58533 - _DYNAMODB._serialized_start=58536 - _DYNAMODB._serialized_end=59885 - _ELASTIC._serialized_start=59888 - _ELASTIC._serialized_end=61086 - _ELASTICACHEREDIS._serialized_start=61089 - _ELASTICACHEREDIS._serialized_end=62306 - _GCP._serialized_start=62309 - _GCP._serialized_end=63153 - _GOOGLEGKE._serialized_start=63156 - _GOOGLEGKE._serialized_end=65253 - _GOOGLEGKEUSERIMPERSONATION._serialized_start=65256 - _GOOGLEGKEUSERIMPERSONATION._serialized_end=66695 - _GREENPLUM._serialized_start=66698 - _GREENPLUM._serialized_end=68027 - _HTTPAUTH._serialized_start=68030 - _HTTPAUTH._serialized_end=69301 - _HTTPBASICAUTH._serialized_start=69304 - _HTTPBASICAUTH._serialized_end=70694 - _HTTPNOAUTH._serialized_start=70697 - _HTTPNOAUTH._serialized_end=71859 - _KUBERNETES._serialized_start=71862 - _KUBERNETES._serialized_end=74180 - _KUBERNETESBASICAUTH._serialized_start=74183 - _KUBERNETESBASICAUTH._serialized_end=75661 - _KUBERNETESSERVICEACCOUNT._serialized_start=75664 - _KUBERNETESSERVICEACCOUNT._serialized_end=77765 - _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION._serialized_start=77768 - _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION._serialized_end=79208 - _KUBERNETESUSERIMPERSONATION._serialized_start=79211 - _KUBERNETESUSERIMPERSONATION._serialized_end=80871 - _MTLSMYSQL._serialized_start=80874 - _MTLSMYSQL._serialized_end=82882 - _MTLSPOSTGRES._serialized_start=82885 - _MTLSPOSTGRES._serialized_end=84733 - _MARIA._serialized_start=84736 - _MARIA._serialized_end=86216 - _MEMCACHED._serialized_start=86219 - _MEMCACHED._serialized_end=87081 - _MEMSQL._serialized_start=87084 - _MEMSQL._serialized_end=88568 - _MONGOHOST._serialized_start=88571 - _MONGOHOST._serialized_end=89900 - _MONGOLEGACYHOST._serialized_start=89903 - _MONGOLEGACYHOST._serialized_end=91242 - _MONGOLEGACYREPLICASET._serialized_start=91245 - _MONGOLEGACYREPLICASET._serialized_end=92870 - _MONGOREPLICASET._serialized_start=92873 - _MONGOREPLICASET._serialized_end=94479 - _MONGOSHARDEDCLUSTER._serialized_start=94482 - _MONGOSHARDEDCLUSTER._serialized_end=95749 - _MYSQL._serialized_start=95752 - _MYSQL._serialized_end=97232 - _NEPTUNE._serialized_start=97235 - _NEPTUNE._serialized_end=98089 - _NEPTUNEIAM._serialized_start=98092 - _NEPTUNEIAM._serialized_end=99557 - _ORACLE._serialized_start=99560 - _ORACLE._serialized_end=100866 - _POSTGRES._serialized_start=100869 - _POSTGRES._serialized_end=102194 - _PRESTO._serialized_start=102197 - _PRESTO._serialized_end=103503 - _RDP._serialized_start=103506 - _RDP._serialized_end=104837 - _RDPCERT._serialized_start=104840 - _RDPCERT._serialized_end=106154 - _RDSPOSTGRESIAM._serialized_start=106157 - _RDSPOSTGRESIAM._serialized_end=107639 - _RABBITMQAMQP091._serialized_start=107642 - _RABBITMQAMQP091._serialized_end=108879 - _RAWTCP._serialized_start=108882 - _RAWTCP._serialized_end=109733 - _REDIS._serialized_start=109736 - _REDIS._serialized_end=110926 - _REDSHIFT._serialized_start=110929 - _REDSHIFT._serialized_end=112254 - _SQLSERVER._serialized_start=112257 - _SQLSERVER._serialized_end=113838 - _SQLSERVERAZUREAD._serialized_start=113841 - _SQLSERVERAZUREAD._serialized_end=115564 - _SQLSERVERKERBEROSAD._serialized_start=115567 - _SQLSERVERKERBEROSAD._serialized_end=117521 - _SSH._serialized_start=117524 - _SSH._serialized_end=118985 - _SSHCERT._serialized_start=118988 - _SSHCERT._serialized_end=120697 - _SSHCUSTOMERKEY._serialized_start=120700 - _SSHCUSTOMERKEY._serialized_end=122097 - _SSHPASSWORD._serialized_start=122100 - _SSHPASSWORD._serialized_end=123483 - _SINGLESTORE._serialized_start=123486 - _SINGLESTORE._serialized_end=124991 - _SNOWFLAKE._serialized_start=124994 - _SNOWFLAKE._serialized_end=126196 - _SNOWSIGHT._serialized_start=126199 - _SNOWSIGHT._serialized_end=127132 - _SYBASE._serialized_start=127135 - _SYBASE._serialized_end=128209 - _SYBASEIQ._serialized_start=128212 - _SYBASEIQ._serialized_end=129295 - _TERADATA._serialized_start=129298 - _TERADATA._serialized_end=130380 - _TRINO._serialized_start=130383 - _TRINO._serialized_end=131570 + _RESOURCE._serialized_end=8944 + _AKS._serialized_start=8947 + _AKS._serialized_end=11321 + _AKSBASICAUTH._serialized_start=11324 + _AKSBASICAUTH._serialized_end=12856 + _AKSSERVICEACCOUNT._serialized_start=12859 + _AKSSERVICEACCOUNT._serialized_end=15014 + _AKSSERVICEACCOUNTUSERIMPERSONATION._serialized_start=15017 + _AKSSERVICEACCOUNTUSERIMPERSONATION._serialized_end=16513 + _AKSUSERIMPERSONATION._serialized_start=16516 + _AKSUSERIMPERSONATION._serialized_end=18230 + _AWS._serialized_start=18233 + _AWS._serialized_end=19562 + _AWSCONSOLE._serialized_start=19565 + _AWSCONSOLE._serialized_end=21253 + _AWSCONSOLESTATICKEYPAIR._serialized_start=21256 + _AWSCONSOLESTATICKEYPAIR._serialized_end=23107 + _AMAZONEKS._serialized_start=23110 + _AMAZONEKS._serialized_end=25874 + _AMAZONEKSINSTANCEPROFILE._serialized_start=25877 + _AMAZONEKSINSTANCEPROFILE._serialized_end=28456 + _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION._serialized_start=28459 + _AMAZONEKSINSTANCEPROFILEUSERIMPERSONATION._serialized_end=30377 + _AMAZONEKSUSERIMPERSONATION._serialized_start=30380 + _AMAZONEKSUSERIMPERSONATION._serialized_end=32486 + _AMAZONES._serialized_start=32489 + _AMAZONES._serialized_end=33926 + _AMAZONMQAMQP091._serialized_start=33929 + _AMAZONMQAMQP091._serialized_end=35250 + _ATHENA._serialized_start=35253 + _ATHENA._serialized_end=36697 + _AURORAMYSQL._serialized_start=36700 + _AURORAMYSQL._serialized_end=38291 + _AURORAPOSTGRES._serialized_start=38294 + _AURORAPOSTGRES._serialized_end=39730 + _AURORAPOSTGRESIAM._serialized_start=39733 + _AURORAPOSTGRESIAM._serialized_end=41312 + _AZURE._serialized_start=41315 + _AZURE._serialized_end=42363 + _AZURECERTIFICATE._serialized_start=42366 + _AZURECERTIFICATE._serialized_end=43458 + _AZUREMYSQL._serialized_start=43461 + _AZUREMYSQL._serialized_end=45046 + _AZUREPOSTGRES._serialized_start=45049 + _AZUREPOSTGRES._serialized_end=46479 + _AZUREPOSTGRESMANAGEDIDENTITY._serialized_start=46482 + _AZUREPOSTGRESMANAGEDIDENTITY._serialized_end=48140 + _BIGQUERY._serialized_start=48143 + _BIGQUERY._serialized_end=49322 + _CASSANDRA._serialized_start=49325 + _CASSANDRA._serialized_end=50615 + _CITUS._serialized_start=50618 + _CITUS._serialized_end=52015 + _CLUSTRIX._serialized_start=52018 + _CLUSTRIX._serialized_end=53594 + _COCKROACH._serialized_start=53597 + _COCKROACH._serialized_end=55010 + _COUCHBASEDATABASE._serialized_start=55013 + _COUCHBASEDATABASE._serialized_end=56451 + _COUCHBASEWEBUI._serialized_start=56454 + _COUCHBASEWEBUI._serialized_end=57566 + _DB2I._serialized_start=57569 + _DB2I._serialized_end=58841 + _DB2LUW._serialized_start=58844 + _DB2LUW._serialized_end=60116 + _DOCUMENTDBHOST._serialized_start=60119 + _DOCUMENTDBHOST._serialized_end=61433 + _DOCUMENTDBREPLICASET._serialized_start=61436 + _DOCUMENTDBREPLICASET._serialized_end=62924 + _DRUID._serialized_start=62927 + _DRUID._serialized_end=64081 + _DYNAMODB._serialized_start=64084 + _DYNAMODB._serialized_end=65517 + _ELASTIC._serialized_start=65520 + _ELASTIC._serialized_end=66802 + _ELASTICACHEREDIS._serialized_start=66805 + _ELASTICACHEREDIS._serialized_end=68106 + _GCP._serialized_start=68109 + _GCP._serialized_end=69037 + _GOOGLEGKE._serialized_start=69040 + _GOOGLEGKE._serialized_end=71221 + _GOOGLEGKEUSERIMPERSONATION._serialized_start=71224 + _GOOGLEGKEUSERIMPERSONATION._serialized_end=72747 + _GREENPLUM._serialized_start=72750 + _GREENPLUM._serialized_end=74163 + _HTTPAUTH._serialized_start=74166 + _HTTPAUTH._serialized_end=75521 + _HTTPBASICAUTH._serialized_start=75524 + _HTTPBASICAUTH._serialized_end=76998 + _HTTPNOAUTH._serialized_start=77001 + _HTTPNOAUTH._serialized_end=78247 + _KUBERNETES._serialized_start=78250 + _KUBERNETES._serialized_end=80652 + _KUBERNETESBASICAUTH._serialized_start=80655 + _KUBERNETESBASICAUTH._serialized_end=82217 + _KUBERNETESSERVICEACCOUNT._serialized_start=82220 + _KUBERNETESSERVICEACCOUNT._serialized_end=84405 + _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION._serialized_start=84408 + _KUBERNETESSERVICEACCOUNTUSERIMPERSONATION._serialized_end=85932 + _KUBERNETESUSERIMPERSONATION._serialized_start=85935 + _KUBERNETESUSERIMPERSONATION._serialized_end=87679 + _MTLSMYSQL._serialized_start=87682 + _MTLSMYSQL._serialized_end=89774 + _MTLSPOSTGRES._serialized_start=89777 + _MTLSPOSTGRES._serialized_end=91709 + _MARIA._serialized_start=91712 + _MARIA._serialized_end=93276 + _MEMCACHED._serialized_start=93279 + _MEMCACHED._serialized_end=94225 + _MEMSQL._serialized_start=94228 + _MEMSQL._serialized_end=95796 + _MONGOHOST._serialized_start=95799 + _MONGOHOST._serialized_end=97212 + _MONGOLEGACYHOST._serialized_start=97215 + _MONGOLEGACYHOST._serialized_end=98638 + _MONGOLEGACYREPLICASET._serialized_start=98641 + _MONGOLEGACYREPLICASET._serialized_end=100350 + _MONGOREPLICASET._serialized_start=100353 + _MONGOREPLICASET._serialized_end=102043 + _MONGOSHARDEDCLUSTER._serialized_start=102046 + _MONGOSHARDEDCLUSTER._serialized_end=103397 + _MYSQL._serialized_start=103400 + _MYSQL._serialized_end=104964 + _NEPTUNE._serialized_start=104967 + _NEPTUNE._serialized_end=105905 + _NEPTUNEIAM._serialized_start=105908 + _NEPTUNEIAM._serialized_end=107457 + _ORACLE._serialized_start=107460 + _ORACLE._serialized_end=108850 + _POSTGRES._serialized_start=108853 + _POSTGRES._serialized_end=110262 + _PRESTO._serialized_start=110265 + _PRESTO._serialized_end=111655 + _RDP._serialized_start=111658 + _RDP._serialized_end=113073 + _RDPCERT._serialized_start=113076 + _RDPCERT._serialized_end=114474 + _RDSPOSTGRESIAM._serialized_start=114477 + _RDSPOSTGRESIAM._serialized_end=116043 + _RABBITMQAMQP091._serialized_start=116046 + _RABBITMQAMQP091._serialized_end=117367 + _RAWTCP._serialized_start=117370 + _RAWTCP._serialized_end=118305 + _REDIS._serialized_start=118308 + _REDIS._serialized_end=119582 + _REDSHIFT._serialized_start=119585 + _REDSHIFT._serialized_end=120994 + _SQLSERVER._serialized_start=120997 + _SQLSERVER._serialized_end=122662 + _SQLSERVERAZUREAD._serialized_start=122665 + _SQLSERVERAZUREAD._serialized_end=124472 + _SQLSERVERKERBEROSAD._serialized_start=124475 + _SQLSERVERKERBEROSAD._serialized_end=126513 + _SSH._serialized_start=126516 + _SSH._serialized_end=128061 + _SSHCERT._serialized_start=128064 + _SSHCERT._serialized_end=129857 + _SSHCUSTOMERKEY._serialized_start=129860 + _SSHCUSTOMERKEY._serialized_end=131341 + _SSHPASSWORD._serialized_start=131344 + _SSHPASSWORD._serialized_end=132811 + _SINGLESTORE._serialized_start=132814 + _SINGLESTORE._serialized_end=134403 + _SNOWFLAKE._serialized_start=134406 + _SNOWFLAKE._serialized_end=135692 + _SNOWSIGHT._serialized_start=135695 + _SNOWSIGHT._serialized_end=136712 + _SYBASE._serialized_start=136715 + _SYBASE._serialized_end=137873 + _SYBASEIQ._serialized_start=137876 + _SYBASEIQ._serialized_end=139043 + _TERADATA._serialized_start=139046 + _TERADATA._serialized_end=140212 + _TRINO._serialized_start=140215 + _TRINO._serialized_end=141486 # @@protoc_insertion_point(module_scope) diff --git a/strongdm/models.py b/strongdm/models.py index bf393b4..78ace02 100644 --- a/strongdm/models.py +++ b/strongdm/models.py @@ -7787,6 +7787,293 @@ def from_dict(cls, d): ) +class CouchbaseDatabase: + __slots__ = [ + 'bind_interface', + 'egress_filter', + 'healthy', + 'hostname', + 'id', + 'n1ql_port', + 'name', + 'password', + 'port', + 'port_override', + 'secret_store_id', + 'subdomain', + 'tags', + 'tls_required', + 'username', + ] + + def __init__( + self, + bind_interface=None, + egress_filter=None, + healthy=None, + hostname=None, + id=None, + n1ql_port=None, + name=None, + password=None, + port=None, + port_override=None, + secret_store_id=None, + subdomain=None, + tags=None, + tls_required=None, + username=None, + ): + self.bind_interface = bind_interface if bind_interface is not None else '' + ''' + The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided. + ''' + self.egress_filter = egress_filter if egress_filter is not None else '' + ''' + A filter applied to the routing logic to pin datasource to nodes. + ''' + self.healthy = healthy if healthy is not None else False + ''' + True if the datasource is reachable and the credentials are valid. + ''' + self.hostname = hostname if hostname is not None else '' + ''' + The host to dial to initiate a connection from the egress node to this resource. + ''' + self.id = id if id is not None else '' + ''' + Unique identifier of the Resource. + ''' + self.n1ql_port = n1ql_port if n1ql_port is not None else 0 + ''' + The port number for N1QL queries. Default HTTP is 8093. Default HTTPS is 18093. + ''' + self.name = name if name is not None else '' + ''' + Unique human-readable name of the Resource. + ''' + self.password = password if password is not None else '' + ''' + The password to authenticate with. + ''' + self.port = port if port is not None else 0 + ''' + The port to dial to initiate a connection from the egress node to this resource. + ''' + self.port_override = port_override if port_override is not None else 0 + ''' + The local port used by clients to connect to this resource. + ''' + self.secret_store_id = secret_store_id if secret_store_id is not None else '' + ''' + ID of the secret store containing credentials for this resource, if any. + ''' + self.subdomain = subdomain if subdomain is not None else '' + ''' + Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network) + ''' + self.tags = tags if tags is not None else _porcelain_zero_value_tags() + ''' + Tags is a map of key, value pairs. + ''' + self.tls_required = tls_required if tls_required is not None else False + ''' + If set, TLS must be used to connect to this resource. + ''' + self.username = username if username is not None else '' + ''' + The username to authenticate with. + ''' + + def __repr__(self): + return '' + + def to_dict(self): + return { + 'bind_interface': self.bind_interface, + 'egress_filter': self.egress_filter, + 'healthy': self.healthy, + 'hostname': self.hostname, + 'id': self.id, + 'n1ql_port': self.n1ql_port, + 'name': self.name, + 'password': self.password, + 'port': self.port, + 'port_override': self.port_override, + 'secret_store_id': self.secret_store_id, + 'subdomain': self.subdomain, + 'tags': self.tags, + 'tls_required': self.tls_required, + 'username': self.username, + } + + @classmethod + def from_dict(cls, d): + return cls( + bind_interface=d.get('bind_interface'), + egress_filter=d.get('egress_filter'), + healthy=d.get('healthy'), + hostname=d.get('hostname'), + id=d.get('id'), + n1ql_port=d.get('n1ql_port'), + name=d.get('name'), + password=d.get('password'), + port=d.get('port'), + port_override=d.get('port_override'), + secret_store_id=d.get('secret_store_id'), + subdomain=d.get('subdomain'), + tags=d.get('tags'), + tls_required=d.get('tls_required'), + username=d.get('username'), + ) + + +class CouchbaseWebUI: + __slots__ = [ + 'bind_interface', + 'egress_filter', + 'healthy', + 'id', + 'name', + 'password', + 'port_override', + 'secret_store_id', + 'subdomain', + 'tags', + 'url', + 'username', + ] + + def __init__( + self, + bind_interface=None, + egress_filter=None, + healthy=None, + id=None, + name=None, + password=None, + port_override=None, + secret_store_id=None, + subdomain=None, + tags=None, + url=None, + username=None, + ): + self.bind_interface = bind_interface if bind_interface is not None else '' + ''' + The bind interface is the IP address to which the port override of a resource is bound (for example, 127.0.0.1). It is automatically generated if not provided. + ''' + self.egress_filter = egress_filter if egress_filter is not None else '' + ''' + A filter applied to the routing logic to pin datasource to nodes. + ''' + self.healthy = healthy if healthy is not None else False + ''' + True if the datasource is reachable and the credentials are valid. + ''' + self.id = id if id is not None else '' + ''' + Unique identifier of the Resource. + ''' + self.name = name if name is not None else '' + ''' + Unique human-readable name of the Resource. + ''' + self.password = password if password is not None else '' + ''' + The password to authenticate with. + ''' + self.port_override = port_override if port_override is not None else 0 + ''' + The local port used by clients to connect to this resource. + ''' + self.secret_store_id = secret_store_id if secret_store_id is not None else '' + ''' + ID of the secret store containing credentials for this resource, if any. + ''' + self.subdomain = subdomain if subdomain is not None else '' + ''' + Subdomain is the local DNS address. (e.g. app-prod1 turns into app-prod1.your-org-name.sdm.network) + ''' + self.tags = tags if tags is not None else _porcelain_zero_value_tags() + ''' + Tags is a map of key, value pairs. + ''' + self.url = url if url is not None else '' + ''' + The base address of your website without the path. + ''' + self.username = username if username is not None else '' + ''' + The username to authenticate with. + ''' + + def __repr__(self): + return '' + + def to_dict(self): + return { + 'bind_interface': self.bind_interface, + 'egress_filter': self.egress_filter, + 'healthy': self.healthy, + 'id': self.id, + 'name': self.name, + 'password': self.password, + 'port_override': self.port_override, + 'secret_store_id': self.secret_store_id, + 'subdomain': self.subdomain, + 'tags': self.tags, + 'url': self.url, + 'username': self.username, + } + + @classmethod + def from_dict(cls, d): + return cls( + bind_interface=d.get('bind_interface'), + egress_filter=d.get('egress_filter'), + healthy=d.get('healthy'), + id=d.get('id'), + name=d.get('name'), + password=d.get('password'), + port_override=d.get('port_override'), + secret_store_id=d.get('secret_store_id'), + subdomain=d.get('subdomain'), + tags=d.get('tags'), + url=d.get('url'), + username=d.get('username'), + ) + + class CreateResponseMetadata: ''' CreateResponseMetadata is reserved for future use. @@ -9681,6 +9968,28 @@ def from_dict(cls, d): ) +class GenericResponseMetadata: + ''' + GenericResponseMetadata contains common headers for generic request + responses. + ''' + __slots__ = [] + + def __init__(self, ): + pass + + def __repr__(self): + return '' + + def to_dict(self): + return {} + + @classmethod + def from_dict(cls, d): + return cls() + + class GetResponseMetadata: ''' GetResponseMetadata is reserved for future use. diff --git a/strongdm/plumbing.py b/strongdm/plumbing.py index b155c92..6b4d272 100644 --- a/strongdm/plumbing.py +++ b/strongdm/plumbing.py @@ -73,9 +73,9 @@ from .role_resources_history_pb2 import * from .roles_pb2 import * from .roles_history_pb2 import * -from .secret_store_healths_pb2 import * from .secret_store_types_pb2 import * from .secret_stores_pb2 import * +from .secret_store_healths_pb2 import * from .secret_stores_history_pb2 import * from .workflow_approvers_pb2 import * from .workflow_approvers_history_pb2 import * @@ -3935,6 +3935,116 @@ def convert_repeated_control_panel_verify_jwt_response_to_porcelain(plumbings): ] +def convert_couchbase_database_to_porcelain(plumbing): + if plumbing is None: + return None + porcelain = models.CouchbaseDatabase() + porcelain.bind_interface = (plumbing.bind_interface) + porcelain.egress_filter = (plumbing.egress_filter) + porcelain.healthy = (plumbing.healthy) + porcelain.hostname = (plumbing.hostname) + porcelain.id = (plumbing.id) + porcelain.n1ql_port = (plumbing.n1ql_port) + porcelain.name = (plumbing.name) + porcelain.password = (plumbing.password) + porcelain.port = (plumbing.port) + porcelain.port_override = (plumbing.port_override) + porcelain.secret_store_id = (plumbing.secret_store_id) + porcelain.subdomain = (plumbing.subdomain) + porcelain.tags = convert_tags_to_porcelain(plumbing.tags) + porcelain.tls_required = (plumbing.tls_required) + porcelain.username = (plumbing.username) + return porcelain + + +def convert_couchbase_database_to_plumbing(porcelain): + plumbing = CouchbaseDatabase() + if porcelain is None: + return plumbing + plumbing.bind_interface = (porcelain.bind_interface) + plumbing.egress_filter = (porcelain.egress_filter) + plumbing.healthy = (porcelain.healthy) + plumbing.hostname = (porcelain.hostname) + plumbing.id = (porcelain.id) + plumbing.n1ql_port = (porcelain.n1ql_port) + plumbing.name = (porcelain.name) + plumbing.password = (porcelain.password) + plumbing.port = (porcelain.port) + plumbing.port_override = (porcelain.port_override) + plumbing.secret_store_id = (porcelain.secret_store_id) + plumbing.subdomain = (porcelain.subdomain) + plumbing.tags.CopyFrom(convert_tags_to_plumbing(porcelain.tags)) + plumbing.tls_required = (porcelain.tls_required) + plumbing.username = (porcelain.username) + return plumbing + + +def convert_repeated_couchbase_database_to_plumbing(porcelains): + return [ + convert_couchbase_database_to_plumbing(porcelain) + for porcelain in porcelains + ] + + +def convert_repeated_couchbase_database_to_porcelain(plumbings): + return [ + convert_couchbase_database_to_porcelain(plumbing) + for plumbing in plumbings + ] + + +def convert_couchbase_web_ui_to_porcelain(plumbing): + if plumbing is None: + return None + porcelain = models.CouchbaseWebUI() + porcelain.bind_interface = (plumbing.bind_interface) + porcelain.egress_filter = (plumbing.egress_filter) + porcelain.healthy = (plumbing.healthy) + porcelain.id = (plumbing.id) + porcelain.name = (plumbing.name) + porcelain.password = (plumbing.password) + porcelain.port_override = (plumbing.port_override) + porcelain.secret_store_id = (plumbing.secret_store_id) + porcelain.subdomain = (plumbing.subdomain) + porcelain.tags = convert_tags_to_porcelain(plumbing.tags) + porcelain.url = (plumbing.url) + porcelain.username = (plumbing.username) + return porcelain + + +def convert_couchbase_web_ui_to_plumbing(porcelain): + plumbing = CouchbaseWebUI() + if porcelain is None: + return plumbing + plumbing.bind_interface = (porcelain.bind_interface) + plumbing.egress_filter = (porcelain.egress_filter) + plumbing.healthy = (porcelain.healthy) + plumbing.id = (porcelain.id) + plumbing.name = (porcelain.name) + plumbing.password = (porcelain.password) + plumbing.port_override = (porcelain.port_override) + plumbing.secret_store_id = (porcelain.secret_store_id) + plumbing.subdomain = (porcelain.subdomain) + plumbing.tags.CopyFrom(convert_tags_to_plumbing(porcelain.tags)) + plumbing.url = (porcelain.url) + plumbing.username = (porcelain.username) + return plumbing + + +def convert_repeated_couchbase_web_ui_to_plumbing(porcelains): + return [ + convert_couchbase_web_ui_to_plumbing(porcelain) + for porcelain in porcelains + ] + + +def convert_repeated_couchbase_web_ui_to_porcelain(plumbings): + return [ + convert_couchbase_web_ui_to_porcelain(plumbing) + for plumbing in plumbings + ] + + def convert_create_response_metadata_to_porcelain(plumbing): if plumbing is None: return None @@ -4728,6 +4838,34 @@ def convert_repeated_gateway_to_porcelain(plumbings): return [convert_gateway_to_porcelain(plumbing) for plumbing in plumbings] +def convert_generic_response_metadata_to_porcelain(plumbing): + if plumbing is None: + return None + porcelain = models.GenericResponseMetadata() + return porcelain + + +def convert_generic_response_metadata_to_plumbing(porcelain): + plumbing = GenericResponseMetadata() + if porcelain is None: + return plumbing + return plumbing + + +def convert_repeated_generic_response_metadata_to_plumbing(porcelains): + return [ + convert_generic_response_metadata_to_plumbing(porcelain) + for porcelain in porcelains + ] + + +def convert_repeated_generic_response_metadata_to_porcelain(plumbings): + return [ + convert_generic_response_metadata_to_porcelain(plumbing) + for plumbing in plumbings + ] + + def convert_get_response_metadata_to_porcelain(plumbing): if plumbing is None: return None @@ -9222,6 +9360,12 @@ def convert_resource_to_plumbing(porcelain): plumbing.clustrix.CopyFrom(convert_clustrix_to_plumbing(porcelain)) if isinstance(porcelain, models.Cockroach): plumbing.cockroach.CopyFrom(convert_cockroach_to_plumbing(porcelain)) + if isinstance(porcelain, models.CouchbaseDatabase): + plumbing.couchbase_database.CopyFrom( + convert_couchbase_database_to_plumbing(porcelain)) + if isinstance(porcelain, models.CouchbaseWebUI): + plumbing.couchbase_web_ui.CopyFrom( + convert_couchbase_web_ui_to_plumbing(porcelain)) if isinstance(porcelain, models.DB2I): plumbing.db_2_i.CopyFrom(convert_db_2_i_to_plumbing(porcelain)) if isinstance(porcelain, models.DB2LUW): @@ -9433,6 +9577,11 @@ def convert_resource_to_porcelain(plumbing): return convert_clustrix_to_porcelain(plumbing.clustrix) if plumbing.HasField('cockroach'): return convert_cockroach_to_porcelain(plumbing.cockroach) + if plumbing.HasField('couchbase_database'): + return convert_couchbase_database_to_porcelain( + plumbing.couchbase_database) + if plumbing.HasField('couchbase_web_ui'): + return convert_couchbase_web_ui_to_porcelain(plumbing.couchbase_web_ui) if plumbing.HasField('db_2_i'): return convert_db_2_i_to_porcelain(plumbing.db_2_i) if plumbing.HasField('db_2_luw'): diff --git a/strongdm/secret_engine_policy_pb2_grpc.py b/strongdm/secret_engine_policy_pb2_grpc.py new file mode 100644 index 0000000..a09c3c0 --- /dev/null +++ b/strongdm/secret_engine_policy_pb2_grpc.py @@ -0,0 +1,18 @@ +# Copyright 2020 StrongDM Inc +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! +"""Client and server classes corresponding to protobuf-defined services.""" +import grpc + diff --git a/strongdm/secret_engine_types_pb2_grpc.py b/strongdm/secret_engine_types_pb2_grpc.py new file mode 100644 index 0000000..a09c3c0 --- /dev/null +++ b/strongdm/secret_engine_types_pb2_grpc.py @@ -0,0 +1,18 @@ +# Copyright 2020 StrongDM Inc +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT! +"""Client and server classes corresponding to protobuf-defined services.""" +import grpc + diff --git a/strongdm/spec_pb2.py b/strongdm/spec_pb2.py index 62fef7e..7d982b4 100644 --- a/strongdm/spec_pb2.py +++ b/strongdm/spec_pb2.py @@ -30,7 +30,7 @@ from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2 -DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\nspec.proto\x12\x02v1\x1a\roptions.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"<\n\x12\x41lreadyExistsError\x12\x1a\n\x06\x65ntity\x18\x01 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x06\"7\n\rNotFoundError\x12\x1a\n\x06\x65ntity\x18\x01 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x05\"\x1d\n\x0f\x42\x61\x64RequestError:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x03\"!\n\x13\x41uthenticationError:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x10\"\x1d\n\x0fPermissionError:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x07\"\x1b\n\rInternalError:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\r\"u\n\x0eRateLimitError\x12W\n\nrate_limit\x18\x01 \x01(\x0b\x32\x15.v1.RateLimitMetadataB,\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x12\xb2\xf4\xb3\x07\r!json_gateway:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x08\"\x17\n\x15\x43reateRequestMetadata\"$\n\x16\x43reateResponseMetadata:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\"E\n\x12GetRequestMetadata\x12/\n\x0bsnapshot_at\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"!\n\x13GetResponseMetadata:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\"\x17\n\x15UpdateRequestMetadata\"$\n\x16UpdateResponseMetadata:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\"\x17\n\x15\x44\x65leteRequestMetadata\"$\n\x16\x44\x65leteResponseMetadata:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\"\x85\x01\n\x13ListRequestMetadata\x12\x0e\n\x06\x63ursor\x18\x01 \x01(\t\x12\x0c\n\x04page\x18\x02 \x01(\x05\x12\r\n\x05limit\x18\x03 \x01(\x05\x12\x10\n\x08order_by\x18\x04 \x01(\t\x12/\n\x0bsnapshot_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\">\n\x14ListResponseMetadata\x12\x13\n\x0bnext_cursor\x18\x01 \x01(\t\x12\x11\n\x05total\x18\x02 \x01(\x05\x42\x02\x18\x01\"\xaf\x01\n\x11RateLimitMetadata\x12\x19\n\x05limit\x18\x01 \x01(\x03\x42\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12\x1d\n\tremaining\x18\x02 \x01(\x03\x42\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12\x38\n\x08reset_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12\x1a\n\x06\x62ucket\x18\x04 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\"\x18\n\x16GenericRequestMetadata\"\x19\n\x17GenericResponseMetadataBR\n\x19\x63om.strongdm.api.plumbingZ5github.com/strongdm/strongdm-sdk-go/v3/internal/v1;v1b\x06proto3') +DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\nspec.proto\x12\x02v1\x1a\roptions.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"<\n\x12\x41lreadyExistsError\x12\x1a\n\x06\x65ntity\x18\x01 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x06\"7\n\rNotFoundError\x12\x1a\n\x06\x65ntity\x18\x01 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x05\"\x1d\n\x0f\x42\x61\x64RequestError:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x03\"!\n\x13\x41uthenticationError:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x10\"\x1d\n\x0fPermissionError:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x07\"\x1b\n\rInternalError:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\r\"u\n\x0eRateLimitError\x12W\n\nrate_limit\x18\x01 \x01(\x0b\x32\x15.v1.RateLimitMetadataB,\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\xf2\xf8\xb3\x07\x06\xb2\xf4\xb3\x07\x01*\xf2\xf8\xb3\x07\x12\xb2\xf4\xb3\x07\r!json_gateway:\n\xfa\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x08\"\x17\n\x15\x43reateRequestMetadata\"$\n\x16\x43reateResponseMetadata:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\"E\n\x12GetRequestMetadata\x12/\n\x0bsnapshot_at\x18\x01 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\"!\n\x13GetResponseMetadata:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\"\x17\n\x15UpdateRequestMetadata\"$\n\x16UpdateResponseMetadata:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\"\x17\n\x15\x44\x65leteRequestMetadata\"$\n\x16\x44\x65leteResponseMetadata:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\"\x85\x01\n\x13ListRequestMetadata\x12\x0e\n\x06\x63ursor\x18\x01 \x01(\t\x12\x0c\n\x04page\x18\x02 \x01(\x05\x12\r\n\x05limit\x18\x03 \x01(\x05\x12\x10\n\x08order_by\x18\x04 \x01(\t\x12/\n\x0bsnapshot_at\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.Timestamp\">\n\x14ListResponseMetadata\x12\x13\n\x0bnext_cursor\x18\x01 \x01(\t\x12\x11\n\x05total\x18\x02 \x01(\x05\x42\x02\x18\x01\"\xaf\x01\n\x11RateLimitMetadata\x12\x19\n\x05limit\x18\x01 \x01(\x03\x42\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12\x1d\n\tremaining\x18\x02 \x01(\x03\x42\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12\x38\n\x08reset_at\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01\x12\x1a\n\x06\x62ucket\x18\x04 \x01(\tB\n\xf2\xf8\xb3\x07\x05\xb0\xf3\xb3\x07\x01:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\"\x18\n\x16GenericRequestMetadata\"%\n\x17GenericResponseMetadata:\n\xfa\xf8\xb3\x07\x05\xa8\xf3\xb3\x07\x01\x42R\n\x19\x63om.strongdm.api.plumbingZ5github.com/strongdm/strongdm-sdk-go/v3/internal/v1;v1b\x06proto3') @@ -238,6 +238,8 @@ _RATELIMITMETADATA.fields_by_name['bucket']._serialized_options = b'\362\370\263\007\005\260\363\263\007\001' _RATELIMITMETADATA._options = None _RATELIMITMETADATA._serialized_options = b'\372\370\263\007\005\250\363\263\007\001' + _GENERICRESPONSEMETADATA._options = None + _GENERICRESPONSEMETADATA._serialized_options = b'\372\370\263\007\005\250\363\263\007\001' _ALREADYEXISTSERROR._serialized_start=66 _ALREADYEXISTSERROR._serialized_end=126 _NOTFOUNDERROR._serialized_start=128 @@ -277,5 +279,5 @@ _GENERICREQUESTMETADATA._serialized_start=1103 _GENERICREQUESTMETADATA._serialized_end=1127 _GENERICRESPONSEMETADATA._serialized_start=1129 - _GENERICRESPONSEMETADATA._serialized_end=1154 + _GENERICRESPONSEMETADATA._serialized_end=1166 # @@protoc_insertion_point(module_scope) diff --git a/strongdm/svc.py b/strongdm/svc.py index 3df88d4..b3b6bfc 100644 --- a/strongdm/svc.py +++ b/strongdm/svc.py @@ -116,12 +116,12 @@ from .roles_pb2_grpc import * from .roles_history_pb2 import * from .roles_history_pb2_grpc import * -from .secret_store_healths_pb2 import * -from .secret_store_healths_pb2_grpc import * from .secret_store_types_pb2 import * from .secret_store_types_pb2_grpc import * from .secret_stores_pb2 import * from .secret_stores_pb2_grpc import * +from .secret_store_healths_pb2 import * +from .secret_store_healths_pb2_grpc import * from .secret_stores_history_pb2 import * from .secret_stores_history_pb2_grpc import * from .workflow_approvers_pb2 import * @@ -4253,6 +4253,8 @@ class Resources: `strongdm.models.Citus` `strongdm.models.Clustrix` `strongdm.models.Cockroach` + `strongdm.models.CouchbaseDatabase` + `strongdm.models.CouchbaseWebUI` `strongdm.models.DB2I` `strongdm.models.DB2LUW` `strongdm.models.DocumentDBHost` @@ -4982,85 +4984,6 @@ def generator(svc, req): return generator(self, req) -class SecretStoreHealths: - ''' - SecretStoreHealths exposes health states for secret stores. - See `strongdm.models.SecretStoreHealth`. - ''' - def __init__(self, channel, client): - self.parent = client - self.stub = SecretStoreHealthsStub(channel) - - def list(self, filter, *args, timeout=None): - ''' - List reports the health status of node to secret store pairs. - ''' - req = SecretStoreHealthListRequest() - req.meta.CopyFrom(ListRequestMetadata()) - if self.parent.page_limit > 0: - req.meta.limit = self.parent.page_limit - if self.parent.snapshot_datetime is not None: - req.meta.snapshot_at.FromDatetime(self.parent.snapshot_datetime) - - req.filter = plumbing.quote_filter_args(filter, *args) - - def generator(svc, req): - tries = 0 - while True: - try: - plumbing_response = svc.stub.List( - req, - metadata=svc.parent.get_metadata( - 'SecretStoreHealths.List', req), - timeout=timeout) - except Exception as e: - if self.parent.shouldRetry(tries, e): - tries += 1 - self.parent.jitterSleep(tries) - continue - raise plumbing.convert_error_to_porcelain(e) from e - tries = 0 - for plumbing_item in plumbing_response.secret_store_healths: - yield plumbing.convert_secret_store_health_to_porcelain( - plumbing_item) - if plumbing_response.meta.next_cursor == '': - break - req.meta.cursor = plumbing_response.meta.next_cursor - - return generator(self, req) - - def healthcheck(self, secret_store_id, timeout=None): - ''' - Healthcheck triggers a remote healthcheck request for a secret store. It may take minutes - to propagate across a large network of Nodes. The call will return immediately, and the - updated health of the Secret Store can be retrieved via List. - ''' - req = SecretStoreHealthcheckRequest() - - req.secret_store_id = (secret_store_id) - tries = 0 - plumbing_response = None - while True: - try: - plumbing_response = self.stub.Healthcheck( - req, - metadata=self.parent.get_metadata( - 'SecretStoreHealths.Healthcheck', req), - timeout=timeout) - except Exception as e: - if self.parent.shouldRetry(tries, e): - tries += 1 - self.parent.jitterSleep(tries) - continue - raise plumbing.convert_error_to_porcelain(e) from e - break - - resp = models.SecretStoreHealthcheckResponse() - resp.rate_limit = plumbing.convert_rate_limit_metadata_to_porcelain( - plumbing_response.rate_limit) - return resp - - class SecretStores: ''' SecretStores are servers where resource secrets (passwords, keys) are stored. @@ -5286,6 +5209,85 @@ def list(self, filter, *args, timeout=None): return self.secret_stores.list(filter, *args, timeout=timeout) +class SecretStoreHealths: + ''' + SecretStoreHealths exposes health states for secret stores. + See `strongdm.models.SecretStoreHealth`. + ''' + def __init__(self, channel, client): + self.parent = client + self.stub = SecretStoreHealthsStub(channel) + + def list(self, filter, *args, timeout=None): + ''' + List reports the health status of node to secret store pairs. + ''' + req = SecretStoreHealthListRequest() + req.meta.CopyFrom(ListRequestMetadata()) + if self.parent.page_limit > 0: + req.meta.limit = self.parent.page_limit + if self.parent.snapshot_datetime is not None: + req.meta.snapshot_at.FromDatetime(self.parent.snapshot_datetime) + + req.filter = plumbing.quote_filter_args(filter, *args) + + def generator(svc, req): + tries = 0 + while True: + try: + plumbing_response = svc.stub.List( + req, + metadata=svc.parent.get_metadata( + 'SecretStoreHealths.List', req), + timeout=timeout) + except Exception as e: + if self.parent.shouldRetry(tries, e): + tries += 1 + self.parent.jitterSleep(tries) + continue + raise plumbing.convert_error_to_porcelain(e) from e + tries = 0 + for plumbing_item in plumbing_response.secret_store_healths: + yield plumbing.convert_secret_store_health_to_porcelain( + plumbing_item) + if plumbing_response.meta.next_cursor == '': + break + req.meta.cursor = plumbing_response.meta.next_cursor + + return generator(self, req) + + def healthcheck(self, secret_store_id, timeout=None): + ''' + Healthcheck triggers a remote healthcheck request for a secret store. It may take minutes + to propagate across a large network of Nodes. The call will return immediately, and the + updated health of the Secret Store can be retrieved via List. + ''' + req = SecretStoreHealthcheckRequest() + + req.secret_store_id = (secret_store_id) + tries = 0 + plumbing_response = None + while True: + try: + plumbing_response = self.stub.Healthcheck( + req, + metadata=self.parent.get_metadata( + 'SecretStoreHealths.Healthcheck', req), + timeout=timeout) + except Exception as e: + if self.parent.shouldRetry(tries, e): + tries += 1 + self.parent.jitterSleep(tries) + continue + raise plumbing.convert_error_to_porcelain(e) from e + break + + resp = models.SecretStoreHealthcheckResponse() + resp.rate_limit = plumbing.convert_rate_limit_metadata_to_porcelain( + plumbing_response.rate_limit) + return resp + + class SecretStoresHistory: ''' SecretStoresHistory records all changes to the state of a SecretStore.