From 8758a23ff714d21ce44ee55524a0a3ebddf996f6 Mon Sep 17 00:00:00 2001 From: Tomas Basham Date: Thu, 16 Mar 2023 17:57:29 +0000 Subject: [PATCH] feat: allow resource URLs to be updated --- .commitlintrc | 9 +++++++ .github/dependabot.yaml | 9 +++++++ .github/workflows/policy.yaml | 26 +++++++++++++++++++ .github/workflows/publish.yaml | 4 ++- .github/workflows/style.yaml | 23 ++++++++++++++++ .github/workflows/test.yaml | 7 +++-- Gemfile | 4 +-- Gemfile.lock | 2 +- Rakefile | 4 +-- lib/statuscake.rb | 4 +-- lib/statuscake/api/contact_groups_api.rb | 4 +-- lib/statuscake/api/locations_api.rb | 4 +-- lib/statuscake/api/maintenance_windows_api.rb | 4 +-- lib/statuscake/api/pagespeed_api.rb | 7 +++-- lib/statuscake/api/ssl_api.rb | 7 +++-- lib/statuscake/api/uptime_api.rb | 7 +++-- lib/statuscake/api_client.rb | 4 +-- lib/statuscake/api_error.rb | 4 +-- lib/statuscake/configuration.rb | 4 +-- lib/statuscake/models/api_error.rb | 4 +-- lib/statuscake/models/api_response.rb | 4 +-- lib/statuscake/models/api_response_data.rb | 4 +-- lib/statuscake/models/contact_group.rb | 4 +-- .../models/contact_group_response.rb | 4 +-- lib/statuscake/models/contact_groups.rb | 4 +-- lib/statuscake/models/links.rb | 4 +-- lib/statuscake/models/maintenance_window.rb | 4 +-- .../maintenance_window_repeat_interval.rb | 4 +-- .../models/maintenance_window_response.rb | 4 +-- .../models/maintenance_window_state.rb | 4 +-- lib/statuscake/models/maintenance_windows.rb | 4 +-- lib/statuscake/models/monitoring_location.rb | 4 +-- .../models/monitoring_location_status.rb | 4 +-- lib/statuscake/models/monitoring_locations.rb | 4 +-- lib/statuscake/models/pagespeed_test.rb | 4 +-- .../models/pagespeed_test_check_rate.rb | 4 +-- .../models/pagespeed_test_history.rb | 4 +-- .../models/pagespeed_test_history_result.rb | 4 +-- .../models/pagespeed_test_region.rb | 4 +-- .../models/pagespeed_test_response.rb | 4 +-- lib/statuscake/models/pagespeed_test_stats.rb | 4 +-- .../models/pagespeed_test_throttling.rb | 4 +-- lib/statuscake/models/pagespeed_tests.rb | 4 +-- lib/statuscake/models/pagination.rb | 4 +-- lib/statuscake/models/ssl_test.rb | 4 +-- lib/statuscake/models/ssl_test_check_rate.rb | 4 +-- lib/statuscake/models/ssl_test_flags.rb | 4 +-- .../models/ssl_test_mixed_content.rb | 4 +-- lib/statuscake/models/ssl_test_response.rb | 4 +-- lib/statuscake/models/ssl_tests.rb | 4 +-- lib/statuscake/models/uptime_test.rb | 4 +-- lib/statuscake/models/uptime_test_alert.rb | 4 +-- lib/statuscake/models/uptime_test_alerts.rb | 4 +-- .../models/uptime_test_check_rate.rb | 4 +-- lib/statuscake/models/uptime_test_history.rb | 4 +-- .../models/uptime_test_history_result.rb | 4 +-- lib/statuscake/models/uptime_test_overview.rb | 4 +-- lib/statuscake/models/uptime_test_period.rb | 4 +-- lib/statuscake/models/uptime_test_periods.rb | 4 +-- .../models/uptime_test_processing_state.rb | 4 +-- lib/statuscake/models/uptime_test_response.rb | 4 +-- lib/statuscake/models/uptime_test_status.rb | 4 +-- lib/statuscake/models/uptime_test_type.rb | 4 +-- lib/statuscake/models/uptime_tests.rb | 4 +-- lib/statuscake/version.rb | 6 ++--- statuscake.gemspec | 4 +-- 66 files changed, 204 insertions(+), 123 deletions(-) create mode 100644 .commitlintrc create mode 100644 .github/dependabot.yaml create mode 100644 .github/workflows/policy.yaml create mode 100644 .github/workflows/style.yaml diff --git a/.commitlintrc b/.commitlintrc new file mode 100644 index 0000000..9fa736b --- /dev/null +++ b/.commitlintrc @@ -0,0 +1,9 @@ +{ + "extends": [ + "@commitlint/config-conventional", + ], + "rules": { + "body-max-line-length": [2, "always", 72], + "header-max-length": [02, "always", 50], + }, +} diff --git a/.github/dependabot.yaml b/.github/dependabot.yaml new file mode 100644 index 0000000..15b3797 --- /dev/null +++ b/.github/dependabot.yaml @@ -0,0 +1,9 @@ +--- +version: 2 +updates: +- package-ecosystem: github-actions + directory: / + schedule: + interval: weekly + commit-message: + prefix: ci(deps) diff --git a/.github/workflows/policy.yaml b/.github/workflows/policy.yaml new file mode 100644 index 0000000..7ec13d8 --- /dev/null +++ b/.github/workflows/policy.yaml @@ -0,0 +1,26 @@ +--- +name: policy +on: + pull_request: + push: + branches: + - gh-readonly-queue/** +jobs: + check-merge-commits: + if: github.event_name == 'pull_request' + name: Check merge commits + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - run: | + git config --global --add safe.directory /github/workspace + merge_commits=$(git rev-list --merges "origin/$GITHUB_BASE_REF".."origin/$GITHUB_HEAD_REF") + if [ -n "$merge_commits" ]; then + echo "Error: merge commits found in $GITHUB_BASE_REF..$GITHUB_HEAD_REF" + for merge_commit in $merge_commits; do + echo "$merge_commit" + done + exit 1 + fi diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 7cf5d85..ba3a83e 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -1,3 +1,4 @@ +--- name: publish on: release: @@ -5,9 +6,10 @@ on: - published jobs: publish: + name: Publish to RubyGems runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: "3.1" diff --git a/.github/workflows/style.yaml b/.github/workflows/style.yaml new file mode 100644 index 0000000..d9c3bce --- /dev/null +++ b/.github/workflows/style.yaml @@ -0,0 +1,23 @@ +--- +name: style +on: + pull_request: + push: + branches: + - gh-readonly-queue/** +jobs: + commit-message-style: + if: github.event_name == 'pull_request' + name: Check commit message style + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: actions/setup-node@v3 + with: + node-version: 19.x + - name: Install base config + run: npm install @commitlint/config-conventional + - name: Validate all commits + run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to HEAD --verbose diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 805a92e..80321d3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,20 +1,23 @@ +--- name: test on: pull_request: push: branches: + - gh-readonly-queue/** - master jobs: test: + name: Run tests runs-on: ubuntu-latest strategy: matrix: ruby: + - "3.2" - "3.1" - "3.0" - - "2.7" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby }} diff --git a/Gemfile b/Gemfile index a33d906..b75d651 100644 --- a/Gemfile +++ b/Gemfile @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/Gemfile.lock b/Gemfile.lock index 84500db..fb10059 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - statuscake-rb (1.0.1.pre.beta.1) + statuscake-rb (1.1.0.pre.beta.1) typhoeus (~> 1.0, >= 1.0.1) GEM diff --git a/Rakefile b/Rakefile index 716e3f3..4dfbd5c 100644 --- a/Rakefile +++ b/Rakefile @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake.rb b/lib/statuscake.rb index 00d0019..0caaf3b 100644 --- a/lib/statuscake.rb +++ b/lib/statuscake.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/api/contact_groups_api.rb b/lib/statuscake/api/contact_groups_api.rb index 62f9751..aed4799 100644 --- a/lib/statuscake/api/contact_groups_api.rb +++ b/lib/statuscake/api/contact_groups_api.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/api/locations_api.rb b/lib/statuscake/api/locations_api.rb index db6f5cc..8aa1d03 100644 --- a/lib/statuscake/api/locations_api.rb +++ b/lib/statuscake/api/locations_api.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/api/maintenance_windows_api.rb b/lib/statuscake/api/maintenance_windows_api.rb index e3f1b3b..7957a72 100644 --- a/lib/statuscake/api/maintenance_windows_api.rb +++ b/lib/statuscake/api/maintenance_windows_api.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/api/pagespeed_api.rb b/lib/statuscake/api/pagespeed_api.rb index c0acc42..6bcfa68 100644 --- a/lib/statuscake/api/pagespeed_api.rb +++ b/lib/statuscake/api/pagespeed_api.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -454,6 +454,7 @@ def list_pagespeed_tests_with_http_info(opts = {}) # @param test_id [String] Pagespeed check ID # @param [Hash] opts the optional parameters # @option opts [String] :name Name of the check + # @option opts [String] :website_url URL, FQDN, or IP address of the website under test # @option opts [PagespeedTestCheckRate] :check_rate # @option opts [Integer] :alert_bigger An alert will be sent if the size of the page is larger than this value (kb). A value of 0 prevents alerts being sent. # @option opts [Integer] :alert_slower An alert will be sent if the load time of the page exceeds this value (ms). A value of 0 prevents alerts being sent @@ -472,6 +473,7 @@ def update_pagespeed_test(test_id, opts = {}) # @param test_id [String] Pagespeed check ID # @param [Hash] opts the optional parameters # @option opts [String] :name Name of the check + # @option opts [String] :website_url URL, FQDN, or IP address of the website under test # @option opts [PagespeedTestCheckRate] :check_rate # @option opts [Integer] :alert_bigger An alert will be sent if the size of the page is larger than this value (kb). A value of 0 prevents alerts being sent. # @option opts [Integer] :alert_slower An alert will be sent if the load time of the page exceeds this value (ms). A value of 0 prevents alerts being sent @@ -519,6 +521,7 @@ def update_pagespeed_test_with_http_info(test_id, opts = {}) # form parameters form_params = opts[:form_params] || {} form_params['name'] = opts[:'name'] unless opts[:'name'].nil? + form_params['website_url'] = opts[:'website_url'] unless opts[:'website_url'].nil? form_params['check_rate'] = opts[:'check_rate'] unless opts[:'check_rate'].nil? form_params['alert_bigger'] = opts[:'alert_bigger'] unless opts[:'alert_bigger'].nil? form_params['alert_slower'] = opts[:'alert_slower'] unless opts[:'alert_slower'].nil? diff --git a/lib/statuscake/api/ssl_api.rb b/lib/statuscake/api/ssl_api.rb index 1ceb290..7398238 100644 --- a/lib/statuscake/api/ssl_api.rb +++ b/lib/statuscake/api/ssl_api.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -357,6 +357,7 @@ def list_ssl_tests_with_http_info(opts = {}) # Updates an SSL check with the given parameters. # @param test_id [String] SSL check ID # @param [Hash] opts the optional parameters + # @option opts [String] :website_url URL of the server under test. Must begin with https:// # @option opts [SSLTestCheckRate] :check_rate # @option opts [Array] :alert_at List representing when alerts should be sent (days). Must be exactly 3 numerical values # @option opts [Boolean] :alert_broken Whether to enable alerts when SSL certificate issues are found @@ -378,6 +379,7 @@ def update_ssl_test(test_id, opts = {}) # Updates an SSL check with the given parameters. # @param test_id [String] SSL check ID # @param [Hash] opts the optional parameters + # @option opts [String] :website_url URL of the server under test. Must begin with https:// # @option opts [SSLTestCheckRate] :check_rate # @option opts [Array] :alert_at List representing when alerts should be sent (days). Must be exactly 3 numerical values # @option opts [Boolean] :alert_broken Whether to enable alerts when SSL certificate issues are found @@ -416,6 +418,7 @@ def update_ssl_test_with_http_info(test_id, opts = {}) # form parameters form_params = opts[:form_params] || {} + form_params['website_url'] = opts[:'website_url'] unless opts[:'website_url'].nil? form_params['check_rate'] = opts[:'check_rate'] unless opts[:'check_rate'].nil? form_params['alert_at'] = @api_client.build_collection_param(opts[:'alert_at'], :csv) unless opts[:'alert_at'].nil? form_params['alert_broken'] = opts[:'alert_broken'] unless opts[:'alert_broken'].nil? diff --git a/lib/statuscake/api/uptime_api.rb b/lib/statuscake/api/uptime_api.rb index 9381094..b6ad657 100644 --- a/lib/statuscake/api/uptime_api.rb +++ b/lib/statuscake/api/uptime_api.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. @@ -726,6 +726,7 @@ def list_uptime_tests_with_http_info(opts = {}) # @param test_id [String] Uptime check ID # @param [Hash] opts the optional parameters # @option opts [String] :name Name of the check + # @option opts [String] :website_url URL or IP address of the server under test # @option opts [UptimeTestCheckRate] :check_rate # @option opts [String] :basic_username Basic authentication username # @option opts [String] :basic_password Basic authentication password @@ -763,6 +764,7 @@ def update_uptime_test(test_id, opts = {}) # @param test_id [String] Uptime check ID # @param [Hash] opts the optional parameters # @option opts [String] :name Name of the check + # @option opts [String] :website_url URL or IP address of the server under test # @option opts [UptimeTestCheckRate] :check_rate # @option opts [String] :basic_username Basic authentication username # @option opts [String] :basic_password Basic authentication password @@ -845,6 +847,7 @@ def update_uptime_test_with_http_info(test_id, opts = {}) # form parameters form_params = opts[:form_params] || {} form_params['name'] = opts[:'name'] unless opts[:'name'].nil? + form_params['website_url'] = opts[:'website_url'] unless opts[:'website_url'].nil? form_params['check_rate'] = opts[:'check_rate'] unless opts[:'check_rate'].nil? form_params['basic_username'] = opts[:'basic_username'] unless opts[:'basic_username'].nil? form_params['basic_password'] = opts[:'basic_password'] unless opts[:'basic_password'].nil? diff --git a/lib/statuscake/api_client.rb b/lib/statuscake/api_client.rb index 86c93aa..84b0c58 100644 --- a/lib/statuscake/api_client.rb +++ b/lib/statuscake/api_client.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/api_error.rb b/lib/statuscake/api_error.rb index a099955..0df45fc 100644 --- a/lib/statuscake/api_error.rb +++ b/lib/statuscake/api_error.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/configuration.rb b/lib/statuscake/configuration.rb index c817c24..1d74d11 100644 --- a/lib/statuscake/configuration.rb +++ b/lib/statuscake/configuration.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/api_error.rb b/lib/statuscake/models/api_error.rb index 708df9d..4ad8636 100644 --- a/lib/statuscake/models/api_error.rb +++ b/lib/statuscake/models/api_error.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/api_response.rb b/lib/statuscake/models/api_response.rb index 4e7c6c0..264ca38 100644 --- a/lib/statuscake/models/api_response.rb +++ b/lib/statuscake/models/api_response.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/api_response_data.rb b/lib/statuscake/models/api_response_data.rb index d57f15f..008f808 100644 --- a/lib/statuscake/models/api_response_data.rb +++ b/lib/statuscake/models/api_response_data.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/contact_group.rb b/lib/statuscake/models/contact_group.rb index ba72b83..0ff89d6 100644 --- a/lib/statuscake/models/contact_group.rb +++ b/lib/statuscake/models/contact_group.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/contact_group_response.rb b/lib/statuscake/models/contact_group_response.rb index 3529085..d76dfba 100644 --- a/lib/statuscake/models/contact_group_response.rb +++ b/lib/statuscake/models/contact_group_response.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/contact_groups.rb b/lib/statuscake/models/contact_groups.rb index 6919d32..93a28f3 100644 --- a/lib/statuscake/models/contact_groups.rb +++ b/lib/statuscake/models/contact_groups.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/links.rb b/lib/statuscake/models/links.rb index 7541e2f..15f467c 100644 --- a/lib/statuscake/models/links.rb +++ b/lib/statuscake/models/links.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/maintenance_window.rb b/lib/statuscake/models/maintenance_window.rb index e12c351..246c30b 100644 --- a/lib/statuscake/models/maintenance_window.rb +++ b/lib/statuscake/models/maintenance_window.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/maintenance_window_repeat_interval.rb b/lib/statuscake/models/maintenance_window_repeat_interval.rb index 4c303f6..8a7a9aa 100644 --- a/lib/statuscake/models/maintenance_window_repeat_interval.rb +++ b/lib/statuscake/models/maintenance_window_repeat_interval.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/maintenance_window_response.rb b/lib/statuscake/models/maintenance_window_response.rb index c1a361a..324bedc 100644 --- a/lib/statuscake/models/maintenance_window_response.rb +++ b/lib/statuscake/models/maintenance_window_response.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/maintenance_window_state.rb b/lib/statuscake/models/maintenance_window_state.rb index 00ba006..5c04c04 100644 --- a/lib/statuscake/models/maintenance_window_state.rb +++ b/lib/statuscake/models/maintenance_window_state.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/maintenance_windows.rb b/lib/statuscake/models/maintenance_windows.rb index 2569622..39a8fc6 100644 --- a/lib/statuscake/models/maintenance_windows.rb +++ b/lib/statuscake/models/maintenance_windows.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/monitoring_location.rb b/lib/statuscake/models/monitoring_location.rb index e1904f0..9537913 100644 --- a/lib/statuscake/models/monitoring_location.rb +++ b/lib/statuscake/models/monitoring_location.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/monitoring_location_status.rb b/lib/statuscake/models/monitoring_location_status.rb index 48ea35c..f3b448c 100644 --- a/lib/statuscake/models/monitoring_location_status.rb +++ b/lib/statuscake/models/monitoring_location_status.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/monitoring_locations.rb b/lib/statuscake/models/monitoring_locations.rb index 7b3a228..024dc91 100644 --- a/lib/statuscake/models/monitoring_locations.rb +++ b/lib/statuscake/models/monitoring_locations.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/pagespeed_test.rb b/lib/statuscake/models/pagespeed_test.rb index 2f9330b..8b1f691 100644 --- a/lib/statuscake/models/pagespeed_test.rb +++ b/lib/statuscake/models/pagespeed_test.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/pagespeed_test_check_rate.rb b/lib/statuscake/models/pagespeed_test_check_rate.rb index 76d2cef..73d236b 100644 --- a/lib/statuscake/models/pagespeed_test_check_rate.rb +++ b/lib/statuscake/models/pagespeed_test_check_rate.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/pagespeed_test_history.rb b/lib/statuscake/models/pagespeed_test_history.rb index f1dca07..2de1366 100644 --- a/lib/statuscake/models/pagespeed_test_history.rb +++ b/lib/statuscake/models/pagespeed_test_history.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/pagespeed_test_history_result.rb b/lib/statuscake/models/pagespeed_test_history_result.rb index ef2e01e..d218a2f 100644 --- a/lib/statuscake/models/pagespeed_test_history_result.rb +++ b/lib/statuscake/models/pagespeed_test_history_result.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/pagespeed_test_region.rb b/lib/statuscake/models/pagespeed_test_region.rb index 641a094..a1b2276 100644 --- a/lib/statuscake/models/pagespeed_test_region.rb +++ b/lib/statuscake/models/pagespeed_test_region.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/pagespeed_test_response.rb b/lib/statuscake/models/pagespeed_test_response.rb index 13674b5..160a278 100644 --- a/lib/statuscake/models/pagespeed_test_response.rb +++ b/lib/statuscake/models/pagespeed_test_response.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/pagespeed_test_stats.rb b/lib/statuscake/models/pagespeed_test_stats.rb index 5d57335..c9f9d1d 100644 --- a/lib/statuscake/models/pagespeed_test_stats.rb +++ b/lib/statuscake/models/pagespeed_test_stats.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/pagespeed_test_throttling.rb b/lib/statuscake/models/pagespeed_test_throttling.rb index ddf7f56..661e287 100644 --- a/lib/statuscake/models/pagespeed_test_throttling.rb +++ b/lib/statuscake/models/pagespeed_test_throttling.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/pagespeed_tests.rb b/lib/statuscake/models/pagespeed_tests.rb index 28aa1b0..53306c3 100644 --- a/lib/statuscake/models/pagespeed_tests.rb +++ b/lib/statuscake/models/pagespeed_tests.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/pagination.rb b/lib/statuscake/models/pagination.rb index e4fd291..55f7632 100644 --- a/lib/statuscake/models/pagination.rb +++ b/lib/statuscake/models/pagination.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/ssl_test.rb b/lib/statuscake/models/ssl_test.rb index 9b2640a..e196f96 100644 --- a/lib/statuscake/models/ssl_test.rb +++ b/lib/statuscake/models/ssl_test.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/ssl_test_check_rate.rb b/lib/statuscake/models/ssl_test_check_rate.rb index 0ae0540..b3bb39e 100644 --- a/lib/statuscake/models/ssl_test_check_rate.rb +++ b/lib/statuscake/models/ssl_test_check_rate.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/ssl_test_flags.rb b/lib/statuscake/models/ssl_test_flags.rb index df29f43..da92a65 100644 --- a/lib/statuscake/models/ssl_test_flags.rb +++ b/lib/statuscake/models/ssl_test_flags.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/ssl_test_mixed_content.rb b/lib/statuscake/models/ssl_test_mixed_content.rb index 8b22b37..631d6d3 100644 --- a/lib/statuscake/models/ssl_test_mixed_content.rb +++ b/lib/statuscake/models/ssl_test_mixed_content.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/ssl_test_response.rb b/lib/statuscake/models/ssl_test_response.rb index bfb43b7..99a0490 100644 --- a/lib/statuscake/models/ssl_test_response.rb +++ b/lib/statuscake/models/ssl_test_response.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/ssl_tests.rb b/lib/statuscake/models/ssl_tests.rb index 3ef03c5..c839df5 100644 --- a/lib/statuscake/models/ssl_tests.rb +++ b/lib/statuscake/models/ssl_tests.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test.rb b/lib/statuscake/models/uptime_test.rb index 7af7f21..f4bf0f2 100644 --- a/lib/statuscake/models/uptime_test.rb +++ b/lib/statuscake/models/uptime_test.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_alert.rb b/lib/statuscake/models/uptime_test_alert.rb index ce5e154..537aed0 100644 --- a/lib/statuscake/models/uptime_test_alert.rb +++ b/lib/statuscake/models/uptime_test_alert.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_alerts.rb b/lib/statuscake/models/uptime_test_alerts.rb index e9bd4bc..44a11cd 100644 --- a/lib/statuscake/models/uptime_test_alerts.rb +++ b/lib/statuscake/models/uptime_test_alerts.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_check_rate.rb b/lib/statuscake/models/uptime_test_check_rate.rb index 501e981..6b080c4 100644 --- a/lib/statuscake/models/uptime_test_check_rate.rb +++ b/lib/statuscake/models/uptime_test_check_rate.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_history.rb b/lib/statuscake/models/uptime_test_history.rb index fe1c764..d11988c 100644 --- a/lib/statuscake/models/uptime_test_history.rb +++ b/lib/statuscake/models/uptime_test_history.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_history_result.rb b/lib/statuscake/models/uptime_test_history_result.rb index d365df7..53a3479 100644 --- a/lib/statuscake/models/uptime_test_history_result.rb +++ b/lib/statuscake/models/uptime_test_history_result.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_overview.rb b/lib/statuscake/models/uptime_test_overview.rb index 4cf11a1..0890b1f 100644 --- a/lib/statuscake/models/uptime_test_overview.rb +++ b/lib/statuscake/models/uptime_test_overview.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_period.rb b/lib/statuscake/models/uptime_test_period.rb index d827825..3218919 100644 --- a/lib/statuscake/models/uptime_test_period.rb +++ b/lib/statuscake/models/uptime_test_period.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_periods.rb b/lib/statuscake/models/uptime_test_periods.rb index de19afa..021fc39 100644 --- a/lib/statuscake/models/uptime_test_periods.rb +++ b/lib/statuscake/models/uptime_test_periods.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_processing_state.rb b/lib/statuscake/models/uptime_test_processing_state.rb index 57f791e..ceeecf5 100644 --- a/lib/statuscake/models/uptime_test_processing_state.rb +++ b/lib/statuscake/models/uptime_test_processing_state.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_response.rb b/lib/statuscake/models/uptime_test_response.rb index f8a073d..eebbb5a 100644 --- a/lib/statuscake/models/uptime_test_response.rb +++ b/lib/statuscake/models/uptime_test_response.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_status.rb b/lib/statuscake/models/uptime_test_status.rb index f95350f..6e20a81 100644 --- a/lib/statuscake/models/uptime_test_status.rb +++ b/lib/statuscake/models/uptime_test_status.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_test_type.rb b/lib/statuscake/models/uptime_test_type.rb index c01de66..c3abbc5 100644 --- a/lib/statuscake/models/uptime_test_type.rb +++ b/lib/statuscake/models/uptime_test_type.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/models/uptime_tests.rb b/lib/statuscake/models/uptime_tests.rb index 2a6c377..ebff816 100644 --- a/lib/statuscake/models/uptime_tests.rb +++ b/lib/statuscake/models/uptime_tests.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. diff --git a/lib/statuscake/version.rb b/lib/statuscake/version.rb index c7ebbd0..1e27914 100644 --- a/lib/statuscake/version.rb +++ b/lib/statuscake/version.rb @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,11 +22,11 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT. module StatusCake - VERSION = '1.0.1-beta.1' + VERSION = '1.1.0-beta.1' end diff --git a/statuscake.gemspec b/statuscake.gemspec index 5e5d585..c672101 100644 --- a/statuscake.gemspec +++ b/statuscake.gemspec @@ -2,7 +2,7 @@ # StatusCake API # -# Copyright (c) 2022 +# Copyright (c) 2023 # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to @@ -22,7 +22,7 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS # IN THE SOFTWARE. # -# API version: 1.0.1 +# API version: 1.1.0 # Contact: support@statuscake.com # # Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.