aws-sdk-glue 1.203.0 → 1.204.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/client.rbs
CHANGED
@@ -484,6 +484,52 @@ module Aws
|
|
484
484
|
) -> _CreateBlueprintResponseSuccess
|
485
485
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateBlueprintResponseSuccess
|
486
486
|
|
487
|
+
interface _CreateCatalogResponseSuccess
|
488
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateCatalogResponse]
|
489
|
+
end
|
490
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#create_catalog-instance_method
|
491
|
+
def create_catalog: (
|
492
|
+
name: ::String,
|
493
|
+
catalog_input: {
|
494
|
+
description: ::String?,
|
495
|
+
federated_catalog: {
|
496
|
+
identifier: ::String?,
|
497
|
+
connection_name: ::String?
|
498
|
+
}?,
|
499
|
+
parameters: Hash[::String, ::String]?,
|
500
|
+
target_redshift_catalog: {
|
501
|
+
catalog_arn: ::String
|
502
|
+
}?,
|
503
|
+
catalog_properties: {
|
504
|
+
data_lake_access_properties: {
|
505
|
+
data_lake_access: bool?,
|
506
|
+
data_transfer_role: ::String?,
|
507
|
+
kms_key: ::String?,
|
508
|
+
catalog_type: ::String?
|
509
|
+
}?,
|
510
|
+
custom_properties: Hash[::String, ::String]?
|
511
|
+
}?,
|
512
|
+
create_table_default_permissions: Array[
|
513
|
+
{
|
514
|
+
principal: {
|
515
|
+
data_lake_principal_identifier: ::String?
|
516
|
+
}?,
|
517
|
+
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]?
|
518
|
+
},
|
519
|
+
]?,
|
520
|
+
create_database_default_permissions: Array[
|
521
|
+
{
|
522
|
+
principal: {
|
523
|
+
data_lake_principal_identifier: ::String?
|
524
|
+
}?,
|
525
|
+
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]?
|
526
|
+
},
|
527
|
+
]?
|
528
|
+
},
|
529
|
+
?tags: Hash[::String, ::String]
|
530
|
+
) -> _CreateCatalogResponseSuccess
|
531
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCatalogResponseSuccess
|
532
|
+
|
487
533
|
interface _CreateClassifierResponseSuccess
|
488
534
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateClassifierResponse]
|
489
535
|
end
|
@@ -546,17 +592,19 @@ module Aws
|
|
546
592
|
connection_input: {
|
547
593
|
name: ::String,
|
548
594
|
description: ::String?,
|
549
|
-
connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA"),
|
595
|
+
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"),
|
550
596
|
match_criteria: Array[::String]?,
|
551
|
-
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" | "
|
597
|
+
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],
|
598
|
+
spark_properties: Hash[::String, ::String]?,
|
552
599
|
athena_properties: Hash[::String, ::String]?,
|
600
|
+
python_properties: Hash[::String, ::String]?,
|
553
601
|
physical_connection_requirements: {
|
554
602
|
subnet_id: ::String?,
|
555
603
|
security_group_id_list: Array[::String]?,
|
556
604
|
availability_zone: ::String?
|
557
605
|
}?,
|
558
606
|
authentication_configuration: {
|
559
|
-
authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
|
607
|
+
authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")?,
|
560
608
|
o_auth_2_properties: {
|
561
609
|
o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
|
562
610
|
o_auth_2_client_application: {
|
@@ -568,11 +616,24 @@ module Aws
|
|
568
616
|
authorization_code_properties: {
|
569
617
|
authorization_code: ::String?,
|
570
618
|
redirect_uri: ::String?
|
619
|
+
}?,
|
620
|
+
o_auth_2_credentials: {
|
621
|
+
user_managed_client_application_client_secret: ::String?,
|
622
|
+
access_token: ::String?,
|
623
|
+
refresh_token: ::String?,
|
624
|
+
jwt_token: ::String?
|
571
625
|
}?
|
572
626
|
}?,
|
573
|
-
secret_arn: ::String
|
627
|
+
secret_arn: ::String?,
|
628
|
+
kms_key_arn: ::String?,
|
629
|
+
basic_authentication_credentials: {
|
630
|
+
username: ::String?,
|
631
|
+
password: ::String?
|
632
|
+
}?,
|
633
|
+
custom_authentication_credentials: Hash[::String, ::String]?
|
574
634
|
}?,
|
575
|
-
validate_credentials: bool
|
635
|
+
validate_credentials: bool?,
|
636
|
+
validate_for_compute_environments: Array[("SPARK" | "ATHENA" | "PYTHON")]?
|
576
637
|
},
|
577
638
|
?tags: Hash[::String, ::String]
|
578
639
|
) -> _CreateConnectionResponseSuccess
|
@@ -785,6 +846,86 @@ module Aws
|
|
785
846
|
) -> _CreateDevEndpointResponseSuccess
|
786
847
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDevEndpointResponseSuccess
|
787
848
|
|
849
|
+
interface _CreateIntegrationResponseSuccess
|
850
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntegrationResponse]
|
851
|
+
def source_arn: () -> ::String
|
852
|
+
def target_arn: () -> ::String
|
853
|
+
def integration_name: () -> ::String
|
854
|
+
def description: () -> ::String
|
855
|
+
def integration_arn: () -> ::String
|
856
|
+
def kms_key_id: () -> ::String
|
857
|
+
def additional_encryption_context: () -> ::Hash[::String, ::String]
|
858
|
+
def tags: () -> ::Array[Types::Tag]
|
859
|
+
def status: () -> ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
860
|
+
def create_time: () -> ::Time
|
861
|
+
def errors: () -> ::Array[Types::IntegrationError]
|
862
|
+
def data_filter: () -> ::String
|
863
|
+
end
|
864
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#create_integration-instance_method
|
865
|
+
def create_integration: (
|
866
|
+
integration_name: ::String,
|
867
|
+
source_arn: ::String,
|
868
|
+
target_arn: ::String,
|
869
|
+
?description: ::String,
|
870
|
+
?data_filter: ::String,
|
871
|
+
?kms_key_id: ::String,
|
872
|
+
?additional_encryption_context: Hash[::String, ::String],
|
873
|
+
?tags: Array[
|
874
|
+
{
|
875
|
+
key: ::String?,
|
876
|
+
value: ::String?
|
877
|
+
},
|
878
|
+
]
|
879
|
+
) -> _CreateIntegrationResponseSuccess
|
880
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResponseSuccess
|
881
|
+
|
882
|
+
interface _CreateIntegrationResourcePropertyResponseSuccess
|
883
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntegrationResourcePropertyResponse]
|
884
|
+
def resource_arn: () -> ::String
|
885
|
+
def source_processing_properties: () -> Types::SourceProcessingProperties
|
886
|
+
def target_processing_properties: () -> Types::TargetProcessingProperties
|
887
|
+
end
|
888
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#create_integration_resource_property-instance_method
|
889
|
+
def create_integration_resource_property: (
|
890
|
+
resource_arn: ::String,
|
891
|
+
?source_processing_properties: {
|
892
|
+
role_arn: ::String?
|
893
|
+
},
|
894
|
+
?target_processing_properties: {
|
895
|
+
role_arn: ::String?,
|
896
|
+
kms_arn: ::String?,
|
897
|
+
connection_name: ::String?,
|
898
|
+
event_bus_arn: ::String?
|
899
|
+
}
|
900
|
+
) -> _CreateIntegrationResourcePropertyResponseSuccess
|
901
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationResourcePropertyResponseSuccess
|
902
|
+
|
903
|
+
interface _CreateIntegrationTablePropertiesResponseSuccess
|
904
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateIntegrationTablePropertiesResponse]
|
905
|
+
end
|
906
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#create_integration_table_properties-instance_method
|
907
|
+
def create_integration_table_properties: (
|
908
|
+
resource_arn: ::String,
|
909
|
+
table_name: ::String,
|
910
|
+
?source_table_config: {
|
911
|
+
fields: Array[::String]?,
|
912
|
+
filter_predicate: ::String?,
|
913
|
+
primary_key: Array[::String]?,
|
914
|
+
record_update_field: ::String?
|
915
|
+
},
|
916
|
+
?target_table_config: {
|
917
|
+
unnest_spec: ("TOPLEVEL" | "FULL" | "NOUNNEST")?,
|
918
|
+
partition_spec: Array[
|
919
|
+
{
|
920
|
+
field_name: ::String?,
|
921
|
+
function_spec: ::String?
|
922
|
+
},
|
923
|
+
]?,
|
924
|
+
target_table_name: ::String?
|
925
|
+
}
|
926
|
+
) -> _CreateIntegrationTablePropertiesResponseSuccess
|
927
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateIntegrationTablePropertiesResponseSuccess
|
928
|
+
|
788
929
|
interface _CreateJobResponseSuccess
|
789
930
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateJobResponse]
|
790
931
|
def name: () -> ::String
|
@@ -2549,6 +2690,15 @@ module Aws
|
|
2549
2690
|
) -> _DeleteBlueprintResponseSuccess
|
2550
2691
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBlueprintResponseSuccess
|
2551
2692
|
|
2693
|
+
interface _DeleteCatalogResponseSuccess
|
2694
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteCatalogResponse]
|
2695
|
+
end
|
2696
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#delete_catalog-instance_method
|
2697
|
+
def delete_catalog: (
|
2698
|
+
catalog_id: ::String
|
2699
|
+
) -> _DeleteCatalogResponseSuccess
|
2700
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCatalogResponseSuccess
|
2701
|
+
|
2552
2702
|
interface _DeleteClassifierResponseSuccess
|
2553
2703
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteClassifierResponse]
|
2554
2704
|
end
|
@@ -2650,6 +2800,37 @@ module Aws
|
|
2650
2800
|
) -> _DeleteDevEndpointResponseSuccess
|
2651
2801
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteDevEndpointResponseSuccess
|
2652
2802
|
|
2803
|
+
interface _DeleteIntegrationResponseSuccess
|
2804
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationResponse]
|
2805
|
+
def source_arn: () -> ::String
|
2806
|
+
def target_arn: () -> ::String
|
2807
|
+
def integration_name: () -> ::String
|
2808
|
+
def description: () -> ::String
|
2809
|
+
def integration_arn: () -> ::String
|
2810
|
+
def kms_key_id: () -> ::String
|
2811
|
+
def additional_encryption_context: () -> ::Hash[::String, ::String]
|
2812
|
+
def tags: () -> ::Array[Types::Tag]
|
2813
|
+
def status: () -> ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
2814
|
+
def create_time: () -> ::Time
|
2815
|
+
def errors: () -> ::Array[Types::IntegrationError]
|
2816
|
+
def data_filter: () -> ::String
|
2817
|
+
end
|
2818
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#delete_integration-instance_method
|
2819
|
+
def delete_integration: (
|
2820
|
+
integration_identifier: ::String
|
2821
|
+
) -> _DeleteIntegrationResponseSuccess
|
2822
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIntegrationResponseSuccess
|
2823
|
+
|
2824
|
+
interface _DeleteIntegrationTablePropertiesResponseSuccess
|
2825
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteIntegrationTablePropertiesResponse]
|
2826
|
+
end
|
2827
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#delete_integration_table_properties-instance_method
|
2828
|
+
def delete_integration_table_properties: (
|
2829
|
+
resource_arn: ::String,
|
2830
|
+
table_name: ::String
|
2831
|
+
) -> _DeleteIntegrationTablePropertiesResponseSuccess
|
2832
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteIntegrationTablePropertiesResponseSuccess
|
2833
|
+
|
2653
2834
|
interface _DeleteJobResponseSuccess
|
2654
2835
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteJobResponse]
|
2655
2836
|
def job_name: () -> ::String
|
@@ -2846,6 +3027,74 @@ module Aws
|
|
2846
3027
|
) -> _DeleteWorkflowResponseSuccess
|
2847
3028
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteWorkflowResponseSuccess
|
2848
3029
|
|
3030
|
+
interface _DescribeConnectionTypeResponseSuccess
|
3031
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeConnectionTypeResponse]
|
3032
|
+
def connection_type: () -> ::String
|
3033
|
+
def description: () -> ::String
|
3034
|
+
def capabilities: () -> Types::Capabilities
|
3035
|
+
def connection_properties: () -> ::Hash[::String, Types::Property]
|
3036
|
+
def connection_options: () -> ::Hash[::String, Types::Property]
|
3037
|
+
def authentication_configuration: () -> Types::AuthConfiguration
|
3038
|
+
def compute_environment_configurations: () -> ::Hash[::String, Types::ComputeEnvironmentConfiguration]
|
3039
|
+
def physical_connection_requirements: () -> ::Hash[::String, Types::Property]
|
3040
|
+
def athena_connection_properties: () -> ::Hash[::String, Types::Property]
|
3041
|
+
def python_connection_properties: () -> ::Hash[::String, Types::Property]
|
3042
|
+
def spark_connection_properties: () -> ::Hash[::String, Types::Property]
|
3043
|
+
end
|
3044
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#describe_connection_type-instance_method
|
3045
|
+
def describe_connection_type: (
|
3046
|
+
connection_type: ::String
|
3047
|
+
) -> _DescribeConnectionTypeResponseSuccess
|
3048
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeConnectionTypeResponseSuccess
|
3049
|
+
|
3050
|
+
interface _DescribeEntityResponseSuccess
|
3051
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEntityResponse]
|
3052
|
+
def fields: () -> ::Array[Types::Field]
|
3053
|
+
def next_token: () -> ::String
|
3054
|
+
end
|
3055
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#describe_entity-instance_method
|
3056
|
+
def describe_entity: (
|
3057
|
+
connection_name: ::String,
|
3058
|
+
?catalog_id: ::String,
|
3059
|
+
entity_name: ::String,
|
3060
|
+
?next_token: ::String,
|
3061
|
+
?data_store_api_version: ::String
|
3062
|
+
) -> _DescribeEntityResponseSuccess
|
3063
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeEntityResponseSuccess
|
3064
|
+
|
3065
|
+
interface _DescribeInboundIntegrationsResponseSuccess
|
3066
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInboundIntegrationsResponse]
|
3067
|
+
def inbound_integrations: () -> ::Array[Types::InboundIntegration]
|
3068
|
+
def marker: () -> ::String
|
3069
|
+
end
|
3070
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#describe_inbound_integrations-instance_method
|
3071
|
+
def describe_inbound_integrations: (
|
3072
|
+
?integration_arn: ::String,
|
3073
|
+
?marker: ::String,
|
3074
|
+
?max_records: ::Integer,
|
3075
|
+
?target_arn: ::String
|
3076
|
+
) -> _DescribeInboundIntegrationsResponseSuccess
|
3077
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInboundIntegrationsResponseSuccess
|
3078
|
+
|
3079
|
+
interface _DescribeIntegrationsResponseSuccess
|
3080
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeIntegrationsResponse]
|
3081
|
+
def integrations: () -> ::Array[Types::Integration]
|
3082
|
+
def marker: () -> ::String
|
3083
|
+
end
|
3084
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#describe_integrations-instance_method
|
3085
|
+
def describe_integrations: (
|
3086
|
+
?integration_identifier: ::String,
|
3087
|
+
?marker: ::String,
|
3088
|
+
?max_records: ::Integer,
|
3089
|
+
?filters: Array[
|
3090
|
+
{
|
3091
|
+
name: ::String?,
|
3092
|
+
values: Array[::String]?
|
3093
|
+
},
|
3094
|
+
]
|
3095
|
+
) -> _DescribeIntegrationsResponseSuccess
|
3096
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeIntegrationsResponseSuccess
|
3097
|
+
|
2849
3098
|
interface _GetBlueprintResponseSuccess
|
2850
3099
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetBlueprintResponse]
|
2851
3100
|
def blueprint: () -> Types::Blueprint
|
@@ -2882,6 +3131,16 @@ module Aws
|
|
2882
3131
|
) -> _GetBlueprintRunsResponseSuccess
|
2883
3132
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBlueprintRunsResponseSuccess
|
2884
3133
|
|
3134
|
+
interface _GetCatalogResponseSuccess
|
3135
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCatalogResponse]
|
3136
|
+
def catalog: () -> Types::Catalog
|
3137
|
+
end
|
3138
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_catalog-instance_method
|
3139
|
+
def get_catalog: (
|
3140
|
+
catalog_id: ::String
|
3141
|
+
) -> _GetCatalogResponseSuccess
|
3142
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCatalogResponseSuccess
|
3143
|
+
|
2885
3144
|
interface _GetCatalogImportStatusResponseSuccess
|
2886
3145
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetCatalogImportStatusResponse]
|
2887
3146
|
def import_status: () -> Types::CatalogImportStatus
|
@@ -2892,6 +3151,20 @@ module Aws
|
|
2892
3151
|
) -> _GetCatalogImportStatusResponseSuccess
|
2893
3152
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCatalogImportStatusResponseSuccess
|
2894
3153
|
|
3154
|
+
interface _GetCatalogsResponseSuccess
|
3155
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCatalogsResponse]
|
3156
|
+
def catalog_list: () -> ::Array[Types::Catalog]
|
3157
|
+
def next_token: () -> ::String
|
3158
|
+
end
|
3159
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_catalogs-instance_method
|
3160
|
+
def get_catalogs: (
|
3161
|
+
?parent_catalog_id: ::String,
|
3162
|
+
?next_token: ::String,
|
3163
|
+
?max_results: ::Integer,
|
3164
|
+
?recursive: bool
|
3165
|
+
) -> _GetCatalogsResponseSuccess
|
3166
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCatalogsResponseSuccess
|
3167
|
+
|
2895
3168
|
interface _GetClassifierResponseSuccess
|
2896
3169
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetClassifierResponse]
|
2897
3170
|
def classifier: () -> Types::Classifier
|
@@ -2986,7 +3259,8 @@ module Aws
|
|
2986
3259
|
def get_connection: (
|
2987
3260
|
?catalog_id: ::String,
|
2988
3261
|
name: ::String,
|
2989
|
-
?hide_password: bool
|
3262
|
+
?hide_password: bool,
|
3263
|
+
?apply_override_for_compute_environment: ("SPARK" | "ATHENA" | "PYTHON")
|
2990
3264
|
) -> _GetConnectionResponseSuccess
|
2991
3265
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConnectionResponseSuccess
|
2992
3266
|
|
@@ -3000,7 +3274,8 @@ module Aws
|
|
3000
3274
|
?catalog_id: ::String,
|
3001
3275
|
?filter: {
|
3002
3276
|
match_criteria: Array[::String]?,
|
3003
|
-
connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA")
|
3277
|
+
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")?,
|
3278
|
+
connection_schema_version: ::Integer?
|
3004
3279
|
},
|
3005
3280
|
?hide_password: bool,
|
3006
3281
|
?next_token: ::String,
|
@@ -3237,6 +3512,52 @@ module Aws
|
|
3237
3512
|
) -> _GetDevEndpointsResponseSuccess
|
3238
3513
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetDevEndpointsResponseSuccess
|
3239
3514
|
|
3515
|
+
interface _GetEntityRecordsResponseSuccess
|
3516
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEntityRecordsResponse]
|
3517
|
+
def records: () -> ::Array[untyped]
|
3518
|
+
def next_token: () -> ::String
|
3519
|
+
end
|
3520
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_entity_records-instance_method
|
3521
|
+
def get_entity_records: (
|
3522
|
+
?connection_name: ::String,
|
3523
|
+
?catalog_id: ::String,
|
3524
|
+
entity_name: ::String,
|
3525
|
+
?next_token: ::String,
|
3526
|
+
?data_store_api_version: ::String,
|
3527
|
+
?connection_options: Hash[::String, ::String],
|
3528
|
+
?filter_predicate: ::String,
|
3529
|
+
limit: ::Integer,
|
3530
|
+
?order_by: ::String,
|
3531
|
+
?selected_fields: Array[::String]
|
3532
|
+
) -> _GetEntityRecordsResponseSuccess
|
3533
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEntityRecordsResponseSuccess
|
3534
|
+
|
3535
|
+
interface _GetIntegrationResourcePropertyResponseSuccess
|
3536
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIntegrationResourcePropertyResponse]
|
3537
|
+
def resource_arn: () -> ::String
|
3538
|
+
def source_processing_properties: () -> Types::SourceProcessingProperties
|
3539
|
+
def target_processing_properties: () -> Types::TargetProcessingProperties
|
3540
|
+
end
|
3541
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_integration_resource_property-instance_method
|
3542
|
+
def get_integration_resource_property: (
|
3543
|
+
resource_arn: ::String
|
3544
|
+
) -> _GetIntegrationResourcePropertyResponseSuccess
|
3545
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIntegrationResourcePropertyResponseSuccess
|
3546
|
+
|
3547
|
+
interface _GetIntegrationTablePropertiesResponseSuccess
|
3548
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetIntegrationTablePropertiesResponse]
|
3549
|
+
def resource_arn: () -> ::String
|
3550
|
+
def table_name: () -> ::String
|
3551
|
+
def source_table_config: () -> Types::SourceTableConfig
|
3552
|
+
def target_table_config: () -> Types::TargetTableConfig
|
3553
|
+
end
|
3554
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#get_integration_table_properties-instance_method
|
3555
|
+
def get_integration_table_properties: (
|
3556
|
+
resource_arn: ::String,
|
3557
|
+
table_name: ::String
|
3558
|
+
) -> _GetIntegrationTablePropertiesResponseSuccess
|
3559
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetIntegrationTablePropertiesResponseSuccess
|
3560
|
+
|
3240
3561
|
interface _GetJobResponseSuccess
|
3241
3562
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetJobResponse]
|
3242
3563
|
def job: () -> Types::Job
|
@@ -4065,6 +4386,18 @@ module Aws
|
|
4065
4386
|
) -> _ListColumnStatisticsTaskRunsResponseSuccess
|
4066
4387
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListColumnStatisticsTaskRunsResponseSuccess
|
4067
4388
|
|
4389
|
+
interface _ListConnectionTypesResponseSuccess
|
4390
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListConnectionTypesResponse]
|
4391
|
+
def connection_types: () -> ::Array[Types::ConnectionTypeBrief]
|
4392
|
+
def next_token: () -> ::String
|
4393
|
+
end
|
4394
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#list_connection_types-instance_method
|
4395
|
+
def list_connection_types: (
|
4396
|
+
?max_results: ::Integer,
|
4397
|
+
?next_token: ::String
|
4398
|
+
) -> _ListConnectionTypesResponseSuccess
|
4399
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConnectionTypesResponseSuccess
|
4400
|
+
|
4068
4401
|
interface _ListCrawlersResponseSuccess
|
4069
4402
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListCrawlersResponse]
|
4070
4403
|
def crawler_names: () -> ::Array[::String]
|
@@ -4263,6 +4596,21 @@ module Aws
|
|
4263
4596
|
) -> _ListDevEndpointsResponseSuccess
|
4264
4597
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDevEndpointsResponseSuccess
|
4265
4598
|
|
4599
|
+
interface _ListEntitiesResponseSuccess
|
4600
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListEntitiesResponse]
|
4601
|
+
def entities: () -> ::Array[Types::Entity]
|
4602
|
+
def next_token: () -> ::String
|
4603
|
+
end
|
4604
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#list_entities-instance_method
|
4605
|
+
def list_entities: (
|
4606
|
+
?connection_name: ::String,
|
4607
|
+
?catalog_id: ::String,
|
4608
|
+
?parent_entity_name: ::String,
|
4609
|
+
?next_token: ::String,
|
4610
|
+
?data_store_api_version: ::String
|
4611
|
+
) -> _ListEntitiesResponseSuccess
|
4612
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListEntitiesResponseSuccess
|
4613
|
+
|
4266
4614
|
interface _ListJobsResponseSuccess
|
4267
4615
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsResponse]
|
4268
4616
|
def job_names: () -> ::Array[::String]
|
@@ -4439,6 +4787,30 @@ module Aws
|
|
4439
4787
|
) -> _ListWorkflowsResponseSuccess
|
4440
4788
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListWorkflowsResponseSuccess
|
4441
4789
|
|
4790
|
+
interface _ModifyIntegrationResponseSuccess
|
4791
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ModifyIntegrationResponse]
|
4792
|
+
def source_arn: () -> ::String
|
4793
|
+
def target_arn: () -> ::String
|
4794
|
+
def integration_name: () -> ::String
|
4795
|
+
def description: () -> ::String
|
4796
|
+
def integration_arn: () -> ::String
|
4797
|
+
def kms_key_id: () -> ::String
|
4798
|
+
def additional_encryption_context: () -> ::Hash[::String, ::String]
|
4799
|
+
def tags: () -> ::Array[Types::Tag]
|
4800
|
+
def status: () -> ("CREATING" | "ACTIVE" | "MODIFYING" | "FAILED" | "DELETING" | "SYNCING" | "NEEDS_ATTENTION")
|
4801
|
+
def create_time: () -> ::Time
|
4802
|
+
def errors: () -> ::Array[Types::IntegrationError]
|
4803
|
+
def data_filter: () -> ::String
|
4804
|
+
end
|
4805
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#modify_integration-instance_method
|
4806
|
+
def modify_integration: (
|
4807
|
+
integration_identifier: ::String,
|
4808
|
+
?description: ::String,
|
4809
|
+
?data_filter: ::String,
|
4810
|
+
?integration_name: ::String
|
4811
|
+
) -> _ModifyIntegrationResponseSuccess
|
4812
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ModifyIntegrationResponseSuccess
|
4813
|
+
|
4442
4814
|
interface _PutDataCatalogEncryptionSettingsResponseSuccess
|
4443
4815
|
include ::Seahorse::Client::_ResponseSuccess[Types::PutDataCatalogEncryptionSettingsResponse]
|
4444
4816
|
end
|
@@ -4955,11 +5327,12 @@ module Aws
|
|
4955
5327
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#test_connection-instance_method
|
4956
5328
|
def test_connection: (
|
4957
5329
|
?connection_name: ::String,
|
5330
|
+
?catalog_id: ::String,
|
4958
5331
|
?test_connection_input: {
|
4959
|
-
connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA"),
|
4960
|
-
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" | "
|
5332
|
+
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"),
|
5333
|
+
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],
|
4961
5334
|
authentication_configuration: {
|
4962
|
-
authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
|
5335
|
+
authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")?,
|
4963
5336
|
o_auth_2_properties: {
|
4964
5337
|
o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
|
4965
5338
|
o_auth_2_client_application: {
|
@@ -4971,9 +5344,21 @@ module Aws
|
|
4971
5344
|
authorization_code_properties: {
|
4972
5345
|
authorization_code: ::String?,
|
4973
5346
|
redirect_uri: ::String?
|
5347
|
+
}?,
|
5348
|
+
o_auth_2_credentials: {
|
5349
|
+
user_managed_client_application_client_secret: ::String?,
|
5350
|
+
access_token: ::String?,
|
5351
|
+
refresh_token: ::String?,
|
5352
|
+
jwt_token: ::String?
|
4974
5353
|
}?
|
4975
5354
|
}?,
|
4976
|
-
secret_arn: ::String
|
5355
|
+
secret_arn: ::String?,
|
5356
|
+
kms_key_arn: ::String?,
|
5357
|
+
basic_authentication_credentials: {
|
5358
|
+
username: ::String?,
|
5359
|
+
password: ::String?
|
5360
|
+
}?,
|
5361
|
+
custom_authentication_credentials: Hash[::String, ::String]?
|
4977
5362
|
}?
|
4978
5363
|
}
|
4979
5364
|
) -> _TestConnectionResponseSuccess
|
@@ -5001,6 +5386,51 @@ module Aws
|
|
5001
5386
|
) -> _UpdateBlueprintResponseSuccess
|
5002
5387
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBlueprintResponseSuccess
|
5003
5388
|
|
5389
|
+
interface _UpdateCatalogResponseSuccess
|
5390
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCatalogResponse]
|
5391
|
+
end
|
5392
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#update_catalog-instance_method
|
5393
|
+
def update_catalog: (
|
5394
|
+
catalog_id: ::String,
|
5395
|
+
catalog_input: {
|
5396
|
+
description: ::String?,
|
5397
|
+
federated_catalog: {
|
5398
|
+
identifier: ::String?,
|
5399
|
+
connection_name: ::String?
|
5400
|
+
}?,
|
5401
|
+
parameters: Hash[::String, ::String]?,
|
5402
|
+
target_redshift_catalog: {
|
5403
|
+
catalog_arn: ::String
|
5404
|
+
}?,
|
5405
|
+
catalog_properties: {
|
5406
|
+
data_lake_access_properties: {
|
5407
|
+
data_lake_access: bool?,
|
5408
|
+
data_transfer_role: ::String?,
|
5409
|
+
kms_key: ::String?,
|
5410
|
+
catalog_type: ::String?
|
5411
|
+
}?,
|
5412
|
+
custom_properties: Hash[::String, ::String]?
|
5413
|
+
}?,
|
5414
|
+
create_table_default_permissions: Array[
|
5415
|
+
{
|
5416
|
+
principal: {
|
5417
|
+
data_lake_principal_identifier: ::String?
|
5418
|
+
}?,
|
5419
|
+
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]?
|
5420
|
+
},
|
5421
|
+
]?,
|
5422
|
+
create_database_default_permissions: Array[
|
5423
|
+
{
|
5424
|
+
principal: {
|
5425
|
+
data_lake_principal_identifier: ::String?
|
5426
|
+
}?,
|
5427
|
+
permissions: Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS")]?
|
5428
|
+
},
|
5429
|
+
]?
|
5430
|
+
}
|
5431
|
+
) -> _UpdateCatalogResponseSuccess
|
5432
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCatalogResponseSuccess
|
5433
|
+
|
5004
5434
|
interface _UpdateClassifierResponseSuccess
|
5005
5435
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateClassifierResponse]
|
5006
5436
|
end
|
@@ -5199,17 +5629,19 @@ module Aws
|
|
5199
5629
|
connection_input: {
|
5200
5630
|
name: ::String,
|
5201
5631
|
description: ::String?,
|
5202
|
-
connection_type: ("JDBC" | "SFTP" | "MONGODB" | "KAFKA" | "NETWORK" | "MARKETPLACE" | "CUSTOM" | "SALESFORCE" | "VIEW_VALIDATION_REDSHIFT" | "VIEW_VALIDATION_ATHENA"),
|
5632
|
+
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"),
|
5203
5633
|
match_criteria: Array[::String]?,
|
5204
|
-
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" | "
|
5634
|
+
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],
|
5635
|
+
spark_properties: Hash[::String, ::String]?,
|
5205
5636
|
athena_properties: Hash[::String, ::String]?,
|
5637
|
+
python_properties: Hash[::String, ::String]?,
|
5206
5638
|
physical_connection_requirements: {
|
5207
5639
|
subnet_id: ::String?,
|
5208
5640
|
security_group_id_list: Array[::String]?,
|
5209
5641
|
availability_zone: ::String?
|
5210
5642
|
}?,
|
5211
5643
|
authentication_configuration: {
|
5212
|
-
authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM")?,
|
5644
|
+
authentication_type: ("BASIC" | "OAUTH2" | "CUSTOM" | "IAM")?,
|
5213
5645
|
o_auth_2_properties: {
|
5214
5646
|
o_auth_2_grant_type: ("AUTHORIZATION_CODE" | "CLIENT_CREDENTIALS" | "JWT_BEARER")?,
|
5215
5647
|
o_auth_2_client_application: {
|
@@ -5221,11 +5653,24 @@ module Aws
|
|
5221
5653
|
authorization_code_properties: {
|
5222
5654
|
authorization_code: ::String?,
|
5223
5655
|
redirect_uri: ::String?
|
5656
|
+
}?,
|
5657
|
+
o_auth_2_credentials: {
|
5658
|
+
user_managed_client_application_client_secret: ::String?,
|
5659
|
+
access_token: ::String?,
|
5660
|
+
refresh_token: ::String?,
|
5661
|
+
jwt_token: ::String?
|
5224
5662
|
}?
|
5225
5663
|
}?,
|
5226
|
-
secret_arn: ::String
|
5664
|
+
secret_arn: ::String?,
|
5665
|
+
kms_key_arn: ::String?,
|
5666
|
+
basic_authentication_credentials: {
|
5667
|
+
username: ::String?,
|
5668
|
+
password: ::String?
|
5669
|
+
}?,
|
5670
|
+
custom_authentication_credentials: Hash[::String, ::String]?
|
5227
5671
|
}?,
|
5228
|
-
validate_credentials: bool
|
5672
|
+
validate_credentials: bool?,
|
5673
|
+
validate_for_compute_environments: Array[("SPARK" | "ATHENA" | "PYTHON")]?
|
5229
5674
|
}
|
5230
5675
|
) -> _UpdateConnectionResponseSuccess
|
5231
5676
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionResponseSuccess
|
@@ -5404,6 +5849,53 @@ module Aws
|
|
5404
5849
|
) -> _UpdateDevEndpointResponseSuccess
|
5405
5850
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDevEndpointResponseSuccess
|
5406
5851
|
|
5852
|
+
interface _UpdateIntegrationResourcePropertyResponseSuccess
|
5853
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIntegrationResourcePropertyResponse]
|
5854
|
+
def resource_arn: () -> ::String
|
5855
|
+
def source_processing_properties: () -> Types::SourceProcessingProperties
|
5856
|
+
def target_processing_properties: () -> Types::TargetProcessingProperties
|
5857
|
+
end
|
5858
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#update_integration_resource_property-instance_method
|
5859
|
+
def update_integration_resource_property: (
|
5860
|
+
resource_arn: ::String,
|
5861
|
+
?source_processing_properties: {
|
5862
|
+
role_arn: ::String?
|
5863
|
+
},
|
5864
|
+
?target_processing_properties: {
|
5865
|
+
role_arn: ::String?,
|
5866
|
+
kms_arn: ::String?,
|
5867
|
+
connection_name: ::String?,
|
5868
|
+
event_bus_arn: ::String?
|
5869
|
+
}
|
5870
|
+
) -> _UpdateIntegrationResourcePropertyResponseSuccess
|
5871
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIntegrationResourcePropertyResponseSuccess
|
5872
|
+
|
5873
|
+
interface _UpdateIntegrationTablePropertiesResponseSuccess
|
5874
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateIntegrationTablePropertiesResponse]
|
5875
|
+
end
|
5876
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Glue/Client.html#update_integration_table_properties-instance_method
|
5877
|
+
def update_integration_table_properties: (
|
5878
|
+
resource_arn: ::String,
|
5879
|
+
table_name: ::String,
|
5880
|
+
?source_table_config: {
|
5881
|
+
fields: Array[::String]?,
|
5882
|
+
filter_predicate: ::String?,
|
5883
|
+
primary_key: Array[::String]?,
|
5884
|
+
record_update_field: ::String?
|
5885
|
+
},
|
5886
|
+
?target_table_config: {
|
5887
|
+
unnest_spec: ("TOPLEVEL" | "FULL" | "NOUNNEST")?,
|
5888
|
+
partition_spec: Array[
|
5889
|
+
{
|
5890
|
+
field_name: ::String?,
|
5891
|
+
function_spec: ::String?
|
5892
|
+
},
|
5893
|
+
]?,
|
5894
|
+
target_table_name: ::String?
|
5895
|
+
}
|
5896
|
+
) -> _UpdateIntegrationTablePropertiesResponseSuccess
|
5897
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateIntegrationTablePropertiesResponseSuccess
|
5898
|
+
|
5407
5899
|
interface _UpdateJobResponseSuccess
|
5408
5900
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateJobResponse]
|
5409
5901
|
def job_name: () -> ::String
|