aws-sdk-glue 1.203.0 → 1.204.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-glue/client.rb +1543 -12
- data/lib/aws-sdk-glue/client_api.rb +1087 -0
- data/lib/aws-sdk-glue/errors.rb +128 -0
- data/lib/aws-sdk-glue/types.rb +2662 -177
- data/lib/aws-sdk-glue.rb +1 -1
- data/sig/client.rbs +508 -16
- data/sig/errors.rbs +24 -0
- data/sig/types.rbs +641 -10
- metadata +2 -2
data/sig/types.rbs
CHANGED
@@ -37,6 +37,12 @@ module Aws::Glue
|
|
37
37
|
SENSITIVE: []
|
38
38
|
end
|
39
39
|
|
40
|
+
class AllowedValue
|
41
|
+
attr_accessor description: ::String
|
42
|
+
attr_accessor value: ::String
|
43
|
+
SENSITIVE: []
|
44
|
+
end
|
45
|
+
|
40
46
|
class AlreadyExistsException
|
41
47
|
attr_accessor message: ::String
|
42
48
|
SENSITIVE: []
|
@@ -123,18 +129,30 @@ module Aws::Glue
|
|
123
129
|
SENSITIVE: []
|
124
130
|
end
|
125
131
|
|
132
|
+
class AuthConfiguration
|
133
|
+
attr_accessor authentication_type: Types::Property
|
134
|
+
attr_accessor secret_arn: Types::Property
|
135
|
+
attr_accessor o_auth_2_properties: ::Hash[::String, Types::Property]
|
136
|
+
attr_accessor basic_authentication_properties: ::Hash[::String, Types::Property]
|
137
|
+
attr_accessor custom_authentication_properties: ::Hash[::String, Types::Property]
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
126
141
|
class AuthenticationConfiguration
|
127
|
-
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
|
142
|
+
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")
|
128
143
|
attr_accessor secret_arn: ::String
|
129
144
|
attr_accessor o_auth_2_properties: Types::OAuth2Properties
|
130
145
|
SENSITIVE: []
|
131
146
|
end
|
132
147
|
|
133
148
|
class AuthenticationConfigurationInput
|
134
|
-
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")
|
149
|
+
attr_accessor authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")
|
135
150
|
attr_accessor o_auth_2_properties: Types::OAuth2PropertiesInput
|
136
151
|
attr_accessor secret_arn: ::String
|
137
|
-
|
152
|
+
attr_accessor kms_key_arn: ::String
|
153
|
+
attr_accessor basic_authentication_credentials: Types::BasicAuthenticationCredentials
|
154
|
+
attr_accessor custom_authentication_credentials: ::Hash[::String, ::String]
|
155
|
+
SENSITIVE: [:custom_authentication_credentials]
|
138
156
|
end
|
139
157
|
|
140
158
|
class AuthorizationCodeProperties
|
@@ -149,6 +167,12 @@ module Aws::Glue
|
|
149
167
|
SENSITIVE: []
|
150
168
|
end
|
151
169
|
|
170
|
+
class BasicAuthenticationCredentials
|
171
|
+
attr_accessor username: ::String
|
172
|
+
attr_accessor password: ::String
|
173
|
+
SENSITIVE: [:password]
|
174
|
+
end
|
175
|
+
|
152
176
|
class BasicCatalogTarget
|
153
177
|
attr_accessor name: ::String
|
154
178
|
attr_accessor inputs: ::Array[::String]
|
@@ -511,6 +535,29 @@ module Aws::Glue
|
|
511
535
|
class CancelStatementResponse < Aws::EmptyStructure
|
512
536
|
end
|
513
537
|
|
538
|
+
class Capabilities
|
539
|
+
attr_accessor supported_authentication_types: ::Array[("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")]
|
540
|
+
attr_accessor supported_data_operations: ::Array[("READ" | "WRITE")]
|
541
|
+
attr_accessor supported_compute_environments: ::Array[("SPARK" | "ATHENA" | "PYTHON")]
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class Catalog
|
546
|
+
attr_accessor catalog_id: ::String
|
547
|
+
attr_accessor name: ::String
|
548
|
+
attr_accessor resource_arn: ::String
|
549
|
+
attr_accessor description: ::String
|
550
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
551
|
+
attr_accessor create_time: ::Time
|
552
|
+
attr_accessor update_time: ::Time
|
553
|
+
attr_accessor target_redshift_catalog: Types::TargetRedshiftCatalog
|
554
|
+
attr_accessor federated_catalog: Types::FederatedCatalog
|
555
|
+
attr_accessor catalog_properties: Types::CatalogPropertiesOutput
|
556
|
+
attr_accessor create_table_default_permissions: ::Array[Types::PrincipalPermissions]
|
557
|
+
attr_accessor create_database_default_permissions: ::Array[Types::PrincipalPermissions]
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
514
561
|
class CatalogDeltaSource
|
515
562
|
attr_accessor name: ::String
|
516
563
|
attr_accessor database: ::String
|
@@ -542,6 +589,17 @@ module Aws::Glue
|
|
542
589
|
SENSITIVE: []
|
543
590
|
end
|
544
591
|
|
592
|
+
class CatalogInput
|
593
|
+
attr_accessor description: ::String
|
594
|
+
attr_accessor federated_catalog: Types::FederatedCatalog
|
595
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
596
|
+
attr_accessor target_redshift_catalog: Types::TargetRedshiftCatalog
|
597
|
+
attr_accessor catalog_properties: Types::CatalogProperties
|
598
|
+
attr_accessor create_table_default_permissions: ::Array[Types::PrincipalPermissions]
|
599
|
+
attr_accessor create_database_default_permissions: ::Array[Types::PrincipalPermissions]
|
600
|
+
SENSITIVE: []
|
601
|
+
end
|
602
|
+
|
545
603
|
class CatalogKafkaSource
|
546
604
|
attr_accessor name: ::String
|
547
605
|
attr_accessor window_size: ::Integer
|
@@ -564,6 +622,18 @@ module Aws::Glue
|
|
564
622
|
SENSITIVE: []
|
565
623
|
end
|
566
624
|
|
625
|
+
class CatalogProperties
|
626
|
+
attr_accessor data_lake_access_properties: Types::DataLakeAccessProperties
|
627
|
+
attr_accessor custom_properties: ::Hash[::String, ::String]
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
631
|
+
class CatalogPropertiesOutput
|
632
|
+
attr_accessor data_lake_access_properties: Types::DataLakeAccessPropertiesOutput
|
633
|
+
attr_accessor custom_properties: ::Hash[::String, ::String]
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
567
637
|
class CatalogSchemaChangePolicy
|
568
638
|
attr_accessor enable_update_catalog: bool
|
569
639
|
attr_accessor update_behavior: ("UPDATE_IN_DATABASE" | "LOG")
|
@@ -803,6 +873,9 @@ module Aws::Glue
|
|
803
873
|
attr_accessor role: ::String
|
804
874
|
attr_accessor sample_size: ::Float
|
805
875
|
attr_accessor security_configuration: ::String
|
876
|
+
attr_accessor schedule_type: ("CRON" | "AUTO")
|
877
|
+
attr_accessor setting_source: ("CATALOG" | "TABLE")
|
878
|
+
attr_accessor last_execution_attempt: Types::ExecutionAttempt
|
806
879
|
SENSITIVE: []
|
807
880
|
end
|
808
881
|
|
@@ -816,6 +889,19 @@ module Aws::Glue
|
|
816
889
|
SENSITIVE: []
|
817
890
|
end
|
818
891
|
|
892
|
+
class ComputeEnvironmentConfiguration
|
893
|
+
attr_accessor name: ::String
|
894
|
+
attr_accessor description: ::String
|
895
|
+
attr_accessor compute_environment: ("SPARK" | "ATHENA" | "PYTHON")
|
896
|
+
attr_accessor supported_authentication_types: ::Array[("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")]
|
897
|
+
attr_accessor connection_options: ::Hash[::String, Types::Property]
|
898
|
+
attr_accessor connection_property_name_overrides: ::Hash[::String, ::String]
|
899
|
+
attr_accessor connection_option_name_overrides: ::Hash[::String, ::String]
|
900
|
+
attr_accessor connection_properties_required_overrides: ::Array[::String]
|
901
|
+
attr_accessor physical_connection_properties_required: bool
|
902
|
+
SENSITIVE: []
|
903
|
+
end
|
904
|
+
|
819
905
|
class ConcurrentModificationException
|
820
906
|
attr_accessor message: ::String
|
821
907
|
SENSITIVE: []
|
@@ -871,10 +957,12 @@ module Aws::Glue
|
|
871
957
|
class Connection
|
872
958
|
attr_accessor name: ::String
|
873
959
|
attr_accessor description: ::String
|
874
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
|
960
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
875
961
|
attr_accessor match_criteria: ::Array[::String]
|
876
|
-
attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "
|
962
|
+
attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "ENDPOINT" | "ENDPOINT_TYPE" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String]
|
963
|
+
attr_accessor spark_properties: ::Hash[::String, ::String]
|
877
964
|
attr_accessor athena_properties: ::Hash[::String, ::String]
|
965
|
+
attr_accessor python_properties: ::Hash[::String, ::String]
|
878
966
|
attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
|
879
967
|
attr_accessor creation_time: ::Time
|
880
968
|
attr_accessor last_updated_time: ::Time
|
@@ -883,19 +971,24 @@ module Aws::Glue
|
|
883
971
|
attr_accessor status_reason: ::String
|
884
972
|
attr_accessor last_connection_validation_time: ::Time
|
885
973
|
attr_accessor authentication_configuration: Types::AuthenticationConfiguration
|
974
|
+
attr_accessor connection_schema_version: ::Integer
|
975
|
+
attr_accessor compatible_compute_environments: ::Array[("SPARK" | "ATHENA" | "PYTHON")]
|
886
976
|
SENSITIVE: []
|
887
977
|
end
|
888
978
|
|
889
979
|
class ConnectionInput
|
890
980
|
attr_accessor name: ::String
|
891
981
|
attr_accessor description: ::String
|
892
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
|
982
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
893
983
|
attr_accessor match_criteria: ::Array[::String]
|
894
|
-
attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "
|
984
|
+
attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "ENDPOINT" | "ENDPOINT_TYPE" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String]
|
985
|
+
attr_accessor spark_properties: ::Hash[::String, ::String]
|
895
986
|
attr_accessor athena_properties: ::Hash[::String, ::String]
|
987
|
+
attr_accessor python_properties: ::Hash[::String, ::String]
|
896
988
|
attr_accessor physical_connection_requirements: Types::PhysicalConnectionRequirements
|
897
989
|
attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
|
898
990
|
attr_accessor validate_credentials: bool
|
991
|
+
attr_accessor validate_for_compute_environments: ::Array[("SPARK" | "ATHENA" | "PYTHON")]
|
899
992
|
SENSITIVE: []
|
900
993
|
end
|
901
994
|
|
@@ -905,6 +998,13 @@ module Aws::Glue
|
|
905
998
|
SENSITIVE: []
|
906
999
|
end
|
907
1000
|
|
1001
|
+
class ConnectionTypeBrief
|
1002
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
1003
|
+
attr_accessor description: ::String
|
1004
|
+
attr_accessor capabilities: Types::Capabilities
|
1005
|
+
SENSITIVE: []
|
1006
|
+
end
|
1007
|
+
|
908
1008
|
class ConnectionsList
|
909
1009
|
attr_accessor connections: ::Array[::String]
|
910
1010
|
SENSITIVE: []
|
@@ -1038,6 +1138,16 @@ module Aws::Glue
|
|
1038
1138
|
SENSITIVE: []
|
1039
1139
|
end
|
1040
1140
|
|
1141
|
+
class CreateCatalogRequest
|
1142
|
+
attr_accessor name: ::String
|
1143
|
+
attr_accessor catalog_input: Types::CatalogInput
|
1144
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
1145
|
+
SENSITIVE: []
|
1146
|
+
end
|
1147
|
+
|
1148
|
+
class CreateCatalogResponse < Aws::EmptyStructure
|
1149
|
+
end
|
1150
|
+
|
1041
1151
|
class CreateClassifierRequest
|
1042
1152
|
attr_accessor grok_classifier: Types::CreateGrokClassifierRequest
|
1043
1153
|
attr_accessor xml_classifier: Types::CreateXMLClassifierRequest
|
@@ -1202,6 +1312,59 @@ module Aws::Glue
|
|
1202
1312
|
SENSITIVE: []
|
1203
1313
|
end
|
1204
1314
|
|
1315
|
+
class CreateIntegrationRequest
|
1316
|
+
attr_accessor integration_name: ::String
|
1317
|
+
attr_accessor source_arn: ::String
|
1318
|
+
attr_accessor target_arn: ::String
|
1319
|
+
attr_accessor description: ::String
|
1320
|
+
attr_accessor data_filter: ::String
|
1321
|
+
attr_accessor kms_key_id: ::String
|
1322
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
1323
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1324
|
+
SENSITIVE: []
|
1325
|
+
end
|
1326
|
+
|
1327
|
+
class CreateIntegrationResourcePropertyRequest
|
1328
|
+
attr_accessor resource_arn: ::String
|
1329
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
1330
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
1331
|
+
SENSITIVE: []
|
1332
|
+
end
|
1333
|
+
|
1334
|
+
class CreateIntegrationResourcePropertyResponse
|
1335
|
+
attr_accessor resource_arn: ::String
|
1336
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
1337
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
1338
|
+
SENSITIVE: []
|
1339
|
+
end
|
1340
|
+
|
1341
|
+
class CreateIntegrationResponse
|
1342
|
+
attr_accessor source_arn: ::String
|
1343
|
+
attr_accessor target_arn: ::String
|
1344
|
+
attr_accessor integration_name: ::String
|
1345
|
+
attr_accessor description: ::String
|
1346
|
+
attr_accessor integration_arn: ::String
|
1347
|
+
attr_accessor kms_key_id: ::String
|
1348
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
1349
|
+
attr_accessor tags: ::Array[Types::Tag]
|
1350
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
1351
|
+
attr_accessor create_time: ::Time
|
1352
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
1353
|
+
attr_accessor data_filter: ::String
|
1354
|
+
SENSITIVE: []
|
1355
|
+
end
|
1356
|
+
|
1357
|
+
class CreateIntegrationTablePropertiesRequest
|
1358
|
+
attr_accessor resource_arn: ::String
|
1359
|
+
attr_accessor table_name: ::String
|
1360
|
+
attr_accessor source_table_config: Types::SourceTableConfig
|
1361
|
+
attr_accessor target_table_config: Types::TargetTableConfig
|
1362
|
+
SENSITIVE: []
|
1363
|
+
end
|
1364
|
+
|
1365
|
+
class CreateIntegrationTablePropertiesResponse < Aws::EmptyStructure
|
1366
|
+
end
|
1367
|
+
|
1205
1368
|
class CreateJobRequest
|
1206
1369
|
attr_accessor name: ::String
|
1207
1370
|
attr_accessor job_mode: ("SCRIPT" | "VISUAL" | "NOTEBOOK")
|
@@ -1519,6 +1682,26 @@ module Aws::Glue
|
|
1519
1682
|
SENSITIVE: []
|
1520
1683
|
end
|
1521
1684
|
|
1685
|
+
class DataLakeAccessProperties
|
1686
|
+
attr_accessor data_lake_access: bool
|
1687
|
+
attr_accessor data_transfer_role: ::String
|
1688
|
+
attr_accessor kms_key: ::String
|
1689
|
+
attr_accessor catalog_type: ::String
|
1690
|
+
SENSITIVE: []
|
1691
|
+
end
|
1692
|
+
|
1693
|
+
class DataLakeAccessPropertiesOutput
|
1694
|
+
attr_accessor data_lake_access: bool
|
1695
|
+
attr_accessor data_transfer_role: ::String
|
1696
|
+
attr_accessor kms_key: ::String
|
1697
|
+
attr_accessor managed_workgroup_name: ::String
|
1698
|
+
attr_accessor managed_workgroup_status: ::String
|
1699
|
+
attr_accessor redshift_database_name: ::String
|
1700
|
+
attr_accessor status_message: ::String
|
1701
|
+
attr_accessor catalog_type: ::String
|
1702
|
+
SENSITIVE: []
|
1703
|
+
end
|
1704
|
+
|
1522
1705
|
class DataLakePrincipal
|
1523
1706
|
attr_accessor data_lake_principal_identifier: ::String
|
1524
1707
|
SENSITIVE: []
|
@@ -1739,6 +1922,14 @@ module Aws::Glue
|
|
1739
1922
|
SENSITIVE: []
|
1740
1923
|
end
|
1741
1924
|
|
1925
|
+
class DeleteCatalogRequest
|
1926
|
+
attr_accessor catalog_id: ::String
|
1927
|
+
SENSITIVE: []
|
1928
|
+
end
|
1929
|
+
|
1930
|
+
class DeleteCatalogResponse < Aws::EmptyStructure
|
1931
|
+
end
|
1932
|
+
|
1742
1933
|
class DeleteClassifierRequest
|
1743
1934
|
attr_accessor name: ::String
|
1744
1935
|
SENSITIVE: []
|
@@ -1831,6 +2022,36 @@ module Aws::Glue
|
|
1831
2022
|
class DeleteDevEndpointResponse < Aws::EmptyStructure
|
1832
2023
|
end
|
1833
2024
|
|
2025
|
+
class DeleteIntegrationRequest
|
2026
|
+
attr_accessor integration_identifier: ::String
|
2027
|
+
SENSITIVE: []
|
2028
|
+
end
|
2029
|
+
|
2030
|
+
class DeleteIntegrationResponse
|
2031
|
+
attr_accessor source_arn: ::String
|
2032
|
+
attr_accessor target_arn: ::String
|
2033
|
+
attr_accessor integration_name: ::String
|
2034
|
+
attr_accessor description: ::String
|
2035
|
+
attr_accessor integration_arn: ::String
|
2036
|
+
attr_accessor kms_key_id: ::String
|
2037
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
2038
|
+
attr_accessor tags: ::Array[Types::Tag]
|
2039
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
2040
|
+
attr_accessor create_time: ::Time
|
2041
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
2042
|
+
attr_accessor data_filter: ::String
|
2043
|
+
SENSITIVE: []
|
2044
|
+
end
|
2045
|
+
|
2046
|
+
class DeleteIntegrationTablePropertiesRequest
|
2047
|
+
attr_accessor resource_arn: ::String
|
2048
|
+
attr_accessor table_name: ::String
|
2049
|
+
SENSITIVE: []
|
2050
|
+
end
|
2051
|
+
|
2052
|
+
class DeleteIntegrationTablePropertiesResponse < Aws::EmptyStructure
|
2053
|
+
end
|
2054
|
+
|
1834
2055
|
class DeleteJobRequest
|
1835
2056
|
attr_accessor job_name: ::String
|
1836
2057
|
SENSITIVE: []
|
@@ -2015,6 +2236,69 @@ module Aws::Glue
|
|
2015
2236
|
SENSITIVE: []
|
2016
2237
|
end
|
2017
2238
|
|
2239
|
+
class DescribeConnectionTypeRequest
|
2240
|
+
attr_accessor connection_type: ::String
|
2241
|
+
SENSITIVE: []
|
2242
|
+
end
|
2243
|
+
|
2244
|
+
class DescribeConnectionTypeResponse
|
2245
|
+
attr_accessor connection_type: ::String
|
2246
|
+
attr_accessor description: ::String
|
2247
|
+
attr_accessor capabilities: Types::Capabilities
|
2248
|
+
attr_accessor connection_properties: ::Hash[::String, Types::Property]
|
2249
|
+
attr_accessor connection_options: ::Hash[::String, Types::Property]
|
2250
|
+
attr_accessor authentication_configuration: Types::AuthConfiguration
|
2251
|
+
attr_accessor compute_environment_configurations: ::Hash[::String, Types::ComputeEnvironmentConfiguration]
|
2252
|
+
attr_accessor physical_connection_requirements: ::Hash[::String, Types::Property]
|
2253
|
+
attr_accessor athena_connection_properties: ::Hash[::String, Types::Property]
|
2254
|
+
attr_accessor python_connection_properties: ::Hash[::String, Types::Property]
|
2255
|
+
attr_accessor spark_connection_properties: ::Hash[::String, Types::Property]
|
2256
|
+
SENSITIVE: []
|
2257
|
+
end
|
2258
|
+
|
2259
|
+
class DescribeEntityRequest
|
2260
|
+
attr_accessor connection_name: ::String
|
2261
|
+
attr_accessor catalog_id: ::String
|
2262
|
+
attr_accessor entity_name: ::String
|
2263
|
+
attr_accessor next_token: ::String
|
2264
|
+
attr_accessor data_store_api_version: ::String
|
2265
|
+
SENSITIVE: []
|
2266
|
+
end
|
2267
|
+
|
2268
|
+
class DescribeEntityResponse
|
2269
|
+
attr_accessor fields: ::Array[Types::Field]
|
2270
|
+
attr_accessor next_token: ::String
|
2271
|
+
SENSITIVE: []
|
2272
|
+
end
|
2273
|
+
|
2274
|
+
class DescribeInboundIntegrationsRequest
|
2275
|
+
attr_accessor integration_arn: ::String
|
2276
|
+
attr_accessor marker: ::String
|
2277
|
+
attr_accessor max_records: ::Integer
|
2278
|
+
attr_accessor target_arn: ::String
|
2279
|
+
SENSITIVE: []
|
2280
|
+
end
|
2281
|
+
|
2282
|
+
class DescribeInboundIntegrationsResponse
|
2283
|
+
attr_accessor inbound_integrations: ::Array[Types::InboundIntegration]
|
2284
|
+
attr_accessor marker: ::String
|
2285
|
+
SENSITIVE: []
|
2286
|
+
end
|
2287
|
+
|
2288
|
+
class DescribeIntegrationsRequest
|
2289
|
+
attr_accessor integration_identifier: ::String
|
2290
|
+
attr_accessor marker: ::String
|
2291
|
+
attr_accessor max_records: ::Integer
|
2292
|
+
attr_accessor filters: ::Array[Types::IntegrationFilter]
|
2293
|
+
SENSITIVE: []
|
2294
|
+
end
|
2295
|
+
|
2296
|
+
class DescribeIntegrationsResponse
|
2297
|
+
attr_accessor integrations: ::Array[Types::Integration]
|
2298
|
+
attr_accessor marker: ::String
|
2299
|
+
SENSITIVE: []
|
2300
|
+
end
|
2301
|
+
|
2018
2302
|
class DevEndpoint
|
2019
2303
|
attr_accessor endpoint_name: ::String
|
2020
2304
|
attr_accessor role_arn: ::String
|
@@ -2162,6 +2446,16 @@ module Aws::Glue
|
|
2162
2446
|
SENSITIVE: []
|
2163
2447
|
end
|
2164
2448
|
|
2449
|
+
class Entity
|
2450
|
+
attr_accessor entity_name: ::String
|
2451
|
+
attr_accessor label: ::String
|
2452
|
+
attr_accessor is_parent_entity: bool
|
2453
|
+
attr_accessor description: ::String
|
2454
|
+
attr_accessor category: ::String
|
2455
|
+
attr_accessor custom_properties: ::Hash[::String, ::String]
|
2456
|
+
SENSITIVE: []
|
2457
|
+
end
|
2458
|
+
|
2165
2459
|
class EntityNotFoundException
|
2166
2460
|
attr_accessor message: ::String
|
2167
2461
|
attr_accessor from_federation_source: bool
|
@@ -2213,6 +2507,14 @@ module Aws::Glue
|
|
2213
2507
|
SENSITIVE: []
|
2214
2508
|
end
|
2215
2509
|
|
2510
|
+
class ExecutionAttempt
|
2511
|
+
attr_accessor status: ("FAILED" | "STARTED")
|
2512
|
+
attr_accessor column_statistics_task_run_id: ::String
|
2513
|
+
attr_accessor execution_timestamp: ::Time
|
2514
|
+
attr_accessor error_message: ::String
|
2515
|
+
SENSITIVE: []
|
2516
|
+
end
|
2517
|
+
|
2216
2518
|
class ExecutionProperty
|
2217
2519
|
attr_accessor max_concurrent_runs: ::Integer
|
2218
2520
|
SENSITIVE: []
|
@@ -2223,6 +2525,12 @@ module Aws::Glue
|
|
2223
2525
|
SENSITIVE: []
|
2224
2526
|
end
|
2225
2527
|
|
2528
|
+
class FederatedCatalog
|
2529
|
+
attr_accessor identifier: ::String
|
2530
|
+
attr_accessor connection_name: ::String
|
2531
|
+
SENSITIVE: []
|
2532
|
+
end
|
2533
|
+
|
2226
2534
|
class FederatedDatabase
|
2227
2535
|
attr_accessor identifier: ::String
|
2228
2536
|
attr_accessor connection_name: ::String
|
@@ -2253,6 +2561,28 @@ module Aws::Glue
|
|
2253
2561
|
SENSITIVE: []
|
2254
2562
|
end
|
2255
2563
|
|
2564
|
+
class Field
|
2565
|
+
attr_accessor field_name: ::String
|
2566
|
+
attr_accessor label: ::String
|
2567
|
+
attr_accessor description: ::String
|
2568
|
+
attr_accessor field_type: ("INT" | "SMALLINT" | "BIGINT" | "FLOAT" | "LONG" | "DATE" | "BOOLEAN" | "MAP" | "ARRAY" | "STRING" | "TIMESTAMP" | "DECIMAL" | "BYTE" | "SHORT" | "DOUBLE" | "STRUCT")
|
2569
|
+
attr_accessor is_primary_key: bool
|
2570
|
+
attr_accessor is_nullable: bool
|
2571
|
+
attr_accessor is_retrievable: bool
|
2572
|
+
attr_accessor is_filterable: bool
|
2573
|
+
attr_accessor is_partitionable: bool
|
2574
|
+
attr_accessor is_createable: bool
|
2575
|
+
attr_accessor is_updateable: bool
|
2576
|
+
attr_accessor is_upsertable: bool
|
2577
|
+
attr_accessor is_default_on_create: bool
|
2578
|
+
attr_accessor supported_values: ::Array[::String]
|
2579
|
+
attr_accessor supported_filter_operators: ::Array[("LESS_THAN" | "GREATER_THAN" | "BETWEEN" | "EQUAL_TO" | "NOT_EQUAL_TO" | "GREATER_THAN_OR_EQUAL_TO" | "LESS_THAN_OR_EQUAL_TO" | "CONTAINS" | "ORDER_BY")]
|
2580
|
+
attr_accessor parent_field: ::String
|
2581
|
+
attr_accessor native_data_type: ::String
|
2582
|
+
attr_accessor custom_properties: ::Hash[::String, ::String]
|
2583
|
+
SENSITIVE: []
|
2584
|
+
end
|
2585
|
+
|
2256
2586
|
class FillMissingValues
|
2257
2587
|
attr_accessor name: ::String
|
2258
2588
|
attr_accessor inputs: ::Array[::String]
|
@@ -2353,6 +2683,30 @@ module Aws::Glue
|
|
2353
2683
|
SENSITIVE: []
|
2354
2684
|
end
|
2355
2685
|
|
2686
|
+
class GetCatalogRequest
|
2687
|
+
attr_accessor catalog_id: ::String
|
2688
|
+
SENSITIVE: []
|
2689
|
+
end
|
2690
|
+
|
2691
|
+
class GetCatalogResponse
|
2692
|
+
attr_accessor catalog: Types::Catalog
|
2693
|
+
SENSITIVE: []
|
2694
|
+
end
|
2695
|
+
|
2696
|
+
class GetCatalogsRequest
|
2697
|
+
attr_accessor parent_catalog_id: ::String
|
2698
|
+
attr_accessor next_token: ::String
|
2699
|
+
attr_accessor max_results: ::Integer
|
2700
|
+
attr_accessor recursive: bool
|
2701
|
+
SENSITIVE: []
|
2702
|
+
end
|
2703
|
+
|
2704
|
+
class GetCatalogsResponse
|
2705
|
+
attr_accessor catalog_list: ::Array[Types::Catalog]
|
2706
|
+
attr_accessor next_token: ::String
|
2707
|
+
SENSITIVE: []
|
2708
|
+
end
|
2709
|
+
|
2356
2710
|
class GetClassifierRequest
|
2357
2711
|
attr_accessor name: ::String
|
2358
2712
|
SENSITIVE: []
|
@@ -2443,6 +2797,7 @@ module Aws::Glue
|
|
2443
2797
|
attr_accessor catalog_id: ::String
|
2444
2798
|
attr_accessor name: ::String
|
2445
2799
|
attr_accessor hide_password: bool
|
2800
|
+
attr_accessor apply_override_for_compute_environment: ("SPARK" | "ATHENA" | "PYTHON")
|
2446
2801
|
SENSITIVE: []
|
2447
2802
|
end
|
2448
2803
|
|
@@ -2453,7 +2808,8 @@ module Aws::Glue
|
|
2453
2808
|
|
2454
2809
|
class GetConnectionsFilter
|
2455
2810
|
attr_accessor match_criteria: ::Array[::String]
|
2456
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
|
2811
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
2812
|
+
attr_accessor connection_schema_version: ::Integer
|
2457
2813
|
SENSITIVE: []
|
2458
2814
|
end
|
2459
2815
|
|
@@ -2701,6 +3057,52 @@ module Aws::Glue
|
|
2701
3057
|
SENSITIVE: []
|
2702
3058
|
end
|
2703
3059
|
|
3060
|
+
class GetEntityRecordsRequest
|
3061
|
+
attr_accessor connection_name: ::String
|
3062
|
+
attr_accessor catalog_id: ::String
|
3063
|
+
attr_accessor entity_name: ::String
|
3064
|
+
attr_accessor next_token: ::String
|
3065
|
+
attr_accessor data_store_api_version: ::String
|
3066
|
+
attr_accessor connection_options: ::Hash[::String, ::String]
|
3067
|
+
attr_accessor filter_predicate: ::String
|
3068
|
+
attr_accessor limit: ::Integer
|
3069
|
+
attr_accessor order_by: ::String
|
3070
|
+
attr_accessor selected_fields: ::Array[::String]
|
3071
|
+
SENSITIVE: []
|
3072
|
+
end
|
3073
|
+
|
3074
|
+
class GetEntityRecordsResponse
|
3075
|
+
attr_accessor records: ::Array[untyped]
|
3076
|
+
attr_accessor next_token: ::String
|
3077
|
+
SENSITIVE: [:records]
|
3078
|
+
end
|
3079
|
+
|
3080
|
+
class GetIntegrationResourcePropertyRequest
|
3081
|
+
attr_accessor resource_arn: ::String
|
3082
|
+
SENSITIVE: []
|
3083
|
+
end
|
3084
|
+
|
3085
|
+
class GetIntegrationResourcePropertyResponse
|
3086
|
+
attr_accessor resource_arn: ::String
|
3087
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
3088
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
3089
|
+
SENSITIVE: []
|
3090
|
+
end
|
3091
|
+
|
3092
|
+
class GetIntegrationTablePropertiesRequest
|
3093
|
+
attr_accessor resource_arn: ::String
|
3094
|
+
attr_accessor table_name: ::String
|
3095
|
+
SENSITIVE: []
|
3096
|
+
end
|
3097
|
+
|
3098
|
+
class GetIntegrationTablePropertiesResponse
|
3099
|
+
attr_accessor resource_arn: ::String
|
3100
|
+
attr_accessor table_name: ::String
|
3101
|
+
attr_accessor source_table_config: Types::SourceTableConfig
|
3102
|
+
attr_accessor target_table_config: Types::TargetTableConfig
|
3103
|
+
SENSITIVE: []
|
3104
|
+
end
|
3105
|
+
|
2704
3106
|
class GetJobBookmarkRequest
|
2705
3107
|
attr_accessor job_name: ::String
|
2706
3108
|
attr_accessor run_id: ::String
|
@@ -3489,6 +3891,70 @@ module Aws::Glue
|
|
3489
3891
|
SENSITIVE: []
|
3490
3892
|
end
|
3491
3893
|
|
3894
|
+
class InboundIntegration
|
3895
|
+
attr_accessor source_arn: ::String
|
3896
|
+
attr_accessor target_arn: ::String
|
3897
|
+
attr_accessor integration_arn: ::String
|
3898
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
3899
|
+
attr_accessor create_time: ::Time
|
3900
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
3901
|
+
SENSITIVE: []
|
3902
|
+
end
|
3903
|
+
|
3904
|
+
class Integration
|
3905
|
+
attr_accessor source_arn: ::String
|
3906
|
+
attr_accessor target_arn: ::String
|
3907
|
+
attr_accessor description: ::String
|
3908
|
+
attr_accessor integration_name: ::String
|
3909
|
+
attr_accessor integration_arn: ::String
|
3910
|
+
attr_accessor kms_key_id: ::String
|
3911
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
3912
|
+
attr_accessor tags: ::Array[Types::Tag]
|
3913
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
3914
|
+
attr_accessor create_time: ::Time
|
3915
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
3916
|
+
attr_accessor data_filter: ::String
|
3917
|
+
SENSITIVE: []
|
3918
|
+
end
|
3919
|
+
|
3920
|
+
class IntegrationConflictOperationFault
|
3921
|
+
attr_accessor message: ::String
|
3922
|
+
SENSITIVE: []
|
3923
|
+
end
|
3924
|
+
|
3925
|
+
class IntegrationError
|
3926
|
+
attr_accessor error_code: ::String
|
3927
|
+
attr_accessor error_message: ::String
|
3928
|
+
SENSITIVE: []
|
3929
|
+
end
|
3930
|
+
|
3931
|
+
class IntegrationFilter
|
3932
|
+
attr_accessor name: ::String
|
3933
|
+
attr_accessor values: ::Array[::String]
|
3934
|
+
SENSITIVE: []
|
3935
|
+
end
|
3936
|
+
|
3937
|
+
class IntegrationNotFoundFault
|
3938
|
+
attr_accessor message: ::String
|
3939
|
+
SENSITIVE: []
|
3940
|
+
end
|
3941
|
+
|
3942
|
+
class IntegrationPartition
|
3943
|
+
attr_accessor field_name: ::String
|
3944
|
+
attr_accessor function_spec: ::String
|
3945
|
+
SENSITIVE: []
|
3946
|
+
end
|
3947
|
+
|
3948
|
+
class IntegrationQuotaExceededFault
|
3949
|
+
attr_accessor message: ::String
|
3950
|
+
SENSITIVE: []
|
3951
|
+
end
|
3952
|
+
|
3953
|
+
class InternalServerException
|
3954
|
+
attr_accessor message: ::String
|
3955
|
+
SENSITIVE: []
|
3956
|
+
end
|
3957
|
+
|
3492
3958
|
class InternalServiceException
|
3493
3959
|
attr_accessor message: ::String
|
3494
3960
|
SENSITIVE: []
|
@@ -3500,6 +3966,11 @@ module Aws::Glue
|
|
3500
3966
|
SENSITIVE: []
|
3501
3967
|
end
|
3502
3968
|
|
3969
|
+
class InvalidIntegrationStateFault
|
3970
|
+
attr_accessor message: ::String
|
3971
|
+
SENSITIVE: []
|
3972
|
+
end
|
3973
|
+
|
3503
3974
|
class InvalidStateException
|
3504
3975
|
attr_accessor message: ::String
|
3505
3976
|
SENSITIVE: []
|
@@ -3693,6 +4164,11 @@ module Aws::Glue
|
|
3693
4164
|
SENSITIVE: []
|
3694
4165
|
end
|
3695
4166
|
|
4167
|
+
class KMSKeyNotAccessibleFault
|
4168
|
+
attr_accessor message: ::String
|
4169
|
+
SENSITIVE: []
|
4170
|
+
end
|
4171
|
+
|
3696
4172
|
class KafkaStreamingSourceOptions
|
3697
4173
|
attr_accessor bootstrap_servers: ::String
|
3698
4174
|
attr_accessor security_protocol: ::String
|
@@ -3807,6 +4283,18 @@ module Aws::Glue
|
|
3807
4283
|
SENSITIVE: []
|
3808
4284
|
end
|
3809
4285
|
|
4286
|
+
class ListConnectionTypesRequest
|
4287
|
+
attr_accessor max_results: ::Integer
|
4288
|
+
attr_accessor next_token: ::String
|
4289
|
+
SENSITIVE: []
|
4290
|
+
end
|
4291
|
+
|
4292
|
+
class ListConnectionTypesResponse
|
4293
|
+
attr_accessor connection_types: ::Array[Types::ConnectionTypeBrief]
|
4294
|
+
attr_accessor next_token: ::String
|
4295
|
+
SENSITIVE: []
|
4296
|
+
end
|
4297
|
+
|
3810
4298
|
class ListCrawlersRequest
|
3811
4299
|
attr_accessor max_results: ::Integer
|
3812
4300
|
attr_accessor next_token: ::String
|
@@ -3943,6 +4431,21 @@ module Aws::Glue
|
|
3943
4431
|
SENSITIVE: []
|
3944
4432
|
end
|
3945
4433
|
|
4434
|
+
class ListEntitiesRequest
|
4435
|
+
attr_accessor connection_name: ::String
|
4436
|
+
attr_accessor catalog_id: ::String
|
4437
|
+
attr_accessor parent_entity_name: ::String
|
4438
|
+
attr_accessor next_token: ::String
|
4439
|
+
attr_accessor data_store_api_version: ::String
|
4440
|
+
SENSITIVE: []
|
4441
|
+
end
|
4442
|
+
|
4443
|
+
class ListEntitiesResponse
|
4444
|
+
attr_accessor entities: ::Array[Types::Entity]
|
4445
|
+
attr_accessor next_token: ::String
|
4446
|
+
SENSITIVE: []
|
4447
|
+
end
|
4448
|
+
|
3946
4449
|
class ListJobsRequest
|
3947
4450
|
attr_accessor next_token: ::String
|
3948
4451
|
attr_accessor max_results: ::Integer
|
@@ -4207,6 +4710,30 @@ module Aws::Glue
|
|
4207
4710
|
SENSITIVE: []
|
4208
4711
|
end
|
4209
4712
|
|
4713
|
+
class ModifyIntegrationRequest
|
4714
|
+
attr_accessor integration_identifier: ::String
|
4715
|
+
attr_accessor description: ::String
|
4716
|
+
attr_accessor data_filter: ::String
|
4717
|
+
attr_accessor integration_name: ::String
|
4718
|
+
SENSITIVE: []
|
4719
|
+
end
|
4720
|
+
|
4721
|
+
class ModifyIntegrationResponse
|
4722
|
+
attr_accessor source_arn: ::String
|
4723
|
+
attr_accessor target_arn: ::String
|
4724
|
+
attr_accessor integration_name: ::String
|
4725
|
+
attr_accessor description: ::String
|
4726
|
+
attr_accessor integration_arn: ::String
|
4727
|
+
attr_accessor kms_key_id: ::String
|
4728
|
+
attr_accessor additional_encryption_context: ::Hash[::String, ::String]
|
4729
|
+
attr_accessor tags: ::Array[Types::Tag]
|
4730
|
+
attr_accessor status: ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
4731
|
+
attr_accessor create_time: ::Time
|
4732
|
+
attr_accessor errors: ::Array[Types::IntegrationError]
|
4733
|
+
attr_accessor data_filter: ::String
|
4734
|
+
SENSITIVE: []
|
4735
|
+
end
|
4736
|
+
|
4210
4737
|
class MongoDBTarget
|
4211
4738
|
attr_accessor connection_name: ::String
|
4212
4739
|
attr_accessor path: ::String
|
@@ -4268,6 +4795,14 @@ module Aws::Glue
|
|
4268
4795
|
SENSITIVE: []
|
4269
4796
|
end
|
4270
4797
|
|
4798
|
+
class OAuth2Credentials
|
4799
|
+
attr_accessor user_managed_client_application_client_secret: ::String
|
4800
|
+
attr_accessor access_token: ::String
|
4801
|
+
attr_accessor refresh_token: ::String
|
4802
|
+
attr_accessor jwt_token: ::String
|
4803
|
+
SENSITIVE: [:user_managed_client_application_client_secret, :access_token, :refresh_token, :jwt_token]
|
4804
|
+
end
|
4805
|
+
|
4271
4806
|
class OAuth2Properties
|
4272
4807
|
attr_accessor o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")
|
4273
4808
|
attr_accessor o_auth_2_client_application: Types::OAuth2ClientApplication
|
@@ -4282,6 +4817,7 @@ module Aws::Glue
|
|
4282
4817
|
attr_accessor token_url: ::String
|
4283
4818
|
attr_accessor token_url_parameters_map: ::Hash[::String, ::String]
|
4284
4819
|
attr_accessor authorization_code_properties: Types::AuthorizationCodeProperties
|
4820
|
+
attr_accessor o_auth_2_credentials: Types::OAuth2Credentials
|
4285
4821
|
SENSITIVE: []
|
4286
4822
|
end
|
4287
4823
|
|
@@ -4454,6 +4990,17 @@ module Aws::Glue
|
|
4454
4990
|
SENSITIVE: []
|
4455
4991
|
end
|
4456
4992
|
|
4993
|
+
class Property
|
4994
|
+
attr_accessor name: ::String
|
4995
|
+
attr_accessor description: ::String
|
4996
|
+
attr_accessor required: bool
|
4997
|
+
attr_accessor default_value: ::String
|
4998
|
+
attr_accessor property_types: ::Array[("USER_INPUT" | "SECRET" | "READ_ONLY" | "UNUSED" | "SECRET_OR_USER_INPUT")]
|
4999
|
+
attr_accessor allowed_values: ::Array[Types::AllowedValue]
|
5000
|
+
attr_accessor data_operation_scopes: ::Array[("READ" | "WRITE")]
|
5001
|
+
SENSITIVE: []
|
5002
|
+
end
|
5003
|
+
|
4457
5004
|
class PropertyPredicate
|
4458
5005
|
attr_accessor key: ::String
|
4459
5006
|
attr_accessor value: ::String
|
@@ -4675,6 +5222,11 @@ module Aws::Glue
|
|
4675
5222
|
SENSITIVE: []
|
4676
5223
|
end
|
4677
5224
|
|
5225
|
+
class ResourceNotFoundException
|
5226
|
+
attr_accessor message: ::String
|
5227
|
+
SENSITIVE: []
|
5228
|
+
end
|
5229
|
+
|
4678
5230
|
class ResourceNotReadyException
|
4679
5231
|
attr_accessor message: ::String
|
4680
5232
|
SENSITIVE: []
|
@@ -5172,6 +5724,19 @@ module Aws::Glue
|
|
5172
5724
|
SENSITIVE: []
|
5173
5725
|
end
|
5174
5726
|
|
5727
|
+
class SourceProcessingProperties
|
5728
|
+
attr_accessor role_arn: ::String
|
5729
|
+
SENSITIVE: []
|
5730
|
+
end
|
5731
|
+
|
5732
|
+
class SourceTableConfig
|
5733
|
+
attr_accessor fields: ::Array[::String]
|
5734
|
+
attr_accessor filter_predicate: ::String
|
5735
|
+
attr_accessor primary_key: ::Array[::String]
|
5736
|
+
attr_accessor record_update_field: ::String
|
5737
|
+
SENSITIVE: []
|
5738
|
+
end
|
5739
|
+
|
5175
5740
|
class SparkConnectorSource
|
5176
5741
|
attr_accessor name: ::String
|
5177
5742
|
attr_accessor connection_name: ::String
|
@@ -5693,6 +6258,12 @@ module Aws::Glue
|
|
5693
6258
|
SENSITIVE: []
|
5694
6259
|
end
|
5695
6260
|
|
6261
|
+
class Tag
|
6262
|
+
attr_accessor key: ::String
|
6263
|
+
attr_accessor value: ::String
|
6264
|
+
SENSITIVE: []
|
6265
|
+
end
|
6266
|
+
|
5696
6267
|
class TagResourceRequest
|
5697
6268
|
attr_accessor resource_arn: ::String
|
5698
6269
|
attr_accessor tags_to_add: ::Hash[::String, ::String]
|
@@ -5702,6 +6273,31 @@ module Aws::Glue
|
|
5702
6273
|
class TagResourceResponse < Aws::EmptyStructure
|
5703
6274
|
end
|
5704
6275
|
|
6276
|
+
class TargetProcessingProperties
|
6277
|
+
attr_accessor role_arn: ::String
|
6278
|
+
attr_accessor kms_arn: ::String
|
6279
|
+
attr_accessor connection_name: ::String
|
6280
|
+
attr_accessor event_bus_arn: ::String
|
6281
|
+
SENSITIVE: []
|
6282
|
+
end
|
6283
|
+
|
6284
|
+
class TargetRedshiftCatalog
|
6285
|
+
attr_accessor catalog_arn: ::String
|
6286
|
+
SENSITIVE: []
|
6287
|
+
end
|
6288
|
+
|
6289
|
+
class TargetResourceNotFound
|
6290
|
+
attr_accessor message: ::String
|
6291
|
+
SENSITIVE: []
|
6292
|
+
end
|
6293
|
+
|
6294
|
+
class TargetTableConfig
|
6295
|
+
attr_accessor unnest_spec: ("TOPLEVEL" | "FULL" | "NOUNNEST")
|
6296
|
+
attr_accessor partition_spec: ::Array[Types::IntegrationPartition]
|
6297
|
+
attr_accessor target_table_name: ::String
|
6298
|
+
SENSITIVE: []
|
6299
|
+
end
|
6300
|
+
|
5705
6301
|
class TaskRun
|
5706
6302
|
attr_accessor transform_id: ::String
|
5707
6303
|
attr_accessor task_run_id: ::String
|
@@ -5740,14 +6336,15 @@ module Aws::Glue
|
|
5740
6336
|
end
|
5741
6337
|
|
5742
6338
|
class TestConnectionInput
|
5743
|
-
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
|
5744
|
-
attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "
|
6339
|
+
attr_accessor connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA" | "GOOGLEADS" | "GOOGLESHEETS" | "GOOGLEANALYTICS4" | "SERVICENOW" | "MARKETO" | "SAPODATA" | "ZENDESK" | "JIRACLOUD" | "NETSUITEERP" | "HUBSPOT" | "FACEBOOKADS" | "INSTAGRAMADS" | "ZOHOCRM" | "SALESFORCEPARDOT" | "SALESFORCEMARKETINGCLOUD" | "SLACK" | "STRIPE" | "INTERCOM" | "SNAPCHATADS")
|
6340
|
+
attr_accessor connection_properties: ::Hash[("HOST" | "PORT" | "USERNAME" | "PASSWORD" | "ENCRYPTED_PASSWORD" | "JDBC_DRIVER_JAR_URI" | "JDBC_DRIVER_CLASS_NAME" | "JDBC_ENGINE" | "JDBC_ENGINE_VERSION" | "CONFIG_FILES" | "INSTANCE_ID" | "JDBC_CONNECTION_URL" | "JDBC_ENFORCE_SSL" | "CUSTOM_JDBC_CERT" | "SKIP_CUSTOM_JDBC_CERT_VALIDATION" | "CUSTOM_JDBC_CERT_STRING" | "CONNECTION_URL" | "KAFKA_BOOTSTRAP_SERVERS" | "KAFKA_SSL_ENABLED" | "KAFKA_CUSTOM_CERT" | "KAFKA_SKIP_CUSTOM_CERT_VALIDATION" | "KAFKA_CLIENT_KEYSTORE" | "KAFKA_CLIENT_KEYSTORE_PASSWORD" | "KAFKA_CLIENT_KEY_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEYSTORE_PASSWORD" | "ENCRYPTED_KAFKA_CLIENT_KEY_PASSWORD" | "KAFKA_SASL_MECHANISM" | "KAFKA_SASL_PLAIN_USERNAME" | "KAFKA_SASL_PLAIN_PASSWORD" | "ENCRYPTED_KAFKA_SASL_PLAIN_PASSWORD" | "KAFKA_SASL_SCRAM_USERNAME" | "KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_SCRAM_SECRETS_ARN" | "ENCRYPTED_KAFKA_SASL_SCRAM_PASSWORD" | "KAFKA_SASL_GSSAPI_KEYTAB" | "KAFKA_SASL_GSSAPI_KRB5_CONF" | "KAFKA_SASL_GSSAPI_SERVICE" | "KAFKA_SASL_GSSAPI_PRINCIPAL" | "SECRET_ID" | "CONNECTOR_URL" | "CONNECTOR_TYPE" | "CONNECTOR_CLASS_NAME" | "ENDPOINT" | "ENDPOINT_TYPE" | "ROLE_ARN" | "REGION" | "WORKGROUP_NAME" | "CLUSTER_IDENTIFIER" | "DATABASE"), ::String]
|
5745
6341
|
attr_accessor authentication_configuration: Types::AuthenticationConfigurationInput
|
5746
6342
|
SENSITIVE: []
|
5747
6343
|
end
|
5748
6344
|
|
5749
6345
|
class TestConnectionRequest
|
5750
6346
|
attr_accessor connection_name: ::String
|
6347
|
+
attr_accessor catalog_id: ::String
|
5751
6348
|
attr_accessor test_connection_input: Types::TestConnectionInput
|
5752
6349
|
SENSITIVE: []
|
5753
6350
|
end
|
@@ -5878,6 +6475,15 @@ module Aws::Glue
|
|
5878
6475
|
SENSITIVE: []
|
5879
6476
|
end
|
5880
6477
|
|
6478
|
+
class UpdateCatalogRequest
|
6479
|
+
attr_accessor catalog_id: ::String
|
6480
|
+
attr_accessor catalog_input: Types::CatalogInput
|
6481
|
+
SENSITIVE: []
|
6482
|
+
end
|
6483
|
+
|
6484
|
+
class UpdateCatalogResponse < Aws::EmptyStructure
|
6485
|
+
end
|
6486
|
+
|
5881
6487
|
class UpdateClassifierRequest
|
5882
6488
|
attr_accessor grok_classifier: Types::UpdateGrokClassifierRequest
|
5883
6489
|
attr_accessor xml_classifier: Types::UpdateXMLClassifierRequest
|
@@ -6032,6 +6638,31 @@ module Aws::Glue
|
|
6032
6638
|
SENSITIVE: []
|
6033
6639
|
end
|
6034
6640
|
|
6641
|
+
class UpdateIntegrationResourcePropertyRequest
|
6642
|
+
attr_accessor resource_arn: ::String
|
6643
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
6644
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
6645
|
+
SENSITIVE: []
|
6646
|
+
end
|
6647
|
+
|
6648
|
+
class UpdateIntegrationResourcePropertyResponse
|
6649
|
+
attr_accessor resource_arn: ::String
|
6650
|
+
attr_accessor source_processing_properties: Types::SourceProcessingProperties
|
6651
|
+
attr_accessor target_processing_properties: Types::TargetProcessingProperties
|
6652
|
+
SENSITIVE: []
|
6653
|
+
end
|
6654
|
+
|
6655
|
+
class UpdateIntegrationTablePropertiesRequest
|
6656
|
+
attr_accessor resource_arn: ::String
|
6657
|
+
attr_accessor table_name: ::String
|
6658
|
+
attr_accessor source_table_config: Types::SourceTableConfig
|
6659
|
+
attr_accessor target_table_config: Types::TargetTableConfig
|
6660
|
+
SENSITIVE: []
|
6661
|
+
end
|
6662
|
+
|
6663
|
+
class UpdateIntegrationTablePropertiesResponse < Aws::EmptyStructure
|
6664
|
+
end
|
6665
|
+
|
6035
6666
|
class UpdateJobFromSourceControlRequest
|
6036
6667
|
attr_accessor job_name: ::String
|
6037
6668
|
attr_accessor provider: ("GITHUB" | "GITLAB" | "BITBUCKET" | "AWS_CODE_COMMIT")
|