├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ ├── cleanup.R │ ├── pkgdown.yaml │ └── testthat.yaml ├── .gitignore ├── CRAN-RELEASE ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── auth.R ├── objects.R ├── schemas.R ├── snapshots.R ├── subscriptions.R ├── topics.R ├── utils.R └── zzz.R ├── README.md ├── _pkgdown.yml ├── cran-comments.md ├── googlePubsubR.Rproj ├── inst └── shiny │ └── consumer_example │ ├── app.R │ ├── init.R │ └── readme.md ├── man ├── DeadLetterPolicy.Rd ├── DlqPolicy.Rd ├── ExpirationPolicy.Rd ├── MessageStoragePolicy.Rd ├── PubsubMessage.Rd ├── PushConfig.Rd ├── RetryPolicy.Rd ├── Schema.Rd ├── SchemaSettings.Rd ├── Snapshot.Rd ├── Subscription.Rd ├── Topic.Rd ├── grapes-greater-than-grapes.Rd ├── msg_decode.Rd ├── msg_encode.Rd ├── ps_project_get.Rd ├── ps_project_set.Rd ├── pubsub_auth.Rd ├── schemas_create.Rd ├── schemas_delete.Rd ├── schemas_exists.Rd ├── schemas_get.Rd ├── schemas_list.Rd ├── schemas_validate.Rd ├── schemas_validate_message.Rd ├── snapshots_create.Rd ├── snapshots_delete.Rd ├── snapshots_exists.Rd ├── snapshots_get.Rd ├── snapshots_list.Rd ├── snapshots_patch.Rd ├── subscriptions_ack.Rd ├── subscriptions_create.Rd ├── subscriptions_delete.Rd ├── subscriptions_detach.Rd ├── subscriptions_exists.Rd ├── subscriptions_get.Rd ├── subscriptions_list.Rd ├── subscriptions_modify_ack_deadline.Rd ├── subscriptions_modify_pushconf.Rd ├── subscriptions_patch.Rd ├── subscriptions_pull.Rd ├── subscriptions_seek.Rd ├── topics_create.Rd ├── topics_delete.Rd ├── topics_exists.Rd ├── topics_get.Rd ├── topics_list.Rd ├── topics_list_subscriptions.Rd ├── topics_patch.Rd └── topics_publish.Rd ├── tests ├── testthat.R └── testthat │ ├── setup-helpers.R │ ├── test-1-auth.R │ ├── test-2-create.R │ ├── test-3-topics.R │ ├── test-4-subscriptions.R │ ├── test-5-snapshots.R │ ├── test-6-schemas.R │ └── test-7-teardown.R └── vignettes ├── getting_started.Rmd └── shiny_consumer.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/cleanup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/.github/workflows/cleanup.R -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/testthat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/.github/workflows/testthat.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/.gitignore -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2021 2 | COPYRIGHT HOLDER: Andrea Dodet -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/R/auth.R -------------------------------------------------------------------------------- /R/objects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/R/objects.R -------------------------------------------------------------------------------- /R/schemas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/R/schemas.R -------------------------------------------------------------------------------- /R/snapshots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/R/snapshots.R -------------------------------------------------------------------------------- /R/subscriptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/R/subscriptions.R -------------------------------------------------------------------------------- /R/topics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/R/topics.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/cran-comments.md -------------------------------------------------------------------------------- /googlePubsubR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/googlePubsubR.Rproj -------------------------------------------------------------------------------- /inst/shiny/consumer_example/app.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/inst/shiny/consumer_example/app.R -------------------------------------------------------------------------------- /inst/shiny/consumer_example/init.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/inst/shiny/consumer_example/init.R -------------------------------------------------------------------------------- /inst/shiny/consumer_example/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/inst/shiny/consumer_example/readme.md -------------------------------------------------------------------------------- /man/DeadLetterPolicy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/DeadLetterPolicy.Rd -------------------------------------------------------------------------------- /man/DlqPolicy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/DlqPolicy.Rd -------------------------------------------------------------------------------- /man/ExpirationPolicy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/ExpirationPolicy.Rd -------------------------------------------------------------------------------- /man/MessageStoragePolicy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/MessageStoragePolicy.Rd -------------------------------------------------------------------------------- /man/PubsubMessage.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/PubsubMessage.Rd -------------------------------------------------------------------------------- /man/PushConfig.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/PushConfig.Rd -------------------------------------------------------------------------------- /man/RetryPolicy.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/RetryPolicy.Rd -------------------------------------------------------------------------------- /man/Schema.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/Schema.Rd -------------------------------------------------------------------------------- /man/SchemaSettings.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/SchemaSettings.Rd -------------------------------------------------------------------------------- /man/Snapshot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/Snapshot.Rd -------------------------------------------------------------------------------- /man/Subscription.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/Subscription.Rd -------------------------------------------------------------------------------- /man/Topic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/Topic.Rd -------------------------------------------------------------------------------- /man/grapes-greater-than-grapes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/grapes-greater-than-grapes.Rd -------------------------------------------------------------------------------- /man/msg_decode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/msg_decode.Rd -------------------------------------------------------------------------------- /man/msg_encode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/msg_encode.Rd -------------------------------------------------------------------------------- /man/ps_project_get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/ps_project_get.Rd -------------------------------------------------------------------------------- /man/ps_project_set.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/ps_project_set.Rd -------------------------------------------------------------------------------- /man/pubsub_auth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/pubsub_auth.Rd -------------------------------------------------------------------------------- /man/schemas_create.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/schemas_create.Rd -------------------------------------------------------------------------------- /man/schemas_delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/schemas_delete.Rd -------------------------------------------------------------------------------- /man/schemas_exists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/schemas_exists.Rd -------------------------------------------------------------------------------- /man/schemas_get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/schemas_get.Rd -------------------------------------------------------------------------------- /man/schemas_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/schemas_list.Rd -------------------------------------------------------------------------------- /man/schemas_validate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/schemas_validate.Rd -------------------------------------------------------------------------------- /man/schemas_validate_message.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/schemas_validate_message.Rd -------------------------------------------------------------------------------- /man/snapshots_create.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/snapshots_create.Rd -------------------------------------------------------------------------------- /man/snapshots_delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/snapshots_delete.Rd -------------------------------------------------------------------------------- /man/snapshots_exists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/snapshots_exists.Rd -------------------------------------------------------------------------------- /man/snapshots_get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/snapshots_get.Rd -------------------------------------------------------------------------------- /man/snapshots_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/snapshots_list.Rd -------------------------------------------------------------------------------- /man/snapshots_patch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/snapshots_patch.Rd -------------------------------------------------------------------------------- /man/subscriptions_ack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_ack.Rd -------------------------------------------------------------------------------- /man/subscriptions_create.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_create.Rd -------------------------------------------------------------------------------- /man/subscriptions_delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_delete.Rd -------------------------------------------------------------------------------- /man/subscriptions_detach.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_detach.Rd -------------------------------------------------------------------------------- /man/subscriptions_exists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_exists.Rd -------------------------------------------------------------------------------- /man/subscriptions_get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_get.Rd -------------------------------------------------------------------------------- /man/subscriptions_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_list.Rd -------------------------------------------------------------------------------- /man/subscriptions_modify_ack_deadline.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_modify_ack_deadline.Rd -------------------------------------------------------------------------------- /man/subscriptions_modify_pushconf.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_modify_pushconf.Rd -------------------------------------------------------------------------------- /man/subscriptions_patch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_patch.Rd -------------------------------------------------------------------------------- /man/subscriptions_pull.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_pull.Rd -------------------------------------------------------------------------------- /man/subscriptions_seek.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/subscriptions_seek.Rd -------------------------------------------------------------------------------- /man/topics_create.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/topics_create.Rd -------------------------------------------------------------------------------- /man/topics_delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/topics_delete.Rd -------------------------------------------------------------------------------- /man/topics_exists.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/topics_exists.Rd -------------------------------------------------------------------------------- /man/topics_get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/topics_get.Rd -------------------------------------------------------------------------------- /man/topics_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/topics_list.Rd -------------------------------------------------------------------------------- /man/topics_list_subscriptions.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/topics_list_subscriptions.Rd -------------------------------------------------------------------------------- /man/topics_patch.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/topics_patch.Rd -------------------------------------------------------------------------------- /man/topics_publish.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/man/topics_publish.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/setup-helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/tests/testthat/setup-helpers.R -------------------------------------------------------------------------------- /tests/testthat/test-1-auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/tests/testthat/test-1-auth.R -------------------------------------------------------------------------------- /tests/testthat/test-2-create.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/tests/testthat/test-2-create.R -------------------------------------------------------------------------------- /tests/testthat/test-3-topics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/tests/testthat/test-3-topics.R -------------------------------------------------------------------------------- /tests/testthat/test-4-subscriptions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/tests/testthat/test-4-subscriptions.R -------------------------------------------------------------------------------- /tests/testthat/test-5-snapshots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/tests/testthat/test-5-snapshots.R -------------------------------------------------------------------------------- /tests/testthat/test-6-schemas.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/tests/testthat/test-6-schemas.R -------------------------------------------------------------------------------- /tests/testthat/test-7-teardown.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/tests/testthat/test-7-teardown.R -------------------------------------------------------------------------------- /vignettes/getting_started.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/vignettes/getting_started.Rmd -------------------------------------------------------------------------------- /vignettes/shiny_consumer.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andodet/googlePubsubR/HEAD/vignettes/shiny_consumer.Rmd --------------------------------------------------------------------------------