René's URL Explorer Experiment


Title: [FEATURE] AWS Cloud Control Simplification · Issue #415 · stackql/stackql · GitHub

Open Graph Title: [FEATURE] AWS Cloud Control Simplification · Issue #415 · stackql/stackql

X Title: [FEATURE] AWS Cloud Control Simplification · Issue #415 · stackql/stackql

Description: Feature Description Looking to combine singular resources (like aws.s3.bucket) and plural resources (like aws.s3.buckets) into one resource buckets with overloaded methods requires: overloaded views (reusable for other providers) select ...

Open Graph Description: Feature Description Looking to combine singular resources (like aws.s3.bucket) and plural resources (like aws.s3.buckets) into one resource buckets with overloaded methods requires: overloaded view...

X Description: Feature Description Looking to combine singular resources (like aws.s3.bucket) and plural resources (like aws.s3.buckets) into one resource buckets with overloaded methods requires: overloaded view...

Opengraph URL: https://github.com/stackql/stackql/issues/415

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"[FEATURE] AWS Cloud Control Simplification","articleBody":"**Feature Description**\r\nLooking to combine singular resources (like `aws.s3.bucket`) and plural resources (like `aws.s3.buckets`) into one resource `buckets` with overloaded methods  \r\n\r\n__requires__:\r\n- overloaded views (reusable for other providers)\r\n- `select from where in ...` subquery (reusable for other providers)\r\n\r\n__advantages__:\r\n- much better user experience (one resource instead of two)\r\n- document rationalization/simplification\r\n\r\n**Possible Approaches or Libraries to Consider**\r\n\r\ncurrent state:\r\n\r\n```yaml\r\n    buckets:\r\n      name: buckets\r\n      id: aws.s3.buckets\r\n      x-cfn-schema-name: Bucket\r\n      x-cfn-type-name: AWS::S3::Bucket\r\n      x-identifiers:\r\n        - BucketName\r\n      x-type: list\r\n      methods:\r\n        create_resource:\r\n          config:\r\n            requestBodyTranslate:\r\n              algorithm: naive_DesiredState\r\n          operation:\r\n            $ref: '#/paths/~1?Action=CreateResource\u0026Version=2021-09-30\u0026__Bucket\u0026__detailTransformed=true/post'\r\n          request:\r\n            mediaType: application/x-amz-json-1.0\r\n            base: |-\r\n              {\r\n                \"TypeName\": \"AWS::S3::Bucket\"\r\n              }\r\n          response:\r\n            mediaType: application/json\r\n            openAPIDocKey: '200'\r\n        delete_resource:\r\n          operation:\r\n            $ref: '#/paths/~1?Action=DeleteResource\u0026Version=2021-09-30/post'\r\n          request:\r\n            mediaType: application/x-amz-json-1.0\r\n            base: |-\r\n              {\r\n                \"TypeName\": \"AWS::S3::Bucket\"\r\n              }\r\n          response:\r\n            mediaType: application/json\r\n            openAPIDocKey: '200'\r\n      sqlVerbs:\r\n        insert:\r\n          - $ref: '#/components/x-stackQL-resources/buckets/methods/create_resource'\r\n        delete:\r\n          - $ref: '#/components/x-stackQL-resources/buckets/methods/delete_resource'\r\n      config:\r\n        views:\r\n          select:\r\n            predicate: sqlDialect == \"sqlite3\"\r\n            ddl: |-\r\n              SELECT\r\n              region,\r\n              JSON_EXTRACT(Properties, '$.BucketName') as bucket_name\r\n              FROM aws.cloud_control.resources WHERE data__TypeName = 'AWS::S3::Bucket'\r\n              AND region = 'us-east-1'\r\n            fallback:\r\n              predicate: sqlDialect == \"postgres\"\r\n              ddl: |-\r\n                SELECT\r\n                region,\r\n                json_extract_path_text(Properties, 'BucketName') as bucket_name\r\n                FROM aws.cloud_control.resources WHERE data__TypeName = 'AWS::S3::Bucket'\r\n                AND region = 'us-east-1'\r\n    bucket:\r\n      name: bucket\r\n      id: aws.s3.bucket\r\n      x-cfn-schema-name: Bucket\r\n      x-cfn-type-name: AWS::S3::Bucket\r\n      x-identifiers:\r\n        - BucketName\r\n      x-type: get\r\n      methods:\r\n        update_resource:\r\n          operation:\r\n            $ref: '#/paths/~1?Action=UpdateResource\u0026Version=2021-09-30/post'\r\n          request:\r\n            mediaType: application/x-amz-json-1.0\r\n            base: |-\r\n              {\r\n                \"TypeName\": \"AWS::S3::Bucket\"\r\n              }\r\n          response:\r\n            mediaType: application/json\r\n            openAPIDocKey: '200'\r\n      sqlVerbs:\r\n        update:\r\n          - $ref: '#/components/x-stackQL-resources/bucket/methods/update_resource'\r\n      config:\r\n        views:\r\n          select:\r\n            predicate: sqlDialect == \"sqlite3\"\r\n            ddl: |-\r\n              SELECT\r\n              region,\r\n              data__Identifier,\r\n              JSON_EXTRACT(Properties, '$.AccelerateConfiguration') as accelerate_configuration,\r\n              JSON_EXTRACT(Properties, '$.AccessControl') as access_control,\r\n              JSON_EXTRACT(Properties, '$.AnalyticsConfigurations') as analytics_configurations,\r\n              JSON_EXTRACT(Properties, '$.BucketEncryption') as bucket_encryption,\r\n              JSON_EXTRACT(Properties, '$.BucketName') as bucket_name,\r\n              JSON_EXTRACT(Properties, '$.CorsConfiguration') as cors_configuration,\r\n              JSON_EXTRACT(Properties, '$.IntelligentTieringConfigurations') as intelligent_tiering_configurations,\r\n              JSON_EXTRACT(Properties, '$.InventoryConfigurations') as inventory_configurations,\r\n              JSON_EXTRACT(Properties, '$.LifecycleConfiguration') as lifecycle_configuration,\r\n              JSON_EXTRACT(Properties, '$.LoggingConfiguration') as logging_configuration,\r\n              JSON_EXTRACT(Properties, '$.MetricsConfigurations') as metrics_configurations,\r\n              JSON_EXTRACT(Properties, '$.NotificationConfiguration') as notification_configuration,\r\n              JSON_EXTRACT(Properties, '$.ObjectLockConfiguration') as object_lock_configuration,\r\n              JSON_EXTRACT(Properties, '$.ObjectLockEnabled') as object_lock_enabled,\r\n              JSON_EXTRACT(Properties, '$.OwnershipControls') as ownership_controls,\r\n              JSON_EXTRACT(Properties, '$.PublicAccessBlockConfiguration') as public_access_block_configuration,\r\n              JSON_EXTRACT(Properties, '$.ReplicationConfiguration') as replication_configuration,\r\n              JSON_EXTRACT(Properties, '$.Tags') as tags,\r\n              JSON_EXTRACT(Properties, '$.VersioningConfiguration') as versioning_configuration,\r\n              JSON_EXTRACT(Properties, '$.WebsiteConfiguration') as website_configuration,\r\n              JSON_EXTRACT(Properties, '$.Arn') as arn,\r\n              JSON_EXTRACT(Properties, '$.DomainName') as domain_name,\r\n              JSON_EXTRACT(Properties, '$.DualStackDomainName') as dual_stack_domain_name,\r\n              JSON_EXTRACT(Properties, '$.RegionalDomainName') as regional_domain_name,\r\n              JSON_EXTRACT(Properties, '$.WebsiteURL') as website_url\r\n              FROM aws.cloud_control.resource WHERE data__TypeName = 'AWS::S3::Bucket'\r\n              AND data__Identifier = '\u003cBucketName\u003e'\r\n              AND region = 'us-east-1'\r\n            fallback:\r\n              predicate: sqlDialect == \"postgres\"\r\n              ddl: |-\r\n                SELECT\r\n                region,\r\n                data__Identifier,\r\n                json_extract_path_text(Properties, 'AccelerateConfiguration') as accelerate_configuration,\r\n                json_extract_path_text(Properties, 'AccessControl') as access_control,\r\n                json_extract_path_text(Properties, 'AnalyticsConfigurations') as analytics_configurations,\r\n                json_extract_path_text(Properties, 'BucketEncryption') as bucket_encryption,\r\n                json_extract_path_text(Properties, 'BucketName') as bucket_name,\r\n                json_extract_path_text(Properties, 'CorsConfiguration') as cors_configuration,\r\n                json_extract_path_text(Properties, 'IntelligentTieringConfigurations') as intelligent_tiering_configurations,\r\n                json_extract_path_text(Properties, 'InventoryConfigurations') as inventory_configurations,\r\n                json_extract_path_text(Properties, 'LifecycleConfiguration') as lifecycle_configuration,\r\n                json_extract_path_text(Properties, 'LoggingConfiguration') as logging_configuration,\r\n                json_extract_path_text(Properties, 'MetricsConfigurations') as metrics_configurations,\r\n                json_extract_path_text(Properties, 'NotificationConfiguration') as notification_configuration,\r\n                json_extract_path_text(Properties, 'ObjectLockConfiguration') as object_lock_configuration,\r\n                json_extract_path_text(Properties, 'ObjectLockEnabled') as object_lock_enabled,\r\n                json_extract_path_text(Properties, 'OwnershipControls') as ownership_controls,\r\n                json_extract_path_text(Properties, 'PublicAccessBlockConfiguration') as public_access_block_configuration,\r\n                json_extract_path_text(Properties, 'ReplicationConfiguration') as replication_configuration,\r\n                json_extract_path_text(Properties, 'Tags') as tags,\r\n                json_extract_path_text(Properties, 'VersioningConfiguration') as versioning_configuration,\r\n                json_extract_path_text(Properties, 'WebsiteConfiguration') as website_configuration,\r\n                json_extract_path_text(Properties, 'Arn') as arn,\r\n                json_extract_path_text(Properties, 'DomainName') as domain_name,\r\n                json_extract_path_text(Properties, 'DualStackDomainName') as dual_stack_domain_name,\r\n                json_extract_path_text(Properties, 'RegionalDomainName') as regional_domain_name,\r\n                json_extract_path_text(Properties, 'WebsiteURL') as website_url\r\n                FROM aws.cloud_control.resource WHERE data__TypeName = 'AWS::S3::Bucket'\r\n                AND data__Identifier = '\u003cBucketName\u003e'\r\n                AND region = 'us-east-1'\r\n```\r\n__desired state:__\r\n\r\n```yaml\r\n    buckets:\r\n      name: buckets\r\n      id: aws.s3.buckets\r\n      x-cfn-schema-name: Bucket\r\n      x-cfn-type-name: AWS::S3::Bucket\r\n      x-identifiers:\r\n        - BucketName\r\n      methods:\r\n        create_resource:\r\n          config:\r\n            requestBodyTranslate:\r\n              algorithm: naive_DesiredState\r\n          operation:\r\n            $ref: '#/paths/~1?Action=CreateResource\u0026Version=2021-09-30\u0026__Bucket\u0026__detailTransformed=true/post'\r\n          request:\r\n            mediaType: application/x-amz-json-1.0\r\n            base: |-\r\n              {\r\n                \"TypeName\": \"AWS::S3::Bucket\"\r\n              }\r\n          response:\r\n            mediaType: application/json\r\n            openAPIDocKey: '200'\r\n        update_resource:\r\n          operation:\r\n            $ref: '#/paths/~1?Action=UpdateResource\u0026Version=2021-09-30/post'\r\n          request:\r\n            mediaType: application/x-amz-json-1.0\r\n            base: |-\r\n              {\r\n                \"TypeName\": \"AWS::S3::Bucket\"\r\n              }\r\n          response:\r\n            mediaType: application/json\r\n            openAPIDocKey: '200'            \r\n        delete_resource:\r\n          operation:\r\n            $ref: '#/paths/~1?Action=DeleteResource\u0026Version=2021-09-30/post'\r\n          request:\r\n            mediaType: application/x-amz-json-1.0\r\n            base: |-\r\n              {\r\n                \"TypeName\": \"AWS::S3::Bucket\"\r\n              }\r\n          response:\r\n            mediaType: application/json\r\n            openAPIDocKey: '200'\r\n      sqlVerbs:\r\n        insert:\r\n          - $ref: '#/components/x-stackQL-resources/buckets/methods/create_resource'\r\n        update:\r\n          - $ref: '#/components/x-stackQL-resources/buckets/methods/update_resource'\r\n        delete:\r\n          - $ref: '#/components/x-stackQL-resources/buckets/methods/delete_resource'\r\n        views:\r\n          select:\r\n            - method_name: list_buckets\r\n              params:\r\n                - region\r\n              predicate: sqlDialect == \"sqlite3\"\r\n              ddl: |-\r\n                SELECT\r\n                region,\r\n                JSON_EXTRACT(Properties, '$.BucketName') as bucket_name\r\n                FROM aws.cloud_control.resources WHERE data__TypeName = 'AWS::S3::Bucket'\r\n                AND region = 'us-east-1'\r\n              fallback:\r\n                predicate: sqlDialect == \"postgres\"\r\n                ddl: |-\r\n                  SELECT\r\n                  region,\r\n                  json_extract_path_text(Properties, 'BucketName') as bucket_name\r\n                  FROM aws.cloud_control.resources WHERE data__TypeName = 'AWS::S3::Bucket'\r\n                  AND region = 'us-east-1'\r\n            - method_name: get_bucket\r\n              params:\r\n                - region\r\n                - data__Identifier\r\n              predicate: sqlDialect == \"sqlite3\"\r\n              ddl: |-\r\n                  SELECT\r\n                  region,\r\n                  data__Identifier,\r\n                  JSON_EXTRACT(Properties, '$.AccelerateConfiguration') as accelerate_configuration,\r\n                  JSON_EXTRACT(Properties, '$.AccessControl') as access_control,\r\n                  JSON_EXTRACT(Properties, '$.AnalyticsConfigurations') as analytics_configurations,\r\n                  JSON_EXTRACT(Properties, '$.BucketEncryption') as bucket_encryption,\r\n                  JSON_EXTRACT(Properties, '$.BucketName') as bucket_name,\r\n                  JSON_EXTRACT(Properties, '$.CorsConfiguration') as cors_configuration,\r\n                  JSON_EXTRACT(Properties, '$.IntelligentTieringConfigurations') as intelligent_tiering_configurations,\r\n                  JSON_EXTRACT(Properties, '$.InventoryConfigurations') as inventory_configurations,\r\n                  JSON_EXTRACT(Properties, '$.LifecycleConfiguration') as lifecycle_configuration,\r\n                  JSON_EXTRACT(Properties, '$.LoggingConfiguration') as logging_configuration,\r\n                  JSON_EXTRACT(Properties, '$.MetricsConfigurations') as metrics_configurations,\r\n                  JSON_EXTRACT(Properties, '$.NotificationConfiguration') as notification_configuration,\r\n                  JSON_EXTRACT(Properties, '$.ObjectLockConfiguration') as object_lock_configuration,\r\n                  JSON_EXTRACT(Properties, '$.ObjectLockEnabled') as object_lock_enabled,\r\n                  JSON_EXTRACT(Properties, '$.OwnershipControls') as ownership_controls,\r\n                  JSON_EXTRACT(Properties, '$.PublicAccessBlockConfiguration') as public_access_block_configuration,\r\n                  JSON_EXTRACT(Properties, '$.ReplicationConfiguration') as replication_configuration,\r\n                  JSON_EXTRACT(Properties, '$.Tags') as tags,\r\n                  JSON_EXTRACT(Properties, '$.VersioningConfiguration') as versioning_configuration,\r\n                  JSON_EXTRACT(Properties, '$.WebsiteConfiguration') as website_configuration,\r\n                  JSON_EXTRACT(Properties, '$.Arn') as arn,\r\n                  JSON_EXTRACT(Properties, '$.DomainName') as domain_name,\r\n                  JSON_EXTRACT(Properties, '$.DualStackDomainName') as dual_stack_domain_name,\r\n                  JSON_EXTRACT(Properties, '$.RegionalDomainName') as regional_domain_name,\r\n                  JSON_EXTRACT(Properties, '$.WebsiteURL') as website_url\r\n                  FROM aws.cloud_control.resource WHERE data__TypeName = 'AWS::S3::Bucket'\r\n                  AND data__Identifier = '\u003cBucketName\u003e'\r\n                  AND region = 'us-east-1'\r\n              fallback:\r\n                predicate: sqlDialect == \"postgres\"\r\n                ddl: |-\r\n                    SELECT\r\n                    region,\r\n                    data__Identifier,\r\n                    json_extract_path_text(Properties, 'AccelerateConfiguration') as accelerate_configuration,\r\n                    json_extract_path_text(Properties, 'AccessControl') as access_control,\r\n                    json_extract_path_text(Properties, 'AnalyticsConfigurations') as analytics_configurations,\r\n                    json_extract_path_text(Properties, 'BucketEncryption') as bucket_encryption,\r\n                    json_extract_path_text(Properties, 'BucketName') as bucket_name,\r\n                    json_extract_path_text(Properties, 'CorsConfiguration') as cors_configuration,\r\n                    json_extract_path_text(Properties, 'IntelligentTieringConfigurations') as intelligent_tiering_configurations,\r\n                    json_extract_path_text(Properties, 'InventoryConfigurations') as inventory_configurations,\r\n                    json_extract_path_text(Properties, 'LifecycleConfiguration') as lifecycle_configuration,\r\n                    json_extract_path_text(Properties, 'LoggingConfiguration') as logging_configuration,\r\n                    json_extract_path_text(Properties, 'MetricsConfigurations') as metrics_configurations,\r\n                    json_extract_path_text(Properties, 'NotificationConfiguration') as notification_configuration,\r\n                    json_extract_path_text(Properties, 'ObjectLockConfiguration') as object_lock_configuration,\r\n                    json_extract_path_text(Properties, 'ObjectLockEnabled') as object_lock_enabled,\r\n                    json_extract_path_text(Properties, 'OwnershipControls') as ownership_controls,\r\n                    json_extract_path_text(Properties, 'PublicAccessBlockConfiguration') as public_access_block_configuration,\r\n                    json_extract_path_text(Properties, 'ReplicationConfiguration') as replication_configuration,\r\n                    json_extract_path_text(Properties, 'Tags') as tags,\r\n                    json_extract_path_text(Properties, 'VersioningConfiguration') as versioning_configuration,\r\n                    json_extract_path_text(Properties, 'WebsiteConfiguration') as website_configuration,\r\n                    json_extract_path_text(Properties, 'Arn') as arn,\r\n                    json_extract_path_text(Properties, 'DomainName') as domain_name,\r\n                    json_extract_path_text(Properties, 'DualStackDomainName') as dual_stack_domain_name,\r\n                    json_extract_path_text(Properties, 'RegionalDomainName') as regional_domain_name,\r\n                    json_extract_path_text(Properties, 'WebsiteURL') as website_url\r\n                    FROM aws.cloud_control.resource WHERE data__TypeName = 'AWS::S3::Bucket'\r\n                    AND data__Identifier = '\u003cBucketName\u003e'\r\n                    AND region = 'us-east-1'\r\n            - method_name: list_buckets_with_details\r\n              params:\r\n                - region\r\n                - all_properties\r\n              predicate: sqlDialect == \"sqlite3\"\r\n              ddl: |-\r\n                  SELECT\r\n                  region,\r\n                  data__Identifier,\r\n                  JSON_EXTRACT(Properties, '$.AccelerateConfiguration') as accelerate_configuration,\r\n                  JSON_EXTRACT(Properties, '$.AccessControl') as access_control,\r\n                  JSON_EXTRACT(Properties, '$.AnalyticsConfigurations') as analytics_configurations,\r\n                  JSON_EXTRACT(Properties, '$.BucketEncryption') as bucket_encryption,\r\n                  JSON_EXTRACT(Properties, '$.BucketName') as bucket_name,\r\n                  JSON_EXTRACT(Properties, '$.CorsConfiguration') as cors_configuration,\r\n                  JSON_EXTRACT(Properties, '$.IntelligentTieringConfigurations') as intelligent_tiering_configurations,\r\n                  JSON_EXTRACT(Properties, '$.InventoryConfigurations') as inventory_configurations,\r\n                  JSON_EXTRACT(Properties, '$.LifecycleConfiguration') as lifecycle_configuration,\r\n                  JSON_EXTRACT(Properties, '$.LoggingConfiguration') as logging_configuration,\r\n                  JSON_EXTRACT(Properties, '$.MetricsConfigurations') as metrics_configurations,\r\n                  JSON_EXTRACT(Properties, '$.NotificationConfiguration') as notification_configuration,\r\n                  JSON_EXTRACT(Properties, '$.ObjectLockConfiguration') as object_lock_configuration,\r\n                  JSON_EXTRACT(Properties, '$.ObjectLockEnabled') as object_lock_enabled,\r\n                  JSON_EXTRACT(Properties, '$.OwnershipControls') as ownership_controls,\r\n                  JSON_EXTRACT(Properties, '$.PublicAccessBlockConfiguration') as public_access_block_configuration,\r\n                  JSON_EXTRACT(Properties, '$.ReplicationConfiguration') as replication_configuration,\r\n                  JSON_EXTRACT(Properties, '$.Tags') as tags,\r\n                  JSON_EXTRACT(Properties, '$.VersioningConfiguration') as versioning_configuration,\r\n                  JSON_EXTRACT(Properties, '$.WebsiteConfiguration') as website_configuration,\r\n                  JSON_EXTRACT(Properties, '$.Arn') as arn,\r\n                  JSON_EXTRACT(Properties, '$.DomainName') as domain_name,\r\n                  JSON_EXTRACT(Properties, '$.DualStackDomainName') as dual_stack_domain_name,\r\n                  JSON_EXTRACT(Properties, '$.RegionalDomainName') as regional_domain_name,\r\n                  JSON_EXTRACT(Properties, '$.WebsiteURL') as website_url\r\n                  FROM aws.cloud_control.resource WHERE data__TypeName = 'AWS::S3::Bucket'\r\n                  AND data__Identifier IN \r\n                  (\r\n                    SELECT\r\n                    JSON_EXTRACT(Properties, '$.BucketName') as bucket_name\r\n                    FROM aws.cloud_control.resources\r\n                    /* WHERE params in inner query are inherited from the outer query (region and data__TypeName), can we overwritten */\r\n                  )\r\n                  AND region = 'us-east-1'                \r\n              fallback:\r\n...                 \r\n```\r\n\r\n__usage:__  \r\n\r\nto get a simple list of bucket names\r\n\r\n```sql\r\nSELECT * FROM aws.s3.buckets WHERE region = 'us-east-1';\r\n```\r\n\r\nto get a details for a specific bucket:\r\n\r\n```sql\r\nSELECT * FROM aws.s3.buckets WHERE region = 'us-east-1' and data__Identifier = 'my-bucket-name';\r\n```\r\n\r\nto get a details for all buckets in a region (list retrival in `WHERE` subquery followed by asnyc get queries):\r\n\r\n```sql\r\nSELECT * FROM aws.s3.buckets WHERE region = 'us-east-1' and all_properties = true;\r\n```","author":{"url":"https://github.com/jeffreyaven","@type":"Person","name":"jeffreyaven"},"datePublished":"2024-05-15T01:29:30.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":1},"url":"https://github.com/415/stackql/issues/415"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:10aec40a-5901-f962-626c-688f0a9ebade
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id9D4E:21F6EA:14539F7:1C50283:6A4CACF9
html-safe-nonce8b1f706df18822d2b7c39963874bf2791b4db9848e36206ecbb57726fa34f78f
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5RDRFOjIxRjZFQToxNDUzOUY3OjFDNTAyODM6NkE0Q0FDRjkiLCJ2aXNpdG9yX2lkIjoiODUyODIxODI1MDIwMjA5ODkzNyIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmacaa62b74bcf09714826d98bd189fb2cece7181f5fa311eb4c46b7b36760d0ca91
hovercard-subject-tagissue:2296672113
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/stackql/stackql/415/issue_layout
twitter:imagehttps://opengraph.githubassets.com/9936632ad1c26ee097e11b5bee3574540b2b4b2e18f77dc45c520005c8a22667/stackql/stackql/issues/415
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/9936632ad1c26ee097e11b5bee3574540b2b4b2e18f77dc45c520005c8a22667/stackql/stackql/issues/415
og:image:altFeature Description Looking to combine singular resources (like aws.s3.bucket) and plural resources (like aws.s3.buckets) into one resource buckets with overloaded methods requires: overloaded view...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamejeffreyaven
hostnamegithub.com
expected-hostnamegithub.com
None3d11bb817438277de2a940854450e83a7d32b6aeb5014e9e6b00a6423900251c
turbo-cache-controlno-preview
go-importgithub.com/stackql/stackql git https://github.com/stackql/stackql.git
octolytics-dimension-user_id95105302
octolytics-dimension-user_loginstackql
octolytics-dimension-repository_id443987542
octolytics-dimension-repository_nwostackql/stackql
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id443987542
octolytics-dimension-repository_network_root_nwostackql/stackql
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releaseae90d426644ca15e89bacceb72e51f4e9dbf85f7
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/stackql/stackql/issues/415#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fstackql%2Fstackql%2Fissues%2F415
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fstackql%2Fstackql%2Fissues%2F415
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=stackql%2Fstackql
Reloadhttps://github.com/stackql/stackql/issues/415
Reloadhttps://github.com/stackql/stackql/issues/415
Reloadhttps://github.com/stackql/stackql/issues/415
Please reload this pagehttps://github.com/stackql/stackql/issues/415
stackql https://github.com/stackql
stackqlhttps://github.com/stackql/stackql
Please reload this pagehttps://github.com/stackql/stackql/issues/415
Notifications https://github.com/login?return_to=%2Fstackql%2Fstackql
Fork 80 https://github.com/login?return_to=%2Fstackql%2Fstackql
Star 861 https://github.com/login?return_to=%2Fstackql%2Fstackql
Code https://github.com/stackql/stackql
Issues 101 https://github.com/stackql/stackql/issues
Pull requests 1 https://github.com/stackql/stackql/pulls
Discussions https://github.com/stackql/stackql/discussions
Actions https://github.com/stackql/stackql/actions
Projects https://github.com/stackql/stackql/projects
Wiki https://github.com/stackql/stackql/wiki
Security and quality 0 https://github.com/stackql/stackql/security
Insights https://github.com/stackql/stackql/pulse
Code https://github.com/stackql/stackql
Issues https://github.com/stackql/stackql/issues
Pull requests https://github.com/stackql/stackql/pulls
Discussions https://github.com/stackql/stackql/discussions
Actions https://github.com/stackql/stackql/actions
Projects https://github.com/stackql/stackql/projects
Wiki https://github.com/stackql/stackql/wiki
Security and quality https://github.com/stackql/stackql/security
Insights https://github.com/stackql/stackql/pulse
[FEATURE] AWS Cloud Control Simplificationhttps://github.com/stackql/stackql/issues/415#top
https://github.com/general-kroll-4-life
enhancementNew feature or requesthttps://github.com/stackql/stackql/issues?q=state%3Aopen%20label%3A%22enhancement%22
https://github.com/jeffreyaven
jeffreyavenhttps://github.com/jeffreyaven
on May 15, 2024https://github.com/stackql/stackql/issues/415#issue-2296672113
general-kroll-4-lifehttps://github.com/general-kroll-4-life
enhancementNew feature or requesthttps://github.com/stackql/stackql/issues?q=state%3Aopen%20label%3A%22enhancement%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.