hexsha stringlengths 40 40 | size int64 5 1.05M | ext stringclasses 588
values | lang stringclasses 305
values | max_stars_repo_path stringlengths 3 363 | max_stars_repo_name stringlengths 5 118 | max_stars_repo_head_hexsha stringlengths 40 40 | max_stars_repo_licenses listlengths 1 10 | max_stars_count float64 1 191k ⌀ | max_stars_repo_stars_event_min_datetime stringdate 2015-01-01 00:00:35 2022-03-31 23:43:49 ⌀ | max_stars_repo_stars_event_max_datetime stringdate 2015-01-01 12:37:38 2022-03-31 23:59:52 ⌀ | max_issues_repo_path stringlengths 3 363 | max_issues_repo_name stringlengths 5 118 | max_issues_repo_head_hexsha stringlengths 40 40 | max_issues_repo_licenses listlengths 1 10 | max_issues_count float64 1 134k ⌀ | max_issues_repo_issues_event_min_datetime stringlengths 24 24 ⌀ | max_issues_repo_issues_event_max_datetime stringlengths 24 24 ⌀ | max_forks_repo_path stringlengths 3 363 | max_forks_repo_name stringlengths 5 135 | max_forks_repo_head_hexsha stringlengths 40 40 | max_forks_repo_licenses listlengths 1 10 | max_forks_count float64 1 105k ⌀ | max_forks_repo_forks_event_min_datetime stringdate 2015-01-01 00:01:02 2022-03-31 23:27:27 ⌀ | max_forks_repo_forks_event_max_datetime stringdate 2015-01-03 08:55:07 2022-03-31 23:59:24 ⌀ | content stringlengths 5 1.05M | avg_line_length float64 1.13 1.04M | max_line_length int64 1 1.05M | alphanum_fraction float64 0 1 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
af7c7ddaf966b241661f9c7d0dce9afdc8a61ccf | 1,498 | yml | YAML | .github/workflows/rust.yml | obsidian-rs/obsidian | bbc25ea05c97cfe621e3000763e78dd4f9cb1fdb | [
"MIT"
] | 29 | 2019-11-17T04:15:29.000Z | 2021-11-12T12:03:44.000Z | .github/workflows/rust.yml | obsidian-rs/obsidian | bbc25ea05c97cfe621e3000763e78dd4f9cb1fdb | [
"MIT"
] | 62 | 2019-01-13T06:43:17.000Z | 2021-06-25T15:40:53.000Z | .github/workflows/rust.yml | obsidian-rs/obsidian | bbc25ea05c97cfe621e3000763e78dd4f9cb1fdb | [
"MIT"
] | 5 | 2019-11-28T12:15:41.000Z | 2021-02-19T10:57:59.000Z | name: Obsidian Action
on:
push:
branches:
- master
- develop
- release/*
pull_request:
branches:
- master
- develop
jobs:
build_stable:
name: Stable
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable]
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
components: rustfmt
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Install clippy
run: rustup component add clippy
- name: Check code format
run: cargo fmt --all -- --check
- name: Run clippy
run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo test --verbose
build_nightly:
name: Nightly
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [nightly]
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@v2
- name: Build
run: cargo +nightly build --verbose
# - name: Install clippy
# run: rustup component add clippy
# - name: Run clippy
# run: cargo clippy --all-targets --all-features -- -D warnings
- name: Run tests
run: cargo +nightly test --verbose
| 24.557377 | 74 | 0.556075 |
a1fd0eaa7a09883d473b20fdefc5a8af1c55e2d4 | 1,747 | yml | YAML | .github/workflows/create-unitypackage.yml | esnya/UdonSimpleCars | 4c547579e67ec3cf245557bd4d94f0bc1637048c | [
"MIT"
] | 8 | 2021-10-23T01:10:53.000Z | 2022-03-21T17:25:42.000Z | .github/workflows/create-unitypackage.yml | esnya/UdonSimpleCars | 4c547579e67ec3cf245557bd4d94f0bc1637048c | [
"MIT"
] | 9 | 2021-11-08T02:21:21.000Z | 2022-03-30T13:23:28.000Z | .github/workflows/create-unitypackage.yml | esnya/UdonSimpleCars | 4c547579e67ec3cf245557bd4d94f0bc1637048c | [
"MIT"
] | 1 | 2022-03-12T16:00:20.000Z | 2022-03-12T16:00:20.000Z | name: Create Unity Package
on:
- push
jobs:
prebuild:
runs-on: ubuntu-latest
outputs:
package_name: ${{steps.package_name.outputs.package_name}}
steps:
- id: package_name
run: echo "::set-output name=package_name::$(echo ${GITHUB_REPOSITORY##*/})-$(echo ${GITHUB_REF##refs/*/})"
build:
needs: prebuild
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: |
find Assets -name \*.meta > metaList
mkdir dist
cat metaList
- uses: pCYSl5EDgo/create-unitypackage@master
with:
package-path: 'dist/${{needs.prebuild.outputs.package_name}}.unitypackage'
include-files: metaList
- name: Upload package artifacts
uses: actions/upload-artifact@v2
with:
name: '${{needs.prebuild.outputs.package_name}}.unitypackage'
path: 'dist/${{needs.prebuild.outputs.package_name}}.unitypackage'
if-no-files-found: error
release:
needs:
- prebuild
- build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
- name: Cache node_modules
id: cache-node_modules
uses: actions/cache@v2
with:
path: node_modules
key: ${{runner.os}}-node_modules
- name: Install dependencies
run: npm install -D semantic-release @semantic-release/github @semantic-release/exec semantic-release-gitmoji
- name: Download artifacts
uses: actions/download-artifact@v2
with:
path: dist/
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npx semantic-release
| 28.177419 | 117 | 0.606754 |
6c1472aa75256b919dd1de59ee6f8cc1c26fb0eb | 108 | yml | YAML | _config.yml | Seliy/Seliy.github.io | 70d4dda8bb0934688143d47042fea5764451d54d | [
"CC0-1.0"
] | null | null | null | _config.yml | Seliy/Seliy.github.io | 70d4dda8bb0934688143d47042fea5764451d54d | [
"CC0-1.0"
] | null | null | null | _config.yml | Seliy/Seliy.github.io | 70d4dda8bb0934688143d47042fea5764451d54d | [
"CC0-1.0"
] | null | null | null | title: Seliy
description: Seliy's blog
show_downloads: true
google_analytics:
theme: jekyll-theme-architect
| 18 | 29 | 0.833333 |
757ec1e68ce23e40d7069621575160026ca78059 | 110 | yml | YAML | config/testdata/remote_write_retry_on_rate_limit.good.yml | czlree/prometheus | 027b082793bc557f9f7dcf8fe4f149ea1cc856eb | [
"Apache-2.0"
] | 43,863 | 2015-01-03T23:39:30.000Z | 2022-03-31T22:11:56.000Z | config/testdata/remote_write_retry_on_rate_limit.good.yml | NextSteps79/prometheus | 51b08269255ad1b19affa1bd28391495d5cfeb65 | [
"Apache-2.0"
] | 9,109 | 2015-01-02T10:47:26.000Z | 2022-03-31T21:49:28.000Z | config/testdata/remote_write_retry_on_rate_limit.good.yml | Harkishen-Singh/prometheus-index-roaringbitmaps | 7f40fda24215652b318cab5ee46a065584d91ab2 | [
"Apache-2.0"
] | 8,288 | 2015-01-06T03:47:23.000Z | 2022-03-31T23:07:58.000Z | remote_write:
- url: localhost:9090
queue_config:
retry_on_http_429: true
- url: localhost:9201
| 18.333333 | 29 | 0.7 |
13f52fa4ea58cebdf718d26a302bee451c6e2506 | 599 | yml | YAML | grumphp.yml | lalbini/laravel-db2-bridge | e67dea428c1211ed7c0893b0f93ba23110da1a53 | [
"MIT"
] | 1 | 2017-01-18T20:34:50.000Z | 2017-01-18T20:34:50.000Z | grumphp.yml | lalbini/laravel-db2-bridge | e67dea428c1211ed7c0893b0f93ba23110da1a53 | [
"MIT"
] | 5 | 2016-11-01T03:46:23.000Z | 2016-11-01T03:53:51.000Z | grumphp.yml | lalbini/laravel-db2-bridge | e67dea428c1211ed7c0893b0f93ba23110da1a53 | [
"MIT"
] | 1 | 2021-04-11T12:16:09.000Z | 2021-04-11T12:16:09.000Z | parameters:
bin_dir: "./vendor/bin"
git_dir: "."
hooks_dir: ~
hooks_preset: local
stop_on_failure: true
ignore_unstaged_changes: false
process_timeout: 240
ascii:
failed: ~
succeeded: ~
tasks:
composer: ~
git_blacklist: ~
git_commit_message: ~
phpcs:
standard: build/sniffer.xml
show_warnings: true
tab_width: ~
ignore_patterns:
- vendor
- tests
sniffs: []
triggered_by: [php]
phpunit: ~
extensions: []
| 22.185185 | 39 | 0.510851 |
56f5950760c117a8d94bf8ef938ccef4dd188165 | 53 | yml | YAML | spec/fixtures/docs_2016/notifications/022.yml | cucucuck/11 | 8a014995b31540cac56f4652096567e800b0cc71 | [
"MIT"
] | 112 | 2016-11-17T17:19:56.000Z | 2022-03-29T06:31:23.000Z | spec/fixtures/docs_2016/notifications/022.yml | cucucuck/11 | 8a014995b31540cac56f4652096567e800b0cc71 | [
"MIT"
] | 95 | 2017-08-03T09:41:17.000Z | 2022-03-30T22:30:30.000Z | spec/fixtures/docs_2016/notifications/022.yml | cucucuck/11 | 8a014995b31540cac56f4652096567e800b0cc71 | [
"MIT"
] | 84 | 2017-06-05T09:34:02.000Z | 2022-03-29T06:31:56.000Z | notifications:
hipchat:
on_pull_requests: false | 17.666667 | 27 | 0.773585 |
041dacda2d8717e9d3bb578ee1e8e0bbcd75c4df | 112 | yaml | YAML | tests/integration2/galley/testdata/config-v1alpha2-rbac-valid.yaml | PinZhang/istio | dce455456d77ca5af34ba5848f9704577349c6bd | [
"Apache-2.0"
] | 794 | 2018-07-12T06:08:10.000Z | 2019-05-12T20:06:00.000Z | tests/integration2/galley/testdata/config-v1alpha2-rbac-valid.yaml | PinZhang/istio | dce455456d77ca5af34ba5848f9704577349c6bd | [
"Apache-2.0"
] | 25 | 2018-07-20T08:53:42.000Z | 2019-05-05T06:23:11.000Z | tests/integration2/galley/testdata/config-v1alpha2-rbac-valid.yaml | PinZhang/istio | dce455456d77ca5af34ba5848f9704577349c6bd | [
"Apache-2.0"
] | 116 | 2018-07-12T15:24:17.000Z | 2019-05-10T10:11:32.000Z | apiVersion: "config.istio.io/v1alpha2"
kind: rbac
metadata:
name: valid-rbac
spec:
config_store_url: "k8s://"
| 16 | 38 | 0.741071 |
d0b726be7fa2498e0d62241d8c6d96d460b65847 | 115 | yaml | YAML | personas/dsmlp/dataverse-chart/Chart.yaml | ucsd-ets/dataverse-kubernetes | 299956005a66519b9b81a93efd4b976029c4dfed | [
"Apache-2.0"
] | null | null | null | personas/dsmlp/dataverse-chart/Chart.yaml | ucsd-ets/dataverse-kubernetes | 299956005a66519b9b81a93efd4b976029c4dfed | [
"Apache-2.0"
] | null | null | null | personas/dsmlp/dataverse-chart/Chart.yaml | ucsd-ets/dataverse-kubernetes | 299956005a66519b9b81a93efd4b976029c4dfed | [
"Apache-2.0"
] | null | null | null | apiVersion: v1
appVersion: "1.0"
description: Helm chart for dataverse ingress
name: dataverse-chart
version: 0.1.0 | 23 | 45 | 0.791304 |
a93d73794b0578ef00cdd812d1781fd24f24e9d2 | 112,769 | yaml | YAML | APIs/reverb.com/3.0/swagger.yaml | parasj93/JavaApi | 5294ef0669c3a018393c2a905a1532023fc56020 | [
"MIT"
] | null | null | null | APIs/reverb.com/3.0/swagger.yaml | parasj93/JavaApi | 5294ef0669c3a018393c2a905a1532023fc56020 | [
"MIT"
] | null | null | null | APIs/reverb.com/3.0/swagger.yaml | parasj93/JavaApi | 5294ef0669c3a018393c2a905a1532023fc56020 | [
"MIT"
] | null | null | null | swagger: '2.0'
schemes:
- https
host: api.reverb.com
basePath: /api
info:
contact:
email: integrations@reverb.com
name: Reverb API
url: 'https://dev.reverb.com'
description: reverb
license:
name: Apache 2.0
url: 'http://www.apache.org/licenses/LICENSE-2.0.html'
termsOfService: 'https://reverb.com/page/terms'
title: reverb
version: '3.0'
x-apisguru-categories:
- ecommerce
x-logo:
url: 'https://d1g5417jjjo7sf.cloudfront.net/assets/top-level/reverb-logo-d2c75af0b020521f0bc5e90c883a13b5.svg'
x-origin:
- format: swagger
url: 'https://s3.amazonaws.com/swagger.reverb.com/swagger.json'
version: '2.0'
x-providerName: reverb.com
externalDocs:
url: 'https://dev.reverb.com/'
consumes:
- application/json
produces:
- application/json
securityDefinitions:
oauth2:
flow: application
scopes:
public: ''
read_feedback: ''
read_listings: ''
read_lists: ''
read_messages: ''
read_offers: ''
read_orders: ''
read_profile: ''
write_feedback: ''
write_listings: ''
write_lists: ''
write_messages: ''
write_offers: ''
write_orders: ''
write_profile: ''
write_reviews: ''
tokenUrl: 'https://reverb.com/oauth/token'
type: oauth2
paths:
/accounts:
post:
description: Create an account.
parameters:
- description: the content of the request
in: body
name: body
schema:
properties:
accept_terms:
description: Accept the Reverb terms of use and privacy policy
type: boolean
email:
description: Email address.
type: string
first_name:
description: First Name
type: string
last_name:
description: Last Name
type: string
newsletter_opt_in:
description: Subscribe to gear deals by email
type: boolean
password:
description: Password (at least 8 characters).
type: string
required:
- email
- password
- first_name
- last_name
type: object
responses:
default:
description: Unexpected error
summary: Create an account.
tags:
- accounts
/articles:
get:
description: See all Reverb blog posts
responses:
default:
description: Unexpected error
summary: See all Reverb blog posts
tags:
- articles
/articles/featured:
get:
description: See featured Reverb blog posts
responses:
default:
description: Unexpected error
summary: See featured Reverb blog posts
tags:
- articles
/articles/recently_featured:
get:
responses:
default:
description: Unexpected error
tags:
- articles
'/articles/{slug}':
get:
description: Display a single article
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: Display a single article
tags:
- articles
'/articles/{slug}/related-listings':
get:
description: Find listings related to an article
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: Find listings related to an article
tags:
- articles
/auth/forgot_password:
post:
description: Send a password reset email
parameters:
- description: the content of the request
in: body
name: body
schema:
properties:
email:
type: string
required:
- email
type: object
responses:
default:
description: Unexpected error
summary: Send a password reset email
tags:
- auth
/auth/logout:
put:
description: Logout (primarily for mobile clients)
parameters:
- description: the content of the request
in: body
name: body
schema:
properties:
device_token:
type: string
device_type:
enum:
- ios
- android
type: string
required:
- device_type
type: object
responses:
default:
description: Unexpected error
summary: Logout (primarily for mobile clients)
tags:
- auth
/autosuggest:
get:
description: Autosuggest terms for searches
responses:
default:
description: Unexpected error
summary: Autosuggest terms for searches
tags:
- autosuggest
/cart:
get:
description: Get all cart items
responses:
default:
description: Unexpected error
summary: Get all cart items
tags:
- cart
'/cart/move_to_watch_list/{cart_item_id}':
post:
description: Remove a cart item and add it to watch list
parameters:
- in: path
name: cart_item_id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Remove a cart item and add it to watch list
tags:
- cart
'/cart/{id}':
delete:
description: Remove a product from the cart
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Remove a product from the cart
tags:
- cart
post:
description: Add product to the cart
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Add product to the cart
tags:
- cart
put:
description: Update cart item details
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Update cart item details
tags:
- cart
/categories:
get:
description: List of supported product categories
responses:
default:
description: Unexpected error
summary: List of supported product categories
tags:
- categories
/categories/flat:
get:
responses:
default:
description: Unexpected error
tags:
- categories
'/categories/{product_type}/{category}':
get:
description: Get subcategory details
parameters:
- in: path
name: product_type
required: true
type: string
- in: path
name: category
required: true
type: string
responses:
default:
description: Unexpected error
summary: Get subcategory details
tags:
- categories
'/categories/{uuid}':
get:
description: Get category details
parameters:
- in: path
name: uuid
required: true
type: string
responses:
default:
description: Unexpected error
summary: Get category details
tags:
- categories
/collections:
get:
description: List of curated collections
responses:
default:
description: Unexpected error
summary: List of curated collections
tags:
- collections
'/collections/{slug}':
get:
description: Collection details
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: Collection details
tags:
- collections
/comparison_shopping_pages:
get:
description: Returns a set of comparison shopping pages based on the current params
responses:
default:
description: Unexpected error
summary: Returns a set of comparison shopping pages based on the current params
tags:
- comparison_shopping_pages
'/comparison_shopping_pages/{id}':
get:
description: Show comparison shopping page
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Show comparison shopping page
tags:
- comparison_shopping_pages
'/comparison_shopping_pages/{id}/listings':
get:
description: Return new or used listings for a comparison shopping page
parameters:
- in: path
name: id
required: true
type: string
- description: Condition of the listing
in: query
name: condition
required: true
type: string
responses:
default:
description: Unexpected error
summary: Return new or used listings for a comparison shopping page
tags:
- comparison_shopping_pages
'/comparison_shopping_pages/{id}/reviews':
get:
description: View reviews of a comparison shopping page
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
summary: View reviews of a comparison shopping page
tags:
- comparison_shopping_pages
'/conversations/{id}/offer':
post:
description: Make an offer to the other participant in the conversation
parameters:
- in: path
name: id
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
message:
description: Message to include with counter offer
type: string
price:
properties:
amount:
description: 'The amount of money being expressed, as a decimal number'
type: string
currency:
description: The currency the money will be expressed in
enum:
- USD
- CAD
- EUR
- GBP
- AUD
- JPY
- NZD
- MXN
type: string
required:
- amount
- currency
type: object
shipping_price:
description: Shipping price (sellers only)
properties:
amount:
description: 'The amount of money being expressed, as a decimal number'
type: string
currency:
description: The currency the money will be expressed in
enum:
- USD
- CAD
- EUR
- GBP
- AUD
- JPY
- NZD
- MXN
type: string
required:
- amount
- currency
type: object
required:
- price
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_offers
summary: Make an offer to the other participant in the conversation
tags:
- conversations
/countries:
get:
description: Retrieve a list of country codes with corresponding subregions
responses:
default:
description: Unexpected error
summary: Retrieve a list of country codes with corresponding subregions
tags:
- countries
/currencies/display:
get:
description: List of supported display currencies for browsing listings
responses:
default:
description: Unexpected error
summary: List of supported display currencies for browsing listings
tags:
- currencies
/currencies/listing:
get:
description: List of supported listing currencies for shops
responses:
default:
description: Unexpected error
summary: List of supported listing currencies for shops
tags:
- currencies
'/feedback/{feedback_id}':
get:
description: Feedback details
parameters:
- in: path
name: feedback_id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Feedback details
tags:
- feedback
'/handpicked/{slug}':
get:
description: Handpicked collection details
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: Handpicked collection details
tags:
- handpicked
/listing_conditions:
get:
description: List of supported product conditions
responses:
default:
description: Unexpected error
summary: List of supported product conditions
tags:
- listing_conditions
/listings:
get:
description: Default search of listings includes only used & handmade. Add a filter to view all listings or use the /listings/all endpoint.
parameters:
- description: Search query.
in: query
name: query
required: false
type: string
- description: Maximum current auction price
format: float
in: query
name: auction_price_max
required: false
type: number
- description: Category slug from /api/categories
in: query
name: category
required: false
type: string
- description: Product type slug from /api/categories
in: query
name: product_type
required: false
type: string
- description: 'Condition: all,new,b-stock,used,non-functioning'
in: query
items:
type: string
name: conditions
required: false
type: array
- description: 'Decade: e.g. 1970s, early 70s'
in: query
name: decade
required: false
type: string
- description: 'Visual finish of the item, common for guitars'
in: query
name: finish
required: false
type: string
- description: Handmade items only
in: query
name: handmade
required: false
type: boolean
- description: City where item is located
in: query
name: item_city
required: false
type: string
- description: DEPRECATED - Country code where item is located
in: query
name: item_country
required: false
type: string
- description: Country code where item is located
in: query
name: item_region
required: false
type: string
- description: State or region code where item is located
in: query
name: item_state
required: false
type: string
- description: Make(s)/brand of item (e.g. Fender). Can take a single value or an array.
in: query
items:
type: string
name: make
required: false
type: array
- description: Model of item (e.g. Stratocaster)
in: query
name: model
required: false
type: string
- description: 'Search term negation. If you want to exclude a term, add it here'
in: query
name: must_not
required: false
type: string
- description: Maximum price of search results (USD)
format: float
in: query
name: price_max
required: false
type: number
- description: Minimum price of search results (USD)
format: float
in: query
name: price_min
required: false
type: number
- description: The currency to be used for the price filters
in: query
name: currency
required: false
type: string
- description: Maximum year of manufacture
in: query
name: year_max
required: false
type: integer
- description: Minumum year of manufacture
in: query
name: year_min
required: false
type: integer
- description: 'If true, include only items that accept gift cards'
in: query
name: accepts_gift_cards
required: false
type: boolean
- description: 'If true, include only items by Reverb Preferred Sellers'
in: query
name: preferred_seller
required: false
type: boolean
- description: Slug of shop to search
in: query
name: shop
required: false
type: string
- description: ID of shop to search
in: query
name: shop_id
required: false
type: string
- description: 'Type of listing: auctions,offers'
in: query
name: listing_type
required: false
type: string
- description: Limit search to items that ship to this country code
in: query
name: ships_to
required: false
type: string
- description: 'If true, exclude auctions'
in: query
name: exclude_auctions
required: false
type: boolean
- description: 'If true, only show items that can be purchased with a payment plan'
in: query
name: accepts_payment_plans
required: false
type: boolean
- description: Minimum number of watchers (used to find popular items)
in: query
name: watchers_count_min
required: false
type: integer
- default: 1
in: query
name: page
required: false
type: integer
- default: 24
in: query
name: per_page
required: false
type: integer
responses:
default:
description: Unexpected error
summary: Default search of listings includes only used & handmade. Add a filter to view all listings or use the /listings/all endpoint.
tags:
- listings
post:
description: Create a listing
parameters:
- description: the content of the request
in: body
name: body
schema:
properties:
categories:
items:
properties:
uuid:
description: UUID of the category for this listing.
type: string
type: object
type: array
condition:
description: Condition
properties:
uuid:
description: Condition UUID
enum:
- fbf35668-96a0-4baa-bcde-ab18d6b1b329
- 6a9dfcad-600b-46c8-9e08-ce6e5057921e
- 98777886-76d0-44c8-865e-bb40e669e934
- f7a3f48c-972a-44c6-b01a-0cd27488d3f6
- ae4d9114-1bd7-4ec5-a4ba-6653af5ac84d
- df268ad1-c462-4ba6-b6db-e007e23922ea
- ac5b9c1e-dc78-466d-b0b3-7cf712967a48
- 6db7df88-293b-4017-a1c1-cdb5e599fa1a
- 9225283f-60c2-4413-ad18-1f5eba7a856f
- 7c3f45de-2ae0-4c81-8400-fdb6b1d74890
type: string
required:
- uuid
type: object
description:
description: Product description. Please keep formatting to a minimum.
type: string
finish:
description: 'Finish, e.g. ''Sunburst'''
type: string
has_inventory:
description: Set true if selling more than one
type: boolean
inventory:
description: Number of items available for sale. Reverb will increment and decrement automatically.
type: integer
location:
properties:
country_code:
description: 'Ex: US'
type: string
locality:
description: 'Ex: Chicago'
type: string
region:
description: 'Ex: IL'
type: string
type: object
make:
description: 'ex: Fender, Gibson'
type: string
model:
description: 'ex: Stratocaster, SG'
type: string
offers_enabled:
description: 'Whether the listing accepts negotiated offers (default: true)'
type: boolean
origin_country_code:
description: 'Country of origin/manufacture, ISO code (e.g: US)'
type: string
photos:
description: 'An array of image URLs. Ex: [''http://my.site.com/image.jpg'']'
items:
type: string
type: array
price:
properties:
amount:
description: 'The amount of money being expressed, as a decimal number'
type: string
currency:
description: The currency the money will be expressed in
enum:
- USD
- CAD
- EUR
- GBP
- AUD
- JPY
- NZD
- MXN
type: string
required:
- amount
- currency
type: object
publish:
description: Publish your listing if draft
type: boolean
seller:
properties:
paypal_email:
type: string
type: object
seller_cost:
description: 'Cost of goods in your currency (internal use only, not shown to buyers)'
type: string
shipping:
properties:
local:
description: True if you offer local pickup
type: boolean
rates:
description: List of shipping rates. Set to null to clear rates.
items:
properties:
rate:
properties:
amount:
description: 'The amount of money being expressed, as a decimal number'
type: string
currency:
description: The currency the money will be expressed in
enum:
- USD
- CAD
- EUR
- GBP
- AUD
- JPY
- NZD
- MXN
type: string
required:
- amount
- currency
type: object
region_code:
description: Country code or subregion/superregion code. Full list of codes at /api/shipping/regions
type: string
type: object
type: array
type: object
shipping_profile_id:
description: id of a shop's shipping profile
type: string
shipping_profile_name:
description: 'DEPRECATED, please use shipping_profile_id. Name of a shipping profile'
type: string
sku:
description: Unique identifier for product
type: string
sold_as_is:
description: This item is sold As-Is and cannot be returned
type: boolean
tax_exempt:
description: Listing is exempt from taxes / VAT
type: boolean
title:
description: Title of your listing
type: string
upc:
description: Valid UPC code
type: string
year:
description: 'Supports many formats. Ex: 1979, mid-70s, late 90s'
type: string
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_listings
summary: Create a listing
tags:
- listings
/listings/all:
get:
description: 'All listings including used, handmade, and brand new'
parameters:
- description: Search query.
in: query
name: query
required: false
type: string
- description: Maximum current auction price
format: float
in: query
name: auction_price_max
required: false
type: number
- description: Category slug from /api/categories
in: query
name: category
required: false
type: string
- description: Product type slug from /api/categories
in: query
name: product_type
required: false
type: string
- description: 'Condition: all,new,b-stock,used,non-functioning'
in: query
items:
type: string
name: conditions
required: false
type: array
- description: 'Decade: e.g. 1970s, early 70s'
in: query
name: decade
required: false
type: string
- description: 'Visual finish of the item, common for guitars'
in: query
name: finish
required: false
type: string
- description: Handmade items only
in: query
name: handmade
required: false
type: boolean
- description: City where item is located
in: query
name: item_city
required: false
type: string
- description: DEPRECATED - Country code where item is located
in: query
name: item_country
required: false
type: string
- description: Country code where item is located
in: query
name: item_region
required: false
type: string
- description: State or region code where item is located
in: query
name: item_state
required: false
type: string
- description: Make(s)/brand of item (e.g. Fender). Can take a single value or an array.
in: query
items:
type: string
name: make
required: false
type: array
- description: Model of item (e.g. Stratocaster)
in: query
name: model
required: false
type: string
- description: 'Search term negation. If you want to exclude a term, add it here'
in: query
name: must_not
required: false
type: string
- description: Maximum price of search results (USD)
format: float
in: query
name: price_max
required: false
type: number
- description: Minimum price of search results (USD)
format: float
in: query
name: price_min
required: false
type: number
- description: The currency to be used for the price filters
in: query
name: currency
required: false
type: string
- description: Maximum year of manufacture
in: query
name: year_max
required: false
type: integer
- description: Minumum year of manufacture
in: query
name: year_min
required: false
type: integer
- description: 'If true, include only items that accept gift cards'
in: query
name: accepts_gift_cards
required: false
type: boolean
- description: 'If true, include only items by Reverb Preferred Sellers'
in: query
name: preferred_seller
required: false
type: boolean
- description: Slug of shop to search
in: query
name: shop
required: false
type: string
- description: ID of shop to search
in: query
name: shop_id
required: false
type: string
- description: 'Type of listing: auctions,offers'
in: query
name: listing_type
required: false
type: string
- description: Limit search to items that ship to this country code
in: query
name: ships_to
required: false
type: string
- description: 'If true, exclude auctions'
in: query
name: exclude_auctions
required: false
type: boolean
- description: 'If true, only show items that can be purchased with a payment plan'
in: query
name: accepts_payment_plans
required: false
type: boolean
- description: Minimum number of watchers (used to find popular items)
in: query
name: watchers_count_min
required: false
type: integer
- default: 1
in: query
name: page
required: false
type: integer
- default: 24
in: query
name: per_page
required: false
type: integer
responses:
default:
description: Unexpected error
summary: 'All listings including used, handmade, and brand new'
tags:
- listings
'/listings/{id}/offer':
post:
description: Make an offer to the seller of a listing
parameters:
- in: path
name: id
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
message:
description: Message to include with counter offer
type: string
price:
description: Offer price
type: string
shipping_price:
description: Shipping price (sellers only)
type: string
required:
- price
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_offers
summary: Make an offer to the seller of a listing
tags:
- listings
'/listings/{listing_id}/bump':
get:
description: View available bump tiers and stats for a listing
parameters:
- in: path
name: listing_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_listings
summary: View available bump tiers and stats for a listing
tags:
- listings
'/listings/{listing_id}/bump/{budget_type}':
post:
description: Bump a listing
parameters:
- in: path
name: listing_id
required: true
type: string
- in: path
name: budget_type
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_listings
summary: Bump a listing
tags:
- listings
'/listings/{listing_id}/conversations':
post:
description: Start a conversation with a seller
parameters:
- in: path
name: listing_id
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
body:
type: string
required:
- body
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_messages
summary: Start a conversation with a seller
tags:
- listings
'/listings/{listing_id}/images':
get:
description: View the images associated with a particular listing
parameters:
- in: path
name: listing_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_listings
summary: View the images associated with a particular listing
tags:
- listings
'/listings/{listing_id}/images/{image_id}':
delete:
description: Delete an image from a listing
parameters:
- in: path
name: listing_id
required: true
type: string
- in: path
name: image_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_listings
summary: Delete an image from a listing
tags:
- listings
'/listings/{listing_id}/product_bundle':
get:
description: Find a product bundle attached to a listing
parameters:
- in: path
name: listing_id
required: true
type: string
- description: Pass to see non-live bundles as the seller
in: query
name: for_seller
required: false
type: boolean
responses:
default:
description: Unexpected error
summary: Find a product bundle attached to a listing
tags:
- listings
'/listings/{listing_id}/sales':
get:
description: See all sales that include a listing.
parameters:
- in: path
name: listing_id
required: true
type: string
responses:
default:
description: Unexpected error
summary: See all sales that include a listing.
tags:
- listings
'/listings/{slug}':
delete:
description: Delete a draft listing. Cannot be used on non-drafts.
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_listings
summary: Delete a draft listing. Cannot be used on non-drafts.
tags:
- listings
get:
description: Listing details
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: Listing details
tags:
- listings
put:
description: Update a listing
parameters:
- in: path
name: slug
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
categories:
items:
properties:
uuid:
description: UUID of the category for this listing.
type: string
type: object
type: array
condition:
description: Condition
properties:
uuid:
description: Condition UUID
enum:
- fbf35668-96a0-4baa-bcde-ab18d6b1b329
- 6a9dfcad-600b-46c8-9e08-ce6e5057921e
- 98777886-76d0-44c8-865e-bb40e669e934
- f7a3f48c-972a-44c6-b01a-0cd27488d3f6
- ae4d9114-1bd7-4ec5-a4ba-6653af5ac84d
- df268ad1-c462-4ba6-b6db-e007e23922ea
- ac5b9c1e-dc78-466d-b0b3-7cf712967a48
- 6db7df88-293b-4017-a1c1-cdb5e599fa1a
- 9225283f-60c2-4413-ad18-1f5eba7a856f
- 7c3f45de-2ae0-4c81-8400-fdb6b1d74890
type: string
required:
- uuid
type: object
description:
description: Product description. Please keep formatting to a minimum.
type: string
finish:
description: 'Finish, e.g. ''Sunburst'''
type: string
has_inventory:
description: Set true if selling more than one
type: boolean
inventory:
description: Number of items available for sale. Reverb will increment and decrement automatically.
type: integer
location:
properties:
country_code:
description: 'Ex: US'
type: string
locality:
description: 'Ex: Chicago'
type: string
region:
description: 'Ex: IL'
type: string
type: object
make:
description: 'ex: Fender, Gibson'
type: string
model:
description: 'ex: Stratocaster, SG'
type: string
offers_enabled:
description: 'Whether the listing accepts negotiated offers (default: true)'
type: boolean
origin_country_code:
description: 'Country of origin/manufacture, ISO code (e.g: US)'
type: string
photos:
description: 'An array of image URLs. Ex: [''http://my.site.com/image.jpg'']'
items:
type: string
type: array
price:
properties:
amount:
description: 'The amount of money being expressed, as a decimal number'
type: string
currency:
description: The currency the money will be expressed in
enum:
- USD
- CAD
- EUR
- GBP
- AUD
- JPY
- NZD
- MXN
type: string
required:
- amount
- currency
type: object
publish:
description: Publish your listing if draft
type: boolean
seller:
properties:
paypal_email:
type: string
type: object
seller_cost:
description: 'Cost of goods in your currency (internal use only, not shown to buyers)'
type: string
shipping:
properties:
local:
description: True if you offer local pickup
type: boolean
rates:
description: List of shipping rates. Set to null to clear rates.
items:
properties:
rate:
properties:
amount:
description: 'The amount of money being expressed, as a decimal number'
type: string
currency:
description: The currency the money will be expressed in
enum:
- USD
- CAD
- EUR
- GBP
- AUD
- JPY
- NZD
- MXN
type: string
required:
- amount
- currency
type: object
region_code:
description: Country code or subregion/superregion code. Full list of codes at /api/shipping/regions
type: string
type: object
type: array
type: object
shipping_profile_id:
description: id of a shop's shipping profile
type: string
shipping_profile_name:
description: 'DEPRECATED, please use shipping_profile_id. Name of a shipping profile'
type: string
sku:
description: Unique identifier for product
type: string
sold_as_is:
description: This item is sold As-Is and cannot be returned
type: boolean
tax_exempt:
description: Listing is exempt from taxes / VAT
type: boolean
title:
description: Title of your listing
type: string
upc:
description: Valid UPC code
type: string
year:
description: 'Supports many formats. Ex: 1979, mid-70s, late 90s'
type: string
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_listings
summary: Update a listing
tags:
- listings
'/listings/{slug}/edit':
get:
description: Edit listing.
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_listings
summary: Edit listing.
tags:
- listings
'/listings/{slug}/flag':
post:
description: Flag a listing for inappropriate content or fraud
parameters:
- in: path
name: slug
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
reason:
description: 'Valid reasons: ''Sexuality/nudity'', ''Hateful or inappropriate speech'', ''Item not as described or potential fraud'', ''Trademark infringement'', ''Other'''
type: string
required:
- reason
type: object
responses:
default:
description: Unexpected error
summary: Flag a listing for inappropriate content or fraud
tags:
- listings
'/listings/{slug}/reviews':
get:
description: View reviews of a listing
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: View reviews of a listing
tags:
- listings
post:
description: Create a review for a listing
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_reviews
summary: Create a review for a listing
tags:
- listings
'/listings/{slug}/similar_listings':
get:
description: Listing details
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: Listing details
tags:
- listings
/my/account:
get:
description: Get account details
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_profile
summary: Get account details
tags:
- my
put:
description: Update account details
parameters:
- description: the content of the request
in: body
name: body
schema:
properties:
currency:
description: The currency preference for the account
type: string
first_name:
description: The first name of the account holder
type: string
last_name:
description: The last name of the account holder
type: string
shipping_region_code:
description: The shipping region preference for the account
type: string
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_profile
summary: Update account details
tags:
- my
/my/addresses:
get:
description: See all addresses in your address book
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_profile
summary: See all addresses in your address book
tags:
- my
post:
description: Create a new address in your address book
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_profile
summary: Create a new address in your address book
tags:
- my
'/my/addresses/{address_id}':
delete:
description: Delete an existing address in your address book
parameters:
- in: path
name: address_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_profile
summary: Delete an existing address in your address book
tags:
- my
put:
description: Update an existing address in your address book
parameters:
- in: path
name: address_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_profile
summary: Update an existing address in your address book
tags:
- my
/my/conversations:
get:
description: Get a list of your conversations
parameters:
- description: Query string to search conversations by
in: query
name: search
required: false
type: string
- description: Show unread conversations only
in: query
name: unread_only
required: false
type: boolean
- default: 1
in: query
name: page
required: false
type: integer
- default: 24
in: query
name: per_page
required: false
type: integer
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_messages
summary: Get a list of your conversations
tags:
- my
post:
description: Start a conversation
parameters:
- description: the content of the request
in: body
name: body
schema:
properties:
body:
description: The body of the message
type: string
cloudinary_photos:
description: An array of cloudinary data hashes (Reverb internal use only).
items:
type: string
type: array
listing_id:
description: The id of the listing being discussed
type: integer
recipient_id:
description: The id of the user you are trying to contact
type: integer
required:
- body
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_messages
summary: Start a conversation
tags:
- my
'/my/conversations/{conversation_id}/messages':
post:
description: Send a message
parameters:
- in: path
name: conversation_id
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
body:
type: string
required:
- body
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_messages
summary: Send a message
tags:
- my
'/my/conversations/{id}':
get:
description: Display conversation details with messages in natural time order (oldest to newest)
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_messages
summary: Display conversation details with messages in natural time order (oldest to newest)
tags:
- my
put:
description: Mark a conversation read/unread
parameters:
- in: path
name: id
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
read:
description: Should the conversation be marked as read
type: boolean
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_messages
summary: Mark a conversation read/unread
tags:
- my
/my/counts:
get:
description: Get your actionable status counts
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_profile
summary: Get your actionable status counts
tags:
- my
/my/feed:
get:
description: Get listings from your feed
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: Get listings from your feed
tags:
- my
/my/feed/grid:
get:
description: get your feed
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: get your feed
tags:
- my
/my/feedback/received:
get:
description: List of received feedback
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_feedback
summary: List of received feedback
tags:
- my
/my/feedback/sent:
get:
description: List of sent feedback
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_feedback
summary: List of sent feedback
tags:
- my
/my/follows:
get:
description: See what the user is following
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: See what the user is following
tags:
- my
'/my/follows/brands/{slug}':
delete:
description: Unfollow a brand
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Unfollow a brand
tags:
- my
get:
description: Follow status for a brand
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: Follow status for a brand
tags:
- my
post:
description: Follow a brand
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Follow a brand
tags:
- my
'/my/follows/categories/{category}/{subcategory}':
delete:
description: Unfollow a subcategory
parameters:
- in: path
name: category
required: true
type: string
- in: path
name: subcategory
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Unfollow a subcategory
tags:
- my
get:
description: Follow status for a subcategory
parameters:
- in: path
name: category
required: true
type: string
- in: path
name: subcategory
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: Follow status for a subcategory
tags:
- my
post:
description: Follow a subcategory
parameters:
- in: path
name: category
required: true
type: string
- in: path
name: subcategory
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Follow a subcategory
tags:
- my
'/my/follows/categories/{identifier}':
delete:
description: Unfollow a category
parameters:
- in: path
name: identifier
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Unfollow a category
tags:
- my
get:
description: Follow status for a category
parameters:
- in: path
name: identifier
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: Follow status for a category
tags:
- my
post:
description: Follow a category
parameters:
- in: path
name: identifier
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Follow a category
tags:
- my
'/my/follows/collections/{slug}':
delete:
description: Unfollow a collection
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Unfollow a collection
tags:
- my
get:
description: Follow status for a collection
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: Follow status for a collection
tags:
- my
post:
description: Follow a collection
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Follow a collection
tags:
- my
'/my/follows/handpicked/{slug}':
delete:
description: Unfollow a handpicked collection
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Unfollow a handpicked collection
tags:
- my
get:
description: Follow status for a handpicked collection
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: Follow status for a handpicked collection
tags:
- my
post:
description: Follow a handpicked collection
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Follow a handpicked collection
tags:
- my
/my/follows/search:
get:
description: Follow status for a search
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: Follow status for a search
tags:
- my
post:
description: Follow a search
parameters:
- description: the content of the request
in: body
name: body
schema:
properties:
accepts_gift_cards:
description: 'If true, include only items that accept gift cards'
type: boolean
accepts_payment_plans:
description: 'If true, only show items that can be purchased with a payment plan'
type: boolean
auction_price_max:
description: Maximum current auction price
format: float
type: number
category:
description: Category slug from /api/categories
type: string
conditions:
description: 'Condition: all,new,b-stock,used,non-functioning'
enum:
- all
- new
- b-stock
- used
- non-functioning
items:
type: string
type: array
currency:
description: The currency to be used for the price filters
enum:
- USD
- CAD
- EUR
- GBP
- AUD
- JPY
- NZD
- MXN
type: string
decade:
description: 'Decade: e.g. 1970s, early 70s'
type: string
exclude_auctions:
description: 'If true, exclude auctions'
type: boolean
finish:
description: 'Visual finish of the item, common for guitars'
type: string
handmade:
description: Handmade items only
type: boolean
item_city:
description: City where item is located
type: string
item_country:
description: DEPRECATED - Country code where item is located
type: string
item_region:
description: Country code where item is located
type: string
item_state:
description: State or region code where item is located
type: string
listing_type:
description: 'Type of listing: auctions,offers'
enum:
- auctions
- offers
type: string
make:
description: Make(s)/brand of item (e.g. Fender). Can take a single value or an array.
items:
type: string
type: array
model:
description: Model of item (e.g. Stratocaster)
type: string
must_not:
description: 'Search term negation. If you want to exclude a term, add it here'
type: string
preferred_seller:
description: 'If true, include only items by Reverb Preferred Sellers'
type: boolean
price_max:
description: Maximum price of search results (USD)
format: float
type: number
price_min:
description: Minimum price of search results (USD)
format: float
type: number
product_type:
description: Product type slug from /api/categories
type: string
query:
description: Search query.
type: string
ships_to:
description: Limit search to items that ship to this country code
type: string
shop:
description: Slug of shop to search
type: string
shop_id:
description: ID of shop to search
type: string
watchers_count_min:
description: Minimum number of watchers (used to find popular items)
type: integer
year_max:
description: Maximum year of manufacture
type: integer
year_min:
description: Minumum year of manufacture
type: integer
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Follow a search
tags:
- my
'/my/follows/shops/{slug}':
delete:
description: Unfollow a shop
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Unfollow a shop
tags:
- my
get:
description: Follow status for a shop
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: Follow status for a shop
tags:
- my
post:
description: Follow a shop
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Follow a shop
tags:
- my
'/my/follows/{follow_id}':
delete:
description: Delete a follow
parameters:
- in: path
name: follow_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Delete a follow
tags:
- my
'/my/follows/{follow_id}/alert':
delete:
parameters:
- in: path
name: follow_id
required: true
type: string
responses:
default:
description: Unexpected error
tags:
- my
post:
parameters:
- in: path
name: follow_id
required: true
type: string
responses:
default:
description: Unexpected error
tags:
- my
/my/listings:
get:
description: Retrieve a list of live listings for the seller. To search all listings specify state=all
parameters:
- description: Search query.
in: query
name: query
required: false
type: string
- description: Maximum current auction price
format: float
in: query
name: auction_price_max
required: false
type: number
- description: Category slug from /api/categories
in: query
name: category
required: false
type: string
- description: Product type slug from /api/categories
in: query
name: product_type
required: false
type: string
- description: 'Condition: all,new,b-stock,used,non-functioning'
in: query
items:
type: string
name: conditions
required: false
type: array
- description: 'Decade: e.g. 1970s, early 70s'
in: query
name: decade
required: false
type: string
- description: 'Visual finish of the item, common for guitars'
in: query
name: finish
required: false
type: string
- description: Handmade items only
in: query
name: handmade
required: false
type: boolean
- description: City where item is located
in: query
name: item_city
required: false
type: string
- description: DEPRECATED - Country code where item is located
in: query
name: item_country
required: false
type: string
- description: Country code where item is located
in: query
name: item_region
required: false
type: string
- description: State or region code where item is located
in: query
name: item_state
required: false
type: string
- description: Make(s)/brand of item (e.g. Fender). Can take a single value or an array.
in: query
items:
type: string
name: make
required: false
type: array
- description: Model of item (e.g. Stratocaster)
in: query
name: model
required: false
type: string
- description: 'Search term negation. If you want to exclude a term, add it here'
in: query
name: must_not
required: false
type: string
- description: Maximum price of search results (USD)
format: float
in: query
name: price_max
required: false
type: number
- description: Minimum price of search results (USD)
format: float
in: query
name: price_min
required: false
type: number
- description: The currency to be used for the price filters
in: query
name: currency
required: false
type: string
- description: Maximum year of manufacture
in: query
name: year_max
required: false
type: integer
- description: Minumum year of manufacture
in: query
name: year_min
required: false
type: integer
- description: 'If true, include only items that accept gift cards'
in: query
name: accepts_gift_cards
required: false
type: boolean
- description: 'If true, include only items by Reverb Preferred Sellers'
in: query
name: preferred_seller
required: false
type: boolean
- description: Slug of shop to search
in: query
name: shop
required: false
type: string
- description: ID of shop to search
in: query
name: shop_id
required: false
type: string
- description: 'Type of listing: auctions,offers'
in: query
name: listing_type
required: false
type: string
- description: Limit search to items that ship to this country code
in: query
name: ships_to
required: false
type: string
- description: 'If true, exclude auctions'
in: query
name: exclude_auctions
required: false
type: boolean
- description: 'If true, only show items that can be purchased with a payment plan'
in: query
name: accepts_payment_plans
required: false
type: boolean
- description: Minimum number of watchers (used to find popular items)
in: query
name: watchers_count_min
required: false
type: integer
- description: 'Available: ["all", "draft", "ended", "live", "ordered", "sold_out", "suspended", "seller_unavailable"]. Defaults to ''live'''
in: query
name: state
required: false
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_listings
summary: Retrieve a list of live listings for the seller. To search all listings specify state=all
tags:
- my
/my/listings/drafts:
get:
description: Retrieve a list your draft listings
parameters:
- description: Search query.
in: query
name: query
required: false
type: string
- description: Maximum current auction price
format: float
in: query
name: auction_price_max
required: false
type: number
- description: Category slug from /api/categories
in: query
name: category
required: false
type: string
- description: Product type slug from /api/categories
in: query
name: product_type
required: false
type: string
- description: 'Condition: all,new,b-stock,used,non-functioning'
in: query
items:
type: string
name: conditions
required: false
type: array
- description: 'Decade: e.g. 1970s, early 70s'
in: query
name: decade
required: false
type: string
- description: 'Visual finish of the item, common for guitars'
in: query
name: finish
required: false
type: string
- description: Handmade items only
in: query
name: handmade
required: false
type: boolean
- description: City where item is located
in: query
name: item_city
required: false
type: string
- description: DEPRECATED - Country code where item is located
in: query
name: item_country
required: false
type: string
- description: Country code where item is located
in: query
name: item_region
required: false
type: string
- description: State or region code where item is located
in: query
name: item_state
required: false
type: string
- description: Make(s)/brand of item (e.g. Fender). Can take a single value or an array.
in: query
items:
type: string
name: make
required: false
type: array
- description: Model of item (e.g. Stratocaster)
in: query
name: model
required: false
type: string
- description: 'Search term negation. If you want to exclude a term, add it here'
in: query
name: must_not
required: false
type: string
- description: Maximum price of search results (USD)
format: float
in: query
name: price_max
required: false
type: number
- description: Minimum price of search results (USD)
format: float
in: query
name: price_min
required: false
type: number
- description: The currency to be used for the price filters
in: query
name: currency
required: false
type: string
- description: Maximum year of manufacture
in: query
name: year_max
required: false
type: integer
- description: Minumum year of manufacture
in: query
name: year_min
required: false
type: integer
- description: 'If true, include only items that accept gift cards'
in: query
name: accepts_gift_cards
required: false
type: boolean
- description: 'If true, include only items by Reverb Preferred Sellers'
in: query
name: preferred_seller
required: false
type: boolean
- description: Slug of shop to search
in: query
name: shop
required: false
type: string
- description: ID of shop to search
in: query
name: shop_id
required: false
type: string
- description: 'Type of listing: auctions,offers'
in: query
name: listing_type
required: false
type: string
- description: Limit search to items that ship to this country code
in: query
name: ships_to
required: false
type: string
- description: 'If true, exclude auctions'
in: query
name: exclude_auctions
required: false
type: boolean
- description: 'If true, only show items that can be purchased with a payment plan'
in: query
name: accepts_payment_plans
required: false
type: boolean
- description: Minimum number of watchers (used to find popular items)
in: query
name: watchers_count_min
required: false
type: integer
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_listings
summary: Retrieve a list your draft listings
tags:
- my
/my/listings/negotiations:
get:
description: Get a list of active negotiations as a seller
parameters:
- default: 1
in: query
name: page
required: false
type: integer
- default: 24
in: query
name: per_page
required: false
type: integer
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_offers
summary: Get a list of active negotiations as a seller
tags:
- my
'/my/listings/{slug}/state/end':
put:
description: End a listing
parameters:
- in: path
name: slug
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
reason:
description: 'The reason this listing is being ended. Valid reasons: ["not_sold", "reverb_sale"].'
enum:
- not_sold
- reverb_sale
type: string
required:
- reason
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_listings
summary: End a listing
tags:
- my
/my/lists:
get:
description: 'Get a list of your lists (wishlist, watch list, etc)'
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: 'Get a list of your lists (wishlist, watch list, etc)'
tags:
- my
/my/negotiations/buying:
get:
description: Get a list of active negotiations as a buyer
parameters:
- default: 1
in: query
name: page
required: false
type: integer
- default: 24
in: query
name: per_page
required: false
type: integer
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_offers
summary: Get a list of active negotiations as a buyer
tags:
- my
'/my/negotiations/{id}':
get:
description: Get offer details
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_offers
summary: Get offer details
tags:
- my
'/my/negotiations/{id}/accept':
post:
description: Accept an offer
parameters:
- in: path
name: id
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
message:
description: Message to include with accepted offer
type: string
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_offers
summary: Accept an offer
tags:
- my
'/my/negotiations/{id}/counter':
post:
description: Counter an offer
parameters:
- in: path
name: id
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
message:
description: Message to include with counter offer
type: string
price:
properties:
amount:
description: 'The amount of money being expressed, as a decimal number'
type: string
currency:
description: The currency the money will be expressed in
enum:
- USD
- CAD
- EUR
- GBP
- AUD
- JPY
- NZD
- MXN
type: string
required:
- amount
- currency
type: object
shipping_price:
description: Shipping price (sellers only)
properties:
amount:
description: 'The amount of money being expressed, as a decimal number'
type: string
currency:
description: The currency the money will be expressed in
enum:
- USD
- CAD
- EUR
- GBP
- AUD
- JPY
- NZD
- MXN
type: string
required:
- amount
- currency
type: object
required:
- price
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_offers
summary: Counter an offer
tags:
- my
'/my/negotiations/{id}/decline':
post:
description: Decline an offer
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_offers
summary: Decline an offer
tags:
- my
/my/orders/awaiting_feedback:
get:
description: List of orders that need feedback
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_feedback
summary: List of orders that need feedback
tags:
- my
/my/orders/buying/all:
get:
description: 'Returns all orders, newest first.'
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: 'Returns all orders, newest first.'
tags:
- my
'/my/orders/buying/buying_history/{seller_id}':
get:
description: See previous orders from a seller
parameters:
- in: path
name: seller_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: See previous orders from a seller
tags:
- my
/my/orders/buying/unpaid:
get:
description: 'Returns unpaid orders, newest first.'
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: 'Returns unpaid orders, newest first.'
tags:
- my
'/my/orders/buying/{id}':
get:
description: Returns order details for a buyer
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: Returns order details for a buyer
tags:
- my
'/my/orders/buying/{id}/mark_received':
post:
description: Marks an order as received by the buyer
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_orders
summary: Marks an order as received by the buyer
tags:
- my
/my/orders/selling/all:
get:
description: 'Get all seller orders, newest first.'
parameters:
- description: 'Filter by date created in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: created_start_date
required: false
type: string
- description: 'Filter by date created in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: created_end_date
required: false
type: string
- description: 'Filter by date modified in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: updated_start_date
required: false
type: string
- description: 'Filter by date modified in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: updated_end_date
required: false
type: string
- default: 1
in: query
name: page
required: false
type: integer
- default: 24
in: query
name: per_page
required: false
type: integer
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: 'Get all seller orders, newest first.'
tags:
- my
/my/orders/selling/awaiting_shipment:
get:
description: 'Get seller orders awaiting shipment, newest first.'
parameters:
- description: 'Filter by date created in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: created_start_date
required: false
type: string
- description: 'Filter by date created in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: created_end_date
required: false
type: string
- description: 'Filter by date modified in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: updated_start_date
required: false
type: string
- description: 'Filter by date modified in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: updated_end_date
required: false
type: string
- default: 1
in: query
name: page
required: false
type: integer
- default: 24
in: query
name: per_page
required: false
type: integer
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: 'Get seller orders awaiting shipment, newest first.'
tags:
- my
'/my/orders/selling/buyer_history/{buyer_id}':
get:
description: See previous orders from buyer
parameters:
- in: path
name: buyer_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: See previous orders from buyer
tags:
- my
/my/orders/selling/unpaid:
get:
description: 'Get unpaid seller orders, newest first.'
parameters:
- description: 'Filter by date created in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: created_start_date
required: false
type: string
- description: 'Filter by date created in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: created_end_date
required: false
type: string
- description: 'Filter by date modified in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: updated_start_date
required: false
type: string
- description: 'Filter by date modified in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: updated_end_date
required: false
type: string
- default: 1
in: query
name: page
required: false
type: integer
- default: 24
in: query
name: per_page
required: false
type: integer
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: 'Get unpaid seller orders, newest first.'
tags:
- my
'/my/orders/selling/{id}':
get:
description: Returns order details for a seller
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: Returns order details for a seller
tags:
- my
'/my/orders/selling/{id}/mark_picked_up':
post:
description: Marks an order as picked up
parameters:
- in: path
name: id
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
date:
description: Date the item was picked up.
type: string
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_orders
summary: Marks an order as picked up
tags:
- my
'/my/orders/selling/{id}/ship':
post:
description: Marks an order as shipped
parameters:
- in: path
name: id
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
provider:
description: 'Shipping provider: One of UPS, USPS, FedEx, DHL, DHLExpress, DHLGlobalMail, DHL Germany, Canada Post, Royal Mail, PostNL, Australia Post, EMS, La Poste, China Post, GLS, Parcelforce, Purolator, Other'
type: string
send_notification:
description: Should we send an email notification to the buyer
type: boolean
tracking_number:
description: Tracking number provided by the shipping provider
type: string
required:
- provider
- tracking_number
- send_notification
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_orders
summary: Marks an order as shipped
tags:
- my
/my/payments/selling:
get:
description: Get payments
parameters:
- default: 1
in: query
name: page
required: false
type: integer
- default: 24
in: query
name: per_page
required: false
type: integer
- description: 'Filter by date created in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: created_start_date
required: false
type: string
- description: 'Filter by date created in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: created_end_date
required: false
type: string
- description: 'Filter by date modified in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: updated_start_date
required: false
type: string
- description: 'Filter by date modified in ISO8601 format - e.g: 2015-04-09T10:52:23-00:00'
in: query
name: updated_end_date
required: false
type: string
- description: Look up payments by order id
in: query
name: order_id
required: false
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: Get payments
tags:
- my
'/my/payments/selling/{id}':
get:
description: Get payment
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_orders
summary: Get payment
tags:
- my
/my/viewed_listings:
get:
description: Get a list of your recently viewed listings.
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: Get a list of your recently viewed listings.
tags:
- my
/my/wishlist:
get:
description: Get a list of wishlisted items
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: Get a list of wishlisted items
tags:
- my
'/my/wishlist/{id}':
delete:
description: Remove a listing from your wishlist
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Remove a listing from your wishlist
tags:
- my
put:
description: Add a listing to your wishlist
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Add a listing to your wishlist
tags:
- my
'/orders/{order_id}/feedback/buyer':
get:
description: Feedback details for an order's buyer
parameters:
- in: path
name: order_id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Feedback details for an order's buyer
tags:
- orders
post:
description: Add feedback about an order's buyer
parameters:
- in: path
name: order_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_feedback
summary: Add feedback about an order's buyer
tags:
- orders
'/orders/{order_id}/feedback/seller':
get:
description: Feedback details for an order's seller
parameters:
- in: path
name: order_id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Feedback details for an order's seller
tags:
- orders
post:
description: Add feedback about an order's seller
parameters:
- in: path
name: order_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_feedback
summary: Add feedback about an order's seller
tags:
- orders
/payment_methods:
get:
description: Get list of payment methods
responses:
default:
description: Unexpected error
summary: Get list of payment methods
tags:
- payment_methods
/priceguide:
get:
description: Search the Price Guide
parameters:
- description: Search query.
in: query
name: query
required: false
type: string
responses:
default:
description: Unexpected error
summary: Search the Price Guide
tags:
- priceguide
'/priceguide/{id}':
get:
description: Retrieve a Price Guide
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Retrieve a Price Guide
tags:
- priceguide
'/priceguide/{id}/transactions':
get:
description: Get a list of paginated transactions for a price guide.
parameters:
- in: path
name: id
required: true
type: string
- default: used
in: query
name: condition
required: false
type: string
responses:
default:
description: Unexpected error
summary: Get a list of paginated transactions for a price guide.
tags:
- priceguide
'/priceguide/{id}/transactions/summary':
get:
description: Get a summary of transactions for a given price guide
parameters:
- in: path
name: id
required: true
type: string
- default: 3
in: query
name: number_of_months
required: false
type: integer
- default: used
in: query
name: condition
required: false
type: string
responses:
default:
description: Unexpected error
summary: Get a summary of transactions for a given price guide
tags:
- priceguide
'/products/reviews/{id}':
get:
description: View a review
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
summary: View a review
tags:
- products
put:
description: Update a review
parameters:
- in: path
name: id
required: true
type: string
- description: the content of the request
in: body
name: body
schema:
properties:
body:
description: Content of the review
type: string
rating:
description: Rating from 1 to 5
type: integer
title:
description: Title for the review
type: string
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_reviews
summary: Update a review
tags:
- products
'/products/{slug}/reviews':
get:
description: View reviews of a product
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: View reviews of a product
tags:
- products
post:
description: Create a review for a product
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_reviews
summary: Create a review for a product
tags:
- products
/sales/reverb:
get:
description: View upcoming and live Reverb official sales.
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_listings
summary: View upcoming and live Reverb official sales.
tags:
- sales
/sales/seller:
get:
description: View your created sales.
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_listings
summary: View your created sales.
tags:
- sales
'/sales/{sale_id}/listings':
delete:
description: Remove a listing from a sale
parameters:
- in: path
name: sale_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_listings
summary: Remove a listing from a sale
tags:
- sales
post:
description: Add listings to a sale
parameters:
- in: path
name: sale_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_listings
summary: Add listings to a sale
tags:
- sales
'/sales/{slug}':
get:
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
tags:
- sales
/shipping/providers:
get:
description: List of supported shipping providers
responses:
default:
description: Unexpected error
summary: List of supported shipping providers
tags:
- shipping
/shipping/regions:
get:
responses:
default:
description: Unexpected error
tags:
- shipping
/shop:
get:
description: Get your own shop details
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_profile
summary: Get your own shop details
tags:
- shop
put:
description: Update your shop profile
parameters:
- description: the content of the request
in: body
name: body
schema:
properties:
address:
properties:
country_code:
type: string
extended_address:
type: string
locality:
type: string
name:
type: string
phone:
type: string
postal_code:
type: string
region:
type: string
street_address:
type: string
type: object
currency:
enum:
- USD
- CAD
- EUR
- GBP
- AUD
- JPY
- NZD
- MXN
type: string
description:
type: string
name:
type: string
payment_policy:
type: string
return_policy:
type: string
shipping_policy:
type: string
website:
type: string
type: object
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_profile
summary: Update your shop profile
tags:
- shop
/shop/listing_conditions:
get:
description: List of supported product conditions
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_profile
summary: List of supported product conditions
tags:
- shop
/shop/payment_methods:
get:
description: Get accepted payment methods
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_profile
summary: Get accepted payment methods
tags:
- shop
/shop/stats:
get:
description: Get listings stats
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_profile
summary: Get listings stats
tags:
- shop
/shop/stats/activity:
get:
description: Get shop activity for a particular time period
parameters:
- description: 'Filter by date in ISO8601 format - e.g: 2015-04-09T10:52:23-05:00'
in: query
name: start_time
required: true
type: string
- description: 'Filter by date in ISO8601 format - e.g: 2015-04-09T10:52:23-05:00'
in: query
name: end_time
required: false
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_profile
summary: Get shop activity for a particular time period
tags:
- shop
/shop/vacation:
delete:
description: Disable vacation mode. All listings will be re-enabled.
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_profile
summary: Disable vacation mode. All listings will be re-enabled.
tags:
- shop
get:
description: Returns shop vacation status
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_profile
summary: Returns shop vacation status
tags:
- shop
post:
description: Enable vacation mode. All listings will be unavailable until vacation mode is turned off.
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_profile
summary: Enable vacation mode. All listings will be unavailable until vacation mode is turned off.
tags:
- shop
'/shops/{shop_id}/shipping_profiles':
get:
description: List of shipping profiles for your shop
parameters:
- in: path
name: shop_id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_profile
summary: List of shipping profiles for your shop
tags:
- shops
'/shops/{slug}':
get:
description: Get details on a shop.
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: Get details on a shop.
tags:
- shops
'/shops/{slug}/feedback':
get:
description: Get seller's feedback
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: Get seller's feedback
tags:
- shops
'/shops/{slug}/feedback/buyer':
get:
description: Get seller's feedback as a buyer
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: Get seller's feedback as a buyer
tags:
- shops
'/shops/{slug}/feedback/seller':
get:
description: Get seller's feedback as a seller
parameters:
- in: path
name: slug
required: true
type: string
responses:
default:
description: Unexpected error
summary: Get seller's feedback as a seller
tags:
- shops
/vinyl/listings:
get:
parameters:
- description: Merchandising UUID of the release
in: query
items:
type: string
name: merchandising_uuid
required: true
type: array
responses:
default:
description: Unexpected error
tags:
- vinyl
post:
responses:
default:
description: Unexpected error
tags:
- vinyl
'/vinyl/listings/{id}':
get:
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
tags:
- vinyl
/wants:
get:
description: A list of wanted items by the user
responses:
default:
description: Unexpected error
security:
- oauth2:
- read_lists
summary: A list of wanted items by the user
tags:
- wants
'/wants/{id}':
delete:
description: Unmark an item wanted.
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Unmark an item wanted.
tags:
- wants
put:
description: Mark an item wanted. Returns 200 on success or 422 on failure.
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
security:
- oauth2:
- write_lists
summary: Mark an item wanted. Returns 200 on success or 422 on failure.
tags:
- wants
/webhooks/registrations:
get:
description: Get webhook registrations
responses:
default:
description: Unexpected error
summary: Get webhook registrations
tags:
- webhooks
post:
description: Register a webhook
parameters:
- description: the content of the request
in: body
name: body
schema:
properties:
topic:
description: 'Valid values: listings/update, listings/publish, listings/bumps-ran-out, orders/create, orders/update, payments/create, payments/update, app/uninstalled'
enum:
- listings/update
- listings/publish
- listings/bumps-ran-out
- orders/create
- orders/update
- payments/create
- payments/update
- app/uninstalled
type: string
url:
type: string
required:
- url
- topic
type: object
responses:
default:
description: Unexpected error
summary: Register a webhook
tags:
- webhooks
'/webhooks/registrations/{id}':
delete:
description: Remove a webhook
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Remove a webhook
tags:
- webhooks
get:
description: Get details of a webhook registration
parameters:
- in: path
name: id
required: true
type: string
responses:
default:
description: Unexpected error
summary: Get details of a webhook registration
tags:
- webhooks
definitions: {}
| 28.277081 | 230 | 0.513341 |
7014c93d6a3c80eed21a94f897d7d2b8373b8341 | 305 | yml | YAML | web/modules/custom/botpc_bot_plant_collection/botpc_bot_plant_collection.info.yml | jdelon02/dplytest | 67da51da95cbc633892d35cd03ab75128ed93068 | [
"MIT"
] | null | null | null | web/modules/custom/botpc_bot_plant_collection/botpc_bot_plant_collection.info.yml | jdelon02/dplytest | 67da51da95cbc633892d35cd03ab75128ed93068 | [
"MIT"
] | 8 | 2019-05-23T00:13:32.000Z | 2019-05-30T00:14:35.000Z | web/modules/custom/botpc_bot_plant_collection/botpc_bot_plant_collection.info.yml | jdelon02/dplytest | 67da51da95cbc633892d35cd03ab75128ed93068 | [
"MIT"
] | null | null | null | name: 'BOT Plant Collection'
type: module
core: 8.x
dependencies:
- address
- eck
- entity_reference_revisions
- field
- field_group
- file
- image
- link
- menu_ui
- node
- options
- paragraphs
- path
- taxonomy
- telephone
- text
- user
version: 8.x-1.0
package: BOTPC
| 12.708333 | 30 | 0.639344 |
0a8c45d6068b7176abf6b43e69548b6e1413ab91 | 83 | yml | YAML | .config/exercises.yml | kingakw/PlanYourMeal | a808d6ba179d9cfa9f2ec6171eae705d9638fb09 | [
"MIT"
] | 1 | 2021-02-11T12:26:36.000Z | 2021-02-11T12:26:36.000Z | .config/exercises.yml | kingakw/PlanYourMeal | a808d6ba179d9cfa9f2ec6171eae705d9638fb09 | [
"MIT"
] | null | null | null | .config/exercises.yml | kingakw/PlanYourMeal | a808d6ba179d9cfa9f2ec6171eae705d9638fb09 | [
"MIT"
] | null | null | null | exercises:
'1_ScrumLab - opis repozytorium': { max_points: 0, disabled: true }
| 27.666667 | 71 | 0.698795 |
1ae8a1602b8b493c990f4b62c841234e6b2db8eb | 19,172 | yml | YAML | docs-ref-autogen/azure-iothub/Jobs.yml | EmmaZhu/azure-docs-sdk-node | 0728a99d9d7ae8711be232fb6fc30fb39285b662 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | docs-ref-autogen/azure-iothub/Jobs.yml | EmmaZhu/azure-docs-sdk-node | 0728a99d9d7ae8711be232fb6fc30fb39285b662 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | docs-ref-autogen/azure-iothub/Jobs.yml | EmmaZhu/azure-docs-sdk-node | 0728a99d9d7ae8711be232fb6fc30fb39285b662 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | ### YamlMime:TSType
name: Jobs
uid: azure-iothub.Jobs
package: azure-iothub
summary: Class representing a Jobs.
fullName: Jobs
remarks: ''
isPreview: false
isDeprecated: false
type: class
constructors:
- name: Jobs(IotHubGatewayServiceAPIsContext)
uid: azure-iothub.Jobs.constructor
package: azure-iothub
summary: Create a Jobs.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'new Jobs(client: IotHubGatewayServiceAPIsContext)'
parameters:
- id: client
type: <xref uid="azure-iothub.IotHubGatewayServiceAPIsContext" />
description: |
Reference to the service client.
methods:
- name: 'cancelImportExportJob(string, RequestOptionsBase)'
uid: azure-iothub.Jobs.cancelImportExportJob
package: azure-iothub
summary: Cancels an import or export job in the IoT Hub.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function cancelImportExportJob(id: string, options?:
RequestOptionsBase): Promise<Models.JobsCancelImportExportJobResponse>
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: options
type: RequestOptionsBase
description: ''
return:
description: Promise<Models.JobsCancelImportExportJobResponse>
type: Promise<<xref uid="Models.JobsCancelImportExportJobResponse" />>
- name: 'cancelImportExportJob(string, RequestOptionsBase, ServiceCallback<any>)'
uid: azure-iothub.Jobs.cancelImportExportJob_2
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function cancelImportExportJob(id: string, options: RequestOptionsBase,
callback: ServiceCallback<any>)
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: options
type: RequestOptionsBase
description: The optional parameters
- id: callback
type: ServiceCallback<any>
description: |
The callback
- name: 'cancelImportExportJob(string, ServiceCallback<any>)'
uid: azure-iothub.Jobs.cancelImportExportJob_1
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function cancelImportExportJob(id: string, callback:
ServiceCallback<any>)
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: callback
type: ServiceCallback<any>
description: |
The callback
- name: 'cancelScheduledJob(string, RequestOptionsBase)'
uid: azure-iothub.Jobs.cancelScheduledJob
package: azure-iothub
summary: >-
Cancels a scheduled job on the IoT Hub. See
https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-jobs for
more information.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function cancelScheduledJob(id: string, options?: RequestOptionsBase):
Promise<Models.JobsCancelScheduledJobResponse>
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: options
type: RequestOptionsBase
description: ''
return:
description: Promise<Models.JobsCancelScheduledJobResponse>
type: Promise<<xref uid="Models.JobsCancelScheduledJobResponse" />>
- name: >-
cancelScheduledJob(string, RequestOptionsBase,
ServiceCallback<JobResponse>)
uid: azure-iothub.Jobs.cancelScheduledJob_2
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function cancelScheduledJob(id: string, options: RequestOptionsBase,
callback: ServiceCallback<JobResponse>)
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: options
type: RequestOptionsBase
description: The optional parameters
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.JobResponse" />>
description: |
The callback
- name: 'cancelScheduledJob(string, ServiceCallback<JobResponse>)'
uid: azure-iothub.Jobs.cancelScheduledJob_1
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function cancelScheduledJob(id: string, callback:
ServiceCallback<JobResponse>)
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.JobResponse" />>
description: |
The callback
- name: 'createImportExportJob(JobProperties, RequestOptionsBase)'
uid: azure-iothub.Jobs.createImportExportJob
package: azure-iothub
summary: >-
Creates a new import or export job on the IoT Hub. See
https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-identity-registry#import-and-export-device-identities
for more information.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function createImportExportJob(jobProperties: JobProperties, options?:
RequestOptionsBase): Promise<Models.JobsCreateImportExportJobResponse>
parameters:
- id: jobProperties
type: <xref uid="azure-iothub.JobProperties" />
description: The job specifications.
- id: options
type: RequestOptionsBase
description: ''
return:
description: Promise<Models.JobsCreateImportExportJobResponse>
type: Promise<<xref uid="Models.JobsCreateImportExportJobResponse" />>
- name: >-
createImportExportJob(JobProperties, RequestOptionsBase,
ServiceCallback<JobProperties>)
uid: azure-iothub.Jobs.createImportExportJob_2
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function createImportExportJob(jobProperties: JobProperties, options:
RequestOptionsBase, callback: ServiceCallback<JobProperties>)
parameters:
- id: jobProperties
type: <xref uid="azure-iothub.JobProperties" />
description: The job specifications.
- id: options
type: RequestOptionsBase
description: The optional parameters
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.JobProperties" />>
description: |
The callback
- name: 'createImportExportJob(JobProperties, ServiceCallback<JobProperties>)'
uid: azure-iothub.Jobs.createImportExportJob_1
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function createImportExportJob(jobProperties: JobProperties, callback:
ServiceCallback<JobProperties>)
parameters:
- id: jobProperties
type: <xref uid="azure-iothub.JobProperties" />
description: The job specifications.
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.JobProperties" />>
description: |
The callback
- name: 'createScheduledJob(string, JobRequest, RequestOptionsBase)'
uid: azure-iothub.Jobs.createScheduledJob
package: azure-iothub
summary: >-
Creates a new job to schedule twin updates or direct methods on the IoT
Hub at a scheduled time.
See https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-jobs
for more information.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function createScheduledJob(id: string, jobRequest: JobRequest,
options?: RequestOptionsBase):
Promise<Models.JobsCreateScheduledJobResponse>
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: jobRequest
type: <xref uid="azure-iothub.JobRequest" />
description: The job request info.
- id: options
type: RequestOptionsBase
description: ''
return:
description: Promise<Models.JobsCreateScheduledJobResponse>
type: Promise<<xref uid="Models.JobsCreateScheduledJobResponse" />>
- name: >-
createScheduledJob(string, JobRequest, RequestOptionsBase,
ServiceCallback<JobResponse>)
uid: azure-iothub.Jobs.createScheduledJob_2
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function createScheduledJob(id: string, jobRequest: JobRequest, options:
RequestOptionsBase, callback: ServiceCallback<JobResponse>)
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: jobRequest
type: <xref uid="azure-iothub.JobRequest" />
description: The job request info.
- id: options
type: RequestOptionsBase
description: The optional parameters
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.JobResponse" />>
description: |
The callback
- name: 'createScheduledJob(string, JobRequest, ServiceCallback<JobResponse>)'
uid: azure-iothub.Jobs.createScheduledJob_1
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function createScheduledJob(id: string, jobRequest: JobRequest,
callback: ServiceCallback<JobResponse>)
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: jobRequest
type: <xref uid="azure-iothub.JobRequest" />
description: The job request info.
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.JobResponse" />>
description: |
The callback
- name: 'getImportExportJob(string, RequestOptionsBase)'
uid: azure-iothub.Jobs.getImportExportJob
package: azure-iothub
summary: >-
Gets the status of an import or export job in the IoT Hub. See
https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-identity-registry#import-and-export-device-identities
for more information.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function getImportExportJob(id: string, options?: RequestOptionsBase):
Promise<Models.JobsGetImportExportJobResponse>
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: options
type: RequestOptionsBase
description: ''
return:
description: Promise<Models.JobsGetImportExportJobResponse>
type: Promise<<xref uid="Models.JobsGetImportExportJobResponse" />>
- name: >-
getImportExportJob(string, RequestOptionsBase,
ServiceCallback<JobProperties>)
uid: azure-iothub.Jobs.getImportExportJob_2
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function getImportExportJob(id: string, options: RequestOptionsBase,
callback: ServiceCallback<JobProperties>)
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: options
type: RequestOptionsBase
description: The optional parameters
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.JobProperties" />>
description: |
The callback
- name: 'getImportExportJob(string, ServiceCallback<JobProperties>)'
uid: azure-iothub.Jobs.getImportExportJob_1
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function getImportExportJob(id: string, callback:
ServiceCallback<JobProperties>)
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.JobProperties" />>
description: |
The callback
- name: getImportExportJobs(RequestOptionsBase)
uid: azure-iothub.Jobs.getImportExportJobs
package: azure-iothub
summary: >-
Gets the status of all import and export jobs in the IoT Hub. See
https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-identity-registry#import-and-export-device-identities
for more information.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function getImportExportJobs(options?: RequestOptionsBase):
Promise<Models.JobsGetImportExportJobsResponse>
parameters:
- id: options
type: RequestOptionsBase
description: ''
return:
description: Promise<Models.JobsGetImportExportJobsResponse>
type: Promise<<xref uid="Models.JobsGetImportExportJobsResponse" />>
- name: 'getImportExportJobs(RequestOptionsBase, ServiceCallback<JobProperties[]>)'
uid: azure-iothub.Jobs.getImportExportJobs_2
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function getImportExportJobs(options: RequestOptionsBase, callback:
ServiceCallback<JobProperties[]>)
parameters:
- id: options
type: RequestOptionsBase
description: The optional parameters
- id: callback
type: 'ServiceCallback<<xref uid="azure-iothub.JobProperties" />[]>'
description: |
The callback
- name: 'getImportExportJobs(ServiceCallback<JobProperties[]>)'
uid: azure-iothub.Jobs.getImportExportJobs_1
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'function getImportExportJobs(callback: ServiceCallback<JobProperties[]>)'
parameters:
- id: callback
type: 'ServiceCallback<<xref uid="azure-iothub.JobProperties" />[]>'
description: |
The callback
- name: 'getScheduledJob(string, RequestOptionsBase)'
uid: azure-iothub.Jobs.getScheduledJob
package: azure-iothub
summary: >-
Gets details of a scheduled job from the IoT Hub. See
https://docs.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide-jobs for
more information.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function getScheduledJob(id: string, options?: RequestOptionsBase):
Promise<Models.JobsGetScheduledJobResponse>
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: options
type: RequestOptionsBase
description: ''
return:
description: Promise<Models.JobsGetScheduledJobResponse>
type: Promise<<xref uid="Models.JobsGetScheduledJobResponse" />>
- name: 'getScheduledJob(string, RequestOptionsBase, ServiceCallback<JobResponse>)'
uid: azure-iothub.Jobs.getScheduledJob_2
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function getScheduledJob(id: string, options: RequestOptionsBase,
callback: ServiceCallback<JobResponse>)
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: options
type: RequestOptionsBase
description: The optional parameters
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.JobResponse" />>
description: |
The callback
- name: 'getScheduledJob(string, ServiceCallback<JobResponse>)'
uid: azure-iothub.Jobs.getScheduledJob_1
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function getScheduledJob(id: string, callback:
ServiceCallback<JobResponse>)
parameters:
- id: id
type: string
description: The unique identifier of the job.
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.JobResponse" />>
description: |
The callback
- name: queryScheduledJobs(JobsQueryScheduledJobsOptionalParams)
uid: azure-iothub.Jobs.queryScheduledJobs
package: azure-iothub
summary: >-
Gets the information about jobs using an IoT Hub query. See
https://docs.microsoft.com/azure/iot-hub/iot-hub-devguide-query-language
for more information.
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function queryScheduledJobs(options?:
JobsQueryScheduledJobsOptionalParams):
Promise<Models.JobsQueryScheduledJobsResponse>
parameters:
- id: options
type: <xref uid="azure-iothub.JobsQueryScheduledJobsOptionalParams" />
description: ''
return:
description: Promise<Models.JobsQueryScheduledJobsResponse>
type: Promise<<xref uid="Models.JobsQueryScheduledJobsResponse" />>
- name: >-
queryScheduledJobs(JobsQueryScheduledJobsOptionalParams,
ServiceCallback<QueryResult>)
uid: azure-iothub.Jobs.queryScheduledJobs_2
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: >-
function queryScheduledJobs(options:
JobsQueryScheduledJobsOptionalParams, callback:
ServiceCallback<QueryResult>)
parameters:
- id: options
type: <xref uid="azure-iothub.JobsQueryScheduledJobsOptionalParams" />
description: The optional parameters
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.QueryResult" />>
description: |
The callback
- name: queryScheduledJobs(ServiceCallback<QueryResult>)
uid: azure-iothub.Jobs.queryScheduledJobs_1
package: azure-iothub
summary: ''
remarks: ''
isPreview: false
isDeprecated: false
syntax:
content: 'function queryScheduledJobs(callback: ServiceCallback<QueryResult>)'
parameters:
- id: callback
type: ServiceCallback<<xref uid="azure-iothub.QueryResult" />>
description: |
The callback
| 34.544144 | 123 | 0.653296 |
eefcd47b437502e9de474796d319daa165d417d0 | 552 | yml | YAML | data/ct/retired/Andrew-M-Maynard-768b34ad-eba0-4b58-b56c-04e7f4d082ea.yml | Rypo/people | 34cf10bf10313f154f5065dde578bed9b4127ae8 | [
"CC0-1.0"
] | 1 | 2021-04-19T20:42:59.000Z | 2021-04-19T20:42:59.000Z | data/ct/retired/Andrew-M-Maynard-768b34ad-eba0-4b58-b56c-04e7f4d082ea.yml | Rypo/people | 34cf10bf10313f154f5065dde578bed9b4127ae8 | [
"CC0-1.0"
] | null | null | null | data/ct/retired/Andrew-M-Maynard-768b34ad-eba0-4b58-b56c-04e7f4d082ea.yml | Rypo/people | 34cf10bf10313f154f5065dde578bed9b4127ae8 | [
"CC0-1.0"
] | null | null | null | id: ocd-person/768b34ad-eba0-4b58-b56c-04e7f4d082ea
name: Andrew M. Maynard
given_name: Andrew M.
family_name: Maynard
party:
- name: Democratic
roles:
- district: '18'
jurisdiction: ocd-jurisdiction/country:us/state:ct/government
type: upper
start_date: '2011-01-01'
end_date: '2016-12-31'
image: http://www.senatedems.ct.gov/photos/maynard-hi.jpg
links:
- url: http://www.senatedems.ct.gov/Maynard.php
sources:
- url: ftp://ftp.cga.ct.gov/pub/data/LegislatorDatabase.csv
other_identifiers:
- identifier: CTL000018
scheme: legacy_openstates
| 26.285714 | 63 | 0.764493 |
3c21e322406c7b2896cc857cd599dc6567974f41 | 36 | yaml | YAML | tests/tests.yaml | luftballon/stm32f4disco-renode | ce11aa7ea26e6e6a5cc7216d282d497669a955c5 | [
"MIT"
] | 1 | 2021-12-08T14:49:39.000Z | 2021-12-08T14:49:39.000Z | tests/tests.yaml | luftballon/stm32f4disco-renode | ce11aa7ea26e6e6a5cc7216d282d497669a955c5 | [
"MIT"
] | null | null | null | tests/tests.yaml | luftballon/stm32f4disco-renode | ce11aa7ea26e6e6a5cc7216d282d497669a955c5 | [
"MIT"
] | null | null | null | - robot:
-tests/button-led.robot | 18 | 27 | 0.666667 |
2d35614bcc1e7eeb796ffc6d33454fc1dd2a5565 | 16,386 | yaml | YAML | test/Expected/specs-network/code-model-v1.norm.yaml | tschettler/autorest.modeler | cd313a2b54e9ab0c8f629c056259daaa0da69b36 | [
"MIT"
] | 13 | 2017-10-22T21:02:52.000Z | 2020-09-30T10:37:02.000Z | test/Expected/specs-network/code-model-v1.norm.yaml | tschettler/autorest.modeler | cd313a2b54e9ab0c8f629c056259daaa0da69b36 | [
"MIT"
] | 54 | 2017-08-30T18:09:12.000Z | 2020-11-14T00:35:47.000Z | test/Expected/specs-network/code-model-v1.norm.yaml | tschettler/autorest.modeler | cd313a2b54e9ab0c8f629c056259daaa0da69b36 | [
"MIT"
] | 23 | 2017-08-30T18:08:16.000Z | 2021-05-05T22:05:56.000Z | ---
$id: '1'
apiVersion: '2017-10-01'
baseUrl: 'https://management.azure.com'
documentation: >-
The Microsoft Azure Network management API provides a RESTful set of web
services that interact with Microsoft Azure Networks service to manage your
network resources. The API has entities that capture the relationship between
an end user and the Microsoft Azure Networks service.
enumTypes:
- $ref: '59'
extensions:
security:
- azure_auth:
- user_impersonation
modelTypes:
- $id: '2'
$type: CompositeType
containsConstantProperties: false
deprecated: false
name:
$id: '21'
fixed: false
raw: ErrorDetails
properties:
- $id: '3'
collectionFormat: none
defaultValue:
$id: '4'
fixed: false
deprecated: false
documentation:
$id: '5'
fixed: false
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '7'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '8'
fixed: false
raw: String
name:
$id: '6'
fixed: false
raw: code
realPath:
- code
serializedName: code
- $id: '9'
collectionFormat: none
defaultValue:
$id: '10'
fixed: false
deprecated: false
documentation:
$id: '11'
fixed: false
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '13'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '14'
fixed: false
raw: String
name:
$id: '12'
fixed: false
raw: target
realPath:
- target
serializedName: target
- $id: '15'
collectionFormat: none
defaultValue:
$id: '16'
fixed: false
deprecated: false
documentation:
$id: '17'
fixed: false
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '19'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '20'
fixed: false
raw: String
name:
$id: '18'
fixed: false
raw: message
realPath:
- message
serializedName: message
serializedName: ErrorDetails
- $id: '22'
$type: CompositeType
containsConstantProperties: false
deprecated: false
name:
$id: '53'
fixed: false
raw: Error
properties:
- $id: '23'
collectionFormat: none
defaultValue:
$id: '24'
fixed: false
deprecated: false
documentation:
$id: '25'
fixed: false
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '27'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '28'
fixed: false
raw: String
name:
$id: '26'
fixed: false
raw: code
realPath:
- code
serializedName: code
- $id: '29'
collectionFormat: none
defaultValue:
$id: '30'
fixed: false
deprecated: false
documentation:
$id: '31'
fixed: false
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '33'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '34'
fixed: false
raw: String
name:
$id: '32'
fixed: false
raw: message
realPath:
- message
serializedName: message
- $id: '35'
collectionFormat: none
defaultValue:
$id: '36'
fixed: false
deprecated: false
documentation:
$id: '37'
fixed: false
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '39'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '40'
fixed: false
raw: String
name:
$id: '38'
fixed: false
raw: target
realPath:
- target
serializedName: target
- $id: '41'
collectionFormat: none
defaultValue:
$id: '42'
fixed: false
deprecated: false
documentation:
$id: '43'
fixed: false
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '45'
$type: SequenceType
deprecated: false
elementType:
$ref: '2'
name:
$id: '46'
fixed: false
name:
$id: '44'
fixed: false
raw: details
realPath:
- details
serializedName: details
- $id: '47'
collectionFormat: none
defaultValue:
$id: '48'
fixed: false
deprecated: false
documentation:
$id: '49'
fixed: false
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '51'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '52'
fixed: false
raw: String
name:
$id: '50'
fixed: false
raw: innerError
realPath:
- innerError
serializedName: innerError
serializedName: Error
- $id: '54'
$type: CompositeType
containsConstantProperties: false
deprecated: false
documentation: >-
The response body contains the status of the specified asynchronous
operation, indicating whether it has succeeded, is in progress, or has
failed. Note that this status is distinct from the HTTP status code
returned for the Get Operation Status operation itself. If the
asynchronous operation succeeded, the response body includes the HTTP
status code for the successful request. If the asynchronous operation
failed, the response body includes the HTTP status code for the failed
request and error information regarding the failure.
name:
$id: '70'
fixed: false
raw: AzureAsyncOperationResult
properties:
- $id: '55'
collectionFormat: none
defaultValue:
$id: '56'
fixed: false
deprecated: false
documentation:
$id: '57'
fixed: false
raw: >-
Status of the Azure async operation. Possible values are:
'InProgress', 'Succeeded', and 'Failed'.
extensions:
x-ms-enum:
modelAsString: true
name: NetworkOperationStatus
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '59'
$type: EnumType
deprecated: false
modelAsString: true
name:
$id: '65'
fixed: false
raw: NetworkOperationStatus
oldModelAsString: false
underlyingType:
$id: '63'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '64'
fixed: false
raw: String
values:
- $id: '60'
name: InProgress
serializedName: InProgress
- $id: '61'
name: Succeeded
serializedName: Succeeded
- $id: '62'
name: Failed
serializedName: Failed
name:
$id: '58'
fixed: false
raw: status
realPath:
- status
serializedName: status
- $id: '66'
collectionFormat: none
defaultValue:
$id: '67'
fixed: false
deprecated: false
documentation:
$id: '68'
fixed: false
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$ref: '22'
name:
$id: '69'
fixed: false
raw: error
realPath:
- error
serializedName: error
serializedName: AzureAsyncOperationResult
- $id: '71'
$type: CompositeType
containsConstantProperties: false
deprecated: false
documentation: Common resource representation.
extensions:
x-ms-azure-resource: true
name:
$id: '104'
fixed: false
raw: Resource
properties:
- $id: '72'
collectionFormat: none
defaultValue:
$id: '73'
fixed: false
deprecated: false
documentation:
$id: '74'
fixed: false
raw: Resource ID.
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '76'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '77'
fixed: false
raw: String
name:
$id: '75'
fixed: false
raw: id
realPath:
- id
serializedName: id
- $id: '78'
collectionFormat: none
defaultValue:
$id: '79'
fixed: false
deprecated: false
documentation:
$id: '80'
fixed: false
raw: Resource name.
isConstant: false
isReadOnly: true
isRequired: false
modelType:
$id: '82'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '83'
fixed: false
raw: String
name:
$id: '81'
fixed: false
raw: name
realPath:
- name
serializedName: name
- $id: '84'
collectionFormat: none
defaultValue:
$id: '85'
fixed: false
deprecated: false
documentation:
$id: '86'
fixed: false
raw: Resource type.
isConstant: false
isReadOnly: true
isRequired: false
modelType:
$id: '88'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '89'
fixed: false
raw: String
name:
$id: '87'
fixed: false
raw: type
realPath:
- type
serializedName: type
- $id: '90'
collectionFormat: none
defaultValue:
$id: '91'
fixed: false
deprecated: false
documentation:
$id: '92'
fixed: false
raw: Resource location.
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '94'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '95'
fixed: false
raw: String
name:
$id: '93'
fixed: false
raw: location
realPath:
- location
serializedName: location
- $id: '96'
collectionFormat: none
defaultValue:
$id: '97'
fixed: false
deprecated: false
documentation:
$id: '98'
fixed: false
raw: Resource tags.
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '100'
$type: DictionaryType
deprecated: false
name:
$id: '103'
fixed: false
supportsAdditionalProperties: false
valueType:
$id: '101'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '102'
fixed: false
raw: String
name:
$id: '99'
fixed: false
raw: tags
realPath:
- tags
serializedName: tags
serializedName: Resource
- $id: '105'
$type: CompositeType
containsConstantProperties: false
deprecated: false
documentation: Reference to another subresource.
extensions:
x-ms-azure-resource: true
name:
$id: '112'
fixed: false
raw: SubResource
properties:
- $id: '106'
collectionFormat: none
defaultValue:
$id: '107'
fixed: false
deprecated: false
documentation:
$id: '108'
fixed: false
raw: Resource ID.
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '110'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '111'
fixed: false
raw: String
name:
$id: '109'
fixed: false
raw: id
realPath:
- id
serializedName: id
serializedName: SubResource
- $id: '113'
$type: CompositeType
containsConstantProperties: false
deprecated: false
documentation: Tags object for patch operations.
name:
$id: '122'
fixed: false
raw: TagsObject
properties:
- $id: '114'
collectionFormat: none
defaultValue:
$id: '115'
fixed: false
deprecated: false
documentation:
$id: '116'
fixed: false
raw: Resource tags.
isConstant: false
isReadOnly: false
isRequired: false
modelType:
$id: '118'
$type: DictionaryType
deprecated: false
name:
$id: '121'
fixed: false
supportsAdditionalProperties: false
valueType:
$id: '119'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '120'
fixed: false
raw: String
name:
$id: '117'
fixed: false
raw: tags
realPath:
- tags
serializedName: tags
serializedName: TagsObject
modelsName: Models
name: NetworkManagementClient
namespace: ''
properties:
- $id: '123'
collectionFormat: none
defaultValue:
$id: '124'
fixed: false
deprecated: false
documentation:
$id: '125'
fixed: false
raw: >-
The subscription credentials which uniquely identify the Microsoft Azure
subscription. The subscription ID forms part of the URI for every
service call.
isConstant: false
isReadOnly: false
isRequired: true
modelType:
$id: '127'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '128'
fixed: false
raw: String
name:
$id: '126'
fixed: false
raw: subscriptionId
realPath:
- subscriptionId
serializedName: subscriptionId
- $id: '129'
collectionFormat: none
defaultValue:
$id: '130'
fixed: false
deprecated: false
documentation:
$id: '131'
fixed: false
raw: Client API version.
isConstant: false
isReadOnly: false
isRequired: true
modelType:
$id: '133'
$type: PrimaryType
deprecated: false
knownPrimaryType: string
name:
$id: '134'
fixed: false
raw: String
name:
$id: '132'
fixed: false
raw: api-version
realPath:
- api-version
serializedName: api-version
| 24.20384 | 80 | 0.498169 |
c1e4b2375aa30c630148814dbc941ea95adcb6f7 | 408 | yml | YAML | .rubocop.yml | SPBTV/click_house | fb7ecb0626fb1efcd458a82822800f4c96aa16d8 | [
"MIT"
] | 2 | 2019-04-19T15:32:16.000Z | 2019-05-13T13:34:37.000Z | .rubocop.yml | SPBTV/click_house | fb7ecb0626fb1efcd458a82822800f4c96aa16d8 | [
"MIT"
] | null | null | null | .rubocop.yml | SPBTV/click_house | fb7ecb0626fb1efcd458a82822800f4c96aa16d8 | [
"MIT"
] | null | null | null | AllCops:
TargetRubyVersion: 2.2
Metrics/BlockLength:
Exclude:
- 'spec/**/*_spec.rb'
Metrics/LineLength:
Max: 120
Metrics/CyclomaticComplexity:
Enabled: false
Style/EmptyMethod:
EnforcedStyle: expanded
Style/SignalException:
EnforcedStyle: semantic
Style/TrailingCommaInArguments:
EnforcedStyleForMultiline: comma
Style/TrailingCommaInArrayLiteral:
EnforcedStyleForMultiline: comma
| 16.32 | 34 | 0.791667 |
8d24e4f9c142205d770fb7d2f07bce7f2d958998 | 1,453 | yml | YAML | azure-pipelines.yml | Jordiag/high-performance-span-of-t-demo | d3ad2e85483d13add6d7f6e71f5fdcbc63bbe99a | [
"MIT"
] | null | null | null | azure-pipelines.yml | Jordiag/high-performance-span-of-t-demo | d3ad2e85483d13add6d7f6e71f5fdcbc63bbe99a | [
"MIT"
] | null | null | null | azure-pipelines.yml | Jordiag/high-performance-span-of-t-demo | d3ad2e85483d13add6d7f6e71f5fdcbc63bbe99a | [
"MIT"
] | null | null | null | # ASP.NET
# Build and test ASP.NET projects.
# Add steps that publish symbols, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/apps/aspnet/build-aspnet-4
trigger:
- main
- master
pool:
vmImage: 'windows-latest'
variables:
solution: '**/*.sln'
buildPlatform: 'Any CPU'
buildConfiguration: 'Release'
steps:
- task: NuGetToolInstaller@1
- task: SonarCloudPrepare@1
inputs:
SonarCloud: 'SonarCloudConnection'
organization: 'mozcode-1'
scannerMode: 'MSBuild'
projectKey: 'mozcode_SpanOfT-demo'
projectName: 'SpanOfT-demo'
- task: UseDotNet@2
displayName: 'Use .NET Core sdk 5.0.100'
inputs:
packageType: 'sdk'
version: '5.0.100'
includePreviewVersions: true
- task: DotNetCoreCLI@2
displayName: 'dotnet restore'
inputs:
command: restore
projects: '**/*.csproj'
- task: VSBuild@1
inputs:
solution: '$(solution)'
msbuildArgs: '/p:DeployOnBuild=true /p:WebPublishMethod=Package /p:PackageAsSingleFile=true /p:SkipInvalidConfigurations=true /p:PackageLocation="$(build.artifactStagingDirectory)"'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
- task: DotNetCoreCLI@2
inputs:
command: 'test'
projects: '**/*.Tests.csproj'
- task: SonarCloudAnalyze@1
- task: SonarCloudPublish@1
inputs:
pollingTimeoutSec: '300'
- task: WhiteSource Bolt@20
inputs:
cwd: '$(System.DefaultWorkingDirectory)' | 23.435484 | 185 | 0.708878 |
12d81debbad28c3d3f728c5ac91594bf91a568fc | 111,537 | yml | YAML | preview/docs-ref-autogen/com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.yml | dominicbetts/azure-docs-sdk-java | 057697a9aaa568212eae6fe51917e0063c5c502e | [
"CC-BY-4.0",
"MIT"
] | null | null | null | preview/docs-ref-autogen/com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.yml | dominicbetts/azure-docs-sdk-java | 057697a9aaa568212eae6fe51917e0063c5c502e | [
"CC-BY-4.0",
"MIT"
] | null | null | null | preview/docs-ref-autogen/com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.yml | dominicbetts/azure-docs-sdk-java | 057697a9aaa568212eae6fe51917e0063c5c502e | [
"CC-BY-4.0",
"MIT"
] | null | null | null | ### YamlMime:ManagedReference
items:
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
id: ExpressRouteGatewaysClient
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent
children:
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.ExpressRouteGatewaysClient(com.azure.resourcemanager.network.NetworkManagementClient)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDelete(java.lang.String,java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDelete(java.lang.String,java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPolling(java.lang.String,java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPolling(java.lang.String,java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync(java.lang.String,java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync(java.lang.String,java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.delete(java.lang.String,java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.delete(java.lang.String,java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteAsync(java.lang.String,java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteWithResponseAsync(java.lang.String,java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteWithResponseAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroup(java.lang.String,java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroup(java.lang.String,java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupAsync(java.lang.String,java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync(java.lang.String,java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroup(java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroup(java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupAsync(java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupAsync(java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync(java.lang.String)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync(java.lang.String,com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscription()
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscription(com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionAsync()
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionAsync(com.azure.core.util.Context)
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync()
- com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync(com.azure.core.util.Context)
langs:
- java
name: ExpressRouteGatewaysClient
nameWithType: ExpressRouteGatewaysClient
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
type: Class
package: com.azure.resourcemanager.network.fluent
summary: An instance of this class provides access to all the operations defined in ExpressRouteGateways.
syntax:
content: public final class ExpressRouteGatewaysClient implements InnerSupportsGet<ExpressRouteGatewayInner>, InnerSupportsDelete<Void>
inheritance:
- java.lang.Object
implements:
- com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsGet<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
- com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsDelete<java.lang.Void>
inheritedMembers:
- java.lang.Object.clone()
- java.lang.Object.equals(java.lang.Object)
- java.lang.Object.finalize()
- java.lang.Object.getClass()
- java.lang.Object.hashCode()
- java.lang.Object.notify()
- java.lang.Object.notifyAll()
- java.lang.Object.toString()
- java.lang.Object.wait()
- java.lang.Object.wait(long)
- java.lang.Object.wait(long,int)
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.ExpressRouteGatewaysClient(com.azure.resourcemanager.network.NetworkManagementClient)
id: ExpressRouteGatewaysClient(com.azure.resourcemanager.network.NetworkManagementClient)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: ExpressRouteGatewaysClient(NetworkManagementClient client)
nameWithType: ExpressRouteGatewaysClient.ExpressRouteGatewaysClient(NetworkManagementClient client)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.ExpressRouteGatewaysClient(NetworkManagementClient client)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.ExpressRouteGatewaysClient*
type: Constructor
package: com.azure.resourcemanager.network.fluent
summary: Initializes an instance of ExpressRouteGatewaysClient.
syntax:
content: public ExpressRouteGatewaysClient(NetworkManagementClient client)
parameters:
- id: client
type: com.azure.resourcemanager.network.NetworkManagementClient
description: the instance of the service client containing this operation class.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
id: beginCreateOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginCreateOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdate*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public PollerFlux<PollResult<ExpressRouteGatewayInner>,ExpressRouteGatewayInner> beginCreateOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
return:
type: com.azure.core.util.polling.PollerFlux<com.azure.core.management.polling.PollResult<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
id: beginCreateOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginCreateOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdate*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public PollerFlux<PollResult<ExpressRouteGatewayInner>,ExpressRouteGatewayInner> beginCreateOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: com.azure.core.util.polling.PollerFlux<com.azure.core.management.polling.PollResult<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
id: beginCreateOrUpdateWithoutPolling(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginCreateOrUpdateWithoutPolling(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public ExpressRouteGatewayInner beginCreateOrUpdateWithoutPolling(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
return:
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
id: beginCreateOrUpdateWithoutPolling(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginCreateOrUpdateWithoutPolling(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public ExpressRouteGatewayInner beginCreateOrUpdateWithoutPolling(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
id: beginCreateOrUpdateWithoutPollingAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginCreateOrUpdateWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public Mono<ExpressRouteGatewayInner> beginCreateOrUpdateWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
return:
type: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
id: beginCreateOrUpdateWithoutPollingAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginCreateOrUpdateWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public Mono<ExpressRouteGatewayInner> beginCreateOrUpdateWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
id: beginCreateOrUpdateWithoutPollingWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginCreateOrUpdateWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public Mono<Response<ExpressRouteGatewayInner>> beginCreateOrUpdateWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
id: beginCreateOrUpdateWithoutPollingWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginCreateOrUpdateWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public Mono<Response<ExpressRouteGatewayInner>> beginCreateOrUpdateWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDelete(java.lang.String,java.lang.String)
id: beginDelete(java.lang.String,java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginDelete(String resourceGroupName, String expressRouteGatewayName)
nameWithType: ExpressRouteGatewaysClient.beginDelete(String resourceGroupName, String expressRouteGatewayName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDelete(String resourceGroupName, String expressRouteGatewayName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDelete*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public PollerFlux<PollResult<Void>,Void> beginDelete(String resourceGroupName, String expressRouteGatewayName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
return:
type: com.azure.core.util.polling.PollerFlux<com.azure.core.management.polling.PollResult<java.lang.Void>,java.lang.Void>
description: the completion.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDelete(java.lang.String,java.lang.String,com.azure.core.util.Context)
id: beginDelete(java.lang.String,java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginDelete(String resourceGroupName, String expressRouteGatewayName, Context context)
nameWithType: ExpressRouteGatewaysClient.beginDelete(String resourceGroupName, String expressRouteGatewayName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDelete(String resourceGroupName, String expressRouteGatewayName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDelete*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public PollerFlux<PollResult<Void>,Void> beginDelete(String resourceGroupName, String expressRouteGatewayName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: com.azure.core.util.polling.PollerFlux<com.azure.core.management.polling.PollResult<java.lang.Void>,java.lang.Void>
description: the completion.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPolling(java.lang.String,java.lang.String)
id: beginDeleteWithoutPolling(java.lang.String,java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginDeleteWithoutPolling(String resourceGroupName, String expressRouteGatewayName)
nameWithType: ExpressRouteGatewaysClient.beginDeleteWithoutPolling(String resourceGroupName, String expressRouteGatewayName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPolling(String resourceGroupName, String expressRouteGatewayName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPolling*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public void beginDeleteWithoutPolling(String resourceGroupName, String expressRouteGatewayName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPolling(java.lang.String,java.lang.String,com.azure.core.util.Context)
id: beginDeleteWithoutPolling(java.lang.String,java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginDeleteWithoutPolling(String resourceGroupName, String expressRouteGatewayName, Context context)
nameWithType: ExpressRouteGatewaysClient.beginDeleteWithoutPolling(String resourceGroupName, String expressRouteGatewayName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPolling(String resourceGroupName, String expressRouteGatewayName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPolling*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public void beginDeleteWithoutPolling(String resourceGroupName, String expressRouteGatewayName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync(java.lang.String,java.lang.String)
id: beginDeleteWithoutPollingAsync(java.lang.String,java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginDeleteWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName)
nameWithType: ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public Mono<Void> beginDeleteWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
return:
type: reactor.core.publisher.Mono<java.lang.Void>
description: the completion.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
id: beginDeleteWithoutPollingAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginDeleteWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
nameWithType: ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public Mono<Void> beginDeleteWithoutPollingAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<java.lang.Void>
description: the completion.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync(java.lang.String,java.lang.String)
id: beginDeleteWithoutPollingWithResponseAsync(java.lang.String,java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginDeleteWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
nameWithType: ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public Mono<Response<Void>> beginDeleteWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<java.lang.Void>>
description: the completion.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
id: beginDeleteWithoutPollingWithResponseAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: beginDeleteWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
nameWithType: ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public Mono<Response<Void>> beginDeleteWithoutPollingWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<java.lang.Void>>
description: the completion.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
id: createOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: createOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
nameWithType: ExpressRouteGatewaysClient.createOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdate*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public ExpressRouteGatewayInner createOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
return:
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
id: createOrUpdate(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: createOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
nameWithType: ExpressRouteGatewaysClient.createOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdate*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public ExpressRouteGatewayInner createOrUpdate(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
id: createOrUpdateAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: createOrUpdateAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
nameWithType: ExpressRouteGatewaysClient.createOrUpdateAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public Mono<ExpressRouteGatewayInner> createOrUpdateAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
return:
type: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
id: createOrUpdateAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: createOrUpdateAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
nameWithType: ExpressRouteGatewaysClient.createOrUpdateAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public Mono<ExpressRouteGatewayInner> createOrUpdateAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
id: createOrUpdateWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: createOrUpdateWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
nameWithType: ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public Mono<Response<Flux<ByteBuffer>>> createOrUpdateWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<reactor.core.publisher.Flux<java.nio.ByteBuffer>>>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
id: createOrUpdateWithResponseAsync(java.lang.String,java.lang.String,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: createOrUpdateWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
nameWithType: ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Creates or updates a ExpressRoute gateway in a specified resource group.
syntax:
content: public Mono<Response<Flux<ByteBuffer>>> createOrUpdateWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, ExpressRouteGatewayInner putExpressRouteGatewayParameters, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: putExpressRouteGatewayParameters
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: ExpressRoute gateway resource.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<reactor.core.publisher.Flux<java.nio.ByteBuffer>>>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.delete(java.lang.String,java.lang.String)
id: delete(java.lang.String,java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: delete(String resourceGroupName, String expressRouteGatewayName)
nameWithType: ExpressRouteGatewaysClient.delete(String resourceGroupName, String expressRouteGatewayName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.delete(String resourceGroupName, String expressRouteGatewayName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.delete*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public void delete(String resourceGroupName, String expressRouteGatewayName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.delete(java.lang.String,java.lang.String,com.azure.core.util.Context)
id: delete(java.lang.String,java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: delete(String resourceGroupName, String expressRouteGatewayName, Context context)
nameWithType: ExpressRouteGatewaysClient.delete(String resourceGroupName, String expressRouteGatewayName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.delete(String resourceGroupName, String expressRouteGatewayName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.delete*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public void delete(String resourceGroupName, String expressRouteGatewayName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteAsync(java.lang.String,java.lang.String)
id: deleteAsync(java.lang.String,java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: deleteAsync(String resourceGroupName, String expressRouteGatewayName)
nameWithType: ExpressRouteGatewaysClient.deleteAsync(String resourceGroupName, String expressRouteGatewayName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteAsync(String resourceGroupName, String expressRouteGatewayName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public Mono<Void> deleteAsync(String resourceGroupName, String expressRouteGatewayName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
return:
type: reactor.core.publisher.Mono<java.lang.Void>
description: the completion.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
id: deleteAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: deleteAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
nameWithType: ExpressRouteGatewaysClient.deleteAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public Mono<Void> deleteAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<java.lang.Void>
description: the completion.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteWithResponseAsync(java.lang.String,java.lang.String)
id: deleteWithResponseAsync(java.lang.String,java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: deleteWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
nameWithType: ExpressRouteGatewaysClient.deleteWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public Mono<Response<Flux<ByteBuffer>>> deleteWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<reactor.core.publisher.Flux<java.nio.ByteBuffer>>>
description: the completion.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteWithResponseAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
id: deleteWithResponseAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: deleteWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
nameWithType: ExpressRouteGatewaysClient.deleteWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Deletes the specified ExpressRoute gateway in a resource group. An ExpressRoute gateway resource can only be deleted when there are no connection subresources.
syntax:
content: public Mono<Response<Flux<ByteBuffer>>> deleteWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<reactor.core.publisher.Flux<java.nio.ByteBuffer>>>
description: the completion.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroup(java.lang.String,java.lang.String)
id: getByResourceGroup(java.lang.String,java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: getByResourceGroup(String resourceGroupName, String expressRouteGatewayName)
nameWithType: ExpressRouteGatewaysClient.getByResourceGroup(String resourceGroupName, String expressRouteGatewayName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroup(String resourceGroupName, String expressRouteGatewayName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroup*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Fetches the details of a ExpressRoute gateway in a resource group.
syntax:
content: public ExpressRouteGatewayInner getByResourceGroup(String resourceGroupName, String expressRouteGatewayName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
return:
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroup(java.lang.String,java.lang.String,com.azure.core.util.Context)
id: getByResourceGroup(java.lang.String,java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: getByResourceGroup(String resourceGroupName, String expressRouteGatewayName, Context context)
nameWithType: ExpressRouteGatewaysClient.getByResourceGroup(String resourceGroupName, String expressRouteGatewayName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroup(String resourceGroupName, String expressRouteGatewayName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroup*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Fetches the details of a ExpressRoute gateway in a resource group.
syntax:
content: public ExpressRouteGatewayInner getByResourceGroup(String resourceGroupName, String expressRouteGatewayName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupAsync(java.lang.String,java.lang.String)
id: getByResourceGroupAsync(java.lang.String,java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: getByResourceGroupAsync(String resourceGroupName, String expressRouteGatewayName)
nameWithType: ExpressRouteGatewaysClient.getByResourceGroupAsync(String resourceGroupName, String expressRouteGatewayName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupAsync(String resourceGroupName, String expressRouteGatewayName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Fetches the details of a ExpressRoute gateway in a resource group.
syntax:
content: public Mono<ExpressRouteGatewayInner> getByResourceGroupAsync(String resourceGroupName, String expressRouteGatewayName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
return:
type: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
id: getByResourceGroupAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: getByResourceGroupAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
nameWithType: ExpressRouteGatewaysClient.getByResourceGroupAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Fetches the details of a ExpressRoute gateway in a resource group.
syntax:
content: public Mono<ExpressRouteGatewayInner> getByResourceGroupAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync(java.lang.String,java.lang.String)
id: getByResourceGroupWithResponseAsync(java.lang.String,java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: getByResourceGroupWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
nameWithType: ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Fetches the details of a ExpressRoute gateway in a resource group.
syntax:
content: public Mono<Response<ExpressRouteGatewayInner>> getByResourceGroupWithResponseAsync(String resourceGroupName, String expressRouteGatewayName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
id: getByResourceGroupWithResponseAsync(java.lang.String,java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: getByResourceGroupWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
nameWithType: ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Fetches the details of a ExpressRoute gateway in a resource group.
syntax:
content: public Mono<Response<ExpressRouteGatewayInner>> getByResourceGroupWithResponseAsync(String resourceGroupName, String expressRouteGatewayName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: expressRouteGatewayName
type: java.lang.String
description: The name of the ExpressRoute gateway.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>>
description: expressRoute gateway resource.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroup(java.lang.String)
id: listByResourceGroup(java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listByResourceGroup(String resourceGroupName)
nameWithType: ExpressRouteGatewaysClient.listByResourceGroup(String resourceGroupName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroup(String resourceGroupName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroup*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways in a given resource group.
syntax:
content: public ExpressRouteGatewayListInner listByResourceGroup(String resourceGroupName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
return:
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroup(java.lang.String,com.azure.core.util.Context)
id: listByResourceGroup(java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listByResourceGroup(String resourceGroupName, Context context)
nameWithType: ExpressRouteGatewaysClient.listByResourceGroup(String resourceGroupName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroup(String resourceGroupName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroup*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways in a given resource group.
syntax:
content: public ExpressRouteGatewayListInner listByResourceGroup(String resourceGroupName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupAsync(java.lang.String)
id: listByResourceGroupAsync(java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listByResourceGroupAsync(String resourceGroupName)
nameWithType: ExpressRouteGatewaysClient.listByResourceGroupAsync(String resourceGroupName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupAsync(String resourceGroupName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways in a given resource group.
syntax:
content: public Mono<ExpressRouteGatewayListInner> listByResourceGroupAsync(String resourceGroupName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
return:
type: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner>
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupAsync(java.lang.String,com.azure.core.util.Context)
id: listByResourceGroupAsync(java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listByResourceGroupAsync(String resourceGroupName, Context context)
nameWithType: ExpressRouteGatewaysClient.listByResourceGroupAsync(String resourceGroupName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupAsync(String resourceGroupName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways in a given resource group.
syntax:
content: public Mono<ExpressRouteGatewayListInner> listByResourceGroupAsync(String resourceGroupName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner>
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync(java.lang.String)
id: listByResourceGroupWithResponseAsync(java.lang.String)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listByResourceGroupWithResponseAsync(String resourceGroupName)
nameWithType: ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync(String resourceGroupName)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync(String resourceGroupName)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways in a given resource group.
syntax:
content: public Mono<Response<ExpressRouteGatewayListInner>> listByResourceGroupWithResponseAsync(String resourceGroupName)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner>>
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync(java.lang.String,com.azure.core.util.Context)
id: listByResourceGroupWithResponseAsync(java.lang.String,com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listByResourceGroupWithResponseAsync(String resourceGroupName, Context context)
nameWithType: ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync(String resourceGroupName, Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync(String resourceGroupName, Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways in a given resource group.
syntax:
content: public Mono<Response<ExpressRouteGatewayListInner>> listByResourceGroupWithResponseAsync(String resourceGroupName, Context context)
parameters:
- id: resourceGroupName
type: java.lang.String
description: The name of the resource group.
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner>>
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscription()
id: listBySubscription()
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listBySubscription()
nameWithType: ExpressRouteGatewaysClient.listBySubscription()
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscription()
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscription*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways under a given subscription.
syntax:
content: public ExpressRouteGatewayListInner listBySubscription()
return:
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscription(com.azure.core.util.Context)
id: listBySubscription(com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listBySubscription(Context context)
nameWithType: ExpressRouteGatewaysClient.listBySubscription(Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscription(Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscription*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways under a given subscription.
syntax:
content: public ExpressRouteGatewayListInner listBySubscription(Context context)
parameters:
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionAsync()
id: listBySubscriptionAsync()
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listBySubscriptionAsync()
nameWithType: ExpressRouteGatewaysClient.listBySubscriptionAsync()
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionAsync()
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways under a given subscription.
syntax:
content: public Mono<ExpressRouteGatewayListInner> listBySubscriptionAsync()
return:
type: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner>
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionAsync(com.azure.core.util.Context)
id: listBySubscriptionAsync(com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listBySubscriptionAsync(Context context)
nameWithType: ExpressRouteGatewaysClient.listBySubscriptionAsync(Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionAsync(Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways under a given subscription.
syntax:
content: public Mono<ExpressRouteGatewayListInner> listBySubscriptionAsync(Context context)
parameters:
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner>
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync()
id: listBySubscriptionWithResponseAsync()
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listBySubscriptionWithResponseAsync()
nameWithType: ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync()
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync()
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways under a given subscription.
syntax:
content: public Mono<Response<ExpressRouteGatewayListInner>> listBySubscriptionWithResponseAsync()
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner>>
description: list of ExpressRoute gateways.
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync(com.azure.core.util.Context)
id: listBySubscriptionWithResponseAsync(com.azure.core.util.Context)
artifact: com.azure.resourcemanager:azure-resourcemanager-network:2.0.0-beta.2
parent: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient
langs:
- java
name: listBySubscriptionWithResponseAsync(Context context)
nameWithType: ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync(Context context)
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync(Context context)
overload: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync*
type: Method
package: com.azure.resourcemanager.network.fluent
summary: Lists ExpressRoute gateways under a given subscription.
syntax:
content: public Mono<Response<ExpressRouteGatewayListInner>> listBySubscriptionWithResponseAsync(Context context)
parameters:
- id: context
type: com.azure.core.util.Context
description: The context to associate with this operation.
return:
type: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner>>
description: list of ExpressRoute gateways.
references:
- uid: com.azure.resourcemanager.network.NetworkManagementClient
name: NetworkManagementClient
nameWithType: NetworkManagementClient
fullName: com.azure.resourcemanager.network.NetworkManagementClient
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.ExpressRouteGatewaysClient*
name: ExpressRouteGatewaysClient
nameWithType: ExpressRouteGatewaysClient.ExpressRouteGatewaysClient
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.ExpressRouteGatewaysClient
package: com.azure.resourcemanager.network.fluent
- uid: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner>>
spec.java:
- uid: reactor.core.publisher.Mono
name: Mono
fullName: reactor.core.publisher.Mono
- name: <
fullName: <
- uid: com.azure.core.http.rest.Response
name: Response
fullName: com.azure.core.http.rest.Response
- name: <
fullName: <
- uid: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner
name: ExpressRouteGatewayListInner
fullName: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner
- name: '>'
fullName: '>'
- name: '>'
fullName: '>'
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync*
name: listBySubscriptionWithResponseAsync
nameWithType: ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionWithResponseAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.core.util.Context
spec.java:
- uid: com.azure.core.util.Context
name: Context
fullName: com.azure.core.util.Context
- uid: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner>
spec.java:
- uid: reactor.core.publisher.Mono
name: Mono
fullName: reactor.core.publisher.Mono
- name: <
fullName: <
- uid: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner
name: ExpressRouteGatewayListInner
fullName: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner
- name: '>'
fullName: '>'
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionAsync*
name: listBySubscriptionAsync
nameWithType: ExpressRouteGatewaysClient.listBySubscriptionAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscriptionAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner
name: ExpressRouteGatewayListInner
nameWithType: ExpressRouteGatewayListInner
fullName: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayListInner
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscription*
name: listBySubscription
nameWithType: ExpressRouteGatewaysClient.listBySubscription
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listBySubscription
package: com.azure.resourcemanager.network.fluent
- uid: java.lang.String
spec.java:
- uid: java.lang.String
name: String
fullName: java.lang.String
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync*
name: listByResourceGroupWithResponseAsync
nameWithType: ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupWithResponseAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupAsync*
name: listByResourceGroupAsync
nameWithType: ExpressRouteGatewaysClient.listByResourceGroupAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroupAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroup*
name: listByResourceGroup
nameWithType: ExpressRouteGatewaysClient.listByResourceGroup
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.listByResourceGroup
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
name: ExpressRouteGatewayInner
nameWithType: ExpressRouteGatewayInner
fullName: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
- uid: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<reactor.core.publisher.Flux<java.nio.ByteBuffer>>>
spec.java:
- uid: reactor.core.publisher.Mono
name: Mono
fullName: reactor.core.publisher.Mono
- name: <
fullName: <
- uid: com.azure.core.http.rest.Response
name: Response
fullName: com.azure.core.http.rest.Response
- name: <
fullName: <
- uid: reactor.core.publisher.Flux
name: Flux
fullName: reactor.core.publisher.Flux
- name: <
fullName: <
- uid: java.nio.ByteBuffer
name: ByteBuffer
fullName: java.nio.ByteBuffer
- name: '>'
fullName: '>'
- name: '>'
fullName: '>'
- name: '>'
fullName: '>'
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync*
name: createOrUpdateWithResponseAsync
nameWithType: ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateWithResponseAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.core.util.polling.PollerFlux<com.azure.core.management.polling.PollResult<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
spec.java:
- uid: com.azure.core.util.polling.PollerFlux
name: PollerFlux
fullName: com.azure.core.util.polling.PollerFlux
- name: <
fullName: <
- uid: com.azure.core.management.polling.PollResult
name: PollResult
fullName: com.azure.core.management.polling.PollResult
- name: <
fullName: <
- uid: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
name: ExpressRouteGatewayInner
fullName: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
- name: '>'
fullName: '>'
- name: ','
fullName: ','
- uid: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
name: ExpressRouteGatewayInner
fullName: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
- name: '>'
fullName: '>'
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdate*
name: beginCreateOrUpdate
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdate
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdate
package: com.azure.resourcemanager.network.fluent
- uid: reactor.core.publisher.Mono<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
spec.java:
- uid: reactor.core.publisher.Mono
name: Mono
fullName: reactor.core.publisher.Mono
- name: <
fullName: <
- uid: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
name: ExpressRouteGatewayInner
fullName: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
- name: '>'
fullName: '>'
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateAsync*
name: createOrUpdateAsync
nameWithType: ExpressRouteGatewaysClient.createOrUpdateAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdateAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdate*
name: createOrUpdate
nameWithType: ExpressRouteGatewaysClient.createOrUpdate
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.createOrUpdate
package: com.azure.resourcemanager.network.fluent
- uid: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>>
spec.java:
- uid: reactor.core.publisher.Mono
name: Mono
fullName: reactor.core.publisher.Mono
- name: <
fullName: <
- uid: com.azure.core.http.rest.Response
name: Response
fullName: com.azure.core.http.rest.Response
- name: <
fullName: <
- uid: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
name: ExpressRouteGatewayInner
fullName: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
- name: '>'
fullName: '>'
- name: '>'
fullName: '>'
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync*
name: getByResourceGroupWithResponseAsync
nameWithType: ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupWithResponseAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupAsync*
name: getByResourceGroupAsync
nameWithType: ExpressRouteGatewaysClient.getByResourceGroupAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroupAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroup*
name: getByResourceGroup
nameWithType: ExpressRouteGatewaysClient.getByResourceGroup
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.getByResourceGroup
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteWithResponseAsync*
name: deleteWithResponseAsync
nameWithType: ExpressRouteGatewaysClient.deleteWithResponseAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteWithResponseAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.core.util.polling.PollerFlux<com.azure.core.management.polling.PollResult<java.lang.Void>,java.lang.Void>
spec.java:
- uid: com.azure.core.util.polling.PollerFlux
name: PollerFlux
fullName: com.azure.core.util.polling.PollerFlux
- name: <
fullName: <
- uid: com.azure.core.management.polling.PollResult
name: PollResult
fullName: com.azure.core.management.polling.PollResult
- name: <
fullName: <
- uid: java.lang.Void
name: Void
fullName: java.lang.Void
- name: '>'
fullName: '>'
- name: ','
fullName: ','
- uid: java.lang.Void
name: Void
fullName: java.lang.Void
- name: '>'
fullName: '>'
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDelete*
name: beginDelete
nameWithType: ExpressRouteGatewaysClient.beginDelete
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDelete
package: com.azure.resourcemanager.network.fluent
- uid: reactor.core.publisher.Mono<java.lang.Void>
spec.java:
- uid: reactor.core.publisher.Mono
name: Mono
fullName: reactor.core.publisher.Mono
- name: <
fullName: <
- uid: java.lang.Void
name: Void
fullName: java.lang.Void
- name: '>'
fullName: '>'
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteAsync*
name: deleteAsync
nameWithType: ExpressRouteGatewaysClient.deleteAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.deleteAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.delete*
name: delete
nameWithType: ExpressRouteGatewaysClient.delete
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.delete
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync*
name: beginCreateOrUpdateWithoutPollingWithResponseAsync
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingWithResponseAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync*
name: beginCreateOrUpdateWithoutPollingAsync
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPollingAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling*
name: beginCreateOrUpdateWithoutPolling
nameWithType: ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginCreateOrUpdateWithoutPolling
package: com.azure.resourcemanager.network.fluent
- uid: reactor.core.publisher.Mono<com.azure.core.http.rest.Response<java.lang.Void>>
spec.java:
- uid: reactor.core.publisher.Mono
name: Mono
fullName: reactor.core.publisher.Mono
- name: <
fullName: <
- uid: com.azure.core.http.rest.Response
name: Response
fullName: com.azure.core.http.rest.Response
- name: <
fullName: <
- uid: java.lang.Void
name: Void
fullName: java.lang.Void
- name: '>'
fullName: '>'
- name: '>'
fullName: '>'
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync*
name: beginDeleteWithoutPollingWithResponseAsync
nameWithType: ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingWithResponseAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync*
name: beginDeleteWithoutPollingAsync
nameWithType: ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPollingAsync
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPolling*
name: beginDeleteWithoutPolling
nameWithType: ExpressRouteGatewaysClient.beginDeleteWithoutPolling
fullName: com.azure.resourcemanager.network.fluent.ExpressRouteGatewaysClient.beginDeleteWithoutPolling
package: com.azure.resourcemanager.network.fluent
- uid: com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsGet<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
name: InnerSupportsGet<ExpressRouteGatewayInner>
nameWithType: InnerSupportsGet<ExpressRouteGatewayInner>
fullName: com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsGet<com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>
- uid: com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsDelete<java.lang.Void>
name: InnerSupportsDelete<Void>
nameWithType: InnerSupportsDelete<Void>
fullName: com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsDelete<java.lang.Void>
- uid: java.lang.Object.notify()
name: Object.notify()
nameWithType: Object.notify()
fullName: java.lang.Object.notify()
- uid: java.lang.Object.wait()
name: Object.wait()
nameWithType: Object.wait()
fullName: java.lang.Object.wait()
- uid: java.lang.Object.finalize()
name: Object.finalize()
nameWithType: Object.finalize()
fullName: java.lang.Object.finalize()
- uid: java.lang.Object.clone()
name: Object.clone()
nameWithType: Object.clone()
fullName: java.lang.Object.clone()
- uid: java.lang.Object.notifyAll()
name: Object.notifyAll()
nameWithType: Object.notifyAll()
fullName: java.lang.Object.notifyAll()
- uid: java.lang.Object.equals(java.lang.Object)
name: Object.equals(Object)
nameWithType: Object.equals(Object)
fullName: java.lang.Object.equals(java.lang.Object)
- uid: java.lang.Object.getClass()
name: Object.getClass()
nameWithType: Object.getClass()
fullName: java.lang.Object.getClass()
- uid: java.lang.Object.wait(long)
name: Object.wait(long)
nameWithType: Object.wait(long)
fullName: java.lang.Object.wait(long)
- uid: java.lang.Object.hashCode()
name: Object.hashCode()
nameWithType: Object.hashCode()
fullName: java.lang.Object.hashCode()
- uid: java.lang.Object.wait(long,int)
name: Object.wait(long,int)
nameWithType: Object.wait(long,int)
fullName: java.lang.Object.wait(long,int)
- uid: java.lang.Object.toString()
name: Object.toString()
nameWithType: Object.toString()
fullName: java.lang.Object.toString()
- uid: reactor.core.publisher.Mono
name: Mono
nameWithType: Mono
fullName: reactor.core.publisher.Mono
- uid: com.azure.core.http.rest.Response
name: Response
nameWithType: Response
fullName: com.azure.core.http.rest.Response
- uid: reactor.core.publisher.Flux
name: Flux
nameWithType: Flux
fullName: reactor.core.publisher.Flux
- uid: java.nio.ByteBuffer
name: ByteBuffer
nameWithType: ByteBuffer
fullName: java.nio.ByteBuffer
- uid: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
name: ExpressRouteGatewayInner>,ExpressRouteGatewayInner
nameWithType: ExpressRouteGatewayInner>,ExpressRouteGatewayInner
fullName: com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner>,com.azure.resourcemanager.network.fluent.inner.ExpressRouteGatewayInner
- uid: com.azure.core.management.polling.PollResult
name: PollResult
nameWithType: PollResult
fullName: com.azure.core.management.polling.PollResult
- uid: com.azure.core.util.polling.PollerFlux
name: PollerFlux
nameWithType: PollerFlux
fullName: com.azure.core.util.polling.PollerFlux
- uid: java.lang.Void>,java.lang.Void
name: Void>,Void
nameWithType: Void>,Void
fullName: java.lang.Void>,java.lang.Void
- uid: java.lang.Void
name: Void
nameWithType: Void
fullName: java.lang.Void
- uid: com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsGet
name: InnerSupportsGet
nameWithType: InnerSupportsGet
fullName: com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsGet
- uid: com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsDelete
name: InnerSupportsDelete
nameWithType: InnerSupportsDelete
fullName: com.azure.resourcemanager.resources.fluentcore.collection.InnerSupportsDelete
| 65.648617 | 264 | 0.825152 |
1dfd96d90cc42ac62af3e86454119b17786fd932 | 10,948 | yaml | YAML | _data/processed/267.yaml | Sparrow-lang/perf-monitoring | dbac75a1910fe6c13f1c54ccd31c23a8b8e25b35 | [
"MIT"
] | null | null | null | _data/processed/267.yaml | Sparrow-lang/perf-monitoring | dbac75a1910fe6c13f1c54ccd31c23a8b8e25b35 | [
"MIT"
] | null | null | null | _data/processed/267.yaml | Sparrow-lang/perf-monitoring | dbac75a1910fe6c13f1c54ccd31c23a8b8e25b35 | [
"MIT"
] | null | null | null | show-history: ['214', '254', '255', '260', '261', '262', '263', '264', '265', '266',
'267']
statuses:
Comp: bad
Comp.LoopTesterApp: same
Comp.LoopTesterApp.CtEvalsTime: same
Comp.LoopTesterApp.FinalLinkTime: same
Comp.LoopTesterApp.ImplicitLibTime: bad2
Comp.LoopTesterApp.LlcTime: bad2
Comp.LoopTesterApp.NumCtEvals: same
Comp.LoopTesterApp.OptTime: same
Comp.LoopTesterApp.TotalTime: same
Comp.Ranges: bad
Comp.Ranges.CtEvalsTime: bad
Comp.Ranges.FinalLinkTime: same
Comp.Ranges.ImplicitLibTime: bad
Comp.Ranges.LlcTime: bad
Comp.Ranges.NumCtEvals: same
Comp.Ranges.OptTime: same
Comp.Ranges.TotalTime: bad
Exec: same
Exec.BenchmarkGame: bad2
Exec.BenchmarkGame.fannkuchredux: same
Exec.BenchmarkGame.fasta: bad
Exec.BenchmarkGame.fastaredux: bad2
Exec.BenchmarkGame.meteor: bad
Exec.BenchmarkGame.nbody: bad2
Exec.Examples: good
Exec.Examples.Collatz: same
Exec.Examples.FibRange: good2
Exec.Examples.LoopTesterApp: good
overall: same
trends:
Comp.LoopTesterApp.CtEvalsTime:
relPerf: 1.3332281993562056
relPerfTrend: -23.218236479592804
stddevs: [46.98892618131925, 64.15924066933232, 15.806224555341403, 19.883333190778405,
6.288960200872897, 20.631855694235433, 7.91021039994693, 5.827450872677469,
10.333223611442927, 36.752897983752, 40.62622054681394]
values: [1841.0, 1862.0, 692.0, 714.0, 650.0, 694.0, 659.0, 679.0, 683.0, 701.0,
750.0]
Comp.LoopTesterApp.FinalLinkTime:
relPerf: -0.4877131100041324
relPerfTrend: -0.4698092386498171
stddevs: [2.1285234893930483, 0.6998542122237652, 1.0690449676496976, 0.3499271061118826,
0.989743318610787, 1.0690449676496976, 0.6388765649999398, 0.3499271061118826,
0.7284313590846835, 2.0503857277724746, 1.577908716741037]
values: [15.0, 16.0, 15.0, 14.0, 16.0, 15.0, 14.0, 16.0, 14.0, 15.0, 14.0]
Comp.LoopTesterApp.ImplicitLibTime:
relPerf: 5.456773163625281
relPerfTrend: 18.44059393260304
stddevs: [6.670067159959286, 17.458989848516786, 5.166611805721464, 13.16612846570738,
2.415933503612538, 16.15486279225963, 5.1269595556932455, 2.9485382057928993,
3.619674131234265, 9.162924406185471, 22.617493680957743]
values: [232.0, 236.0, 312.0, 322.0, 299.0, 322.0, 301.0, 302.0, 311.0, 305.0,
355.0]
Comp.LoopTesterApp.LlcTime:
relPerf: 7.263273379607565
relPerfTrend: 1.7830276595709647
stddevs: [10.656032113698009, 7.464200272921789, 7.91021039994693, 8.935140440635365,
2.1946130708196026, 7.342912729083655, 2.099562636671296, 2.030381486221699,
2.602981022612657, 6.608590574983072, 18.24325427467951]
values: [232.0, 236.0, 225.0, 228.0, 202.0, 235.0, 220.0, 202.0, 219.0, 203.0,
251.0]
Comp.LoopTesterApp.NumCtEvals:
relPerf: 0.0
relPerfTrend: 0.0
stddevs: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
values: [3144.0, 3144.0, 948.0, 948.0, 948.0, 948.0, 948.0, 948.0, 948.0, 948.0,
948.0]
Comp.LoopTesterApp.OptTime:
relPerf: 0.3407999721703474
relPerfTrend: -2.633448818800014
stddevs: [22.783810937073863, 20.111931680432075, 9.735271449943324, 39.60055658235946,
10.431506436302106, 17.741913938582883, 10.933938924658545, 6.023762469230862,
6.334228364970104, 111.50235652309813, 57.811092784859134]
values: [645.0, 660.0, 588.0, 592.0, 524.0, 592.0, 565.0, 521.0, 574.0, 547.0,
585.0]
Comp.LoopTesterApp.TotalTime:
relPerf: 0.780179453687922
relPerfTrend: -10.082589424749106
stddevs: [71.31104617184107, 99.52560946196465, 55.29106655524314, 95.77119843136344,
26.369431900886873, 61.646126382435284, 32.01084000070946, 21.41713980789733,
46.469212981306676, 143.55671566403606, 138.29132220034043]
values: [3781.0, 3789.0, 2831.0, 2877.0, 2654.0, 2829.0, 2669.0, 2713.0, 2795.0,
2950.0, 3062.0]
Comp.Ranges.CtEvalsTime:
relPerf: 2.3589660246781614
relPerfTrend: -16.831037403376246
stddevs: [24.656828337672902, 42.01263172534894, 3.3685217493004562, 3.2450904833144425,
3.5799897388976194, 5.3718844791323335, 4.06578556307363, 2.4907993963089563,
5.802884574739972, 22.043556141125205, 23.10490715614061]
values: [734.0, 751.0, 282.0, 274.0, 268.0, 289.0, 274.0, 279.0, 286.0, 267.0,
319.0]
Comp.Ranges.FinalLinkTime:
relPerf: -1.0103629710818451
relPerfTrend: -1.4288690166235205
stddevs: [0.6998542122237652, 1.355261854357877, 0.3499271061118826, 0.34992710611188255,
0.4948716593053935, 0.6998542122237652, 0.0, 0.34992710611188255, 0.7284313590846836,
1.979486637221574, 2.1852940772540506]
values: [15.0, 15.0, 14.0, 14.0, 16.0, 15.0, 14.0, 16.0, 14.0, 16.0, 14.0]
Comp.Ranges.ImplicitLibTime:
relPerf: 3.0111142741803345
relPerfTrend: 31.433514655879623
stddevs: [4.453844933748542, 11.733433827646325, 7.458729989832349, 8.773801447305193,
2.899683304312063, 6.356741560367711, 6.243363823832045, 2.6649654437396615,
7.60504665954638, 22.915105079757467, 40.868130390717084]
values: [232.0, 230.0, 317.0, 307.0, 299.0, 317.0, 306.0, 307.0, 317.0, 303.0,
372.0]
Comp.Ranges.LlcTime:
relPerf: 3.9925879193624354
relPerfTrend: 0.08238145180262384
stddevs: [12.138654734998857, 26.09245727275628, 6.05754715631834, 7.61309291112813,
3.4817307448439827, 6.298687910013887, 5.0950155714648595, 2.664965443739661,
9.147320339189784, 7.764387566686396, 30.206094803289385]
values: [250.0, 247.0, 248.0, 242.0, 222.0, 253.0, 240.0, 225.0, 244.0, 220.0,
251.0]
Comp.Ranges.NumCtEvals:
relPerf: 0.0
relPerfTrend: 0.0
stddevs: [0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0]
values: [1279.0, 1279.0, 427.0, 427.0, 427.0, 427.0, 427.0, 427.0, 427.0, 427.0,
427.0]
Comp.Ranges.OptTime:
relPerf: 1.2594573411711876
relPerfTrend: 0.818412628872393
stddevs: [19.55004045092115, 48.49658098615756, 7.780142173822916, 14.98298354528788,
4.3094580368566735, 18.239897958898247, 10.739969216692858, 6.727949622466639,
6.2105900340811875, 79.39927517275699, 68.67937931327818]
values: [644.0, 652.0, 619.0, 589.0, 537.0, 613.0, 596.0, 550.0, 604.0, 560.0,
660.0]
Comp.Ranges.TotalTime:
relPerf: 2.731335586189015
relPerfTrend: 3.855494418994846
stddevs: [36.83055519427269, 89.91696850144469, 18.89606373004166, 31.15727058334991,
16.281954453207593, 26.332256931414765, 22.651755799856364, 13.25418686256366,
26.707027279771307, 156.69989515904962, 160.38334179873735]
values: [2182.0, 2272.0, 2047.0, 1957.0, 1881.0, 2049.0, 1944.0, 1935.0, 2038.0,
1896.0, 2324.0]
Exec.BenchmarkGame.fannkuchredux:
relPerf: -1.2096425327069347
relPerfTrend: -1.4424108823363218
stddevs: [68.6350894965839, 22.048184709394828, 15.128025081190964, 57.962690322204296,
5.565931353936616, 61.408302303815034, 5.499536158548616, 5.36808406515884,
3.9434782119549316, 133.0971718063804, 127.14606737520273]
values: [3370.0, 3359.0, 3126.0, 3074.0, 3271.0, 3119.0, 3052.0, 3265.0, 3058.0,
3432.0, 3271.0]
Exec.BenchmarkGame.fasta:
relPerf: 3.343950428899761
relPerfTrend: 3.9602666729921263
stddevs: [6.565214453186318, 9.467452300446222, 12.02208851426814, 11.816626128520122,
2.030381486221699, 10.688540497148507, 0.4948716593053935, 2.7180425129200643,
1.245399698154478, 10.466662333722402, 2.9965967090575756]
values: [558.0, 565.0, 575.0, 552.0, 543.0, 611.0, 578.0, 539.0, 547.0, 549.0,
584.0]
Exec.BenchmarkGame.fastaredux:
relPerf: 7.038886553500026
relPerfTrend: 2.1283205503598084
stddevs: [23.96255582429915, 5.166611805721463, 19.24174882798296, 4.969293465978882,
4.686062704816208, 16.405573965663535, 1.4568627181693672, 1.4568627181693672,
1.355261854357877, 8.666143364630344, 65.58901102583373]
values: [358.0, 343.0, 367.0, 373.0, 336.0, 408.0, 396.0, 334.0, 364.0, 348.0,
409.0]
Exec.BenchmarkGame.meteor:
relPerf: 2.7003086243366083
relPerfTrend: 3.865103412619629
stddevs: [1.2936264483053452, 0.989743318610787, 2.5555062599997593, 1.178030178747903,
0.4948716593053935, 0.7284313590846836, 0.7284313590846836, 0.6388765649999399,
0.9035079029052513, 1.8516401995451028, 0.9258200997725514]
values: [64.0, 64.0, 62.0, 62.0, 63.0, 61.0, 61.0, 64.0, 59.0, 64.0, 69.0]
Exec.BenchmarkGame.nbody:
relPerf: 7.91604022931269
relPerfTrend: 7.877666706796044
stddevs: [13.582702084576814, 4.203982562732046, 8.48046975980333, 19.01449500797124,
7.68513008932158, 21.19876777319948, 1.8070158058105026, 5.986379097073418,
6.663945022680343, 15.790723187223255, 6.411087334947679]
values: [549.0, 523.0, 499.0, 506.0, 534.0, 675.0, 652.0, 529.0, 497.0, 531.0,
656.0]
Exec.Examples.Collatz:
relPerf: 0.06548207381269806
relPerfTrend: 0.18809322521516067
stddevs: [10.633025180530511, 17.169027642941273, 2.3560603574958057, 1.979486637221574,
19.507193858802395, 7.669180303696885, 1.5518257844571737, 2.1285234893930483,
3.3319725113401715, 30.54271014263703, 16.378183597676017]
values: [1406.0, 1428.0, 1350.0, 1341.0, 1408.0, 1421.0, 1394.0, 1404.0, 1344.0,
1406.0, 1408.0]
Exec.Examples.FibRange:
relPerf: -6.010351283316026
relPerfTrend: -2.0874195208283703
stddevs: [62.277850093310846, 80.74196744025036, 7.610411772495545, 5.054801717986895,
2.0603150145508513, 24.723780174610212, 2.2946254863155726, 3.6977654587270816,
4.16986271980755, 22.294869914170746, 53.15476057164185]
values: [984.0, 1089.0, 869.0, 845.0, 955.0, 903.0, 839.0, 948.0, 844.0, 988.0,
854.0]
Exec.Examples.LoopTesterApp:
relPerf: -2.1358941442919024
relPerfTrend: -4.377689442633624
stddevs: [24.89897957092759, 43.86900723652597, 23.24316884504313, 27.535505835786875,
126.45576785773672, 50.632731206086, 7.381720390150751, 6.010195419417895, 9.955000794391054,
70.22819946431775, 77.69064766555803]
values: [1226.0, 1212.0, 1277.0, 1045.0, 1165.0, 1002.0, 962.0, 1205.0, 1025.0,
1267.0, 1117.0]
summary:
curFixes: [Exec.Examples.LoopTesterApp, Exec.Examples.FibRange]
curProblems: [Comp.Ranges.ImplicitLibTime, Exec.BenchmarkGame.fasta, Comp.Ranges.CtEvalsTime,
Comp.LoopTesterApp.LlcTime, Exec.BenchmarkGame.meteor, Exec.BenchmarkGame.fastaredux,
Exec.BenchmarkGame.nbody, Comp.Ranges.TotalTime, Comp.LoopTesterApp.ImplicitLibTime,
Comp.Ranges.LlcTime]
trendFixes: [Comp.LoopTesterApp.OptTime, Comp.LoopTesterApp.TotalTime, Comp.Ranges.CtEvalsTime,
Exec.Examples.LoopTesterApp, Exec.Examples.FibRange, Comp.LoopTesterApp.CtEvalsTime]
trendProblems: [Comp.Ranges.ImplicitLibTime, Exec.BenchmarkGame.fasta, Exec.BenchmarkGame.meteor,
Exec.BenchmarkGame.fastaredux, Exec.BenchmarkGame.nbody, Comp.Ranges.TotalTime,
Comp.LoopTesterApp.ImplicitLibTime]
| 50.220183 | 99 | 0.725155 |
3863ead7581090387ed4b70af1c46eda67363801 | 47 | yml | YAML | molecule/default/group_vars/all/vars.yml | bodsch/ansible-jolokia | c2d4c6cbf431f78eaf937f361735c86500e01439 | [
"Apache-1.1"
] | 1 | 2022-01-06T18:21:51.000Z | 2022-01-06T18:21:51.000Z | molecule/default/group_vars/all/vars.yml | bodsch/ansible-jolokia | c2d4c6cbf431f78eaf937f361735c86500e01439 | [
"Apache-1.1"
] | null | null | null | molecule/default/group_vars/all/vars.yml | bodsch/ansible-jolokia | c2d4c6cbf431f78eaf937f361735c86500e01439 | [
"Apache-1.1"
] | null | null | null | ---
jolokia_systemd:
restart_sleep: 1m
...
| 6.714286 | 19 | 0.638298 |
3794ea1e3b96e5be27c96d61de2755646eec7679 | 3,298 | yaml | YAML | manifest/oracle-pdb-operator.clusterserviceversion.yaml | pueteam/oracle-pdb-operator | 17d52979aa1762bcedee3cad8c0efb17a35b2a80 | [
"Apache-2.0"
] | 1 | 2021-04-13T11:46:15.000Z | 2021-04-13T11:46:15.000Z | manifest/oracle-pdb-operator.clusterserviceversion.yaml | pueteam/oracle-pdb-operator | 17d52979aa1762bcedee3cad8c0efb17a35b2a80 | [
"Apache-2.0"
] | null | null | null | manifest/oracle-pdb-operator.clusterserviceversion.yaml | pueteam/oracle-pdb-operator | 17d52979aa1762bcedee3cad8c0efb17a35b2a80 | [
"Apache-2.0"
] | null | null | null | apiVersion: operators.coreos.com/v1alpha1
kind: ClusterServiceVersion
metadata:
annotations:
name: oracle-pdb-operator.v0.0.7
spec:
description: This is an operator for Oracle PDBs.
displayName: Oracle PDB Operator
icon:
- base64data: "PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNTguNTEgMjU4LjUxIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2QxZDFkMTt9LmNscy0ye2ZpbGw6IzhkOGQ4Zjt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPkFzc2V0IDQ8L3RpdGxlPjxnIGlkPSJMYXllcl8yIiBkYXRhLW5hbWU9IkxheWVyIDIiPjxnIGlkPSJMYXllcl8xLTIiIGRhdGEtbmFtZT0iTGF5ZXIgMSI+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTI5LjI1LDIwQTEwOS4xLDEwOS4xLDAsMCwxLDIwNi40LDIwNi40LDEwOS4xLDEwOS4xLDAsMSwxLDUyLjExLDUyLjExLDEwOC40NSwxMDguNDUsMCwwLDEsMTI5LjI1LDIwbTAtMjBoMEM1OC4xNiwwLDAsNTguMTYsMCwxMjkuMjVIMGMwLDcxLjA5LDU4LjE2LDEyOS4yNiwxMjkuMjUsMTI5LjI2aDBjNzEuMDksMCwxMjkuMjYtNTguMTcsMTI5LjI2LTEyOS4yNmgwQzI1OC41MSw1OC4xNiwyMDAuMzQsMCwxMjkuMjUsMFoiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xNzcuNTQsMTAzLjQxSDE0MS42NkwxNTQuOSw2NS43NmMxLjI1LTQuNC0yLjMzLTguNzYtNy4yMS04Ljc2SDEwMi45M2E3LjMyLDcuMzIsMCwwLDAtNy40LDZsLTEwLDY5LjYxYy0uNTksNC4xNywyLjg5LDcuODksNy40LDcuODloMzYuOUwxMTUuNTUsMTk3Yy0xLjEyLDQuNDEsMi40OCw4LjU1LDcuMjQsOC41NWE3LjU4LDcuNTgsMCwwLDAsNi40Ny0zLjQ4TDE4NCwxMTMuODVDMTg2Ljg2LDEwOS4yNCwxODMuMjksMTAzLjQxLDE3Ny41NCwxMDMuNDFaIi8+PC9nPjwvZz48L3N2Zz4="
mediatype: "image/svg+xml"
keywords:
- Oracle
- app
maintainers:
- email: sergio@pue.es
name: PUE Data
maturity: alpha
provider:
name: PUE
url: www.pue.es
version: 0.0.7
minKubeVersion: 1.20.0
install:
# strategy indicates what type of deployment artifacts are used
strategy: deployment
# spec for the deployment strategy is a list of deployment specs and required permissions - similar to a pod template used in a deployment
spec:
permissions:
- serviceAccountName: oracle-pdb-operator
rules:
- apiGroups:
- ""
resources:
- pods
verbs:
- '*'
# the rest of the rules
# permissions required at the cluster scope
clusterPermissions:
- serviceAccountName: oracle-pdb-operator
rules:
- apiGroups:
- ""
resources:
- serviceaccounts
verbs:
- '*'
# the rest of the rules
deployments:
- name: oracle-pdb-operator
spec:
replicas: 1
# the rest of a deployment spec
installModes:
- supported: true
type: OwnNamespace
- supported: true
type: SingleNamespace
- supported: false
type: MultiNamespace
- supported: true
type: AllNamespaces
customresourcedefinitions:
owned:
# a list of CRDs that this operator owns
# name is the metadata.name of the CRD (which is of the form <plural>.<group>)
- name: pdbs.oracle.pue.es
# version is the spec.versions[].name value defined in the CRD
version: v1alpha1
# kind is the CamelCased singular value defined in spec.names.kind of the CRD.
kind: pdb
# human-friendly display name of the CRD for rendering in graphical consoles (optional)
displayName: Oracle PDBs
# a short description of the CRDs purpose for rendering in graphical consoles (optional)
description: Represents an Oracle PDB | 43.394737 | 1,084 | 0.757429 |
2c0903ef75546a770b021f8b65ae6b01e26fc839 | 930 | yaml | YAML | action.yaml | TnLCommunity/action-branch-protection-bot | 759fbf7335a0e51b817c6b70766438e956729f2b | [
"Apache-2.0"
] | null | null | null | action.yaml | TnLCommunity/action-branch-protection-bot | 759fbf7335a0e51b817c6b70766438e956729f2b | [
"Apache-2.0"
] | 4 | 2021-12-19T16:25:37.000Z | 2021-12-19T17:34:54.000Z | action.yaml | swarm-io/action-branch-protection-bot | ccf189456caa2e074b98661cbf50dc9ba538c626 | [
"Apache-2.0"
] | null | null | null | name: 'Branch Protection Bot' #
description: 'An action to modify branch protection settings'
inputs:
token:
description: 'Github token to use'
required: true
set-include-admins:
description: 'Boolean, if true the action will set `include admins` on the branch protection rule'
required: false
default: true
include-admins:
description: 'Boolean, if true the action will set `include admins` to true on the branch protection rule, else it will set `include admins` to false'
required: false
default: false
owner:
description: 'Repo owner'
required: false
default: '${{ github.repository_owner }}'
repo:
description: 'Github repo name'
required: false
default: '${{ github.event.repository.name }}'
branch:
description: 'Branch change branch protection rules for'
required: false
default: '${{ github.ref }}'
runs:
using: 'node16'
main: 'index.js' | 32.068966 | 154 | 0.694624 |
11c73f262cfc46ff3dc8e7d2eeb40c32448ab918 | 555 | yml | YAML | detection-rules/punycode_sender_domain.yml | LeShadow/sublime-rules | 6e581d76360e39b6c391ec31963ef82da0164ba1 | [
"MIT"
] | null | null | null | detection-rules/punycode_sender_domain.yml | LeShadow/sublime-rules | 6e581d76360e39b6c391ec31963ef82da0164ba1 | [
"MIT"
] | null | null | null | detection-rules/punycode_sender_domain.yml | LeShadow/sublime-rules | 6e581d76360e39b6c391ec31963ef82da0164ba1 | [
"MIT"
] | null | null | null | name: Punycode sender domain
source: |
type.inbound and ilike(sender.email.domain.domain, "*xn--*")
type: rule
description: |
The sender's domain contains punycode, a technique
used by attackers to impersonate legitimate domains.
references:
- "https://cybersecurityventures.com/beware-of-lookalike-domains-in-punycode-phishing-attacks/"
- "https://twitter.com/krabsonsecurity/status/1340935135076569089"
- "https://en.wikipedia.org/wiki/IDN_homograph_attack"
severity: high
tags:
- "suspicious-sender"
- "punycode"
- "lookalike-domain"
| 32.647059 | 97 | 0.758559 |
224eba7210397d362d96f0ff06a625112f99ba33 | 5,283 | yml | YAML | config/figures.yml | JgPhil/Snowtricks | 415864224bdf81bde7ec60a339e6b594799335a6 | [
"MIT"
] | null | null | null | config/figures.yml | JgPhil/Snowtricks | 415864224bdf81bde7ec60a339e6b594799335a6 | [
"MIT"
] | 13 | 2020-06-05T13:50:40.000Z | 2020-12-17T12:26:53.000Z | config/figures.yml | JgPhil/Snowtricks | 415864224bdf81bde7ec60a339e6b594799335a6 | [
"MIT"
] | null | null | null | -
title: Flips
figures:
-
title: Backflip
description: 'Le backflip figure parmi les sauts les plus spectaculaires de cette discipline. Il nécessite la maîtrise des fondamentaux et d’une bonne perception du corps. En effet, avoir la tête en bas, même pendant quelques secondes seulement, est très difficile pour les non-initiés.'
picture: Backflip.jpg
video: 'https://www.youtube.com/embed/W853WVF5AqI'
-
title: 'Mc Twist'
description: 'Le Mc Twist est un flip (rotation verticale) agrémenté d''une vrille. Un saut plutôt périlleux réservé aux riders les plus confirmés. Le champion Shaun White s''est illustré par un Double Mc Twist 1260 lors de sa session de Half-Pipe aux Jeux Olympiques de Vancouver en 2010.'
picture: McTwist.jpg
video: 'https://www.youtube.com/embed/k-CoAquRSwY'
-
title: Wildcat
description: 'Aussi appelé backflip, le wildcat est un salto arrière que le rider effectue dans les airs après avoir pris de la vitesse. C''est un trick qui peut être difficile à réaliser puisque le snowboardeur doit veiller à rester dans le bon axe.'
picture: Wildcat.jpg
video: 'https://www.youtube.com/embed/7KUpodSrZqI'
-
title: Grabs
figures:
-
title: 'Double Backflip One Foot'
description: 'Comme on peut le deviner, les "one foot" sont des figures réalisées avec un pied décroché de la fixation. Pendant le saut, le snowboarder doit tendre la jambe du côté dudit pied. L''esthète Scotty Vine – une sorte de Danny MacAskill du snowboard – en a réalisé un bel exemple avec son Double Backflip One Foot.'
picture: DoubleBackflipOneFoot.jpg
video: 'https://www.youtube.com/embed/ty5o0JMEBAQ'
-
title: 'Method air'
description: 'Cette figure – qui consiste à attraper sa planche d''une main et le tourner perpendiculairement au sol – est un classique "old school". Il n''empêche qu''il est indémodable, avec de vrais ambassadeurs comme Jamie Lynn ou la star Terje Haakonsen. En 2007, ce dernier a même battu le record du monde du "air" le plus haut en s''élevant à 9,8 mètres au-dessus du kick (sommet d''un mur d''une rampe ou autre structure de saut).'
picture: MethodAir.jpg
video: 'https://www.youtube.com/embed/ZWZGE9yp5hA'
-
title: 'Backside Triple Cork 1440'
description: ' Comme on peut le deviner, les "one foot" sont des figures réalisées avec un pied décroché de la fixation. Pendant le saut, le snowboarder doit tendre la jambe du côté dudit pied. L''esthète Scotty Vine – une sorte de Danny MacAskill du snowboard – en a réalisé un bel exemple avec son Double Backflip One Foot.'
picture: BacksideTripleCork1440.jpg
video: 'https://www.youtube.com/embed/URFnYGzu9lU'
-
title: Spins
figures:
-
title: Cork
description: 'Le diminutif de corkscrew qui signifie littéralement tire-bouchon et désignait les premières simples rotations têtes en bas en frontside. Désormais, on utilise le mot cork à toute les sauces pour qualifier les figures où le rider passe la tête en bas, peu importe le sens de rotation. Et dorénavant en compétition, on parle souvent de double cork, triple cork et certains riders vont jusqu''au quadruple cork !'
picture: Cork.jpg
video: 'https://www.youtube.com/embed/FMHiSF0rHF8'
-
title: 'Double Backside Rodeo 1080'
description: 'À l''instar du cork, le rodeo est une rotation désaxée, qui se reconnaît par son aspect vrillé. Un des plus beaux de l''histoire est sans aucun doute le Double Backside Rodeo 1080 effectué pour la première fois en compétition par le jeune prodige Travis Rice, lors du Icer Air 2007. La pirouette est tellement culte qu''elle a fini dans un jeu vidéo où Travis Rice est l''un des personnages.'
picture: DoubleBacksideRodeo1080.jpg
video: 'https://www.youtube.com/embed/DSc7hQ0bzg'
-
title: Slides
figures:
-
title: Jib
description: "Mais qu’est-ce que le Jib ? C’est le fait de glisser sur des obstacles tels que des rails ou des box avec un snowboard. Il y a de nombreuses façons de faire du jib en snow. C’est aussi ce qui rend le concept si sympa – les possibilités infinies d’apprendre de nouveaux tricks. Et le mieux dans tout ça, c’est qu’une fois que les bases sont maîtrisées, on peut progresser assez rapidement.\n La discipline royale du jib te permet de tester toutes tes compétences en street snow. Pour faire du jib dans les rues, pense à porter les meilleures vestes de snowboard et des pantalons de snowboard adaptés, car tu vas attirer les regards ! Les rois du jib de rue viennent principalement des villes du nord, bien enneigées en hiver, qui comptent peu de stations. Le snowboard de rue demande beaucoup d’habileté en snow, mais c’est aussi une nouvelle toile où exprimer sa créativité. Sebastian Toutant (plus connu sous le nom de Seb Toots) est l’un de ces snowboarders talentueux qui parvient à faire des rues enneigées du Québec son propre snowpark. Ne nous voilons pas la face, personne ne sera jamais aussi dur à cuire. Mais on peut déjà essayer d’apprendre les rudiments du jib en s’inspirant des idées de ce roi du snow urbain."
picture: Jib.jpg
video: 'https://www.youtube.com/embed/5mxLMI4w_wE'
| 91.086207 | 1,263 | 0.741813 |
8fcadf8183d3ab891aebbaf539c6ff428a7834aa | 179 | yml | YAML | docker-compose.yml | allyotov/Lermontovization-deploy | 041e2cf76f9acd66c348eda18e2e7289e53deaba | [
"MIT"
] | null | null | null | docker-compose.yml | allyotov/Lermontovization-deploy | 041e2cf76f9acd66c348eda18e2e7289e53deaba | [
"MIT"
] | null | null | null | docker-compose.yml | allyotov/Lermontovization-deploy | 041e2cf76f9acd66c348eda18e2e7289e53deaba | [
"MIT"
] | null | null | null | version: '3.7'
services:
bot:
image: allyotov/lermontovization:0.0.4
networks:
- lermontovization_network
env_file: .env
networks:
lermontovization_network: | 17.9 | 42 | 0.709497 |
0b5f1f8d24957e4ad3bdda8e62185ec98f134855 | 877 | yml | YAML | manual/nextcloud-pvc.yml | mtraina/nextcloud-kubernetes | f2572be4caee5d3793255c0102199c2b2ba54293 | [
"MIT"
] | null | null | null | manual/nextcloud-pvc.yml | mtraina/nextcloud-kubernetes | f2572be4caee5d3793255c0102199c2b2ba54293 | [
"MIT"
] | null | null | null | manual/nextcloud-pvc.yml | mtraina/nextcloud-kubernetes | f2572be4caee5d3793255c0102199c2b2ba54293 | [
"MIT"
] | null | null | null | apiVersion: v1
kind: PersistentVolume
metadata:
name: nextcloud-db-pv
spec:
accessModes:
- ReadWriteOnce
capacity:
storage: 5Gi
hostPath:
path: /data/nextcloud-db-pv
storageClassName: standard
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: nextcloud-db-pvc
labels:
app: nextcloud
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
volumeName: nextcloud-db-pv
---
apiVersion: v1
kind: PersistentVolume
metadata:
name: nextcloud-pv
spec:
accessModes:
- ReadWriteOnce
capacity:
storage: 5Gi
hostPath:
path: /data/nextcloud-pv
storageClassName: standard
---
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: nextcloud-pvc
labels:
app: nextcloud
spec:
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 5Gi
volumeName: nextcloud-pv | 16.54717 | 31 | 0.709236 |
75f2736bcb04470483cfee1512de83e0021869eb | 234 | yml | YAML | history/geocode-xyz.yml | eruci/uptime | 74a72c1a525d4b82c9e01f945db0b6354a8073f4 | [
"MIT"
] | null | null | null | history/geocode-xyz.yml | eruci/uptime | 74a72c1a525d4b82c9e01f945db0b6354a8073f4 | [
"MIT"
] | 1 | 2020-12-28T17:32:46.000Z | 2020-12-28T18:14:54.000Z | history/geocode-xyz.yml | eruci/uptime | 74a72c1a525d4b82c9e01f945db0b6354a8073f4 | [
"MIT"
] | null | null | null | url: https://geocode.xyz
status: up
code: 200
responseTime: 476
lastUpdated: 2020-12-28T23:12:32.832Z
startTime: Mon Dec 28 2020 02:38:54 GMT+0000 (Coordinated Universal Time)
generator: Upptime <https://github.com/upptime/upptime>
| 29.25 | 73 | 0.769231 |
03a8a348ae9a49d01c61b56ee6fb3cb8887063b0 | 289 | yaml | YAML | data/yaml/apis/cloud.bytebuilders.dev/v1alpha1/machinetypes/aws-r5d.24xlarge.yaml | bytebuilders/resource-model | 5b617f002e46450cdf55d350192a408556628a0c | [
"Apache-2.0"
] | 2 | 2020-06-01T07:17:00.000Z | 2020-07-21T17:18:39.000Z | data/yaml/apis/cloud.bytebuilders.dev/v1alpha1/machinetypes/aws-r5d.24xlarge.yaml | bytebuilders/resource-model | 5b617f002e46450cdf55d350192a408556628a0c | [
"Apache-2.0"
] | 3 | 2021-01-30T22:34:45.000Z | 2021-08-04T09:46:24.000Z | data/yaml/apis/cloud.bytebuilders.dev/v1alpha1/machinetypes/aws-r5d.24xlarge.yaml | bytebuilders/resource-model | 5b617f002e46450cdf55d350192a408556628a0c | [
"Apache-2.0"
] | 1 | 2020-06-01T07:15:19.000Z | 2020-06-01T07:15:19.000Z | apiVersion: cloud.bytebuilders.dev/v1alpha1
kind: MachineType
metadata:
creationTimestamp: null
labels:
cloud.pharmer.io/provider: aws
name: aws-r5d.24xlarge
spec:
category: Memory optimized
cpu: "96"
description: r5d.24xlarge
disk: 900G
ram: 768Gi
sku: r5d.24xlarge
| 19.266667 | 43 | 0.743945 |
a1050665fd5b01a5abaf33e538c0e81146fde4ae | 882 | yml | YAML | deployment/docker-compose-orderer.yml | Salmandabbakuti/hlf-3h2c | 8e5ec1a7ec82db7701df428a4ebb08ae62241070 | [
"Apache-2.0"
] | null | null | null | deployment/docker-compose-orderer.yml | Salmandabbakuti/hlf-3h2c | 8e5ec1a7ec82db7701df428a4ebb08ae62241070 | [
"Apache-2.0"
] | null | null | null | deployment/docker-compose-orderer.yml | Salmandabbakuti/hlf-3h2c | 8e5ec1a7ec82db7701df428a4ebb08ae62241070 | [
"Apache-2.0"
] | null | null | null |
version: '2'
networks:
fabric:
services:
orderer.example.com:
extends:
file: docker-compose-base.yml
service: orderer
container_name: orderer.example.com
environment:
- ORDERER_HOST=orderer.example.com
extra_hosts:
- "peer0.org1.example.com:172.31.58.209"
- "peer0.org2.example.com:172.31.51.44"
- "peer0.org3.example.com:172.31.53.42"
volumes:
- ../crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp:/var/hyperledger/msp
- ../crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls:/var/hyperledger/tls
- ../channel-artifacts/:/var/hyperledger/configs
networks:
fabric:
aliases:
- net
ports:
- 7050:7050
| 29.4 | 117 | 0.582766 |
a12ed896f97f92627844166649b0e53431347dfb | 3,835 | yml | YAML | articles/sql-database/sql-database-paas-index.yml | quique-z/azure-docs | b0cd9cf3857bef92a706920f4435fe698dd28bcf | [
"CC-BY-4.0",
"MIT"
] | 2 | 2021-09-19T19:07:44.000Z | 2021-11-15T09:58:47.000Z | articles/sql-database/sql-database-paas-index.yml | quique-z/azure-docs | b0cd9cf3857bef92a706920f4435fe698dd28bcf | [
"CC-BY-4.0",
"MIT"
] | 1 | 2017-04-21T17:57:59.000Z | 2017-04-21T17:58:30.000Z | articles/sql-database/sql-database-paas-index.yml | quique-z/azure-docs | b0cd9cf3857bef92a706920f4435fe698dd28bcf | [
"CC-BY-4.0",
"MIT"
] | 1 | 2022-03-15T04:24:45.000Z | 2022-03-15T04:24:45.000Z | ### YamlMime:YamlDocument
documentType: LandingData
title: Platform as a Service
metadata:
title: Azure SQL Database - Platform as a Service
meta.description: Learn about the PaaS capabilities of Azure SQL Database.
services: sql-database
ms.subservice: service
author: jovanpop-msft
ms.reviewer: carlrab
manager: craigg
requires-business-manager-approval: false
ms.service: sql-database
ms.tgt_pltfrm: na
ms.devlang:
ms.topic: overview
ms.date: 11/11/2018
ms.author: jovanpop-msft
sections:
- items:
- type: paragraph
text: Azure SQL Database is a fully managed Platform as a Service (PaaS) Database Engine that handles most of the database management functions such as upgrading, patching, backups, and monitoring without user involvement. Azure SQL Database is always running on the latest stable version of SQL Server Database Engine and patched OS with 99.99% availability. PaaS capabilities that are built-in into Azure SQL database enable you to focus on the domain specific database administration and optimization activities that are critical for your business.
- type: list
style: cards
className: cardsM
columns: 3
items:
- title: Business continuity
href: /azure/sql-database/sql-database-business-continuity
html: <p>Azure SQL Database enables your business to continue operating in the face of disruption, particularly to its computing infrastructure.</p>
- title: High availability
href: /azure/sql-database/sql-database-high-availability
html: <p>Azure SQL Database guarantees that your databases are up and running 99.99% of time, without worrying about maintenance and downtimes.</p>
- title: Automated backups
href: /azure/sql-database/sql-database-automated-backups
html: <p>Azure SQL Database automatically creates database backups and uses Azure read-access geo-redundant storage (RA-GRS) to provide geo-redundancy.</p>
- title: Long term backup retention
href: /azure/sql-database/sql-database-long-term-retention
html: <p>Azure SQL Database enables you store specified SQL database full backups for up to 10 years.</p>
- title: Geo-replication
href: /azure/sql-database/sql-database-geo-replication-overview
html: <p>Azure SQL Database enables you to create readable replicas of your database in the same or different data center (region).</p>
- title: Scale resources
href: /azure/sql-database/sql-database-scale-resources
html: <p>Azure SQL Database enables you to easily add more resources (CPU, memory, storage) without long provisioning.</p>
- title: More resources
items:
- type: paragraph
text: Azure SQL Database provides a set of additional built-in PaaS features that you can use to more easily manage your databases.
- type: list
style: ordered
items:
- html: <a href="/azure/sql-database/sql-database-security-index">Advanced security</a> detects threats and vulnerabilities in your databases and enables you to secure your data.
- html: <a href="/azure/sql-database/sql-database-automatic-tuning">Automatic tuning</a> analyzes your workload and provides you the recommendations that can optimize performance of your applications by adding indexes, removing unused indexes, and automatically fixing the query plan issues.
- html: <a href="/azure/log-analytics/log-analytics-azure-sql">Built-in monitoring capabilities</a> enable you to get the insights into performance of your databases and workload, and troubleshoot the performance issues.
- html: <a href="/azure/sql-database/sql-database-intelligent-insights">Built-in intelligence</a> automatically identifies the potential issues in your workload and provides you the recommendations that can help you to fix the problems.
| 66.12069 | 555 | 0.756714 |
a1883bcac467a20223b9030010f31bb9b9a0aa02 | 316 | yaml | YAML | config/project/fields/showForm--5f3f9d21-e4a4-40d6-b80f-a92d99e02926.yaml | joeforshaw/spoke-and-chain | df8bce93a30879d151e8597911ce3851389449d7 | [
"0BSD"
] | 19 | 2021-07-22T21:10:55.000Z | 2022-03-30T04:31:32.000Z | config/project/fields/showForm--5f3f9d21-e4a4-40d6-b80f-a92d99e02926.yaml | joeforshaw/spoke-and-chain | df8bce93a30879d151e8597911ce3851389449d7 | [
"0BSD"
] | 14 | 2021-07-22T21:32:36.000Z | 2022-03-14T13:47:52.000Z | config/project/fields/showForm--5f3f9d21-e4a4-40d6-b80f-a92d99e02926.yaml | joeforshaw/spoke-and-chain | df8bce93a30879d151e8597911ce3851389449d7 | [
"0BSD"
] | 10 | 2021-07-27T20:20:53.000Z | 2022-02-04T09:10:00.000Z | columnSuffix: null
contentColumnType: boolean
fieldGroup: d52553ad-dd63-4dfd-8740-d53484afbcb3 # Product
handle: showForm
instructions: ''
name: 'Show Form'
searchable: false
settings:
default: true
offLabel: null
onLabel: null
translationKeyFormat: null
translationMethod: none
type: craft\fields\Lightswitch
| 21.066667 | 58 | 0.806962 |
a3593349fccd56138e8f38189ff9480488de0bd3 | 437 | yml | YAML | .github/workflows/bridgecrew.yml | 5toCode/terragoat-2 | 317e1b6fb47ff9f93a648d8f1316a6db87fbb822 | [
"Apache-2.0"
] | null | null | null | .github/workflows/bridgecrew.yml | 5toCode/terragoat-2 | 317e1b6fb47ff9f93a648d8f1316a6db87fbb822 | [
"Apache-2.0"
] | null | null | null | .github/workflows/bridgecrew.yml | 5toCode/terragoat-2 | 317e1b6fb47ff9f93a648d8f1316a6db87fbb822 | [
"Apache-2.0"
] | null | null | null | name: Bridgecrew
on:
pull_request:
push:
branches:
- main
jobs:
scan:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8]
steps:
- uses: actions/checkout@v2
- name: Run Bridgecrew
id: Bridgecrew
uses: bridgecrewio/bridgecrew-action@master
with:
api-key: ${{ secrets.BC_API_KEY }}
directory: terraform/
soft_fail: true
| 19.863636 | 51 | 0.572082 |
d432311fae62a459fea398f344915a5162265aad | 428 | yaml | YAML | content/plugins/scm-redmine-plugin/releases/3-1-0.yaml | scm-manager/plugin-center | 2db0e5a9db058a6084c6e7384783a807828dab74 | [
"MIT"
] | null | null | null | content/plugins/scm-redmine-plugin/releases/3-1-0.yaml | scm-manager/plugin-center | 2db0e5a9db058a6084c6e7384783a807828dab74 | [
"MIT"
] | null | null | null | content/plugins/scm-redmine-plugin/releases/3-1-0.yaml | scm-manager/plugin-center | 2db0e5a9db058a6084c6e7384783a807828dab74 | [
"MIT"
] | null | null | null | ---
plugin: "scm-redmine-plugin"
tag: "3.1.0"
date: "2022-03-03T14:39:18Z"
url: "https://packages.scm-manager.org/repository/plugin-releases/sonia/scm/plugins/scm-redmine-plugin/3.1.0/scm-redmine-plugin-3.1.0.smp"
checksum: "530688a990160ef9f698238b63fbac3dde53b441eeea9513677f50d0525b2fc8"
dependencies:
- "scm-issuetracker-plugin"
optionalDependencies:
- "scm-commit-message-checker-plugin"
conditions:
minVersion: "2.15.0"
| 32.923077 | 138 | 0.78271 |
29748958ce30219b00e78f41afc66869a7dad85d | 886 | yml | YAML | classes/system/salt/minion/cert/wildcard/init.yml | vkuspits/mcp-k8s | 46b6d22d7808dedd2ed5172170454b0296c15c6d | [
"Apache-2.0"
] | null | null | null | classes/system/salt/minion/cert/wildcard/init.yml | vkuspits/mcp-k8s | 46b6d22d7808dedd2ed5172170454b0296c15c6d | [
"Apache-2.0"
] | null | null | null | classes/system/salt/minion/cert/wildcard/init.yml | vkuspits/mcp-k8s | 46b6d22d7808dedd2ed5172170454b0296c15c6d | [
"Apache-2.0"
] | null | null | null | parameters:
_param:
salt_minion_ca_authority: salt_master_ca
salt_pki_wildcard_alt_names: IP:${_param:cluster_public_host},DNS:${_param:cluster_public_host},DNS:*.${_param:cluster_public_host},DNS:${_param:cluster_domain},DNS:*.${_param:cluster_domain}
salt:
minion:
cert:
proxy:
host: ${_param:salt_minion_ca_host}
signing_policy: cert_server
authority: ${_param:salt_minion_ca_authority}
common_name: wildcard
alternative_names: IP:127.0.0.1,${_param:salt_pki_wildcard_alt_names}
key_file: /srv/salt/pki/${_param:cluster_name}/${salt:minion:cert:wildcard:common_name}.key
cert_file: /srv/salt/pki/${_param:cluster_name}/${salt:minion:cert:wildcard:common_name}.crt
all_file: /srv/salt/pki/${_param:cluster_name}/${salt:minion:cert:wildcard:common_name}-chain-with-key.pem
| 52.117647 | 195 | 0.708804 |
50271ce774288dc07747c2748a983812027ea712 | 1,220 | yml | YAML | preview/docs-ref-autogen/com.azure.cosmos.models.ChangeFeedProcessorOptions.getStartTime.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | 5 | 2021-08-20T15:24:19.000Z | 2022-02-20T17:06:14.000Z | preview/docs-ref-autogen/com.azure.cosmos.models.ChangeFeedProcessorOptions.getStartTime.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | preview/docs-ref-autogen/com.azure.cosmos.models.ChangeFeedProcessorOptions.getStartTime.yml | azure-sdk/azure-docs-sdk-java | 66cc376be8bb1e1246731b879cc1f8fba76ea946 | [
"CC-BY-4.0",
"MIT"
] | 1 | 2021-08-20T15:24:21.000Z | 2021-08-20T15:24:21.000Z | ### YamlMime:JavaMember
uid: "com.azure.cosmos.models.ChangeFeedProcessorOptions.getStartTime*"
fullName: "com.azure.cosmos.models.ChangeFeedProcessorOptions.getStartTime"
name: "getStartTime"
nameWithType: "ChangeFeedProcessorOptions.getStartTime"
members:
- uid: "com.azure.cosmos.models.ChangeFeedProcessorOptions.getStartTime()"
fullName: "com.azure.cosmos.models.ChangeFeedProcessorOptions.getStartTime()"
name: "getStartTime()"
nameWithType: "ChangeFeedProcessorOptions.getStartTime()"
summary: "Gets the time (exclusive) to start looking for changes after.\n\nThis option can be used when: (1) Lease items are not initialized; this setting will be ignored if the lease items exists and have a valid continuation token. (2) Start continuation token option is not specified. If this option is specified, \"start from beginning\" option is ignored."
syntax: "public Instant getStartTime()"
returns:
description: "the time (exclusive) to start looking for changes after."
type: "<xref href=\"java.time.Instant?alt=java.time.Instant&text=Instant\" data-throw-if-not-resolved=\"False\" />"
type: "method"
metadata: {}
package: "com.azure.cosmos.models"
artifact: com.azure:azure-cosmos:4.4.0-beta.1
| 61 | 363 | 0.779508 |
99db5862d66ba33187428c19a05c3f9f95ef722b | 24,874 | yml | YAML | passwords.yml | schmots1/os_insight_2018 | f28af9d2fe6d3120f88ee1949a520fc664254830 | [
"FSFAP"
] | 1 | 2018-11-15T09:21:52.000Z | 2018-11-15T09:21:52.000Z | passwords.yml | schmots1/os_insight_2018 | f28af9d2fe6d3120f88ee1949a520fc664254830 | [
"FSFAP"
] | null | null | null | passwords.yml | schmots1/os_insight_2018 | f28af9d2fe6d3120f88ee1949a520fc664254830 | [
"FSFAP"
] | null | null | null | aodh_database_password: loHDxzP7kjquGArTfPG51FBaxzTqONsI0zeO6jjX
aodh_keystone_password: 9WSLXi60hjQxQWJ9dABpOQcdnB3ZtvoJM8CDpZZh
barbican_crypto_key: PEw1jZGKe1eRmUAAxE2CLWKUzYtHFKqn87tVzP0w7Yc=
barbican_database_password: bvjfc1XAFzQRWRMx0a9m5aRU1txO0yrMsiV8n3y2
barbican_keystone_password: jyJWMA0R48WWMAAcFzMZvhHNUZnKvpkbCgYHUmcZ
barbican_p11_password: hvhlxlyXlT0i48NC7g2vpv6z913MLrBkuSXLPLQ8
bifrost_ssh_key:
private_key: '-----BEGIN PRIVATE KEY-----
MIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDEBSaRBDwYBBGG
EzjAUjTkQZwRzQfoaBtmBu6su3uGn66GUK/xFTOVC7/Oz9UFUtMJuUoZB3BAbYFU
+Qtax0/MjPlTHpVDK+O54f9a53wLdoVxkJdN6blztItLZL+gP9p20CGAqriP3KRM
OJ9zwt6ZqE9eQSNPUOdTWTUcUriOs67SyioITYIJrC6WFj10ZGc26t+JCdlFme1L
O5H1nQawB5K3cHPLUls9ATPuQ8/Z+serq1NjFg8+OIBy3/qXFkSflqgxgTt0vEC8
ELcktuxNnrepwor2dqKJfCtN698MGcAWOKuFB6H8Vlg9L//3PDyxFPucT6yLKh9A
NwNWk/eb3f2N2/PWFcl/5prbFuT0wqgBEKvIedkLKAPm1rAzWApuuJ5DX1A2yAG5
OM4J/cvoqIekhgFCKKi4tZBhjOXy11rndk2nw5D1BA7nex2X31NxceERH5j+6vAO
72qAlihzh2kE9nKYTN/IkNVe0Drl4UfC9V246LuaO7v/BN7UcBS6m6dEjmXMT5W5
7Klg9b9KuLkFWsOCjBhQJgLextmLhLWhNUHob/CUhzCVsqtEdvspePQU9is9pOEi
MCjLrlcBz6i4hfzKQIdw16OXwHM5PdxWDMIzx00vD1YoVj6IQuJUV7B0qgJWTnU+
NQgMQoyVTQXDxIeoEh7UEy090ssIWwIDAQABAoICAD5QbNw4/mmcEX4P6kCpYYsW
mGjIRzVIsz0SAxoCV9iKNs8YI3Z+iPFe1NEIHO4eUFyM/NNMHBE/Ppgmu8dWCTY7
sp8L3+OEtlZHVAgwAq0aNn3Nu2vXW08/G/ERzCFDa03OCHiAzT9eoxRgA8CnOGCc
su6BwpnaXE+Q0mN4oJcs4+y6u/X7vdUZWY347/xqVq2MqRdFfD62GkuKWnI8Qv3+
ylNqekUunzabhUi/Yfon0QXv5whe4OWkzKC4N0+EkrgxCrMCJEaN+f5PSglv5Vsf
k79xyv9i43TVdmbFDxknrnrh9RTLQmGXiWGaOsL78UdSJlKguXdcIqclVfhV/aaO
0shnfOyt8r42MwR9Di4JcesavjtKoEJBascjXRKgzVzOYu+bumLAoyeiRxOX7+5a
FVh3vZOJGdlAx30rW+h9vYxvdmeHPv9AJ9dKuTDsT1F1yn8rE4WNf5i/QbY49yC3
tWu+sj/AAlPkT5k3Ie3LaOnlEdY7axSHUZ0GPYaM+oyFrp1a+QbhDeJAtxAc26bc
jdKLeVrbSRhzc4Lu1tyvT4M3Wz4zhTxPQtK5OhIemMDhWzGQRmQzgX+I61gbsOEG
0vTvaAo8ta4JNnaVwfWAlwyew0JhkrcEfbDpt1X0H80cPPg/OJ2XPANoqZtohLke
y8lRQYEzWvJHor5LJBxRAoIBAQDiDJVojCEDXl70FTFHeT8QOFmIJkx2NkLe4tZA
6cdFlw/MUn0jH0Jjov0Ftj2guwS3UknFOizYh2Th8xiMidT3jgAYfZdKvmOYhpUr
KtxkCsgGtbY+SLJ290UPAeD5f7ZYx48WFdERJrfFnhR9t2F2P8VVDFh0/00VPuMc
3XuZ9yKbIzf/JfStcv9+80qloOwPA58bS57xt1KQCpX2KoxdQo84u98CtTJPwvYm
3A9kPFtj22ClnhZFoBgBlsdH7XTekCUcPqGtE/ORxgEoNIVmfsqSwzxKCBn99JRu
2ijRQrEl4yYCq4DylknjODLpLTETnn1MnTZ+58b1kCFIobe9AoIBAQDd/gE+0oih
Fa3AcoLCYz4Ryd0ANfuyTCTXA4TAF0yeCboNDtPwn1182R3Lc1exSoQGZV4hjefX
LbWBYGm5pMmV5vnVp98nX7KIhJF8/RU2OXolmPLbxpiTEebEPWbu5VIfS0gqQpmk
oi/yhJwZgn+PcWcBRTh6NRCK/+TiWKDifO1ZURE74rQ+eUpoSd9Qig/St1oXgp/X
YAkORBggms09Xj+i8PgRNGgI5LcDzOfAW8X4ozLuxGSdYkb50jg3aZD5y7tqw1Lc
V5yk/Xb8/yKxfPx5xrmAG2uIg1n2emu88xq0DLSQkmsY9R0CAPMNoVTMAgxu/CHX
rgY6OzRnVVX3AoIBACkPIBRdX6G9AoJTVyAkZdAMbDbOvhS6xmq1yTUBQbDiP3xd
f11h0C1I7ayb7ZXEYpbp23x3lK2/6hMglNTyNDzDDkFkjpaE/pI13+J3ZpDFZI/T
ccbebYwuXdzb+oFXMUfu946LZ+41mivLCu3K4WkZLD7Gf0rBFL9HLPmRQWI2AZMs
Un+F5Wub98yXZHexQy92+O98TOKa6eRAB/0uvVAzRtCHT3qubvUN9KgaULFkRTVe
I6/xhxoeej3PpWLrPs8uX49B0RwfA5722D71S0XSwfjmfYz068O1KUD5X3CjLIo1
ODJD9KgbpFAhZR31l3R41UmVRNDISNtR0rnepgECggEBAL5lSYopJfgK0OA7Fn1E
gwrcuIiixEJS3lHveZ8LHLJ7IzBp5Er/VD5tNQm23qJ3h664qDhdLlg2ovLYzzTi
6eaAmQyvk0yA3m4KTYIGynecam/us3Td6yRQeT0ccLk6w+mFNtrQDljOphL5u6yB
aYiMucy0ItFly8971EJxw2MdxLATQJW9RdxDSRcTLM4164ZNrZ52cUNW4c1zh8IH
IzqcKDZHOGwBJ61hBLrktmwcCjrLNjblCGqXzModjAuyph4op5DU/69uETLNFY2+
AXJ7AUwsrhL68Yq/JZypuNfxJZkBQKiye9qG+B8s00mAcmsa4rEZ3KjQYBT3jGWI
IlcCggEBAKLUmvQHyAov8k76lUjTbnf4Pxu/+xl4IiRJhN+q0sMivqRYqdLfvbmj
562E33Uv+WuzbNf8fS2szUGmnL3S1PFnTakbyxhzGe3oqO0KgJxJ867od1ti7+D3
lq+obvtyGANrRgRsWzZ3D03LgOd+3AFOQhX3CZ8xgl8PNpnzFy8fI3Qb2k4UrtVO
A7ddUcizoIWo/6ZI6cyM3ZT1idqnLj5VvvrqdFkY/keSQdRgVkLezMo178rtTdG7
D8eq70xK6csZwyHCv2zHXJe/oRTgsYPB5nOXybQad00MjTreKhu7Dmke6AEsEbtx
A/ui9Vn9sOUOp8drLPI7G67c+Fq6REc=
-----END PRIVATE KEY-----
'
public_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDEBSaRBDwYBBGGEzjAUjTkQZwRzQfoaBtmBu6su3uGn66GUK/xFTOVC7/Oz9UFUtMJuUoZB3BAbYFU+Qtax0/MjPlTHpVDK+O54f9a53wLdoVxkJdN6blztItLZL+gP9p20CGAqriP3KRMOJ9zwt6ZqE9eQSNPUOdTWTUcUriOs67SyioITYIJrC6WFj10ZGc26t+JCdlFme1LO5H1nQawB5K3cHPLUls9ATPuQ8/Z+serq1NjFg8+OIBy3/qXFkSflqgxgTt0vEC8ELcktuxNnrepwor2dqKJfCtN698MGcAWOKuFB6H8Vlg9L//3PDyxFPucT6yLKh9ANwNWk/eb3f2N2/PWFcl/5prbFuT0wqgBEKvIedkLKAPm1rAzWApuuJ5DX1A2yAG5OM4J/cvoqIekhgFCKKi4tZBhjOXy11rndk2nw5D1BA7nex2X31NxceERH5j+6vAO72qAlihzh2kE9nKYTN/IkNVe0Drl4UfC9V246LuaO7v/BN7UcBS6m6dEjmXMT5W57Klg9b9KuLkFWsOCjBhQJgLextmLhLWhNUHob/CUhzCVsqtEdvspePQU9is9pOEiMCjLrlcBz6i4hfzKQIdw16OXwHM5PdxWDMIzx00vD1YoVj6IQuJUV7B0qgJWTnU+NQgMQoyVTQXDxIeoEh7UEy090ssIWw==
blazar_database_password: AqgDRC5RD0PdTx8n7LA7freJueNnqcZLlgRqOoqc
blazar_keystone_password: WHaPNr3yrqa3rsmxROe4caAxYle0FF7lX5WdvU1R
ceilometer_database_password: L5GfuWNpAEqvDRVB3B4RhaV2mBcVcrIYJQT8HD12
ceilometer_keystone_password: I5swHrayHrL2RdexN8xayJKzlLUNntaZPVGudu2r
ceph_cluster_fsid: a0e7bd45-c471-4643-b058-b9645dd40d36
ceph_rgw_keystone_password: 3HxIxk8kle1ljJHTExOFIoMKkSBGBuGgdbszQUWl
cinder_database_password: jZXqcSFwDHzqzBqaSNCeZlBILcmiLK8edQjGJ6Ge
cinder_keystone_password: bqwPmcUuc0LC0Z0e93IodtBapSga4ERUvsHwmmDj
cinder_rbd_secret_uuid: 67f9b2b5-bf5f-46db-b2b7-606c8107c2d0
cloudkitty_database_password: Bry3BLm5xJtWQrD1RO5QXotcSvkKX1DOHZmRMPac
cloudkitty_keystone_password: 0vo2hYAcCO63YnepKJanUeFc7yZOI5mQfUMbj5It
congress_database_password: PWa3Bj7XMoz2ReANZ4aBKsO97pHJtlGYN6TnzvZU
congress_keystone_password: XRnxoIRKNnFTPlL5z1iC2IGmLl0U6069bJ1OZJeV
database_password: uBbdc8ksqc4qw0yV3Oq9XmiwmG8tIpAG7vLnYoYC
designate_database_password: ADwLyNzqasKhBAY2TGv2fjryJJpWTcTat7Gb90Z6
designate_keystone_password: MH3JKKYld9ExW6DTHmKyBelndLbxa6hhk4wwP4Gj
designate_pool_id: d52fc058-4b3b-4714-8e3f-c530aa939215
designate_pool_manager_database_password: 6bwa3ViNcCIoHfy7jxFmN0RgpbRRh2aaeEijDOqg
designate_rndc_key: 34aCrso3y9hygSRytNmXbg==
docker_registry_password: null
etcd_cluster_token: T5AlxT90MeuKrNRUFM4qP6PdQh42fqunfhYJDxrd
freezer_database_password: PXBbRVPR2hRu4iDFKXWEv3nXaYp5cWC38fSdnSyP
freezer_keystone_password: 7kXr6np8TLfr5prvbjHPd7WJofDtKQJbBj7rVhEL
glance_database_password: 9oJBi22DRbCTi7yWlcxn9rXVYUlHtly8UAtMDQ92
glance_keystone_password: MVjGNTZPQ7TburgYEubazqKhIlrPCPLtE1ZuHsvF
gnocchi_database_password: 1pXigIddoZvBPgsqDLD8y078WT4awYCPreemMaPc
gnocchi_keystone_password: aSyk2APClFASCYNJeXLfO4EfOdMxxoAdWan0zBEi
gnocchi_project_id: 46eb2836-bfee-4789-b6df-51b62ace853c
gnocchi_resource_id: 436ad809-655f-48be-b20d-27a0647684a9
gnocchi_user_id: 69141ef5-4eb3-42a2-aea3-c0c62929a73c
grafana_admin_password: 9aYLqatQRb8Ra5tB19Zg0NdGHuN9tFagDr6WRzFn
grafana_database_password: gw4GinHhgT8Bz84F5dQIRTP801IL4ib2TEppNA6R
haproxy_password: lucsuobFmCrEgo8wLtfa0L5pmCx3g9gfGEPniAzl
heat_database_password: 87lxqabYlq1iikvgWTk6IqCzEvOAjLf8dmtPCtJS
heat_domain_admin_password: mp75YFWhtc9U5pglulbiFY1UeYa5RR6yiDJyLJ8H
heat_keystone_password: fme74tLsGfrWncXPhnbY2KdWh48dzm0bXwzkRSoE
hnas_iscsi_password: cdqnY8Za0cFJMYMcXyN0rufVT5gLqcrqOhbfDAmc
hnas_nfs_password: 5QwWKaTjvoupiXxBptEFyezsC6PuwH9nckGuWsxE
horizon_database_password: BmfOKla3WiqjVbm8bmp6YApWKb9j17GAxfMqvZuN
horizon_secret_key: 1xsoLkt2E0f9KKAfajRGTryPeVDqXBDnukfECu2e
ironic_database_password: xeqz3tD9uLWI4J1MMbfVPgko1Fv9Y3Wn5gwaMgCV
ironic_inspector_database_password: QnNsqvu5xMUocNEi0PWoj69Qw4ovPkvXc18NEOPg
ironic_inspector_keystone_password: wSOuHvEdL7iWiBUW7x10Nd7CUZDnLDTDZuELu8Ig
ironic_keystone_password: NKp9yi47SuYDb7EeLbiCACWJR86eO7Q1tN1Neicu
karbor_database_password: b3lNBnvw2amHagvRjXmv8hgwurIUVMMpcH1gQsoI
karbor_keystone_password: Eepg88Ebk5jacbvrjmKvwDYk4Z8YIODzeVk4stkV
karbor_openstack_infra_id: 17029d83-314b-430e-9967-168f0ae7ff7f
keepalived_password: fzCDYcNIvwu4vhXzROOYcM9MWFpsLbStg03PctBf
keystone_admin_password: AfphHh9pnWTydZw7XT2fu09WMH1DdWZIYXY5SgxU
keystone_database_password: cT376G8W1M03TuO3f0SBMdi8gJvDwoFUXUfSnqP4
keystone_ssh_key:
private_key: '-----BEGIN PRIVATE KEY-----
MIIJRAIBADANBgkqhkiG9w0BAQEFAASCCS4wggkqAgEAAoICAQCsOtgFdFN9grJT
xUx0ddnLs7+T4amnBNhGp50qqypqKTv9bg4e912ut/7iWIah/FH2o7DkdVPzEcuI
7cA0x9JvbBdvO1sDsiH5P9nn46z/LOe+DkZiubLdYW4xURFNmhtyee5f5t7ir9iQ
PWb3qJL90+dZrYJ5oyyxQzsvzqjxUkimisn6qQMGGty2ubLfXII+ranOe+xyMlCU
SH9THoQsAAaSaxTISalLvEQQ4RlyoPw7bXNQ6g0RZojb9jh1jZr3epSkMGlmqlTg
b0SHnd3K0K9W1jhI92z0t9gMb1t6JcaYE4FrAqQsENFejU6mh3WACjVOT/3Eb73M
8pgcLOiAxCH9UWQEyX0FQnodWm5jEeEpdciO8dftFxOf55As4hnh/bc0xI2dV6MA
aQ6pOblfrRc4dSV5sBE8QB1i5dAhTKu+jgV3E/X86NZ8Wg/4AykFHPfTrAe65hry
OwS9RYLUkbwZGb50jWFiN9MQP9l28YN2n1pyU/AFdjg1ZDZZ6Z0Wb48rAL5ofGhj
M7ACyFTapkNtcOUzp//U9PD/bNk6nJyBjdl9M1lhIZlSj/FEHT+Y6222RW2uSgFE
AmIAfamZb09ADn0MzwT3r2hWOpfN6Kl4y+WEs+FA2+RTExcjAIu/iIHcHSc0xasJ
BFzs6kQdm2jYUoFVY8sZfpVt8ApQXQIDAQABAoICADlrMMO4wXDxlrQ47cFR3Pd9
iJwrupy1D8mWbd5gzDYyYw6dl1WZkIEEVJRvgQsWDNlWP04bE47Q2vNemBrAl5aQ
CcwKlNBJnevz7pjRncZA2U3SgoK9eDU4Gz2T0ln1y7rBjcgpNxuKFoAYCHD+oWrA
L7wFDZ+x19+NE3lfw5EYpqHnWWkY2ao6YGUGyeyPcdilmxv80ppLzfNxrAkw/k2R
AJ/l1Trk2+0k6ehas1o084J4fd52+T5Y2b3De5UtTYG+Ozn17d3NYZilX8p6xgus
wRgJOSCSZJ+9fui+Y1f4qhnfPuFHMyaBwNtt7s+0D2dNf/II1wibXEKsiiuyiRyA
mFOGUq0NWP/tuHVpFaPt1Uqt6am4sSOAxomr3+CTyiPgxgjJth4vcJ48l++zYej8
RKe5GEr2E6ldAhG3c6nu/TzMj3IfgHF/Eu6MA/sPllIlm+BmvCXTcxdNpPcpCFIA
xBKc5zFFy1UTO3DrINMF1BB43RuJZy0QaRC/4RNV89OmranJN5Tx0XsmQQdtPnKf
Hi0fA8ixScdwjbT3U8jE0ObVdUcbZ0osQArfrjrQlDebIjh4wUV7y+jWLpdgedo2
86rgo3oMoGSdnhuSi3YgTZREnwpqeu6LYsK1AO63l3uGj+0SQsTYh3GrR6gOy9D6
WgT2LtRh1uK8lNqV1dahAoIBAQDcr9lIFm+kgk2RUKrJ9GAZG6U3/A2pBy9Ayv4Z
SA1zKqWb7Xb6y5Gw+xZ/cr5XCvRVbvBkappic05XbCjCxmtB+z1BID2QTyfZAFqt
+L2QUVuOtWtrjQxfn3+WvmHhZDwAOrdh3QP5ajoHjFnldoOliS2jwhnW3alL+WgX
YBfC48Z5IXXqXsciqPJlkAQuSoh9sXSFVqtZb2IttdRY1xRy0afcAkbk7sIMlfLR
FoF0WuWD1u3zRf/aKInZdqeXuDXtrdBTIN4ENYfvZFZpw6A+ytZJCq6oNnrZZZwT
Oe5bIYfNWPRpD4qYxAebzNTALf9tyOF0wKdB7wAYfDRitys1AoIBAQDHygPmvHdB
MVmEDDltTV7ZZzPBpNAWXVQ2FGS1q4jOZ/sw2Rtxfx7WKHZb8HxeeUSFymCgbKZ+
8vDvjaJ9/alnRgOC6CtWaxOimIp0vwYCZFlO6w75exXTQGXrnXw7tuPrAk8KwXZs
wQboA0TMjtD1fr1jzyDu7VRa0lN7PMoZzGFVKrGS4i1BiTQ7hcIv0UMDhiu1zSB+
zvXomUt5g4lQuyprSuijtcQfzUOy4/bHOk0r7d3DTpcMpc9yuuRNwD2L2VnXYep7
b4UlEHy1gUA2x3bLIc3idIBEifY82qqXxjRtKua3kv6OYfKIB8QCWDQELsDKeCKN
2afGlE7DWI2JAoIBAQCVOmPXFzTPLT1+cenLPnBtCgCi5tHl5nHRgnJobgyKP+BU
nDLETDtsTZ1c+R40hbfKvYXYoS1cPVRQUVcOvlVw/I7jJwX6O0xatJ6c3YJxwFIF
IjBNPceMMbJ5IKvXWYwpK4stpeI2Gdq7l/CB9a33lddC0NHgNWtxcGkuxU/L/XIM
HtA5d3V4vn2Kp+Pr2YKKXCDKuVyM0YC2ICpDGM0/Bv5XC0MdM0YMdKkJMgq/v2dL
y16EDmWAA8GTR2T0dyAgZFRmoeb/OaN+AX9dbWdCjq5wHcUVAiH4N3leluHSxc2q
0egT0uqJeqUaeVuzyGbcueWaqVtwfki2Rea2id2xAoIBAQCAJX9jHDeRxUmZfQ3I
ofvYjm2QI1qlPa+qEGKYdDIH0oI3zsnffp4U11czmYjsP/RHrItV2trgSotn2/0B
uxZRe4L9EFXb1Ep/3D/SqkP8fMkb6YFtXBmfqoq1Ggp5ctG2B4ETcQu4rgb0AkS6
wFAfZu+reUuydN/KcWXCgjdPXNyBeCT2BcTpaEvscdsgOKU3OXQH5E6Xh8ALNWhH
xKrq8WI/94hImWn2y/5EXBwJpceiCaxYfaw9HI13FZEinc/cR8lscQ2pptpL78tN
0F2TxVTY7hHU0s0DKUqbtdX+C8/Mxdu+m7ZTNVgPEIwUxOZ4WFSoiW4Adj87DB2J
Bt+hAoIBAQCH+haUEA/+P5xTozyIypf0oGS47NpSmv4Bz3knzpOZG+Qxzm+/mTaq
C2FyVvDd9GvPTiqMM362y7rXUKJ+U+RmyYJMNnSUyWvPkrulubhZ9ZXXLbO36MZr
fVjMVJDzWl2Syy3IwEUEISBoGiBgXdWeVX+0cqL46OWHu9YguGdzn6x5p1s8Empt
h73p8el/k1UNA9VNlpUxTkiu9lrS1s8Qa3s4wjp6fFWryyej3MPfjMyDmgPozxzk
87cPUQ5m/vWjuPwCUnu0wgmdbebYkOepGTkoZZZGq8UFbFDZEh5U7ISdgJQPFzR9
6nKgLl5FFtlAis7uNnH+SBKXw9l929jD
-----END PRIVATE KEY-----
'
public_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCsOtgFdFN9grJTxUx0ddnLs7+T4amnBNhGp50qqypqKTv9bg4e912ut/7iWIah/FH2o7DkdVPzEcuI7cA0x9JvbBdvO1sDsiH5P9nn46z/LOe+DkZiubLdYW4xURFNmhtyee5f5t7ir9iQPWb3qJL90+dZrYJ5oyyxQzsvzqjxUkimisn6qQMGGty2ubLfXII+ranOe+xyMlCUSH9THoQsAAaSaxTISalLvEQQ4RlyoPw7bXNQ6g0RZojb9jh1jZr3epSkMGlmqlTgb0SHnd3K0K9W1jhI92z0t9gMb1t6JcaYE4FrAqQsENFejU6mh3WACjVOT/3Eb73M8pgcLOiAxCH9UWQEyX0FQnodWm5jEeEpdciO8dftFxOf55As4hnh/bc0xI2dV6MAaQ6pOblfrRc4dSV5sBE8QB1i5dAhTKu+jgV3E/X86NZ8Wg/4AykFHPfTrAe65hryOwS9RYLUkbwZGb50jWFiN9MQP9l28YN2n1pyU/AFdjg1ZDZZ6Z0Wb48rAL5ofGhjM7ACyFTapkNtcOUzp//U9PD/bNk6nJyBjdl9M1lhIZlSj/FEHT+Y6222RW2uSgFEAmIAfamZb09ADn0MzwT3r2hWOpfN6Kl4y+WEs+FA2+RTExcjAIu/iIHcHSc0xasJBFzs6kQdm2jYUoFVY8sZfpVt8ApQXQ==
kibana_password: Go0uFItCo6c5RP56R0poR71Dh9DJa4vigBAJCd6v
kolla_ssh_key:
private_key: '-----BEGIN PRIVATE KEY-----
MIIJQwIBADANBgkqhkiG9w0BAQEFAASCCS0wggkpAgEAAoICAQDDk6FE3VW3uqA1
ldb/H10tsMjK66wjVi8Vo2pNtPfj1v5X2ydI1i1NbOqXAraUGsCHZJUWNQb8SQCt
hyubk4DIeYUHDhU0N/YCjxDgRR5FFxNDm8Z/2GwsATcAkSw6Y2MhHgdrMIEiWQ1C
vB/DTG4AI8EzyVRRUGkmQXWeubro/lt4E8V09AldHKp8WwvWLRgfzP2yrrd5CHDJ
9SVSW1EJxjp+NjNcQ5AwuqoFW3Gg98B7w4VLcWMMgQmHpYjDuDHz9qDT73I2QYXT
iXhkim7EbzshJbcjN4zPlAy7BoG0/y1aznEhunzPVI4NrdhZFK34k2CzZ4ffCkMF
Ue+T1Ec0ig5bz6BXLIckyGtIuhNFFf5nb4SQS3+dgOzW9j0fDWw5mcscRItzdTuM
UxXAcRAKfzSw0taBUMqcchrAmS4cPSTF4ZkYHvamNk7T/vpo1D4lxZCoygVow8tD
+BnqDQaQGsU3abeFdBiuDjzYz7qP3oUYzB9N2H2pcnr9fLXhegyFp+HW+nKWRz0f
HJPCApGGPrQwZzDi05ljn5Y3tHFAVeUO5P8OvyMOD1MQQD4kuV6Nv5dfAJFhH3Fy
4JiPx2D5UC2dVQaeV3KCitjAJ7+H+hDDr7w/B3QPibJXDv1x7pwqJYH9eZ+cD3KB
3bKMsy4/OwQh+PZCkyrNZd+uLFHqDQIDAQABAoICAAmyGu+gDWzTWrftWsBBHMx0
FDBDKMCDuEfZVx7NFvD7qpZObg8lVw+ck7Cy2LxU6zCLIvz72gHN2LPBnL7UvDC0
HY0w/IofMBoGX67OnmaMc08JvPh/kTVJRiHIEKpAXRy6MWH2AKDkS00AqI51DosB
OsXHeF+jneLgoeUhjguY+I3mZQacRo6QKj+J//c5OxXwgq9GDCB686R/e78uecED
S8kQBNHRI6fWyTEEzIhPYAKCuev4jhGDoCZSZYpWaluO4YBAQahA7VKEYSyS1FT2
sra8+OxNB7UOwObQtsNzVxtGWsNyTFe2+GfjM3OPG+TT4ZpjSpAbISF1Y2wvvOve
gjlpQtOweNWEBWBSjteMdBECy9KN8LUa4xljQcqWHP+cCm9P+AZs0IOB4+6zcE4Y
N47v9NWfHYrSTh7TH2d3uaVG8svyY8vKQy76Xuy+e/JAKIsNxVTzOqUt8PtCISdB
DHK+QLRuTWUYsBgSmR2BU0sjWHH8E33Pbth0UAGmjo92y+arc9VrDizrqHYbRwC8
zVHkQ1YDoqI6TsPMcsJeQY1JbDevAlNu7T5wbBYIJVO1wgXHmyq6Ipnu8ENggxsV
347sftwsu3pnZQMKn5aIHgXkw47CcS8VEz8zV6YMxrnrmibXeJ+TieLYGU2ALeaJ
IbB7Dv7FNZtnAjuuXErBAoIBAQD+QVJAENQ2Yk6QAB1NJ5H+ikvLd2EdpZPex9xB
vaPw0YEN0ip+/+U6DosaD+9cGULoEkbyD9aTCn81FCUDGLZgQfrVL2RtENr1+ZB+
jE5tRqwOIVzlME6r4SUk2GVMBwLtRRBSgoeFnMJiqZpG8vf0K09F7L9GZMNTnfww
F8c8Y6XptzdoIj0YDzju7tYtY2G+NA+wED6q4GVoMalGTcNdC9IYuyKveBV7/isL
ZEw4Ye1POngkCksrfCr4bq7P+H5mdoB/oj0yLhLOyn9D9N0rYnu3Ft3qUnA2x6LX
r+5xH75vp8OCctyGPpNITRSUBFS+akeFvwtx0jOkSbmv5opRAoIBAQDE6zi4Ry7d
hOMTPJNb95bID1+SVgpmuE958ZWVwSDSaeQJpQBlO6DCoGlvRtqCA4COamstTW/i
7ZVAu9KQoPkySgMuciQeVnRWZbZq7Vh1kWFIRf3xQFyhNGP1rQ5RjUVNW0sznbu+
l2NZ2fDeQXqRzX+QyeSmn/W6RWpRi5bE2kaednb3DRGmCCixb4SOGZOJjqZhxrdO
4uwFC1qRPI8X5kZBUAxFFs3tp4VXUjTU36RfNP1s9dfXA9ovD+5M3GrDDkYyJiia
nkATFvcWzNx4b+A3kQJncCNcgPD/h2Vbiy3U5DK/CYYVLrORhh8MEGjKRgwwSFO3
VtGmqsfrwbj9AoIBAQDT/7lKK/4WPpANJ9tGuujTmZKrW6YBZ09Noc34jtyEbtux
n3zJmisS5o97sq+9Vl7gTGUVbrlWr5jztBFMbK2cw0cXvMV632QDVwzxR6IZIaVS
vuTLQSVH0Zn8B+cmpm39UunSMn43nUbDp3E5GVxAHmCiCE5QrrHjJcbifuEkbF4p
6xfq3ymbxw2MxF6XR9d3FcfC4TivmB1V7JqdQTfVfIa5EkhQkMsxMPPJMt8O4DBU
MId+XYrh/k2CCh/+zs7uNn7cbXWjQqFyBYxqKGDFzP8k4Y8103k3Y+xW9Z3We0Z5
qSOuwIE5+jEqRwMSjC3w+4MZdPtg84kVwldu4MaRAoIBAGGcT6NY9awswPq6HjmK
Qx2sMS2ypLlCR3MlA4cWEpT6lGULe2Sy5/9R0LGuJ4YnAkSWD8aHCh0ss71A3SGA
CcaZ1XXicnDvXf+tr3zVZfHxPI281CIQS1pFQ/915xEZu+6agG53k6boGAFj/PfO
8VjwynkU+th1ljLdUdRWI0g1AqhuBI511fe9N56srsJZfz7CjUsOW7Mo3OGrPRud
LzkjllOtwEdHBJD3Zytfvnx+11WySKUIQBN+/1owxWkoIWvK2ZTmQV5Tb2OHELgm
mGrC2hvxL4XimkSyTcP8c4urM+7Bpz33FJXPboeGOkGaqLcLfeM5FvZcfNPm9+6v
OmkCggEBAJDyG2o6cNOiLJAKnvlZpBTSaX1Ww20XCN/HlOXd50jFfW3i7gJEkLcK
qtZReZB9GboI2VtY8Q6O0MFYV9WImqgGugG4JOPYQVPyF0TpJ9JE5bMOM3I5zxpH
1oTBKKTPNA5V8f7lrBSF/cZg7BUwI2uwgxwI9PGwQaG+g89bUfZ+9WB9GHbtvKDZ
fhDazHcM+B1F2fASihK//4LKzBthfLErNLfakK7BmElSPzSGTMVZf1kIb1y9PINi
PEtqIDFzFfMutYv/WoGSSwycxNZsqWhHGsg9YBw5vv1LznUs+cICXjYeCujlsyxn
I9Om7VzEXJBqpTFL7M0NBihjNGeEvMQ=
-----END PRIVATE KEY-----
'
public_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDDk6FE3VW3uqA1ldb/H10tsMjK66wjVi8Vo2pNtPfj1v5X2ydI1i1NbOqXAraUGsCHZJUWNQb8SQCthyubk4DIeYUHDhU0N/YCjxDgRR5FFxNDm8Z/2GwsATcAkSw6Y2MhHgdrMIEiWQ1CvB/DTG4AI8EzyVRRUGkmQXWeubro/lt4E8V09AldHKp8WwvWLRgfzP2yrrd5CHDJ9SVSW1EJxjp+NjNcQ5AwuqoFW3Gg98B7w4VLcWMMgQmHpYjDuDHz9qDT73I2QYXTiXhkim7EbzshJbcjN4zPlAy7BoG0/y1aznEhunzPVI4NrdhZFK34k2CzZ4ffCkMFUe+T1Ec0ig5bz6BXLIckyGtIuhNFFf5nb4SQS3+dgOzW9j0fDWw5mcscRItzdTuMUxXAcRAKfzSw0taBUMqcchrAmS4cPSTF4ZkYHvamNk7T/vpo1D4lxZCoygVow8tD+BnqDQaQGsU3abeFdBiuDjzYz7qP3oUYzB9N2H2pcnr9fLXhegyFp+HW+nKWRz0fHJPCApGGPrQwZzDi05ljn5Y3tHFAVeUO5P8OvyMOD1MQQD4kuV6Nv5dfAJFhH3Fy4JiPx2D5UC2dVQaeV3KCitjAJ7+H+hDDr7w/B3QPibJXDv1x7pwqJYH9eZ+cD3KB3bKMsy4/OwQh+PZCkyrNZd+uLFHqDQ==
kuryr_keystone_password: hE8D2gDvI8Lp4ewmpDjUjJa6xRoqksjjWg1rv3b7
magnum_database_password: du2DuDrV0LWAJLkIYk7pwczegKuCRHVe9fIj9g01
magnum_keystone_password: rilz5S8Ykm1BNqQUmIYWmNwZsqfsFGKRFR28US3C
manila_database_password: SA6xdgmsrIdLXWmhO0TFWz6jtMxT9x15WiMXw0ph
manila_keystone_password: x3VmAKXjLdygPEGBibbw9S2nhOVxWAhTxRIMBREC
memcache_secret_key: YFT0ECxNBRRjLJHwzbpAqxSjczCR6b2E7ZkYUJIY
metadata_secret: vg0aS8VaTu5NQPwSv5W8Y6o3tGKDibCq1YoBjCEV
mistral_database_password: qTGxOO0l0zICDPSt2qy51gITWy3GMUMyhNdhK9g3
mistral_keystone_password: W88paMqBJkvcuixYEgvlGYRPafJL1UngO8pIoiWv
murano_agent_rabbitmq_password: GhS7h3vAu4rotC5vjhg3xGhzNJQPygpXWZrGpKhh
murano_database_password: 1ACYxkGvMSpIogvUPxQYtyPEeawWUfbhq3gXTi2X
murano_keystone_password: XVyHNdzkCInsQAZtVTFGPx2P3jdFydveEk5BtSUj
neutron_database_password: uCY3MBTSSdNtYeBYIl2SnyFklpN7UFywg6k57SLM
neutron_keystone_password: EgMJyQuZc6a85a1rQFnMuwvp4nh4Q0fph9TsddKw
nova_api_database_password: lFuj15eul5vEeQpz3329sEgBZn0zYlBzEflHArXz
nova_database_password: IuekmU0vvMBEmP8mphCvzkDTkh70bFH8lDjWu0wt
nova_keystone_password: oRXHsho9GWF35qD8Ks1i4VAnHddTQgTbMwUYL5Dc
nova_ssh_key:
private_key: '-----BEGIN PRIVATE KEY-----
MIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQDACmIEiy0c+4tu
+0fsTFzhZdHiSpkM5Z1mwuG2RlxDlq2pp+yewwnBwUqThBIiEQcpOSlXJ2ZAm+eI
jdQrF6jfIyXPPKGUm5+4qOHqtOFnyFoNgV09RH9EEHDNvqbLpW9k0eJeQ/AL9/wG
8scobkD1uLF8XYNRsKYtFiYhtD261x3mWj7z1bse8pRqyFNdJsiXRuU6NSdrQSGo
Sb/wsCP0aEB7M0H4poVzUNrmuCNZ4FCmXu5ahhmpwKqYfhdjXspsJNFwSkHVfUl8
EUUK9TJiBVt/Q0MfIb0BS0peLPTPk8ySaswfUvT664Bcj9B9OFHykDdcsXmMo25U
ThEsp4HOwIlPY+6tByH3O5m9zIUdxDR6dcpSCwmfUE0yto3kwmqwyTeVYHVOTxPp
vV1pwKRDTXB/K6+oiAqsvsy07y/onlDvbXDfr7hvHOiQdGW+tc7Q6jHy0H68tH4R
qOo9oM8H0PQTvbSWQ/Rr7X/7krqu0IPUUWpKKLmmwxmNjuo1xYuMzhZG/qRV8MNg
r8xRWd2s1SMnjZIyeoVgpvmbDx769dO8LCe/fp3Wcqyv3ZcXdNJnoTP/5QlZksYF
OkVzVq3UjxXr8fOD7qP3PsmtlxJ40wSISJlNJFxZRtK/hoPpGPbvE3KzAyInXwkz
HG2O3G94QDdR/E0mt8fN18txFy3q8QIDAQABAoICAH+NJedQrYknhkgTfIT1f2dy
IoKD+732MKKVZCeV+igmR3h9AYu9jZh0kt0CBq071B7MSaoKkD7vjkxDr51jnJWA
mddYtRWoe+DBwzQKKgCtsSpxNwW/niwOI250aAKxAhjb0te7lg/NCUdwL1mqSVkr
8C7jSZqTkvw1TuRp++pCgSiD3nZECoIWqv91yPEBFpBr1UrhDSqO2xUUzvjFdUwb
hmCN/g5yRAcAuDQwL8K9W7P1L6lOknMOdgDNFym4RwinN7i2iZ2MFqfiLJKHo4w5
dLlFaqqd1RSr9lwwzfWlfGXvq15O0kpq6xoPp3HUW5GZujvF4S7JSjmSlJOtOmh7
ElPFTSVTwl+ZfSAWcfR+16/NoCCLjIiP49Haw5EFW7/BTu9+jeEZDhaa/faB4zoL
a7jawa15eWeEyOuFw041Ykkay+v3XFz7HpOES//73hx44flyzIRLchKttQe0iOTj
p8J6m7pJ6NeC113OxS2l9WaCD7tUcoBHiNWNCqE3kSY4fGT9quymExq583Eqe8W5
3YG+Wx9NoFxyGxj5qvlv7bMq5aRgCMKSr6bimBxdmPsClFDaeBkzFWyKbMCgq0Lr
GTXBR0SM41kcS4JjeSllQXjP2SPQcSC7IObYB4FtESVsvBtXv2eI4Ysle5gya9b8
rKWLjAniQBl3WAYodE9xAoIBAQDjtc6nnmdcLDdd5T99RZUI6/a3MSQqusajqaI0
ZF0loqU0BDHyiZfOX5P7+wwOZm870b0KfxhqcHX1z3OlOqe3ELcuGkM0XKjziEFW
kRQl6w64kEdEIt9r7I4CPI53OrDP/fcuqi6bLy7AMCxVEX4vRM1aCrCO+2Etw77V
oEZXqSipU5VGWmUH+ppjjfAop/JmnRRAgYA5xpx8czePlAmldclW4j4zBvifNQR2
oOA6cUkt/v06EaQU1kosxKH1LxnQs1C5ER+AB2FgwGHG8nhNo0kdCPIO9jd2zrxJ
jIWd7/qvB8I0FxamQ18ciI/XyTcEPe9lB4t+3Z4QSoi0n3eFAoIBAQDX5h+cXiLb
oMzbuAZKM7CZ2pMiNSPbTXy4ZiGy0f2DE4ptRQbvEX1PIBdWo2WMZ2KJGko75hCz
LZVk0zcBMRUevgs0C+AK7shnxxWEdZuYaTATuqy801POZbv+YTKXOs8O3E3pPQlG
aF4Scour8y8YFgbtpQZG65HnE5FZVkW6VkM5H495QVvOC1CgsiAot8bOymqf/XMI
PD1qLd8G6L8DXU0TXBrLes9WkwZ1WNk4RBkMP/5sROOZVsC0laYIzWFdrk8nGAF5
o68X974o99WrKTwClx1+LvpOtZN6tFjKiuso2begmHI5NF6rtqSW90zkv06/Lwmy
oYJcEGYOYgN9AoIBAC6f7Fd/5LQHzbJpHU3eMHzqK9MouboSElgyhKbrofLx0ZfM
ABokODQmd9uRdM+CA+agtG9wxKQOsOiK+KftUaf3QTqsX/RZwLJUxOQfwptc/N+n
kyANb+feQNmOYrFhEBEWdEVWzUIzMARkGL+2XDr7gHyeUbaFHEnNmcaOEbkjRtMc
7STBn4w5sOEPkAwTD1wZb6shmQq7cxE8WjUI38zESFyE6K10EPYwWeCcYi01QwGr
A1ifghROKFPwUyUr5sJH5RBvxB5n5HV2Ds84mI91DqRmT4HmwkaOYBlDL5y+JXsv
QIF/9MBIbTIfeCx748r3j4wFNnfckt/NEx7AxC0CggEAB3BEUozjwpFtvXw/qzrQ
sNxZCWqvS5UF4QyTyKd3hpabxFwGeyItIRbH9xI2I3pEaNjhCeNJXAMMDKdCU+Yv
BhoiJK7sDzRe70Rqt1+d9shZAbUC0patYoUazw7mQVOjYq2weYLC2QwrgZM0wL3m
N3w6zOFMsBDZvA5uiZdxW5QxSLyPouvfj9/P7Vl1xjFexi0vM0f2OKhqrUfbUU+f
lSwXxbz8p1oZ3q++HzjqcwfVnRhvWaed9+CHTzGAwPjii+m/jGdFVb2QANFmWd8A
G5+WE7jFKV3Q/fk/lZC1JnVW2Nd3fi8CcHofcOcgEJuAqLj2q5uhR+hMp4NhIMm7
uQKCAQEAxLeV1te6BMQzqUGrNbI+3t0Ci6Kt5ZAjx+8M7lhV+JclEhQSGft3SfMD
LTIe3Ya1sBQLzsaUVJd+i+qA9fFMMzEZCK65a+S+xKQomt8oSB9JijW24EHwQW1v
I5zgQ9PfVrCA2pYMuPcjiYGp5/0zcO9XwGgPqV1KVlRgYdR33TKQBMmfcAk1FLkK
6PBrpM7HbfUqiKVtkb1urZS/wNhyLjYmlZgi5HMatK1YpryyrB3rgEKrXkQ/1mlF
cfte9y1o8qNaS39teaUS6z/L/UmdaaU6ZPVxbfY9Ng5T37QYh8BBxfj2oJMi2uDD
VWr0qY5k+u2PPTsqrmc2ZSRKWxMX+A==
-----END PRIVATE KEY-----
'
public_key: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDACmIEiy0c+4tu+0fsTFzhZdHiSpkM5Z1mwuG2RlxDlq2pp+yewwnBwUqThBIiEQcpOSlXJ2ZAm+eIjdQrF6jfIyXPPKGUm5+4qOHqtOFnyFoNgV09RH9EEHDNvqbLpW9k0eJeQ/AL9/wG8scobkD1uLF8XYNRsKYtFiYhtD261x3mWj7z1bse8pRqyFNdJsiXRuU6NSdrQSGoSb/wsCP0aEB7M0H4poVzUNrmuCNZ4FCmXu5ahhmpwKqYfhdjXspsJNFwSkHVfUl8EUUK9TJiBVt/Q0MfIb0BS0peLPTPk8ySaswfUvT664Bcj9B9OFHykDdcsXmMo25UThEsp4HOwIlPY+6tByH3O5m9zIUdxDR6dcpSCwmfUE0yto3kwmqwyTeVYHVOTxPpvV1pwKRDTXB/K6+oiAqsvsy07y/onlDvbXDfr7hvHOiQdGW+tc7Q6jHy0H68tH4RqOo9oM8H0PQTvbSWQ/Rr7X/7krqu0IPUUWpKKLmmwxmNjuo1xYuMzhZG/qRV8MNgr8xRWd2s1SMnjZIyeoVgpvmbDx769dO8LCe/fp3Wcqyv3ZcXdNJnoTP/5QlZksYFOkVzVq3UjxXr8fOD7qP3PsmtlxJ40wSISJlNJFxZRtK/hoPpGPbvE3KzAyInXwkzHG2O3G94QDdR/E0mt8fN18txFy3q8Q==
octavia_ca_password: X1Y3X0VoWYnLtLyJ03bhQY3LQ16dQvgemlBwAU2C
octavia_database_password: n0A145x0g6DPRmJ8dW2rS5kMFi3pVdE68CdH7gVR
octavia_keystone_password: SOCdZPHH8PnyJMMBhkkFUvNLLOaY8eWGAmRhRfBk
opendaylight_password: hk3uBlh5pPc7ZrYud24AA8PDs3mXJgkUXgso22EU
osprofiler_secret: rLUysfevjakzdCwWsXncNg==
outward_rabbitmq_cluster_cookie: y5zjTkVLltXXei5MZAVm4VQ714fyiGmknxWV0NMY
outward_rabbitmq_password: PqTN6UR0UMLvRg9MMRtoRPbTAeTfLougZya9dfOq
panko_database_password: rNj3twQvrQNIIzOqwky0oJRkMB6ZBG0wGzOmk90I
panko_keystone_password: HvrFNFJmFBp6nd2usi0Y7MdwEK77O3QoLk2u51QI
placement_keystone_password: MPXPQcIknCSBOjqt5pomWFIw4pwOUnaBjYUPlMSf
qdrouterd_password: w2z5Xpz9nYjTApSKjHJOCi8FYMz2wzqln0CWhKcm
rabbitmq_cluster_cookie: VtfuxGKVF6jPLhQ1D9B3CAcEO6YaDdGUjf6ibFX3
rabbitmq_monitoring_password: kuYrEiSNpZhemXswkkF2aLJUfRVGgB4YsUewBxYQ
rabbitmq_password: jC0AN2VqvuhTMKtZfEQxXR8XFVP6LpWYDngVuKBl
rally_database_password: jyyL3QpokK7PeY9rxErDM15GiZiBEpOb3oK8z5U7
rbd_secret_uuid: 4af4fd1e-8e6c-4927-993e-087aad599859
redis_master_password: P2QprM3nB2PEslOx1y1jekz58Q6DDZFXMA65AC4h
sahara_database_password: jsaKC2wZREpJvI6hO4lVcXIFVnyLjAa7BEEG00gs
sahara_keystone_password: tOtM2nVQQpxXl97fC50xmhJ4bg8HZehlGQM5SWYF
searchlight_keystone_password: 9xkV4UQI4mgSqmdFwyhdE5ufzkHVCwIBrFSpn6ga
senlin_database_password: EndX6cbudA5hdpP4uBFVAKj4slqFaMpc3vhGS9GP
senlin_keystone_password: xMhIlhA6Uoe2efpgofj59It34P9cdYuEzBxttbnX
solum_database_password: iwgZ9IFaVRQoBHYkTclltoE1WxBVgnSokP83FxD0
solum_keystone_password: 6qrmWNwKQDp9nhU6jPmKaWA9x1wDOm9N3MWYZZlK
swift_hash_path_prefix: tpMNDddR8KdNHhJ9KxrGdfx6qSBdbty2ixC9swZs
swift_hash_path_suffix: ElAMpUptrgE6Pp9yJmJENFzYOHKla6hFLO6zgizC
swift_keystone_password: jRUAHWkCA5F6spSzykS6rFS71A4Di45ViPHH6FDO
tacker_database_password: Xvkf1TcdxvU1ZJI7zP3p1k6VaoLT2dsyTogpVrhU
tacker_keystone_password: Znlya1t68tITp2fke2X1nkG8xe2SMHU1FXq7m2s2
telemetry_secret_key: xjiCsXR5j2DJ3W9hUa9DSv4cQ1VZXEwOIMt36MCB
trove_database_password: dGvVAmSRRjTS8K54KZpBFOAuHXVMy2UdkAfkoCKr
trove_keystone_password: xP35uEeOW2jB0K3CwoO6L0kM1V20ITO2k46MDBNb
vitrage_database_password: RssfmLHfO9QLaJDSJL9xpIMQVjcIbt07VpDXXUYq
vitrage_keystone_password: zi8cvZfkxwesBKgbhCimg486wZCuoYC7THZiUOOH
vmware_dvs_host_password: CtCu2LBPQvzEKlzoQa7fYtDsXCj3C4w79iXOQNd6
vmware_nsxv_password: BcF9mwVtlMC9914NbhkwfLziuEOcB5btdAIampO4
vmware_vcenter_host_password: inNkONaFlPzmIQcRprELmR4nZJSadC2n42e1wnmr
watcher_database_password: KIAp0eIoAcqSHgcbjk81bF93dDqUsPH7HSeGudp1
watcher_keystone_password: P5UTXbDaOPwjgTVKX9dxfZx9p2ftorhvztbOpJJl
xenserver_password: 0Wvi8Lrm7RYOtFs7l57iXynsQ2nqZsafis7Wq0GB
zfssa_iscsi_password: 9SXshIVw8UsKfeCzsz31T4EbV4ISsyJqndOKhsTD
zun_database_password: k5bwNW6D0nsAiEGSrjeWfBJzf3HuLReA6lIwicBZ
zun_keystone_password: iuUwl5oc88aauZzOnVgJPhuCURrA4fLQH2oEOcBU
| 45.556777 | 738 | 0.908137 |
582059d57f3ab37490d4c13993be3e06e4570c94 | 1,707 | yml | YAML | .github/workflows/test.yml | wy-z/django-q | 8a2c8774150df3a028559be7560496d87746b9d3 | [
"MIT"
] | null | null | null | .github/workflows/test.yml | wy-z/django-q | 8a2c8774150df3a028559be7560496d87746b9d3 | [
"MIT"
] | null | null | null | .github/workflows/test.yml | wy-z/django-q | 8a2c8774150df3a028559be7560496d87746b9d3 | [
"MIT"
] | null | null | null | name: tests
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8 ]
django: [ "2.2", "3.1" ]
services:
disque:
image: efrecon/disque:1.0-rc1
ports:
- '7711:7711/tcp'
mongodb:
image: mongo
ports:
- 27017:27017
postgres:
image: postgres
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
- 5432:5432
# needed because the postgres container does not provide a health check
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
redis:
image: redis
ports:
- 6379:6379
options: --entrypoint redis-server
steps:
- uses: actions/checkout@v2
- uses: codecov/codecov-action@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies with Django ${{ matrix.django }}
run: |
python -m pip install --upgrade pip
pip install -q django==${{ matrix.django }}
pip install -r requirements.txt
pip install pytest --upgrade
pip install pytest-django codecov sphinx poetry
poetry install
- name: Run Tests
run: |
coverage run --source=django_q -m py.test
- name: Build docs
run: |
sphinx-build -b html -d docs/_build/doctrees -nW docs docs/_build/html
| 31.036364 | 101 | 0.551845 |
4b215d4bcb6a3e4a6c0a3fcd085dadeecc346ec9 | 4,101 | yaml | YAML | cmd/agent/dist/conf.d/snmp.d/auto_conf.yaml | andrewl/datadog-agent | 0e98e99e3a3d37cf3a71c7a39d2cce7487813213 | [
"Apache-2.0"
] | null | null | null | cmd/agent/dist/conf.d/snmp.d/auto_conf.yaml | andrewl/datadog-agent | 0e98e99e3a3d37cf3a71c7a39d2cce7487813213 | [
"Apache-2.0"
] | 26 | 2021-10-05T13:47:32.000Z | 2022-03-21T21:14:03.000Z | cmd/agent/dist/conf.d/snmp.d/auto_conf.yaml | andrewl/datadog-agent | 0e98e99e3a3d37cf3a71c7a39d2cce7487813213 | [
"Apache-2.0"
] | null | null | null | ad_identifiers:
- snmp
init_config:
instances:
-
## @param ip_address - string - optional
## The IP address of the device to monitor.
#
ip_address: "%%host%%"
## @param port - integer - optional - default: 161
## Default SNMP port.
#
port: "%%port%%"
## @param snmp_version - integer - optional - default: 2
## If you are using SNMP v1 set snmp_version to 1 (required)
## If you are using SNMP v3 set snmp_version to 3 (required)
#
snmp_version: "%%extra_version%%"
## @param timeout - integer - optional - default: 5
## Amount of second before timing out.
#
timeout: "%%extra_timeout%%"
## @param retries - integer - optional - default: 5
## Amount of retries before failure.
#
retries: "%%extra_retries%%"
## @param community_string - string - optional
## Only useful for SNMP v1 & v2.
#
community_string: "%%extra_community%%"
## @param user - string - optional
## USERNAME to connect to your SNMP devices.
#
user: "%%extra_user%%"
## @param authKey - string - optional
## Authentication key to use with your Authentication type.
#
authKey: "%%extra_auth_key%%"
## @param authProtocol - string - optional
## Authentication type to use when connecting to your SNMP devices.
## It can be one of: MD5, SHA, SHA224, SHA256, SHA384, SHA512.
## Default to MD5 when `authKey` is specified.
#
authProtocol: "%%extra_auth_protocol%%"
## @param privKey - string - optional
## Privacy type key to use with your Privacy type.
#
privKey: "%%extra_priv_key%%"
## @param privProtocol - string - optional
## Privacy type to use when connecting to your SNMP devices.
## It can be one of: DES, 3DES, AES, AES192, AES256, AES192C, AES256C.
## Default to DES when `privKey` is specified.
#
privProtocol: "%%extra_priv_protocol%%"
## @param context_engine_id - string - optional
## ID of your context engine; typically unneeded.
## (optional SNMP v3-only parameter)
#
context_engine_id: "%%extra_context_engine_id%%"
## @param context_name - string - optional
## Name of your context (optional SNMP v3-only parameter).
#
context_name: "%%extra_context_name%%"
## @param loader - string - optional
## Check loader to use. Available loaders for snmp:
## - core: will use corecheck SNMP integration
## - python: will use python SNMP integration
#
loader: "%%extra_loader%%"
## @param tags - list of key:value element - optional
## List of tags to attach to every metric, event and service check emitted by this integration.
##
## Learn more about tagging: https://docs.datadoghq.com/tagging/
#
tags:
# The autodiscovery subnet the device is part of.
# Used by Agent autodiscovery to pass subnet name.
- "autodiscovery_subnet:%%extra_autodiscovery_subnet%%"
## @param extra_tags - string - optional
## Comma separated tags to attach to every metric, event and service check emitted by this integration.
## Example:
## extra_tags: "tag1:val1,tag2:val2"
#
extra_tags: "%%extra_tags%%"
## @param extra_min_collection_interval - string - optional
## Used to pass min collection interval from snmp_listener to integration.
#
extra_min_collection_interval: "%%extra_min_collection_interval%%"
## @param oid_batch_size - integer - optional - default: 60
## The number of OIDs handled by each batch. Increasing this number improves performance but
## uses more resources.
#
oid_batch_size: "%%extra_oid_batch_size%%"
## @param collect_device_metadata - bool - optional - default: false
## Enable device metadata collection
#
collect_device_metadata: "%%extra_collect_device_metadata%%"
## @param namespace - string - optional - default: default
## Namespace can be used to disambiguate devices with same IPs.
## Changing namespace will cause devices being recreated in NDM app.
#
namespace: "%%extra_namespace%%"
| 33.614754 | 107 | 0.660083 |
85ec49876d9f3d436b3c1c554092f21f610be49a | 488 | yml | YAML | conf/base/parameters.yml | Minyus/kedex | 92f952eed3cb6109bc783f449051f2bd13579d2a | [
"Apache-2.0"
] | null | null | null | conf/base/parameters.yml | Minyus/kedex | 92f952eed3cb6109bc783f449051f2bd13579d2a | [
"Apache-2.0"
] | null | null | null | conf/base/parameters.yml | Minyus/kedex | 92f952eed3cb6109bc783f449051f2bd13579d2a | [
"Apache-2.0"
] | null | null | null |
RUN_CONFIG:
pipeline_name: __default__
only_missing: True
runner: SequentialRunner # None
tags: # None
node_names: # None
from_nodes: # None
to_nodes: # None
from_inputs: # None
load_versions: # None
MLFLOW_LOGGING_CONFIG:
offset_hours: 0
logging_artifacts: # None
PIPELINES:
__default__:
=: kedex.FlexiblePipeline
parameters_in_inputs: False
module: # None
decorator: kedex.log_time
nodes:
- inputs:
func:
outputs:
| 17.428571 | 33 | 0.678279 |
77a32585c67f06b6a1e868b0bb084ce5246b4da5 | 32 | yml | YAML | web/docs/understand-vast/architecture/_category_.yml | vast-io/vast | 6c9c787adc54079202dba85ea4a929004063f1ba | [
"BSD-3-Clause"
] | 63 | 2016-04-22T01:50:03.000Z | 2019-07-31T15:50:36.000Z | web/docs/understand-vast/architecture/_category_.yml | vast-io/vast | 6c9c787adc54079202dba85ea4a929004063f1ba | [
"BSD-3-Clause"
] | 216 | 2017-01-24T16:25:43.000Z | 2019-08-01T19:37:00.000Z | web/docs/understand-vast/architecture/_category_.yml | vast-io/vast | 6c9c787adc54079202dba85ea4a929004063f1ba | [
"BSD-3-Clause"
] | 28 | 2016-05-19T13:09:19.000Z | 2019-04-12T15:11:42.000Z | position: 0
label: Architecture
| 10.666667 | 19 | 0.8125 |
d716b1053e5431fd781bc1b8459b76c0ccd56475 | 616 | yml | YAML | web/modules/custom/dgreat_migration/unused_config/migrate_plus.migration.upgrade_d7_menu.yml | rjbain/dgreat | 85391f8fd9b5001f5825a750be2bf233977bbe74 | [
"MIT"
] | 2 | 2019-01-11T06:11:39.000Z | 2019-01-20T17:54:38.000Z | web/modules/custom/dgreat_migration/unused_config/migrate_plus.migration.upgrade_d7_menu.yml | rjbain/dgreat | 85391f8fd9b5001f5825a750be2bf233977bbe74 | [
"MIT"
] | 158 | 2017-05-18T16:36:48.000Z | 2021-08-10T21:48:52.000Z | web/modules/custom/dgreat_migration/unused_config/migrate_plus.migration.upgrade_d7_menu.yml | rjbain/dgreat | 85391f8fd9b5001f5825a750be2bf233977bbe74 | [
"MIT"
] | null | null | null | uuid: 950dc38b-4850-4a09-88c5-9ca83af128ca
langcode: en
status: true
dependencies: { }
id: upgrade_d7_menu
class: Drupal\migrate\Plugin\Migration
field_plugin_method: null
cck_plugin_method: null
migration_tags:
- 'Drupal 7'
migration_group: migrate_drupal_7
label: Menus
source:
plugin: menu
process:
id:
plugin: static_map
bypass: true
source: menu_name
map:
main-menu: main
management: admin
navigation: tools
user-menu: account
label: title
description: description
destination:
plugin: 'entity:menu'
migration_dependencies:
required: { }
optional: { }
| 19.25 | 42 | 0.725649 |
14e3c92732f0595cdc11c93e05f6611b83c5b88e | 6,056 | yml | YAML | bot/config.yml | Rose8801/rosse2 | 10c5f6ed81887523ee99b4c9261a36179928096c | [
"MIT"
] | null | null | null | bot/config.yml | Rose8801/rosse2 | 10c5f6ed81887523ee99b4c9261a36179928096c | [
"MIT"
] | 2 | 2021-03-25T23:06:43.000Z | 2021-06-02T00:35:25.000Z | bot/config.yml | Rose8801/rosse2 | 10c5f6ed81887523ee99b4c9261a36179928096c | [
"MIT"
] | null | null | null | ######################################
#### manual configuration example: ###
#Twitter:
# access_token: XXX-XXX
# access_token_secret: XXX
# consumer_key: XXX
# consumer_secret: XXX
#
#Discord:
# - IncludeReplyToUser: false
# IncludeRetweet: false
# IncludeUserReply: true
# custom_message: 'A new tweet!'
# keyword_sets:
# - - 'League' # tweet will be posted if tweet contains all 3 words {League of Legends}, no particular order.
# - 'of'
# - 'Legends'
# - - 'Dota 2' # tweet will be posted if tweet contains 'Dota 2' in this specific order
# - - 'MOBA' # tweet will be posted if it contains 'MOBA'
# twitter_ids:
# - '123' # define as many as you want with a dash {-} at the beginning
# - '456'
# twitter_handles:
# - 'discordapp'
# twitter_lists:
# - 'https://twitter.com/rokxx/lists/dota-2'
# webhook_urls:
# - 'https://discordapp.com/api/webhooks/123456/XXXX-XXXX'
######################################
# configuration through environment variables
Twitter:
access_token: 758619812927004672-uASmHfzqg0BdD1MhlHMERjuj6vgaLgT
access_token_secret: YwS6Q2YZadBV3uWSBXgU4bfUHT7HIqKAG9nQKZHIsF7HE
consumer_key: Dyn9JpNX8DU9vlaKDS3CkoHI9
consumer_secret: DQFomVzY3Ywt1a3W2F4bmibXmD13raMPREai7ZVIiY6mKnuqxX
Discord:
- IncludeReplyToUser: 'False'
IncludeRetweet: 'False'
IncludeUserReply: 'False'
custom_message: 'a New Feed'
keyword_sets: 'Gotcha Pokemon'
blackword_sets: 'Moba'
twitter_ids: '75861981292700467'
twitter_handles: 'discordapp'
twitter_lists: ${TWITTER_LIST!l]
track: 'python'
location: '[106.405897,10.526054,106.999159,11.027906]'
webhook_urls: 'https://discordapp.com/api/webhooks/606404249055920153/LQvZyvs0UVOriq2V_zm26mGa52whUUWVGmvaZhm_gtrTdGt53MG3L1dzoke4wt9v4TsQ'
- IncludeReplyToUser: ${INCLUDE_REPLY_TO_USER_2!b}
IncludeRetweet: ${INCLUDE_RETWEET_2!b}
IncludeUserReply: ${INCLUDE_USER_REPLY_2!b}
custom_message: ${CUSTOM_MESSAGE_2}
keyword_sets: ${KEYWORDS_2!ll}
blackword_sets: ${BLACKWORDS_2!ll}
twitter_ids: ${TWITTER_ID_2!l}
twitter_handles: ${TWITTER_HANDLE_2!l}
twitter_lists: ${TWITTER_LIST_2!l}
track: ${TRACK_2!l}
location: ${LOCATION_2!fl}
webhook_urls: ${WEBHOOK_URL_2!wh}
- IncludeReplyToUser: ${INCLUDE_REPLY_TO_USER_3!b}
IncludeRetweet: ${INCLUDE_RETWEET_3!b}
IncludeUserReply: ${INCLUDE_USER_REPLY_3!b}
custom_message: ${CUSTOM_MESSAGE_3}
keyword_sets: ${KEYWORDS_3!ll}
blackword_sets: ${BLACKWORDS_3!ll}
twitter_ids: ${TWITTER_ID_3!l}
twitter_handles: ${TWITTER_HANDLE_3!l}
twitter_lists: ${TWITTER_LIST_3!l}
track: ${TRACK_3!l}
location: ${LOCATION_3!fl}
webhook_urls: ${WEBHOOK_URL_3!wh}
- IncludeReplyToUser: ${INCLUDE_REPLY_TO_USER_4!b}
IncludeRetweet: ${INCLUDE_RETWEET_4!b}
IncludeUserReply: ${INCLUDE_USER_REPLY_4!b}
custom_message: ${CUSTOM_MESSAGE_4}
keyword_sets: ${KEYWORDS_4!ll}
blackword_sets: ${BLACKWORDS_4!ll}
twitter_ids: ${TWITTER_ID_4!l}
twitter_handles: ${TWITTER_HANDLE_4!l}
twitter_lists: ${TWITTER_LIST_4!l}
track: ${TRACK_4!l}
location: ${LOCATION_4!fl}
webhook_urls: ${WEBHOOK_URL_4!wh}
- IncludeReplyToUser: ${INCLUDE_REPLY_TO_USER_5!b}
IncludeRetweet: ${INCLUDE_RETWEET_5!b}
IncludeUserReply: ${INCLUDE_USER_REPLY_5!b}
custom_message: ${CUSTOM_MESSAGE_5}
keyword_sets: ${KEYWORDS_5!ll}
blackword_sets: ${BLACKWORDS_5!ll}
twitter_ids: ${TWITTER_ID_5!l}
twitter_handles: ${TWITTER_HANDLE_5!l}
twitter_lists: ${TWITTER_LIST_5!l}
track: ${TRACK_5!l}
location: ${LOCATION_5!fl}
webhook_urls: ${WEBHOOK_URL_5!wh}
- IncludeReplyToUser: ${INCLUDE_REPLY_TO_USER_6!b}
IncludeRetweet: ${INCLUDE_RETWEET_6!b}
IncludeUserReply: ${INCLUDE_USER_REPLY_6!b}
custom_message: ${CUSTOM_MESSAGE_6}
keyword_sets: ${KEYWORDS_6!ll}
blackword_sets: ${BLACKWORDS_6!ll}
twitter_ids: ${TWITTER_ID_6!l}
twitter_handles: ${TWITTER_HANDLE_6!l}
twitter_lists: ${TWITTER_LIST_6!l}
track: ${TRACK_6!l}
location: ${LOCATION_6!fl}
webhook_urls: ${WEBHOOK_URL_6!wh}
- IncludeReplyToUser: ${INCLUDE_REPLY_TO_USER_7!b}
IncludeRetweet: ${INCLUDE_RETWEET_7!b}
IncludeUserReply: ${INCLUDE_USER_REPLY_7!b}
custom_message: ${CUSTOM_MESSAGE_7}
keyword_sets: ${KEYWORDS_7!ll}
blackword_sets: ${BLACKWORDS_7!ll}
twitter_ids: ${TWITTER_ID_7!l}
twitter_handles: ${TWITTER_HANDLE_7!l}
twitter_lists: ${TWITTER_LIST_7!l}
track: ${TRACK_7!l}
location: ${LOCATION_7!fl}
webhook_urls: ${WEBHOOK_URL_7!wh}
- IncludeReplyToUser: ${INCLUDE_REPLY_TO_USER_8!b}
IncludeRetweet: ${INCLUDE_RETWEET_8!b}
IncludeUserReply: ${INCLUDE_USER_REPLY_8!b}
custom_message: ${CUSTOM_MESSAGE_8}
keyword_sets: ${KEYWORDS_8!ll}
blackword_sets: ${BLACKWORDS_8!ll}
twitter_ids: ${TWITTER_ID_8!l}
twitter_handles: ${TWITTER_HANDLE_8!l}
twitter_lists: ${TWITTER_LIST_8!l}
track: ${TRACK_8!l}
location: ${LOCATION_8!fl}
webhook_urls: ${WEBHOOK_URL_8!wh}
- IncludeReplyToUser: ${INCLUDE_REPLY_TO_USER_9!b}
IncludeRetweet: ${INCLUDE_RETWEET_9!b}
IncludeUserReply: ${INCLUDE_USER_REPLY_9!b}
custom_message: ${CUSTOM_MESSAGE_9}
keyword_sets: ${KEYWORDS_9!ll}
blackword_sets: ${BLACKWORDS_9!ll}
twitter_ids: ${TWITTER_ID_9!l}
twitter_handles: ${TWITTER_HANDLE_9!l}
twitter_lists: ${TWITTER_LIST_9!l}
track: ${TRACK_9!l}
location: ${LOCATION_9!fl}
webhook_urls: ${WEBHOOK_URL_9!wh}
- IncludeReplyToUser: ${INCLUDE_REPLY_TO_USER_10!b}
IncludeRetweet: ${INCLUDE_RETWEET_10!b}
IncludeUserReply: ${INCLUDE_USER_REPLY_10!b}
custom_message: ${CUSTOM_MESSAGE_10}
keyword_sets: ${KEYWORDS_10!ll}
blackword_sets: ${BLACKWORDS_10!ll}
twitter_ids: ${TWITTER_ID_10!l}
twitter_handles: ${TWITTER_HANDLE_10!l}
twitter_lists: ${TWITTER_LIST_10!l}
track: ${TRACK_10!l}
location: ${LOCATION_10!fl}
webhook_urls: ${WEBHOOK_URL_10!wh}
| 36.047619 | 143 | 0.708884 |
675943a602037a606d92ad18fe04682f42cd2a0f | 548 | yml | YAML | _config.yml | supergraph/pop-2017 | a4c49bef31c1542bd6cd1cefda2b92a1e433b880 | [
"CC-BY-3.0",
"MIT"
] | 1 | 2017-06-17T16:32:08.000Z | 2017-06-17T16:32:08.000Z | _config.yml | supergraph/pop-2017 | a4c49bef31c1542bd6cd1cefda2b92a1e433b880 | [
"CC-BY-3.0",
"MIT"
] | null | null | null | _config.yml | supergraph/pop-2017 | a4c49bef31c1542bd6cd1cefda2b92a1e433b880 | [
"CC-BY-3.0",
"MIT"
] | null | null | null | # Site settings
title: Poetics of Politics
email: pop2017@posteo.at
description: > # this means to ignore newlines until "baseurl:"
Write an awesome description for your new site here. You can edit this
line in _config.yml. It will appear in your document head meta (for
Google search results) and in your feed.xml site description.
baseurl: "" # the subpath of your site, e.g. /blog/
url: "https://supergraph.github.io/pop-2017"
#url: "127.0.0.1"
#twitter_username: jekyllrb
github_username: supergraph
# Build settings
markdown: kramdown
| 34.25 | 72 | 0.757299 |
54b1976fb516cf443ac778d5a6512f0cb20b46be | 255 | yml | YAML | .github/workflows/tag-on-version-change.yml | kaweezle/iknite | 815d49311c622237048aadba008e72fbfe422446 | [
"Apache-2.0"
] | null | null | null | .github/workflows/tag-on-version-change.yml | kaweezle/iknite | 815d49311c622237048aadba008e72fbfe422446 | [
"Apache-2.0"
] | 13 | 2022-01-22T19:09:16.000Z | 2022-03-29T08:39:03.000Z | .github/workflows/tag-on-version-change.yml | kaweezle/iknite | 815d49311c622237048aadba008e72fbfe422446 | [
"Apache-2.0"
] | null | null | null | on:
push:
branches: [main]
name: Create Git Tag
jobs:
versioner:
runs-on: ubuntu-latest
steps:
- name: Update Version
uses: antoinemartin/tag-action@main
env:
ACCESS_TOKEN: ${{ secrets.REPO_ACCESS_TOKEN }}
| 18.214286 | 56 | 0.611765 |
c6af25143bfb3e5fda41c4baaf10f500308a4093 | 1,330 | yml | YAML | .forestry/front_matter/templates/pwa.yml | CMDBrew/entree | 6a4861191a514b5f9a3d39f7839434de6855b64d | [
"MIT"
] | null | null | null | .forestry/front_matter/templates/pwa.yml | CMDBrew/entree | 6a4861191a514b5f9a3d39f7839434de6855b64d | [
"MIT"
] | null | null | null | .forestry/front_matter/templates/pwa.yml | CMDBrew/entree | 6a4861191a514b5f9a3d39f7839434de6855b64d | [
"MIT"
] | null | null | null | ---
label: Progressive Web App
hide_body: true
fields:
- type: boolean
name: enabled
label: Enabled
- type: text
name: language
label: Language
- type: text
name: lang_direction
label: Lang Direction
- type: text
name: name
label: Name
- type: text
name: short_name
label: Short Name
- name: theme_color
type: color
label: Theme Color
config:
required: false
color_format: Hex
- name: background_color
type: color
label: Background Color
config:
required: false
color_format: Hex
- name: apple_statusbar_color
type: select
label: Apple iOS Status Bar Color
description: 'Change the iOS status bar colour when visitors installed your app
with PWA. Options: default - using the theme settings for the device, black -
black status bar, black-translucent: use the app background colour, note the text
colour is white and cannot be changed.'
default: []
config:
required: false
options:
- default
- black
- black-translucent
source:
type: simple
section:
file:
path:
- type: field_group
name: icons
label: Icons
fields:
- name: '192'
type: file
config:
maxSize: 5
label: 192x192
- name: '512'
type: file
config:
maxSize: 5
label: 512x512
pages:
- _data/notice/pwa.yml
| 19.850746 | 85 | 0.668421 |
d02b66e6ab29109fee524e5f86a023b873dc957d | 234 | yml | YAML | history/ctrl-tilde.yml | linaccess/upptime | 68a88d4c799fd58f08ecd5e9fd5d7a9e52eb7fbd | [
"MIT"
] | null | null | null | history/ctrl-tilde.yml | linaccess/upptime | 68a88d4c799fd58f08ecd5e9fd5d7a9e52eb7fbd | [
"MIT"
] | 91 | 2021-11-03T21:49:00.000Z | 2022-03-20T19:30:34.000Z | history/ctrl-tilde.yml | linaccess/upptime | 68a88d4c799fd58f08ecd5e9fd5d7a9e52eb7fbd | [
"MIT"
] | null | null | null | url: https://CtrlTilde.com
status: up
code: 200
responseTime: 270
lastUpdated: 2022-06-21T23:03:47.454Z
startTime: Thu May 05 2022 09:16:27 GMT+0000 (Coordinated Universal Time)
generator: Upptime <https://github.com/upptime/upptime>
| 29.25 | 73 | 0.777778 |
6ee5dc901d3c8e607176c66c159389fe0658c3c5 | 164 | yaml | YAML | releasenotes/notes/bug-share-access-list-3cf3114doe40k599.yaml | SolKuczala/python-manilaclient | 9613c7fd2652dc3c7b8793c9af2b6357f42a4757 | [
"CNRI-Python",
"Apache-1.1"
] | 37 | 2015-01-29T20:10:49.000Z | 2021-10-01T23:31:23.000Z | releasenotes/notes/bug-share-access-list-3cf3114doe40k599.yaml | SolKuczala/python-manilaclient | 9613c7fd2652dc3c7b8793c9af2b6357f42a4757 | [
"CNRI-Python",
"Apache-1.1"
] | 1 | 2017-04-12T13:57:10.000Z | 2017-04-12T13:57:10.000Z | releasenotes/notes/bug-share-access-list-3cf3114doe40k599.yaml | SolKuczala/python-manilaclient | 9613c7fd2652dc3c7b8793c9af2b6357f42a4757 | [
"CNRI-Python",
"Apache-1.1"
] | 21 | 2015-09-23T09:15:14.000Z | 2022-03-12T16:38:17.000Z | ---
features:
- Beginning in version 2.33, share access list API returns
"created_at" and "updated_at" for each access rule as part
of the JSON response.
| 27.333333 | 62 | 0.713415 |
b83f0f864e0e9e2da660f899eef6b99ce84f9eae | 326 | yml | YAML | .github/workflows/ci.yml | alexandermendes/vue-confetti | ab9931ce3acc8cadbd101a5819acce8304fb8f44 | [
"MIT"
] | 192 | 2017-12-06T01:12:00.000Z | 2022-03-14T14:53:53.000Z | .github/workflows/ci.yml | alexandermendes/vue-confetti | ab9931ce3acc8cadbd101a5819acce8304fb8f44 | [
"MIT"
] | 114 | 2017-11-28T17:55:40.000Z | 2022-03-28T04:08:34.000Z | .github/workflows/ci.yml | alexandermendes/vue-confetti | ab9931ce3acc8cadbd101a5819acce8304fb8f44 | [
"MIT"
] | 22 | 2018-01-20T17:42:23.000Z | 2021-06-18T15:57:11.000Z | on:
push:
branches-ignore:
- master
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install
run: yarn install --frozen-lockfile --non-interactive
- name: Lint
run: yarn lint
- name: Test
run: yarn test
| 18.111111 | 61 | 0.555215 |
7727fa7f53db371fc412099257c478d9b15b2e0c | 54 | yaml | YAML | deploy/kustomization.yaml | idvoretskyi/smi-adapter-istio | e1a19b01845b7c41302018080511a9973be74e7c | [
"Apache-2.0"
] | 35 | 2019-05-21T17:27:00.000Z | 2019-12-24T00:38:50.000Z | deploy/kustomization.yaml | idvoretskyi/smi-adapter-istio | e1a19b01845b7c41302018080511a9973be74e7c | [
"Apache-2.0"
] | 35 | 2019-05-27T12:18:54.000Z | 2020-02-05T01:23:12.000Z | deploy/kustomization.yaml | idvoretskyi/smi-adapter-istio | e1a19b01845b7c41302018080511a9973be74e7c | [
"Apache-2.0"
] | 14 | 2019-05-27T11:29:32.000Z | 2020-01-10T05:19:19.000Z | resources:
- operator-and-rbac.yaml
- ./crds/crds.yaml | 18 | 24 | 0.740741 |
bbcafcbfc3633e038b42554b70d363ae43414f3b | 194 | yaml | YAML | examples/service-binding.yaml | lazywhite/mariadb-broker | 28d0a2f7d10bb558f98095d20c9f0b5351c1715d | [
"MIT"
] | null | null | null | examples/service-binding.yaml | lazywhite/mariadb-broker | 28d0a2f7d10bb558f98095d20c9f0b5351c1715d | [
"MIT"
] | null | null | null | examples/service-binding.yaml | lazywhite/mariadb-broker | 28d0a2f7d10bb558f98095d20c9f0b5351c1715d | [
"MIT"
] | null | null | null | apiVersion: servicecatalog.k8s.io/v1beta1
kind: ServiceBinding
metadata:
name: demo-mariadb-binding
spec:
instanceRef:
name: demo-mariadb-instance
secretName: demo-mariadb-credentials
| 21.555556 | 41 | 0.793814 |
75188ef99462bd104bb8d2a788eadc13a745ccb2 | 981 | yml | YAML | .travis.yml | florian-huber/mcfly-tutorial | 5eb662d61e1c0dd24b603aa827bdde697042027e | [
"Apache-2.0"
] | 1 | 2020-12-27T14:40:32.000Z | 2020-12-27T14:40:32.000Z | .travis.yml | florian-huber/mcfly-tutorial | 5eb662d61e1c0dd24b603aa827bdde697042027e | [
"Apache-2.0"
] | null | null | null | .travis.yml | florian-huber/mcfly-tutorial | 5eb662d61e1c0dd24b603aa827bdde697042027e | [
"Apache-2.0"
] | null | null | null | language: python
dist: trusty
sudo: false
python:
- "2.7"
- "3.5"
- "3.6"
before_install:
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
wget http://repo.continuum.io/miniconda/Miniconda2-latest-Linux-x86_64.sh -O miniconda.sh;
else
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
fi
- bash miniconda.sh -b -p $HOME/miniconda
- export PATH="$HOME/miniconda/bin:$PATH"
- conda config --set always_yes yes
- conda update -q conda
- conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION pip numpy
- source activate test-environment
- conda install -q pip openblas numpy scipy
- "pip install -q nose"
- "pip install 'coverage<4'" # After 4, there is some issue when using python 3.2
- "pip install mcfly"
install:
- "echo done"
# command to run tests, e.g. python setup.py test
script:
- nosetests --with-coverage --cover-package=mcfly-tutorial
after_script:
- "pip install scrutinizer-ocular"
- "ocular"
| 25.815789 | 94 | 0.719674 |
b9eadb140c72478ef93ccd3dd55cdafe5ac88082 | 277 | yaml | YAML | _data/mvn_deploy_deploy_file_dgroupid_groupid_dartifactid_artifactid_dversi.yaml | zjjott/commandlinefu.cn | b142a24d852553f74b13f1aa68b4d92a15139c6b | [
"Unlicense"
] | 1 | 2017-01-24T21:38:09.000Z | 2017-01-24T21:38:09.000Z | _data/mvn_deploy_deploy_file_dgroupid_groupid_dartifactid_artifactid_dversi.yaml | zjjott/commandlinefu.cn | b142a24d852553f74b13f1aa68b4d92a15139c6b | [
"Unlicense"
] | null | null | null | _data/mvn_deploy_deploy_file_dgroupid_groupid_dartifactid_artifactid_dversi.yaml | zjjott/commandlinefu.cn | b142a24d852553f74b13f1aa68b4d92a15139c6b | [
"Unlicense"
] | null | null | null | commandlinefu_id: 1983
translator:
weibo: ''
hide: true
command: |-
mvn deploy:deploy-file -DgroupId=groupId -DartifactId=artifactId -Dversion=1.0 -Dpackaging=jar -Dfile=pathtolib -DrepositoryId=repository -Durl=url
summary: |-
Install a library to a remote repository
| 30.777778 | 151 | 0.768953 |
ec73c036cbbf3dc7e7c887f4325089a8d0a4d9b8 | 337 | yml | YAML | plugin.yml | stoi2m1/CrackshotSoundDesigner | 7e17f35b52aafb83de0a6f1cf64f23886588cc3f | [
"MIT"
] | null | null | null | plugin.yml | stoi2m1/CrackshotSoundDesigner | 7e17f35b52aafb83de0a6f1cf64f23886588cc3f | [
"MIT"
] | null | null | null | plugin.yml | stoi2m1/CrackshotSoundDesigner | 7e17f35b52aafb83de0a6f1cf64f23886588cc3f | [
"MIT"
] | null | null | null | name: CrackshotSoundDesigner
main: me.stoi2m1.CrackshotSoundDesigner
version: 1.0
commands:
shotsound:
description: Allows you to play sound for quick design!
usage: /<command> [all] <sound1>,<sound2>
shotsounds:
description: Provides a list of sounds in current version of bukkit
usage: /<command> | 33.7 | 74 | 0.703264 |
565ea45ebe3660a511a294f5c3f27f7e0d695335 | 1,517 | yaml | YAML | s4hana/sandbox/deployment.yaml | Technology-Enthusiast/teched2020-developer-keynote | fc07e54b3762522e46ee6348180b316b0d8449ab | [
"Apache-2.0"
] | 1 | 2021-01-17T14:04:34.000Z | 2021-01-17T14:04:34.000Z | s4hana/sandbox/deployment.yaml | Technology-Enthusiast/teched2020-developer-keynote | fc07e54b3762522e46ee6348180b316b0d8449ab | [
"Apache-2.0"
] | null | null | null | s4hana/sandbox/deployment.yaml | Technology-Enthusiast/teched2020-developer-keynote | fc07e54b3762522e46ee6348180b316b0d8449ab | [
"Apache-2.0"
] | null | null | null | kind: ConfigMap
apiVersion: v1
metadata:
name: appconfig
data:
API_KEY: YOUR-API-KEY
destinations: |
[{"name": "apihub_sandbox","url": "https://sandbox.api.sap.com"}]
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: s4mock
spec:
replicas: 1
selector:
matchLabels:
app: s4mock
template:
metadata:
labels:
app: s4mock
version: v1
spec:
containers:
# replace the repository URL with your own repository (e.g. {DockerID}/http-db-service:0.0.x for Docker Hub).
- image: docker.pkg.github.com/sap-samples/teched2020-developer-keynote/s4mock:latest
imagePullPolicy: Always
name: s4mock
ports:
- name: http
containerPort: 5000
resources:
limits:
memory: 1000Mi
requests:
memory: 32Mi
envFrom:
- configMapRef:
name: appconfig
imagePullSecrets:
- name: regcred
---
apiVersion: v1
kind: Service
metadata:
name: s4mock
labels:
app: s4mock
spec:
ports:
- port: 5000
name: http
targetPort: 5000
selector:
app: s4mock
---
apiVersion: gateway.kyma-project.io/v1alpha1
kind: APIRule
metadata:
name: s4mock
spec:
gateway: kyma-gateway.kyma-system.svc.cluster.local
service:
name: s4mock
port: 5000
host: s4mock
rules:
- path: /.*
methods: ["GET","POST","PUT","DELETE","PATCH","HEAD"]
accessStrategies:
- handler: noop
config: {}
| 19.448718 | 115 | 0.604483 |
dcfe79cfa24e304ce1d7d9044213253cb3688257 | 1,161 | yaml | YAML | manifests/v/VMware/WorkstationPro/16.2.3/VMware.WorkstationPro.installer.yaml | A-i-Evolution-MHZ/winget-pkgs | 07a182b07c96a99ec4d06d2a4d1019461ee56cf6 | [
"MIT"
] | null | null | null | manifests/v/VMware/WorkstationPro/16.2.3/VMware.WorkstationPro.installer.yaml | A-i-Evolution-MHZ/winget-pkgs | 07a182b07c96a99ec4d06d2a4d1019461ee56cf6 | [
"MIT"
] | null | null | null | manifests/v/VMware/WorkstationPro/16.2.3/VMware.WorkstationPro.installer.yaml | A-i-Evolution-MHZ/winget-pkgs | 07a182b07c96a99ec4d06d2a4d1019461ee56cf6 | [
"MIT"
] | null | null | null | # Created with YamlCreate.ps1 v2.1.1 $debug=QUSU.5-1-19041-1320
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.1.0.schema.json
PackageIdentifier: VMware.WorkstationPro
PackageVersion: 16.2.3
Platform:
- Windows.Desktop
MinimumOSVersion: 10.0.0.0
InstallerType: exe
Scope: machine
InstallModes:
- interactive
- silent
InstallerSwitches:
Silent: /s /v /qn REBOOT=ReallySuppress
SilentWithProgress: /s /v /qb REBOOT=ReallySuppress
Interactive: /s /v
Custom: EULAS_AGREED=1 DATACOLLECTION=0 AUTOSOFTWAREUPDATE=0
UpgradeBehavior: install
Dependencies:
PackageDependencies:
- PackageIdentifier: Microsoft.VC++2015-2019Redist-x64
- PackageIdentifier: Microsoft.VC++2015-2019Redist-x86
AppsAndFeaturesEntries:
- Publisher: VMware, Inc.
DisplayName: VMware Workstation
InstallerType: msi
Installers:
- Architecture: x64
InstallerUrl: https://download3.vmware.com/software/WKST-1623-WIN-New/VMware-workstation-full-16.2.3-19376536.exe
InstallerSha256: 117AD0B17335032D1B03BA44B03DA2128D29C65925EA79EFD2E03786B0129E94
ProductCode: '{9D6C87F1-2E07-4B8D-99D8-D00248F62D55}'
ManifestType: installer
ManifestVersion: 1.1.0
| 33.171429 | 115 | 0.804479 |
f4b614d9a1bef59e36cb801d9ef21ac9e974c21d | 5,988 | yaml | YAML | app/Services/Parsers/parser_template.yaml | rubenvanerk/competition-parser-lumen | 079fe7db302663b5b083f736fd1b67088d70afc9 | [
"MIT"
] | null | null | null | app/Services/Parsers/parser_template.yaml | rubenvanerk/competition-parser-lumen | 079fe7db302663b5b083f736fd1b67088d70afc9 | [
"MIT"
] | 2 | 2020-06-25T18:03:14.000Z | 2021-04-05T10:25:12.000Z | app/Services/Parsers/parser_template.yaml | rubenvanerk/lifesavingrankings-parser | 079fe7db302663b5b083f736fd1b67088d70afc9 | [
"MIT"
] | 1 | 2020-06-28T19:52:05.000Z | 2020-06-28T19:52:05.000Z | athlete:
name:
type: select
options:
'/(?<= )[^0-9]*(?= [0-9]{2})/': '[Splash] ( )[NaN]( 96)'
'/(?<=[0-9]{4}\t)[^\t]*(?=\t)/': '[RescueSoft] (1996\t)[^\t](\t)'
first_name_regex:
type: select
options:
'': ''
'/(?<= )([A-Z][a-z]+ ?)+$/': 'Cap First End'
last_name_regex:
type: select
options:
'': ''
"/^([A-Z']{2,} )+/": 'CAPS ON START'
yob:
type: select
options:
'/(?<=\s)[0-9]{2}(?=\s)/': '96'
'/(?<=\s)[0-9]{4}(?=\s)/': '1996'
'': Not available
nationality:
type: select
options:
'/[A-Z]{3}/': 'NED'
'': Not available
team:
type: select
options:
'': Not available
names:
type: select
options:
'': Not available
names_explode:
events:
event_signifier: # it's an event
type: select
options:
'/event/i': Event|event
event_designifier: # it is NOT an event
type: select
options:
/rules/i: Common designifier
'': Disable
event_rejector: # it's an event we're not interested in
type: select
options:
/line ?throw|relay|brick|patient/i: Common rejectors
'': Disable
event_stopper: # the current event is completed and following results are not added
event_names:
1:
label: 100m manikin carry with fins
type: select
options:
'/(100[m ](.*)carry)|(carry(.*)100[m ])/i': 100<->carry
2:
label: 50m manikin carry
type: select
options:
'/(50[m ](.*)carry)|(carry(.*)50[m ])/i': 50<->carry
3:
label: 200m obstacle swim
type: select
options:
'/(200[m ](.*)obs)|(obs(.*)200[m ])/i': 200<->obs
4:
label: 100m manikin tow
type: select
options:
'/(100[m ](.*)tow)|(tow(.*)100[m ])/i': 200<->obs
5:
label: 100m rescue medley
type: select
options:
'/(100[m ](.*)medley)|(medley(.*)100[m ])/i': 100<->medley
6:
label: 200m super lifesaver
type: select
options:
'/(200[m ](.*)super)|(super(.*)200[m ])/i': 200<->super
7:
label: 50m obstacle swim
type: select
options:
'/(?<!4 x )(50[m ](.*)obs)|(obs(.*)50[m ])/i': 50<->obs
8:
label: 50m free style
type: select
options:
'/(50[m ](.*)free)|(free(.*)50[m ])/i': 50<->free
9:
label: 50m free style with fins
type: select
options:
'/(50[m ](.*)(free|swim)(.*)fins)/i': 50 (free|swim) fins
12:
label: 25m manikin carry
type: select
options:
'/25[m ](.*)carry/i': 25 carry
13:
label: 50m free style with tube
type: select
options:
'/50[m ](.*)(tube|torpedo)/i': 50 (tube|torpedo)
15:
label: 4×50m obstacle relay
type: select
options:
'/obstacle(.*)relay/i': obstacle relay
16:
label: 4×25m manikin relay
type: select
options:
'/manikin(.*)relay/i': manikin relay
17:
label: 4×50m medley relay
type: select
options:
'/medley(.*)relay/i': medley relay
18:
label: 100m obstacle swim
type: select
options:
'/(100[m ](.*)obs)|(obs(.*)100[m ])/i': 100<->obs
genders:
women:
type: select
options:
'/women|girls/i': 'Women|Girls'
'/dames|meisjes|vrouwen/i': 'Dames|Meisjes|Vrouwen'
men:
type: select
options:
'/men|boys/i': 'Men|Boys'
'/heren|jongens|mannen/i': 'Heren|Jongens|Mannen'
separate_gender_signifier:
results:
time:
type: select
options:
'/[0-9]{0,2}:?[0-9]{2}\.[0-9]{2}/': '1:35.22'
'/[0-9]{0,2}:?[0-9]{2},[0-9]{2}/': '1:35,22'
time_index:
type: select
options:
all: All
first: First
last: Last
result_rejector:
type: select
options:
/splash meet manager/i: Common rejector
dsq:
dns:
withdrawn:
round:
type: select
options:
'': None
/^[AB]/: Letter, start of line
round_mappings:
type: textarea
heat:
type: select
options:
'': None
/^[0-9]+/: Number, start of line
lane:
type: select
options:
'': None
/^[0-9]+/: Number, start of line
as_csv:
as_csv:
type: boolean
delimiter:
indexes:
name:
type: number
team:
type: number
yob:
type: number
events:
1:
label: 100m manikin carry with fins
type: number
2:
label: 50m manikin carry
type: number
3:
label: 200m obstacle swim
type: number
4:
label: 100m manikin tow
type: number
5:
label: 100m rescue medley
type: number
6:
label: 200m super lifesaver
type: number
7:
label: 50m obstacle swim
type: number
8:
label: 50m free style
type: number
9:
label: 50m free style with fins
type: number
12:
label: 25m manikin carry
type: number
13:
label: 50m free style with tube
type: number
18:
label: 100m obstacle swim
type: number
pdfparser_options:
horizontal_offset:
cleaning_options:
custom_replace:
type: textarea
class_cleaners:
line_combiner:
pattern:
direction:
type: select
custom: false
options:
up: Up
down: Down
amount:
type: number
delimiter:
line_movers:
type: textarea
# csv columns
csv_columns:
event:
type: select
custom: false
options:
athlete:
type: select
custom: false
options:
first_name:
type: select
custom: false
options:
last_name:
type: select
custom: false
options:
year_of_birth:
type: select
custom: false
options:
team:
type: select
custom: false
options:
time:
type: select
custom: false
options:
gender:
type: select
custom: false
options:
| 21.462366 | 85 | 0.526386 |
1be62ec14ec05c990cebdbb3bfbe7d00f76369e1 | 132 | yml | YAML | tests/fixtures/rules/key-spacing/invalid/yaml-test-suite-for-mode-minimum/S9E8-output.yml | mogsdad/eslint-plugin-yml | 3b21527b6496ca5e16e4edb6f49ac25358de963d | [
"MIT"
] | 25 | 2020-12-14T11:32:02.000Z | 2022-03-01T12:26:09.000Z | tests/fixtures/rules/key-spacing/invalid/yaml-test-suite-for-mode-minimum/S9E8-output.yml | mogsdad/eslint-plugin-yml | 3b21527b6496ca5e16e4edb6f49ac25358de963d | [
"MIT"
] | 12 | 2020-08-04T07:38:13.000Z | 2022-01-17T05:52:27.000Z | tests/fixtures/rules/key-spacing/invalid/yaml-test-suite-for-mode-minimum/S9E8-output.yml | mogsdad/eslint-plugin-yml | 3b21527b6496ca5e16e4edb6f49ac25358de963d | [
"MIT"
] | 4 | 2021-07-20T07:42:26.000Z | 2022-01-06T21:55:37.000Z | # key-spacing/invalid/yaml-test-suite-for-mode-minimum/S9E8-input.yaml
sequence:
- one
- two
mapping:
? sky
: blue
sea: green
| 14.666667 | 70 | 0.704545 |
3dd554366081e7c2daee6b2e2df5af9dcf321eaf | 529 | yml | YAML | src/ISI/MSGBundle/Resources/config/routing.yml | youstra89/app-isi | 8e29ac3634660d184a1c2a61a2d6a416c9cdc627 | [
"MIT"
] | null | null | null | src/ISI/MSGBundle/Resources/config/routing.yml | youstra89/app-isi | 8e29ac3634660d184a1c2a61a2d6a416c9cdc627 | [
"MIT"
] | 1 | 2020-02-11T17:37:51.000Z | 2020-02-11T17:37:51.000Z | src/ISI/MSGBundle/Resources/config/routing.yml | youstra89/app-isi | 8e29ac3634660d184a1c2a61a2d6a416c9cdc627 | [
"MIT"
] | null | null | null | msg_homepage:
path: /index-messenger.html
defaults: { _controller: MSGBundle:Conversations:conversations }
msg_conversations:
path: /conversations.html
defaults: { _controller: MSGBundle:Conversations:conversations }
msg_show_conversations:
path: /conversations-{id}.html
defaults: { _controller: MSGBundle:Conversations:show }
requirements:
id: \d+
piece_show:
path: /piece/{id}/show
defaults: { _controller: "MSGBundle:Conversations:show" }
methods: GET
| 26.45 | 68 | 0.689981 |
62f8a593bbf2193dcaed2daa4b3e6ab9091ef854 | 794 | yaml | YAML | kube-infra/kustomize/ci-cd/argocd-with-applicationset/overlays/demo/kustomization.yaml | Vrukshali-26/argo-demo | 85cf9ff17e5683fc1fb2f2d490022975b3e833bd | [
"Apache-2.0"
] | null | null | null | kube-infra/kustomize/ci-cd/argocd-with-applicationset/overlays/demo/kustomization.yaml | Vrukshali-26/argo-demo | 85cf9ff17e5683fc1fb2f2d490022975b3e833bd | [
"Apache-2.0"
] | 1 | 2021-12-20T01:08:59.000Z | 2021-12-20T01:37:53.000Z | kube-infra/kustomize/ci-cd/argocd-with-applicationset/overlays/demo/kustomization.yaml | Vrukshali-26/argo-demo | 85cf9ff17e5683fc1fb2f2d490022975b3e833bd | [
"Apache-2.0"
] | 4 | 2021-11-26T02:40:45.000Z | 2022-02-04T12:48:07.000Z | apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ../../base
- argocd-server-ingress.yaml
- argocd-appproject.yaml
- argocd-manager.yaml
- argocd-manager-role.yaml
- argocd-manager-role-binding.yaml
- kustomize-kube-infra-applicationSet.yaml
namespace: ci-cd
patchesStrategicMerge:
- argocd-server-service.yaml
- argocd-cm.yaml
- argocd-rbac-cm.yaml
- argocd-server-clusterRoleBinding.yaml
- argocd-application-controller-clusterRoleBinding.yaml
- argocd-server-service.yaml
- argocd-dex-server-deployment.yaml
- argocd-repo-server.yaml
images:
- newTag: v0.2.0
patches:
- patch: |-
- op: add
path: /spec/template/spec/containers/0/command/-
value: --insecure
target:
kind: Deployment
labelSelector: app.kubernetes.io/name=argocd-server
| 22.685714 | 55 | 0.755668 |
984f2efc2304c99b962073680a8647d3cdfcd72e | 868 | yml | YAML | threads/3334493/posts/79349745.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | threads/3334493/posts/79349745.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | threads/3334493/posts/79349745.yml | voz-living/documents | a5fb94005e8c2d681bbda8c85a40509ba5b11cd9 | [
"MIT"
] | null | null | null | url: showpost.php?p=79349745&postcount=23124
id: 79349745
tid: 3334493
num: 23124
datetime: 2015-08-28T15:05:00.000Z
user:
img: null
name: jovetic
title: K.I.A
joinDate: 2014-06-30T16:00:00.000Z
posts: 3
id: '1424823'
title: >-
Re: Post 1 tấm ảnh về Cô gái mà bạn cho là xinh nhất mà bạn từng gặp trong
đời?!
content:
html: "\r\n\t\t\t\r\n\t\t\txấu quắc đéo có hứng <img src=\"/images/smilies/Off/angry.gif\" border=\"0\" alt=\"\" title=\"Angry\" class=\"inlineimg\"> giàu kmn . tiền có bù được những lần xuất giả tạo không <img src=\"/images/smilies/Off/angry.gif\" border=\"0\" alt=\"\" title=\"Angry\" class=\"inlineimg\">\r\n\t\t"
text: >-
xấu quắc đéo có hứng giàu kmn . tiền có bù được những lần xuất giả tạo
không
| 41.333333 | 436 | 0.646313 |
2aa3b7fa483536381627c6aa3925f27ae553e61e | 127 | yaml | YAML | tests/minimal/phase1/ssz_static/CustodyKeyReveal/ssz_random/case_9/roots.yaml | vapory-testing/vap2.0-spec-tests | b4283b90ecb9178d011863f4fb14efefce53d82f | [
"MIT"
] | 1 | 2021-11-20T20:19:46.000Z | 2021-11-20T20:19:46.000Z | tests/minimal/phase1/ssz_static/CustodyKeyReveal/ssz_random/case_9/roots.yaml | vapory-testing/vap2.0-spec-tests | b4283b90ecb9178d011863f4fb14efefce53d82f | [
"MIT"
] | null | null | null | tests/minimal/phase1/ssz_static/CustodyKeyReveal/ssz_random/case_9/roots.yaml | vapory-testing/vap2.0-spec-tests | b4283b90ecb9178d011863f4fb14efefce53d82f | [
"MIT"
] | null | null | null | version https://git-lfs.github.com/spec/v1
oid sha256:87fc0741cf0621e76e94daeb2a97801e438d2d2ecc7019de9a8750e68c4c28ed
size 77
| 31.75 | 75 | 0.88189 |
dad13c6c93562c82c5dce909ed0e73c594b0109f | 271 | yml | YAML | _data/comments/elasticsearch-restore/comment-1604971372043.yml | ZacharyThomas/ZacharyThomas.github.io | 2f44677f893328531dfa8cd8ed8082468400a905 | [
"MIT"
] | 3 | 2016-08-09T13:44:22.000Z | 2016-09-22T02:44:13.000Z | _data/comments/elasticsearch-restore/comment-1604971372043.yml | ZacharyThomas/ZacharyThomas.github.io | 2f44677f893328531dfa8cd8ed8082468400a905 | [
"MIT"
] | null | null | null | _data/comments/elasticsearch-restore/comment-1604971372043.yml | ZacharyThomas/ZacharyThomas.github.io | 2f44677f893328531dfa8cd8ed8082468400a905 | [
"MIT"
] | null | null | null | _id: 40646250-22f3-11eb-b7d9-b7db24c3f157
message: "Launch the financial Bot now to start earning. \r\nLink - https://goo-gl.ru.com/3EQ"
name: HenryMaivy
email: 7ffa0cc6a9e4de11898c9dedc48c9ea4
url: 'https://goo-gl.ru.com/3EQ'
hidden: ''
date: '2020-11-10T01:22:52.042Z'
| 33.875 | 94 | 0.756458 |
1e1a1b245e6f5f3f07f36cbd95c9f474f3a25c81 | 8,413 | yml | YAML | translations/pt/5-b-1.yml | brockfanning/sdg-metadata-mz | e9a06d153977636d75327105160c8358f5a0b6db | [
"MIT"
] | null | null | null | translations/pt/5-b-1.yml | brockfanning/sdg-metadata-mz | e9a06d153977636d75327105160c8358f5a0b6db | [
"MIT"
] | null | null | null | translations/pt/5-b-1.yml | brockfanning/sdg-metadata-mz | e9a06d153977636d75327105160c8358f5a0b6db | [
"MIT"
] | null | null | null | ORGANISATION_UNIT: <p>Direcção de Estatísticas Demográficas, Vitais e Sociais</p>
SDG_GOAL: >-
<p>5. ALCANÇAR A IGUALDADE DE GÉNERO E EMPODERAR TODAS AS MULHERES E
RAPARIGAS</p>
SDG_TARGET: >-
<p>5.b Aumentar o uso de tecnologias de base, em particular as tecnologias de
informação e comunicação, para promover o empoderamento das mulheres</p>
SDG_INDICATOR: >-
<p>5.b.1 Percentagem de indivíduos de 3 anos e mais que possuem um telefone
móvel, por sexo, área de residência e província</p>
SDG_SERIES_DESCR: >-
<p>Percentagem de indivíduos de 3 anos e mais que possuem um telefone móvel,
por sexo, área de residência e província</p>
META_LAST_UPDATE: <p>06/10/2020</p>
SDG_RELATED_INDICATORS: <p>Nao aplicavel</p>
SDG_CUSTODIAN_AGENCIES: <p>Nao aplicavel</p>
CONTACT_ORGANISATION: <p>INSTITUTO NACIONAL DE ESTATISTICA</p>
CONTACT_NAME: <p>Teixeira Mandlate, Maria Alfeu e João Mangue</p>
CONTACT_FUNCT: <p>Tecnicos</p>
CONTACT_PHONE: <p>+258 844386629; +258 823032619; +258 827679480</p>
CONTACT_MAIL: <p>www.ine.gov.mz</p>
CONTACT_EMAIL: >-
<p><a
href="mailto:Teixeira.mandlate@ine.gov.mz">Teixeira.mandlate@ine.gov.mz</a>;
<a href="mailto:maria.alfeu@ine.gov.mz">maria.alfeu@ine.gov.mz</a>; <a
href="mailto:joao.mangue@ine.gov.mz">joao.mangue@ine.gov.mz</a></p>
STAT_CONC_DEF: >-
<p>Este indicador é definido como a "proporção de indivíduos de 3 anos e mais
que possuem telefone celular, por sexo, área de residência e província ".</p>
<p>Um indivíduo é detentor de um telefone celular se tiver um dispositivo de
celular com pelo menos um cartão SIM activo para uso pessoal. Telefones
celulares móveis fornecidos pelos empregadores que podem ser usados por
motivos pessoais (para fazer chamadas pessoais, acessar a Internet etc.) estão
incluídos. Indivíduos que possuem apenas cartão (s) SIM activo (s) e não um
dispositivo de celular são excluídos. Também são incluídos indivíduos que
possuem um telefone celular para uso pessoal que não está registado em seu
nome. Considera-se cartão SIM activo se for um cartão SIM usado nos últimos
três meses. Um telefone móvel (celular) refere-se a um telefone portátil
através do qual subscreve um serviço público de telefonia móvel usando a
tecnologia celular, que fornece acesso à PSTN. Isso inclui sistemas e
tecnologias celulares analógicos e digitais, como IMT-2000 (3G) e
IMT-Avançado. Usuários de telefonia pós-pago e contas pré-pago estão
incluídos.</p>
UNIT_MEASURE: <p>Percentagem</p>
SOURCE_TYPE: <p>IV Recenseamento Geral da População e Habitação, 2017</p>
COLL_METHOD: >-
<p>A fonte de dados recomendada para calcular este indicador é o são os Censos
e Inquéritos aos Agregados Familiares. Este indicador é calculado dividindo o
número total de pessoas no escopo que possuem um telefone celular pelo número
total de pessoas no escopo.</p>
FREQ_COLL: <p>2027</p>
REL_CAL_POLICY: <p>2029</p>
DATA_SOURCE: <p>INE, MTC</p>
COMPILING_ORG: <p>INE</p>
INST_MANDATE: <p>Lei 7/96 de 5 de Julho</p>
RATIONALE: >-
<p>A posse do telefone celular, em particular, é importante para rastrear a
igualdade de gênero, pois o telefone celular é um dispositivo pessoal que, se
possuido e não apenas partilhado, fornece às mulheres um certo grau de
independência e autonomia, inclusive para fins profissionais. Vários estudos
destacaram a ligação entre a posse de telefone celular e empoderamento e
crescimento da produtividade.</p>
<p>Os dados existentes sobre a proporção de mulheres que possuem um telefone
celular sugerem que menos mulheres que homens possuem um telefone celular.
Esse indicador destaca a importância da posse do telefone celular para
rastrear e melhorar a igualdade de gênero, e a monitoria ajudará a elaborar
políticas direcionadas para superar a desigualdade de género. A recolha deste
indicador foi proposta pelo Grupo de Trabalho sobre Género da Parceria em
Medição de TIC para o Desenvolvimento.</p>
REC_USE_LIM: >-
<p>Embora actualmente os dados sobre a “proporção de indivíduos que possuem um
telefone celular” existam apenas para muito poucos países, a UIT está
incentivando todos os países a recolher dados sobre este indicador por meio de
inquéritos nacionais e espera-se que o indicador seja adicionado à lista de
indicadores da Parceria em Medição das TIC para o desenvolvimento. Espera-se
que o número de países com dados oficiais para este indicador aumente no
futuro próximo.</p>
DATA_COMP: >-
<p>Os países podem recolher dados sobre este indicador por meio dos inquéritos
aos agregados familiares nacionais. Este indicador é calculado dividindo o
número total de pessoas no escopo que possuem um telefone celular pelo número
total de pessoas no escopo.</p>
DATA_VALIDATION: >-
<p>O trabalho de campo contou com estreita supervisão e controle de qualidade
por parte dos técnicos centrais e provinciais, tanto do INE Central como das
Delegacoes Provinciais. Além disso, durante a recolha de dados foi
estabelecido um rigoroso controlo a nível de cada equipa sobre o processo de
recolha, mediante a detecção de erros por parte da crítica de campo, o que
permitiu a correcção imediata ainda no terreno. A nível da coordenação
central, os críticos de dados fizeram revisão adicional dos dados da base e os
problemas encontrados eram comunicados às respectivas equipas. </p>
<p>O processamento interactivo e por lotes de informação permitiu, ainda, a
nível central, a obtenção periódica de resultados parciais, para análise dos
dados recolhidos até dado momento, mediante a produção de quadros para
acompanhamento e controle de qualidade. Os resultados dessas tabulações foram
reportados em retro alimentação aos inquiridores, assegurando a qualidade dos
dados.</p>
DOC_METHOD: >-
<p>Este é um indicador da UIT recém-desenvolvido que foi aprovado pelo
Simpósio Mundial de Telecomunicações / Indicadores de TIC (WTIS) de 2014. A
definição e a metodologia do indicador foram desenvolvidas sob a coordenação
da UIT, por meio de seus Grupos de Peritos e após um extenso processo de
consulta com os países. A principal fonte de dados são os registos
administrativos, inquéritos às famílias (IOF e FinScope) e Recenseamento Geral
da População e Habitação.</p>
QUALITY_ASSURE: >-
<p>Para a recolha de dados, aplicou-se a metodologia de entrevistas frente a
frente aos agregados familiares.</p>
QUALITY_ASSMNT: >-
<p>O processamento interativo e por lotes de informação permitiu, ainda, a
nível central, a obtenção periódica de resultados parciais, para análise dos
dados recolhidos até dado momento, mediante a produção de quadros para
acompanhamento e controle de qualidade. Os resultados dessas tabulações foram
reportados em retro alimentação às inquiridoras, assegurando a qualidade dos
dados.</p>
COVERAGE: >-
<p>Os dados são disponibilizados de 5 em 5 anos e estão desagregados por sexo,
idade, área de residência rural e urbana, provincial e país</p>
COMPARABILITY: >-
<p>A definição e a metodologia do indicador foram desenvolvidas sob a
coordenação da UIT, por meio de seus Grupos de Peritos e após um extenso
processo de consulta com os países </p>
<p>É garantida a comparabilidade uma vez que o Inquérito Demográfico e de
Saúde (IDS) em Moçambique faz parte dum programa internacional de inquéritos
(MEASURE DHS) desenvolvido pelo ICF International através de um contrato com a
USAID, com o propósito de apoiar aos governos e instituições privadas dos
países em desenvolvimento na realização de inquéritos nacionais por
amostragem, nas áreas de população e saúde. O Programa MEASURE DHS tem por
objectivo:</p>
<p>• Subsidiar a formulação de políticas e implementação de programas nas
áreas de população e saúde; </p>
<p>• Aumentar a base internacional de dados sobre população e saúde para
acompanhamento e avaliação; </p>
<p>• Aprimorar metodologia de inquérito por amostragem, e </p>
<p>• Consolidar, na área de inquérito, a capacidade técnica da instituição
executora no país participante do Programa.</p>
OTHER_DOC: >-
<p>Ministério da Saúde (MISAU), <a
href="http://www.misau.gov.mz">www.misau.gov.mz</a>; </p>
<p>Instituto Nacional de Estatística (INE), <a
href="http://www.misau.gov.mz">www.misau.gov.mz</a>;</p>
<p>ICF Internacional (ICFI), <a
href="http://www.measuredhs.com">www.measuredhs.com</a></p>
| 54.62987 | 81 | 0.772376 |
73778593cda0bac552d2e16e14044525a5e91f23 | 1,466 | yml | YAML | .github/workflows/app-integration-tests-iphone.yml | tianhaoz95/acumany-re | ef47419c1f1da76fa69c4d8e27f3001fc8afe6af | [
"MIT"
] | null | null | null | .github/workflows/app-integration-tests-iphone.yml | tianhaoz95/acumany-re | ef47419c1f1da76fa69c4d8e27f3001fc8afe6af | [
"MIT"
] | 42 | 2020-08-05T00:56:08.000Z | 2020-09-08T07:04:50.000Z | .github/workflows/app-integration-tests-iphone.yml | tianhaoz95/acumany-re | ef47419c1f1da76fa69c4d8e27f3001fc8afe6af | [
"MIT"
] | null | null | null | name: App Integration Tests iPhone
on:
pull_request:
branches:
- 'master'
paths:
- 'app/*'
schedule:
- cron: '* */6 * * *'
jobs:
iphone-integration-test:
name: run integration tests on iPhone
defaults:
run:
working-directory: app
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v1
with:
java-version: "12.x"
- uses: subosito/flutter-action@v1
with:
flutter-version: "1.20.2"
channel: "stable"
- name: configure Flutter
run: |
flutter channel master
flutter config --enable-web --enable-macos-desktop --enable-linux-desktop
flutter upgrade
flutter --version
flutter doctor -v
- name: run basic tests
run: |
flutter pub get
flutter analyze
flutter test
- name: list simulators
run: xcrun instruments -s
- name: start simulator
env:
IPHONE_MODEL: 'iPhone 11 Pro Max (13.6)'
run: |
UDID=$(
xcrun instruments -s |
awk \
-F ' *[][]' \
-v 'device=${{ env.IPHONE_MODEL }}' \
'$1 == device { print $2 }'
)
xcrun simctl boot "${UDID:?No Simulator with this name found}"
- name: run integration tests
run: flutter drive --target=test_driver/mock.dart
| 26.178571 | 83 | 0.525921 |
bc8d5845d3e728761af99fc05dd74fdc44daba36 | 697 | yml | YAML | .travis.yml | johan--/SearchWorks | 07897310a17e045330fcb0ce5402b8dc57474bb4 | [
"Apache-2.0"
] | null | null | null | .travis.yml | johan--/SearchWorks | 07897310a17e045330fcb0ce5402b8dc57474bb4 | [
"Apache-2.0"
] | 1 | 2022-03-31T01:53:29.000Z | 2022-03-31T01:53:29.000Z | .travis.yml | johan--/SearchWorks | 07897310a17e045330fcb0ce5402b8dc57474bb4 | [
"Apache-2.0"
] | null | null | null | dist: xenial
notifications:
email: false
rvm:
- 2.7.1
addons:
chrome: stable
env:
global:
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true
- CC_TEST_REPORTER_ID=1ba3e5d2ea97b884bba5b75480edfc439cab179afadd458c9870614e539cb727
before_install:
- google-chrome-stable --headless --disable-gpu --remote-debugging-port=9222 http://localhost &
sudo: false
language: ruby
cache: bundler
script: bundle exec rake
before_script:
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
| 21.78125 | 113 | 0.757532 |
cf04b115f232a1a7e443bcf0017aa45f73dcf285 | 1,734 | yml | YAML | molecule/default/tests/test_app.yml | Pablohn26/proxysql_role | 6cfe4be3f0c30c48637d2630caf01dd777891f5f | [
"Apache-2.0"
] | null | null | null | molecule/default/tests/test_app.yml | Pablohn26/proxysql_role | 6cfe4be3f0c30c48637d2630caf01dd777891f5f | [
"Apache-2.0"
] | 2 | 2021-12-08T15:18:23.000Z | 2022-03-16T02:17:34.000Z | molecule/default/tests/test_app.yml | Pablohn26/proxysql_role | 6cfe4be3f0c30c48637d2630caf01dd777891f5f | [
"Apache-2.0"
] | 1 | 2021-12-08T15:07:58.000Z | 2021-12-08T15:07:58.000Z | ---
service:
proxysql:
enabled: true
running: true
process:
proxysql:
running: true
group:
"{{ proxysql_group }}":
exists: true
user:
"{{ proxysql_user }}":
exists: true
groups:
- "{{ proxysql_group }}"
file:
"{{ proxysql_datadir }}":
owner: "{{ proxysql_user }}"
group: "{{ proxysql_group }}"
exists: true
filetype: directory
mode: "0750"
"{{ proxysql_log_path }}":
owner: "{{ proxysql_user }}"
group: "{{ proxysql_group }}"
exists: true
filetype: directory
mode: "0750"
"{{ proxysql_config_file }}":
owner: root
group: "{{ proxysql_group }}"
exists: true
filetype: file
mode: "0640"
command:
check_replication_hostgroups:
exit-status: 0
exec: "sudo mysql -u {{ proxysql_user_admin_interface }} -p{{ proxysql_password_admin_interface }} -h {{ proxysql_host_admin_interface }} -P{{ proxysql_port_admin_interface }} -e \"SELECT writer_hostgroup FROM mysql_replication_hostgroups;\""
stdout:
- "/^| 1/"
timeout: 10000
skip: false
check_backend_servers:
exit-status: 0
exec: "sudo mysql -u {{ proxysql_user_admin_interface }} -p{{ proxysql_password_admin_interface }} -h {{ proxysql_host_admin_interface }} -P{{ proxysql_port_admin_interface }} -e \"SELECT hostname FROM mysql_servers;\""
stdout:
- "/backend1/"
timeout: 10000
skip: false
check_mysql_users:
exit-status: 0
exec: "sudo mysql -u {{ proxysql_user_admin_interface }} -p{{ proxysql_password_admin_interface }} -h {{ proxysql_host_admin_interface }} -P{{ proxysql_port_admin_interface }} -e \"SELECT username FROM mysql_users;\""
stdout:
- "/proxysql_test/"
timeout: 10000
skip: false
| 27.09375 | 247 | 0.654556 |
8c3c499400cd9e6ccde49618defb25a2d2fd9559 | 373 | yml | YAML | .github/workflows/test.yml | exercism/vbnet | f935b067ea1a7a8d0e55f1b7e056232933a54b3a | [
"MIT"
] | 5 | 2019-06-04T07:07:20.000Z | 2022-03-22T17:54:04.000Z | .github/workflows/test.yml | exercism/vbnet | f935b067ea1a7a8d0e55f1b7e056232933a54b3a | [
"MIT"
] | 57 | 2017-09-01T22:31:34.000Z | 2022-02-25T12:07:13.000Z | .github/workflows/test.yml | exercism/vbnet | f935b067ea1a7a8d0e55f1b7e056232933a54b3a | [
"MIT"
] | 14 | 2017-07-29T03:45:18.000Z | 2021-09-11T06:22:48.000Z | name: Test
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.4.0
- uses: actions/setup-dotnet@v1.9.0
with:
dotnet-version: "5.0.102"
- run: ./test.ps1
shell: pwsh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
| 17.761905 | 51 | 0.557641 |
96184d8069f57f16916d51857c356cbf7057f521 | 3,705 | yml | YAML | _config.yml | mark-plummer/master-branch-test | 0236a3e8b1e3701dda497cedde6ccaa2712ebc16 | [
"MIT",
"BSD-3-Clause"
] | null | null | null | _config.yml | mark-plummer/master-branch-test | 0236a3e8b1e3701dda497cedde6ccaa2712ebc16 | [
"MIT",
"BSD-3-Clause"
] | 1 | 2022-02-26T07:03:33.000Z | 2022-02-26T07:03:33.000Z | _config.yml | mark-plummer/master-branch-test | 0236a3e8b1e3701dda497cedde6ccaa2712ebc16 | [
"MIT",
"BSD-3-Clause"
] | null | null | null |
# Site Settings
locale : "en"
destination : ./_site
output : web
# Used to designate the current version. Edit when a new version is released
current_version : "6.1"
# Note that site.baseurl for this site evaluates to:
# http://docs.thoughtspot.com/<version>/
# used for conditional content filtering
description : "Documentation for the ThoughtSpot BI product. ThoughtSpot is a business intelligence and big data analytics platform that helps you explore, analyze and share real-time business analytics data easily."
twitter : thoughtspot
url : https://docs.thoughtspot.com
# the base hostname & protocol for the site
repository : mark-plummer/master-branch-test
# GitHub username/repo-name e.g. "mmistakes/minimal-mistakes"
repo : master-branch-test
github_editme_path : mark-plummer/master-branch-test/blob
# topnav_title : ThoughtSpot® Documentation -- REMOVED IN FAVOR OF image
# appears on the top navigation bar next to the home button
site_title : ThoughtSpot
# appears in the browser tab - seen mostly by search engines, not users
company_name : ThoughtSpot
# this appears in the footer
timezone : America/Tijuana
google_analytics : UA-44946579-2
# if you have google-analytics ID, put it in. if not, edit this value to blank.
# Plugins
plugins:
- jekyll-sitemap
- jekyll-redirect-from
- jekyll-seo-tag
# Files and directories that jekyll will exclude from the build output
exclude:
- .idea/
- .gitignorecat
- Dockerfile
- Gemfile
- Gemfile.lock
- README.md
- SUMMARY.md
- about.md
- original.txt
- build-site.sh
- pdf-all.sh
- pdf-mydoc.sh
- pdf-product1.sh
- pdf-product2.sh
- update.sh
include:
- images
- index.html
# File Formatting
# Markdown processor. Kramdown differs from github-flavored markdown in some subtle ways
highlighter: rouge
# library used for syntax highlighting
markdown: kramdown
kramdown:
input: GFM
auto_ids: true
hard_wrap: false
syntax_highlighter: rouge
# Colleciton Settings
collections:
admin:
output: true
advanced-search:
output: true
app-integrate:
output: true
appliance:
output: true
appliance/aws:
output: true
complex-search:
output: true
data-connect:
output: true
data-integrate:
output: true
disaster-recovery:
output: true
end-user:
output: true
# error-codes: output: true
reference:
output: true
release:
output: true
spotiq:
output: true
tooltips:
output: true
faq:
output: true
practice:
output: true
defaults:
- values:
layout: "page"
comments: true
search: true
sidebar: mydoc_sidebar
topnav: topnav
# these are defaults used for the frontmatter for these file types
sidebars:
- home_sidebar
- mydoc_sidebar
- other
# FEEDBACK Settings
#feedback_subject_line: Documentation Feedback
#feedback_email: docs@thoughtspot.com # used as a contact email for the Feedback link in the top navigation bar
feedback_disable: true # if you uncomment the Feedback link gets removed
# feedback_text: "Need help?" # uncomment to set the Feedback text
# feedback_link: "http://helpy.io/"
# if you uncomment the previous line, it changes where the feedback link points to
# Local Preview Settings
host: 127.0.0.1
# the preview server used. Leave as is.
port: 4000
# the port where the preview is rendered. You can leave this as is unless you have other Jekyll builds using this same port that might cause conflicts. in that case, use another port such as 4006.
| 26.276596 | 229 | 0.695007 |
ba9f844c1450bbd686ce449349099183d30a5077 | 1,117 | yaml | YAML | dvc.yaml | gbekes/football-data-project | 0ce1ea9ca421ebbd98e720621c5837ce990ff24e | [
"MIT"
] | 1 | 2021-10-09T20:55:53.000Z | 2021-10-09T20:55:53.000Z | dvc.yaml | gbekes/football-data-project | 0ce1ea9ca421ebbd98e720621c5837ce990ff24e | [
"MIT"
] | 3 | 2021-09-17T14:48:35.000Z | 2021-10-14T20:22:41.000Z | dvc.yaml | sscu-budapest/football-data-project | 70c01e6e0b871af3108af5d8d34848825cad7d8f | [
"MIT"
] | null | null | null | stages:
run_entity_coreference:
cmd: python -m src run_entity_coreference
deps:
- data/fe/old_top/lineups.parquet
- data/fe/old_top/matches.parquet
- data/fe/old_top/players.parquet
- data/fe/old_top/seasons.parquet
- data/fe/old_top/teams.parquet
- data/pv/old_top/countries.parquet
- data/pv/old_top/match_info.parquet
- data/pv/old_top/match_lineups.parquet
- data/pv/old_top/player_info.parquet
- data/pv/old_top/season_info.parquet
- data/pv/old_top/team_info.parquet
- src/entity_coreference/create_bases.py
- src/entity_coreference/create_rolls.py
- src/entity_coreference/runner.py
outs:
- data/coref/matches.parquet
- data/coref/players.parquet
- data/coref/seasons.parquet
- data/coref/teams.parquet
evaluate_coreference:
cmd: python -m src evaluate_coreference
deps:
- data/coref/matches.parquet
- data/coref/players.parquet
- data/coref/seasons.parquet
- data/coref/teams.parquet
- src/entity_coreference/evaluate.py
outs:
- reports/coreference_evaluation.md:
cache: false
| 31.914286 | 45 | 0.715309 |
cf9874e812cd134b3b65841c79879fecbbd18b62 | 178 | yaml | YAML | k8s/todo_service.yaml | sultanshaikh-devops/DevOps-Course-Starter | 3eaac34fdc3b119403bbef34ea67be67905d1278 | [
"MIT"
] | null | null | null | k8s/todo_service.yaml | sultanshaikh-devops/DevOps-Course-Starter | 3eaac34fdc3b119403bbef34ea67be67905d1278 | [
"MIT"
] | 2 | 2021-05-08T22:27:14.000Z | 2021-07-30T17:32:50.000Z | k8s/todo_service.yaml | sultanshaikh-devops/DevOps-Course-Starter | 3eaac34fdc3b119403bbef34ea67be67905d1278 | [
"MIT"
] | null | null | null | # service.yaml
kind: Service
apiVersion: v1
metadata:
name: todo
spec:
type: NodePort
selector:
app: todo
ports:
- protocol: TCP
port: 5000
targetPort: 5000 | 13.692308 | 20 | 0.668539 |
6a205c564eb774c6381c99bdd812dfb2f7e52fdd | 23,958 | yaml | YAML | Server_Hardware/Supermicro/template_ipmi_supermicro_x10srl-f/6.0/template_ipmi_supermicro_x10srl-f.yaml | SkyBeam/community-templates | 634b1a79f4da224b0066880ec76a8b57bdf51257 | [
"MIT"
] | 291 | 2021-11-25T15:32:30.000Z | 2022-03-28T19:41:28.000Z | Server_Hardware/Supermicro/template_ipmi_supermicro_x10srl-f/6.0/template_ipmi_supermicro_x10srl-f.yaml | SkyBeam/community-templates | 634b1a79f4da224b0066880ec76a8b57bdf51257 | [
"MIT"
] | 48 | 2021-11-25T14:41:21.000Z | 2022-03-31T07:37:02.000Z | Server_Hardware/Supermicro/template_ipmi_supermicro_x10srl-f/6.0/template_ipmi_supermicro_x10srl-f.yaml | SkyBeam/community-templates | 634b1a79f4da224b0066880ec76a8b57bdf51257 | [
"MIT"
] | 296 | 2021-11-25T12:54:15.000Z | 2022-03-31T14:38:37.000Z | zabbix_export:
version: '6.0'
date: '2021-11-21T21:30:19Z'
groups:
-
uuid: 7df96b18c230490a9a0a9e2307226338
name: Templates
templates:
-
uuid: 5c5f3994d6fb41c6a0856b2736842465
template: 'IPMI Supermicro X10SRL-F'
name: 'IPMI Supermicro X10SRL-F'
description: |
## Overview
IPMI HW status [Fan, Temperature, Voltage], Triggers [Fan, Temperature, Voltage], Graphs [Fan, Temperature, Voltage]
## Author
Dorin Sergey
groups:
-
name: Templates
items:
-
uuid: 280dcc217a15430b8aa5091a45986c99
name: '1.05V PCH'
type: IPMI
key: ipmi.supermicro.x10srl-f.1.05VPCH
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: '1.05V PCH'
tags:
-
tag: Application
value: Voltage
-
uuid: 2088fa924e294f57ad15ea4f6afaf045
name: '1.2V BMC'
type: IPMI
key: ipmi.supermicro.x10srl-f.1.2VBMC
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: '1.2V BMC'
preprocessing:
-
type: MULTIPLIER
parameters:
- '1'
tags:
-
tag: Application
value: Voltage
-
uuid: add7055f408444158a55d092c641ffb7
name: '1.5V PCH'
type: IPMI
key: ipmi.supermicro.x10srl-f.1.5VPCH
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: '1.5V PCH'
tags:
-
tag: Application
value: Voltage
-
uuid: 223834f593954a0686d9163686c0673d
name: 3.3VCC
type: IPMI
key: ipmi.supermicro.x10srl-f.3.3VCC
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: 3.3VCC
tags:
-
tag: Application
value: Voltage
-
uuid: 0a20f8fd127b4c3ea6c085bf77bfcdde
name: 3.3VSB
type: IPMI
key: ipmi.supermicro.x10srl-f.3.3VSB
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: 3.3VSB
tags:
-
tag: Application
value: Voltage
-
uuid: 1ecadf7ecc484f9d895dd0a2d79f5c62
name: 5VCC
type: IPMI
key: ipmi.supermicro.x10srl-f.5VCC
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: 5VCC
tags:
-
tag: Application
value: Voltage
-
uuid: f751789feba644fd9d976a4c3c6a5cd3
name: 5VSB
type: IPMI
key: ipmi.supermicro.x10srl-f.5VSB
delay: '240'
history: 7d
units: Volts
ipmi_sensor: 5VSB
tags:
-
tag: Application
value: Voltage
-
uuid: dee118d752894fa18502284ffaa1e857
name: 12V
type: IPMI
key: ipmi.supermicro.x10srl-f.12V
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: 12V
tags:
-
tag: Application
value: Voltage
-
uuid: 5e89f5081ed04c85be923d33d6cf5db7
name: 'CPU - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.cpu.temp
delay: '45'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'CPU Temp'
tags:
-
tag: Application
value: Temperature
triggers:
-
uuid: 03735199bf774841912d05512797e8ab
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.cpu.temp)>70'
name: 'CPU temperature critical on {HOSTNAME}'
priority: HIGH
-
uuid: e5a2f66ebe684d44885f8920fc7ccab9
name: 'Fan 1'
type: IPMI
key: ipmi.supermicro.x10srl-f.fan1
delay: '240'
history: 7d
value_type: FLOAT
units: RPM
ipmi_sensor: FAN1
tags:
-
tag: Application
value: Fans
triggers:
-
uuid: c1d4af1b9fab41d2b9dfc4832e9ee370
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fan1)>9000 or last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fan1)<100'
name: 'Fan1 critical on {HOSTNAME}'
priority: WARNING
-
uuid: 1a4ef3259e36477e8341cec3b344609d
name: 'Fan 2'
type: IPMI
key: ipmi.supermicro.x10srl-f.fan2
delay: '240'
history: 7d
value_type: FLOAT
units: RPM
ipmi_sensor: FAN2
tags:
-
tag: Application
value: Fans
triggers:
-
uuid: 93e5985b01ca4830a44857fcdbc439b1
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fan2)>9000 or last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fan2)<100'
name: 'Fan2 critical on {HOSTNAME}'
priority: WARNING
-
uuid: 3b8ded7545f3443cb044fba2c54a27cf
name: 'Fan 3'
type: IPMI
key: ipmi.supermicro.x10srl-f.fan3
delay: '240'
history: 7d
value_type: FLOAT
units: RPM
ipmi_sensor: FAN3
tags:
-
tag: Application
value: Fans
triggers:
-
uuid: 7273a0c1766d430e988b8dfffd9585ce
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fan3)>9000 or last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fan3)<100'
name: 'Fan3 critical on {HOSTNAME}'
priority: WARNING
-
uuid: b9c3b0dff78941d59e696921bf8904ae
name: 'Fan 4'
type: IPMI
key: ipmi.supermicro.x10srl-f.fan4
delay: '240'
history: 7d
value_type: FLOAT
units: RPM
ipmi_sensor: FAN4
tags:
-
tag: Application
value: Fans
triggers:
-
uuid: 633ed5b8546f42d6866faeba8e47bb9c
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fan4)>9000 or last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fan4)<100'
name: 'Fan4 critical on {HOSTNAME}'
priority: WARNING
-
uuid: e47767fef8104140af319a2fe1d42cb5
name: 'Fan 5'
type: IPMI
key: ipmi.supermicro.x10srl-f.fan5
delay: '240'
history: 7d
value_type: FLOAT
units: RPM
ipmi_sensor: FAN5
tags:
-
tag: Application
value: Fans
triggers:
-
uuid: f91a3202c542406c84f9a51a992aaabb
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fan5)>9000 or last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fan5)<100'
name: 'Fan5 critical on {HOSTNAME}'
priority: WARNING
-
uuid: bf8e07a2f8904fb895b048bd690be2fa
name: 'Fan A'
type: IPMI
key: ipmi.supermicro.x10srl-f.fana
delay: '240'
history: 7d
value_type: FLOAT
units: RPM
ipmi_sensor: FANA
tags:
-
tag: Application
value: Fans
triggers:
-
uuid: 9e684d4da4eb4ed393882a0e17087ea1
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fana)>9000 or last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.fana)<100'
name: 'FanA critical on {HOSTNAME}'
priority: WARNING
-
uuid: 3a3393279f614d6bb9701e594e26cf4a
name: 'DIMMA1 - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.p1.dimma1.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'DIMMA1 Temp'
tags:
-
tag: Application
value: Temperature
triggers:
-
uuid: 2fcf582cbd314dd59aef527744ee6edd
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.p1.dimma1.temp)>70'
name: 'DIMMA1 temperature critical on {HOSTNAME}'
priority: AVERAGE
-
uuid: 7e69b281e5f94f2bbf8b8244f6af06d1
name: 'DIMMA2 - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.p1.dimma2.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'DIMMA2 Temp'
tags:
-
tag: Application
value: Temperature
triggers:
-
uuid: ce2407b9dc7f49d1aeb8e77184a66ec6
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.p1.dimma2.temp)>70'
name: 'DIMMA2 temperature critical on {HOSTNAME}'
priority: AVERAGE
-
uuid: f42c3a20db14474ea9e521d9568f3e5f
name: 'DIMMB1 - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.p1.dimmb1.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'DIMMB1 Temp'
tags:
-
tag: Application
value: Temperature
triggers:
-
uuid: 0d2c07078bef4945b344f54125ed9c5f
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.p1.dimmb1.temp)>70'
name: 'DIMMB1 temperature critical on {HOSTNAME}'
priority: AVERAGE
-
uuid: 140840e1c1314e4f93af287fc81e4ef0
name: 'DIMMB2 - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.p1.dimmb2.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'DIMMB2 Temp'
tags:
-
tag: Application
value: Temperature
triggers:
-
uuid: 39695e1d20ea4f4fbeaa08cc23dd069a
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.p1.dimmb2.temp)>70'
name: 'DIMMB2 temperature critical on {HOSTNAME}'
priority: AVERAGE
-
uuid: 016cde046da442c69b921156a6115bac
name: 'DIMMC1 - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.p1.dimmc1.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'DIMMC1 Temp'
tags:
-
tag: Application
value: Temperature
triggers:
-
uuid: a5fd6a69cc9841e49b8281d458561c58
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.p1.dimmc1.temp)>70'
name: 'DIMMC1 temperature critical on {HOSTNAME}'
priority: AVERAGE
-
uuid: 3cd6d8ac39d241b6af8c6740d53bdc30
name: 'DIMMC2 - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.p1.dimmc2.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'DIMMC2 Temp'
tags:
-
tag: Application
value: Temperature
triggers:
-
uuid: b67d8ca2c5c84e5d99cc1b91d4c78240
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.p1.dimmc2.temp)>70'
name: 'DIMMC2 temperature critical on {HOSTNAME}'
priority: AVERAGE
-
uuid: 3534c2ddad43440aabc8c36be8d28759
name: 'DIMMD1 - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.p1.dimmd1.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'DIMMD1 Temp'
tags:
-
tag: Application
value: Temperature
triggers:
-
uuid: 5563b634d7a149bdbc05f326b7191e04
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.p1.dimmd1.temp)>70'
name: 'DIMMD1 temperature critical on {HOSTNAME}'
priority: AVERAGE
-
uuid: f957f7b07c0a42659d6a2293deb113f7
name: 'DIMMD2 - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.p1.dimmd2.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'DIMMD2 Temp'
tags:
-
tag: Application
value: Temperature
triggers:
-
uuid: 69bde93f2b4f4e0488e38872ff15bd78
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.p1.dimmd2.temp)>70'
name: 'DIMMD2 temperature critical on {HOSTNAME}'
priority: AVERAGE
-
uuid: 1f01715a7bb948de8ac03efac7a9ca3a
name: 'PCH - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.pch.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'PCH Temp'
tags:
-
tag: Application
value: Temperature
-
uuid: 12eefc445ced4e02b42b20eedc047fdf
name: 'Peripheral - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.peripheral.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'Peripheral Temp'
tags:
-
tag: Application
value: Temperature
-
uuid: f8df0a4ca0284515a47040b81bfc11c2
name: 'System - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.system.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'System Temp'
tags:
-
tag: Application
value: Temperature
triggers:
-
uuid: 7c642cdbd0f54230a1149d9e0b38ee69
expression: 'last(/IPMI Supermicro X10SRL-F/ipmi.supermicro.x10srl-f.system.temp)>50'
name: 'System temperature critical on {HOSTNAME}'
priority: HIGH
-
uuid: b39a9e06af6d45269f7f5fcb345243ca
name: VBAT
type: IPMI
key: ipmi.supermicro.x10srl-f.VBAT
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: VBAT
tags:
-
tag: Application
value: Voltage
-
uuid: 13573e162ea344f88bbcd56b1f5230a8
name: Vcpu
type: IPMI
key: ipmi.supermicro.x10srl-f.Vcpu
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: Vcpu
tags:
-
tag: Application
value: Voltage
-
uuid: b6a06c00d31b4e00851c5c688725732e
name: 'VcpuVRM - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.VcpuVRM.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'VcpuVRM Temp'
tags:
-
tag: Application
value: Temperature
-
uuid: 68f20f526d9f413489a2b9761ca9e020
name: VDIMMAB
type: IPMI
key: ipmi.supermicro.x10srl-f.VDIMMAB
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: VDIMMAB
tags:
-
tag: Application
value: Voltage
-
uuid: b386099fcc714247b27f8eedea72f070
name: VDIMMCD
type: IPMI
key: ipmi.supermicro.x10srl-f.VDIMMCD
delay: '240'
history: 7d
value_type: FLOAT
units: Volts
ipmi_sensor: VDIMMCD
tags:
-
tag: Application
value: Voltage
-
uuid: a15b5a0ba4e54e4daa32c01f7e60c73a
name: 'VmemABVRM - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.VmemABVRM.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'VmemABVRM Temp'
tags:
-
tag: Application
value: Temperature
-
uuid: 7d7b0af1ea0a410d8ca9b868fc178a60
name: 'VmemCDVRM - Temp'
type: IPMI
key: ipmi.supermicro.x10srl-f.VmemCDVRM.temp
delay: '240'
history: 7d
value_type: FLOAT
units: 'degrees C'
ipmi_sensor: 'VmemCDVRM Temp'
tags:
-
tag: Application
value: Temperature
graphs:
-
uuid: 273d0a40a38145c89fbd825cd117a0d5
name: 'CPU Temperature'
graph_items:
-
color: 1A7C11
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.cpu.temp
-
uuid: b7088a13d4834020a0dced97676157f6
name: 'DIMM temperature'
graph_items:
-
color: 1A7C11
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.p1.dimma1.temp
-
sortorder: '1'
color: F63100
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.p1.dimma2.temp
-
sortorder: '2'
color: 2774A4
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.p1.dimmb1.temp
-
sortorder: '3'
color: A54F10
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.p1.dimmb2.temp
-
sortorder: '4'
color: FC6EA3
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.p1.dimmc1.temp
-
sortorder: '5'
color: 6C59DC
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.p1.dimmc2.temp
-
sortorder: '6'
color: AC8C14
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.p1.dimmd1.temp
-
sortorder: '7'
color: 611F27
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.p1.dimmd2.temp
-
uuid: 5b390e9f43da4b40b3950f9cd794515d
name: 'FAN speed'
graph_items:
-
color: 1A7C11
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.fan1
-
sortorder: '1'
color: F63100
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.fan2
-
sortorder: '2'
color: 2774A4
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.fan3
-
sortorder: '3'
color: A54F10
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.fan4
-
sortorder: '4'
color: FC6EA3
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.fana
-
sortorder: '5'
color: 6C59DC
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.fan5
-
uuid: 5f22a47e3bf1427188fafaf30ce55191
name: 'SYSTEM Temperature'
graph_items:
-
color: 1A7C11
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.peripheral.temp
-
sortorder: '1'
color: F63100
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.system.temp
-
sortorder: '2'
color: 2774A4
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.VcpuVRM.temp
-
sortorder: '4'
color: FC6EA3
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.VmemABVRM.temp
-
sortorder: '5'
color: 6C59DC
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.VmemCDVRM.temp
-
uuid: 5231df17920749d49b4db772f68355d6
name: Voltage
graph_items:
-
color: 1A7C11
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.1.05VPCH
-
sortorder: '1'
color: F63100
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.1.2VBMC
-
sortorder: '2'
color: 2774A4
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.1.5VPCH
-
sortorder: '3'
color: A54F10
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.3.3VCC
-
sortorder: '4'
color: FC6EA3
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.3.3VSB
-
sortorder: '5'
color: 6C59DC
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.5VCC
-
sortorder: '6'
color: AC8C14
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.5VSB
-
sortorder: '7'
color: 611F27
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.12V
-
sortorder: '8'
color: F230E0
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.VBAT
-
sortorder: '9'
color: 5CCD18
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.Vcpu
-
sortorder: '10'
color: BB2A02
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.VDIMMAB
-
sortorder: '11'
color: 5A2B57
item:
host: 'IPMI Supermicro X10SRL-F'
key: ipmi.supermicro.x10srl-f.VDIMMCD
| 29.984981 | 163 | 0.504049 |
5eab8e58633b5b2c53b78926071bb248410cc389 | 321 | yml | YAML | src/data/drivers/roberto-guerrero.yml | F1DB/f1db | 5a4fb148e6baf50443758086924922ce5d108916 | [
"CC-BY-4.0"
] | 9 | 2021-11-29T07:57:56.000Z | 2022-03-16T21:08:58.000Z | src/data/drivers/roberto-guerrero.yml | F1DB/f1db | 5a4fb148e6baf50443758086924922ce5d108916 | [
"CC-BY-4.0"
] | 1 | 2021-12-31T09:24:54.000Z | 2021-12-31T10:36:13.000Z | src/data/drivers/roberto-guerrero.yml | F1DB/f1db | 5a4fb148e6baf50443758086924922ce5d108916 | [
"CC-BY-4.0"
] | 1 | 2022-01-02T21:58:05.000Z | 2022-01-02T21:58:05.000Z | id: roberto-guerrero
name: Roberto Guerrero
firstName: Roberto
lastName: Guerrero
fullName: Roberto José Guerrero Isaza
abbreviation: GUE
permanentNumber:
gender: MALE
dateOfBirth: 1958-11-16
dateOfDeath:
placeOfBirth: Medellín
countryOfBirthCountryId: colombia
nationalityCountryId: colombia
secondNationalityCountryId:
| 21.4 | 37 | 0.856698 |
3cd8ad192eadfd773e2f10ce36f8d59757263344 | 1,293 | yml | YAML | .travis.yml | SPYFF/spindump | 12093bbd515671db18943da7871f95e1617dd9ac | [
"BSD-3-Clause"
] | 48 | 2019-01-22T12:23:32.000Z | 2022-03-19T16:46:42.000Z | .travis.yml | SPYFF/spindump | 12093bbd515671db18943da7871f95e1617dd9ac | [
"BSD-3-Clause"
] | 209 | 2019-01-23T12:02:58.000Z | 2021-03-05T10:26:46.000Z | .travis.yml | SPYFF/spindump | 12093bbd515671db18943da7871f95e1617dd9ac | [
"BSD-3-Clause"
] | 18 | 2019-01-29T19:43:28.000Z | 2022-01-07T08:51:20.000Z | ---
dist: xenial
sudo: false
language: cpp
os:
- linux
env:
matrix:
- BUILD=Debug MYCC=gcc-4.9 MYCXX=g++-4.9
- BUILD=Release MYCC=gcc-4.9 MYCXX=g++-4.9
- BUILD=Debug MYCC=gcc-7 MYCXX=g++-7
- BUILD=Release MYCC=gcc-7 MYCXX=g++-7
- BUILD=Debug MYCC=gcc-8 MYCXX=g++-8
- BUILD=Release MYCC=gcc-8 MYCXX=g++-8
- BUILD=Debug MYCC=clang-5.0 MYCXX=clang++-5.0
- BUILD=Release MYCC=clang-5.0 MYCXX=clang++-5.0
- BUILD=Debug MYCC=clang-6.0 MYCXX=clang++-6.0
- BUILD=Release MYCC=clang-6.0 MYCXX=clang++-6.0
- BUILD=Debug MYCC=clang-7 MYCXX=clang++-7
- BUILD=Release MYCC=clang-7 MYCXX=clang++-7
addons:
apt:
update: true
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-xenial-6.0
- llvm-toolchain-xenial-7
packages:
- clang-5.0
- clang-6.0
- clang-7
- cmake
- g++-4.9
- g++-7
- g++-8
- libcurl4-openssl-dev
- libmicrohttpd-dev
- libncurses5-dev
- libpcap-dev
script:
- |
cd $TRAVIS_BUILD_DIR
rm -rf build
mkdir build
cd build
cmake -DCMAKE_C_COMPILER=$MYCC -DCMAKE_CXX_COMPILER=$MYCXX \
-DCMAKE_BUILD_TYPE=$BUILD -DCMAKE_INSTALL_PREFIX:PATH=/tmp ..
make
| 24.396226 | 67 | 0.576179 |
c8d9cceb12836653baa4f7e8a89b9e7d32c8ac39 | 227 | yaml | YAML | config/packages/twig.yaml | karczmarczyk/mcManager | 37d5040188503760c1b751db119b9d153402b2b4 | [
"MIT"
] | null | null | null | config/packages/twig.yaml | karczmarczyk/mcManager | 37d5040188503760c1b751db119b9d153402b2b4 | [
"MIT"
] | null | null | null | config/packages/twig.yaml | karczmarczyk/mcManager | 37d5040188503760c1b751db119b9d153402b2b4 | [
"MIT"
] | null | null | null | twig:
default_path: '%kernel.project_dir%/templates'
form_themes: ['bootstrap_4_layout.html.twig']
globals:
app_version: '%env(APP_VERSION)%'
show_pwa_install_button: '%env(SHOW_PWA_INSTALL_BUTTON)%' | 37.833333 | 65 | 0.704846 |
84b5241a3ae9bbc496258c1019455236ecffee1a | 1,223 | yml | YAML | spec/fixtures/vcr_cassettes/videos/create/link_error.yml | urbanautomaton/vzaar-api-ruby | 12e31b482c9ce99614483f303b8fd7b85e2b6c69 | [
"MIT"
] | 4 | 2015-07-09T09:46:55.000Z | 2019-12-16T11:01:26.000Z | spec/fixtures/vcr_cassettes/videos/create/link_error.yml | urbanautomaton/vzaar-api-ruby | 12e31b482c9ce99614483f303b8fd7b85e2b6c69 | [
"MIT"
] | 10 | 2015-03-20T08:19:50.000Z | 2019-12-11T15:01:01.000Z | spec/fixtures/vcr_cassettes/videos/create/link_error.yml | urbanautomaton/vzaar-api-ruby | 12e31b482c9ce99614483f303b8fd7b85e2b6c69 | [
"MIT"
] | 9 | 2015-02-19T13:54:18.000Z | 2021-03-11T15:34:15.000Z | ---
http_interactions:
- request:
method: post
uri: https://app.vzaar.localhost/api/v2/link_uploads
body:
encoding: UTF-8
string: '{"url":"http://example.com/video.mp4"}'
headers:
User-Agent:
- HTTPClient/1.0 (2.8.2.4, ruby 2.3.1 (2016-04-26))
Accept:
- "*/*"
Date:
- Fri, 04 Nov 2016 10:53:58 GMT
X-Auth-Token:
- TUGXzNL17ypaougMYpR3
X-Client-Id:
- lair-tend72
Content-Type:
- application/json
response:
status:
code: 422
message: Unprocessable Entity
headers:
Server:
- nginx/1.10.1
Date:
- Fri, 04 Nov 2016 10:53:58 GMT
Content-Type:
- application/json
Content-Length:
- '76'
Connection:
- keep-alive
Cache-Control:
- no-cache
X-Request-Id:
- 194aeb58-7c7c-4cf3-a1b7-650ddecf1c60
X-Runtime:
- '0.036464'
Set-Cookie:
- __profilin=p%3Dt; path=/
- __profilin=p%3Dt; path=/
body:
encoding: UTF-8
string: '{"errors":[{"message":"Invalid parameters","detail":"uploader is missing"}]}'
http_version:
recorded_at: Fri, 04 Nov 2016 10:53:58 GMT
recorded_with: VCR 3.0.3
| 23.519231 | 92 | 0.563369 |
ff9e02c1c64e1474cfabb5fe7753b6e383cf5a9b | 5,052 | yaml | YAML | _data/hallitus_2019.yaml | niitapa/uudempiAS | 28f5ec0eaffd182d41f2b1b3daa1c89f9763e201 | [
"MIT"
] | null | null | null | _data/hallitus_2019.yaml | niitapa/uudempiAS | 28f5ec0eaffd182d41f2b1b3daa1c89f9763e201 | [
"MIT"
] | null | null | null | _data/hallitus_2019.yaml | niitapa/uudempiAS | 28f5ec0eaffd182d41f2b1b3daa1c89f9763e201 | [
"MIT"
] | null | null | null | people:
- position_name: Puheenjohtaja
person_name: Severi Casserly
email: puheenjohtaja@as.fi
phone: 040 539 0739
username: SeveriCasserly
picture: static/toimijat/2019/severi_casserly_19.JPG
description: "Johtaa hallitusta ja sitä kautta koko killan toimintaa.
Ota yhteyttä puheenjohtajaan, jos asiasi koskee kiltaa tai et tiedä keneen ottaa yhteyttä."
- position_name: Rahastonhoitaja
person_name: Ville Eronen
email: rahastonhoitaja@as.fi
phone: 050 591 5112
username: Eronen
picture: static/toimijat/2019/ville_eronen_19.jpg
description: "Huolehtii killan raha-asioista, kuten laskujen maksamisesta ja kirjanpidosta.
Ota yhteyttä rahastonhoitajaan raha-asioissa."
- position_name: Sihteeri
person_name: Jaakko Majuri
email: sihteeri@as.fi
phone: 044 384 6528
username: jmajuri
picture: static/toimijat/2019/jaakko_majuri_19.JPG
description: "Vastaa pöytäkirjojen tekemisestä hallituksen ja killan kokouksista. Sihteerin vastuulla on myös jäsenrekisterin ylläpitäminen sekä kiltaa koskevan materiaalin arkistoinnista huolehtiminen.
Ota yhteyttä sihteeriin jäsenmaksuihin liittyvissä asioissa."
- position_name: Viestintämestari
person_name: Niina Tapanainen
email: viestintamestari@as.fi
phone: 050 3314 314
username: niinainen
picture: static/toimijat/2019/niina_tapanainen_19_2.jpg
description: "Vastaa jäsenistön tiedottamisesta lähettämällä tiedotteita ja ylläpitämällä kalenteria. Viestintämestari pitää ajan tasalla myös killan sähköpostilistoja ja nettisivujen sisältöä.
Ota yhteyttä viestintämestariin halutessasi tiedottaa killisteille jotakin."
- position_name: Phuksikapteeni
person_name: Lassi Ihalainen
email: phuksikapteeni@as.fi
phone: 050 494 9522
username: Suklaalihis
picture: static/toimijat/2019/lassi_ihalainen_19.JPG
description: "Vastaa killan phuksikasvatuksesta ja -toiminnasta. Järjestää phuksitapahtumia killan, korkeakoulun sekä yliopiston muiden fuksikapteenien kanssa. Toimii esimerkkinä ja tukena phukseille. Työskentelee yhteistyössä ISOpomon kanssa."
- position_name: International Student Captain
person_name: Mikko Hokkanen
email: isc@as.fi
phone: 0400 503 098
username: K4RHU
picture: static/toimijat/2019/mikko_hokkanen_19.JPG
description: "Vastaa killan kansainvälisten opiskelijoiden phuksikasvatuksesta ja -toiminnasta. Työskentelee yhteistyössä phuksikapteenin kanssa.
Ota yhteyttä ISC:hen jos asiasi koskee kansainvälistä toimintaa"
- position_name: Isäntä
person_name: Vesta Kulomaa
email: ie@as.fi
phone: 044 2366 515
username: vvesta
picture: static/toimijat/2019/vesta_kulomaa_19.JPG
description: "Järjestää yhdessä Emännän kanssa kiltalaisille mitä moninaisimpia tapahtumia ja huolehtii elintarvikkeiden välittämisestä killistien vatsalaukkuihin. Organisoi huvitoimikunnan toimintaa ja kehittää killan tapahtumakulttuuria.
Ota yhteyttä IE:hen, jos asiasi koskee killan tapahtumia."
- position_name: Emäntä
person_name: Alex Korpela
email: ie@as.fi
phone: 045 2319 233
username: Allugaattori
picture: static/toimijat/2019/alex_korpela_19.JPG
description: "Järjestää yhdessä Isännän kanssa kiltalaisille mitä moninaisimpia tapahtumia ja huolehtii elintarvikkeiden välittämisestä killistien vatsalaukkuihin. Organisoi huvitoimikunnan toimintaa ja kehittää killan tapahtumakulttuuria.
Ota yhteyttä IE:hen, jos asiasi koskee killan tapahtumia."
- position_name: Opintomestari
person_name: Akseli Konttas
email: opintomestari@as.fi
phone: 0400 765 799
username: Aakee
picture: static/toimijat/2019/akseli_konttas_19.JPG
description: "Ylläpitää yhteyttä koulun henkilökuntaan, pitää itsensä tietoisena tutkinto-ohjelmassa tapahtuvista muutoksista ja vastaa kiltalaisten edunvalvonnasta. Johtaa killan opintotoimikuntaa.
Opintomestariin voi ottaa yhteyttä opintoihin liittyvissä asioissa."
- position_name: Yrityssuhdevastaava
person_name: Jyri Kolu
email: yrityssuhdemestari@as.fi
phone: 050 3010 757
username: jjkolu
picture: static/toimijat/2019/jyri_kolu_19_2.JPG
description: "Vastaa killan suhteista yrityksiin ja excursioiden järjestämisestä. Organisoi killan mainosmyyntiä sekä kehittää killan mainetta ja kunniaa yritysten silmissä. Johtaa killan yrityssuhdetoimikuntaa.
Ota yhteyttä yrityssuhdemestariin, jos asiasi liittyy yrityssuhteisiin."
- position_name: Kulttuurimestari
person_name: Juhana Kekoni
email: kulttuurimestari@as.fi
phone: 040 552 0106
username: Keksii
picture: static/toimijat/2019/juhana_kekoni_19.JPG
description: "Pitää yllä killan vanhoja ulkosuhteita sekä luo uusia. Johtaa kulttuuri- ja liikuntatoimikuntaa ja järjestää sen jäsenten kanssa killalle esim. kulttuuritapahtumia ja lajikokeiluja. Tykkää pitää yhteyttä moneen eri tahoon ja hengailla myös muun kuin violetin väristen ihmisten kanssa.
Ota yhteyttä kulttuurimestariin, jos asiasi liittyy kulttuuriasioihin." | 46.777778 | 302 | 0.801465 |
9fc408c0b0fae4d509c85b76ce6c5e0aea67c1a4 | 202 | yml | YAML | .travis.yml | abouthiroppy/jo | 5e1048ce1a6f25e8f15c5eb68e932929171097d1 | [
"MIT"
] | null | null | null | .travis.yml | abouthiroppy/jo | 5e1048ce1a6f25e8f15c5eb68e932929171097d1 | [
"MIT"
] | null | null | null | .travis.yml | abouthiroppy/jo | 5e1048ce1a6f25e8f15c5eb68e932929171097d1 | [
"MIT"
] | null | null | null | sudo: false
language: node_js
node_js:
- stable
- 6
- 5
- 4
after_success:
- npm install codecov
- ./node_modules/.bin/codecov
notifications:
slack: about-hiroppy:rzKYJ3zRPzBaak3TeaTmPSH5
| 15.538462 | 47 | 0.722772 |
b741da6f804ba4a6c2e5998a585dfc537223312e | 44 | yaml | YAML | hello-world.yaml | jaysterp/acr-tasks | 0db369459fd6b6f3b476cb2ae121310b134c2b9a | [
"MIT"
] | null | null | null | hello-world.yaml | jaysterp/acr-tasks | 0db369459fd6b6f3b476cb2ae121310b134c2b9a | [
"MIT"
] | null | null | null | hello-world.yaml | jaysterp/acr-tasks | 0db369459fd6b6f3b476cb2ae121310b134c2b9a | [
"MIT"
] | null | null | null | version: v1.0.0
steps:
- cmd: hello-world
| 11 | 20 | 0.659091 |
b00f79eec7296114ab6c9aeb73f793c62f6e4d3b | 345 | yml | YAML | test/fixtures/doctors.yml | peterk99/clinic | ae302d133505b9b1c849066065832810635337c3 | [
"Apache-2.0"
] | null | null | null | test/fixtures/doctors.yml | peterk99/clinic | ae302d133505b9b1c849066065832810635337c3 | [
"Apache-2.0"
] | null | null | null | test/fixtures/doctors.yml | peterk99/clinic | ae302d133505b9b1c849066065832810635337c3 | [
"Apache-2.0"
] | null | null | null | # Read about fixtures at http://api.rubyonrails.org/classes/ActiveRecord/FixtureSet.html
one:
name: MyString
address: MyString
city: MyString
state: MyString
zip: 1
certified_by: MyString
experience: 1
two:
name: MyString
address: MyString
city: MyString
state: MyString
zip: 1
certified_by: MyString
experience: 1
| 17.25 | 88 | 0.733333 |
ab090d06bc4f038bb8071948a7c5fc2f04e42a45 | 32 | yml | YAML | testnet/gen/ASff00_0_211/prometheus/br.yml | marcfrei/scion-time | 5f6ebe8b9d40e4bfe3693d0834eb5df80ccf15bd | [
"Apache-2.0"
] | null | null | null | testnet/gen/ASff00_0_211/prometheus/br.yml | marcfrei/scion-time | 5f6ebe8b9d40e4bfe3693d0834eb5df80ccf15bd | [
"Apache-2.0"
] | null | null | null | testnet/gen/ASff00_0_211/prometheus/br.yml | marcfrei/scion-time | 5f6ebe8b9d40e4bfe3693d0834eb5df80ccf15bd | [
"Apache-2.0"
] | null | null | null | - targets:
- 10.0.0.185:30442
| 10.666667 | 20 | 0.59375 |
b62d7852da846d60d6bd43d2c0a12dc57838368a | 38 | yml | YAML | playbooks/linux/vulnerability/dvwa/metadata.yml | schutzwerk/AzureGenerat0r | ac92c5e04b96c5dc56a42e01ebade4ed034b2e37 | [
"MIT"
] | 4 | 2019-04-01T20:45:26.000Z | 2021-10-06T08:02:06.000Z | playbooks/linux/vulnerability/dvwa/metadata.yml | schutzwerk/AzureGenerat0r | ac92c5e04b96c5dc56a42e01ebade4ed034b2e37 | [
"MIT"
] | 6 | 2021-04-20T17:24:39.000Z | 2021-08-05T12:26:21.000Z | playbooks/linux/vulnerability/dvwa/metadata.yml | schutzwerk/AzureGenerat0r | ac92c5e04b96c5dc56a42e01ebade4ed034b2e37 | [
"MIT"
] | 1 | 2020-10-02T10:21:52.000Z | 2020-10-02T10:21:52.000Z | access: remote
protocol: http
port: 80 | 12.666667 | 14 | 0.789474 |
a03af99f7d46bd382b15cbdf80efe530e80a0ee4 | 429 | yml | YAML | postgres_exporter/common/pg14/queries_pg_stat_statements_reset_info.yml | pmereddy1/pgmonitor | e3f0ed2d25936116e2b5f17021301b1a87c2a745 | [
"Apache-2.0"
] | 301 | 2018-01-16T15:54:39.000Z | 2022-03-28T16:03:47.000Z | postgres_exporter/common/pg14/queries_pg_stat_statements_reset_info.yml | pmereddy1/pgmonitor | e3f0ed2d25936116e2b5f17021301b1a87c2a745 | [
"Apache-2.0"
] | 131 | 2018-02-06T21:42:48.000Z | 2022-03-30T15:40:06.000Z | postgres_exporter/common/pg14/queries_pg_stat_statements_reset_info.yml | pmereddy1/pgmonitor | e3f0ed2d25936116e2b5f17021301b1a87c2a745 | [
"Apache-2.0"
] | 96 | 2018-01-11T19:52:30.000Z | 2022-03-02T11:59:35.000Z | ###
#
# Begin File: pg_stat_statements_reset_info.yml
#
# Copyright 2017-2021 Crunchy Data Solutions, Inc. All Rights Reserved.
#
###
ccp_pg_stat_statements_reset:
query: "select monitor.pg_stat_statements_reset_info(#PG_STAT_STATEMENTS_THROTTLE_MINUTES#) as time"
metrics:
- time:
usage: "GAUGE"
description: "Epoch time when stats were reset"
###
#
# End File: pg_stat_statements_reset_info.yml
#
###
| 20.428571 | 102 | 0.727273 |
61b8c7c2cd37dec6d452f9831a3bee48af92518a | 567 | yml | YAML | src/wordset/data/yml/ere_.yml | henge-tech/henge | 33d958cf4e170fe27c92fd6dd426558d81ba46cb | [
"MIT"
] | 2 | 2016-08-13T03:14:37.000Z | 2016-08-21T14:09:13.000Z | src/wordset/data/yml/ere_.yml | koseki/wordcircle | 17472c450b89fc780765dcb8228b27eb60dd6ea5 | [
"MIT"
] | 9 | 2017-09-18T08:37:47.000Z | 2022-02-26T03:35:15.000Z | src/wordset/data/yml/ere_.yml | koseki/wordcircle | 17472c450b89fc780765dcb8228b27eb60dd6ea5 | [
"MIT"
] | null | null | null | ---
pattern: ere_
hi_scored_words_count: 8
scored_words_count: 5
total_words: 29
score: 1231815
score_per_word: 94755
hi_scored_words:
ere: 18740
erect: 10674
erected: 9546
erectile: 24515
erecting: 42562
erection: 11626
erections: 44052
erector: 71896
scored_words:
erectors: 126005
erects: 136330
erelong: 234564
eremite: 189095
erewhile: 312210
not_scored_words:
- Erebus
- Erechtheum
- Erechtheus
- Erector
- Ereshkigal
- Erevan
- Erewhon
- erective
- erectly
- erectness
- eremites
- eremitic
- eremitical
- erenow
- erepsin
- erethism
| 14.175 | 24 | 0.751323 |
113a4fde1ac7ec826d7884145e9c981c0362820e | 249 | yml | YAML | .github/semantic.yml | ValentinBouffard/serious-game | 0202839245afca44af602853055f197ca4371876 | [
"MIT"
] | null | null | null | .github/semantic.yml | ValentinBouffard/serious-game | 0202839245afca44af602853055f197ca4371876 | [
"MIT"
] | null | null | null | .github/semantic.yml | ValentinBouffard/serious-game | 0202839245afca44af602853055f197ca4371876 | [
"MIT"
] | null | null | null | titleOnly: false
scopes:
- brand
- inspector
- admin
- inspection
- product
- api
- public-api
- processes
- batches
- elastic
- front
- report
- po
- thumbnails
- deps
- deps-dev
- entity
allowMergeCommits: true
| 10.826087 | 23 | 0.610442 |
18a114ecd31b25e59c304a4c470facb110356d43 | 203 | yml | YAML | input/data/projects/exceptionless.yml | kaeedo/discoverdotnet | f9e348682a4fe1fde569a4fe5833ae9c839742ce | [
"MIT"
] | 3 | 2019-01-02T10:10:00.000Z | 2020-04-10T21:30:31.000Z | input/data/projects/exceptionless.yml | kaeedo/discoverdotnet | f9e348682a4fe1fde569a4fe5833ae9c839742ce | [
"MIT"
] | null | null | null | input/data/projects/exceptionless.yml | kaeedo/discoverdotnet | f9e348682a4fe1fde569a4fe5833ae9c839742ce | [
"MIT"
] | 1 | 2020-04-10T21:30:34.000Z | 2020-04-10T21:30:34.000Z | Chat: https://slack.exceptionless.com/
Donations: https://donorbox.org/exceptionless
Language: C#
NuGet: Exceptionless
Source: https://github.com/exceptionless/Exceptionless.Net
Tags:
- Logging
| 25.375 | 59 | 0.763547 |
e9153190ea86645010e6e944ec9b3ae8de0a6e9f | 431 | yaml | YAML | router-metrics/image_rhel_override.yaml | vbusch/jboss-amqmaas-images | 3af95105c22703baa345cae4bedac153e4a77a67 | [
"Apache-2.0"
] | null | null | null | router-metrics/image_rhel_override.yaml | vbusch/jboss-amqmaas-images | 3af95105c22703baa345cae4bedac153e4a77a67 | [
"Apache-2.0"
] | null | null | null | router-metrics/image_rhel_override.yaml | vbusch/jboss-amqmaas-images | 3af95105c22703baa345cae4bedac153e4a77a67 | [
"Apache-2.0"
] | null | null | null | schema_version: 1
version: 1.0
name: jboss-amqmaas-1/amqmaas10-routermetrics-openshift
description: "Metrics for AMQMaas"
from: jboss-amqmaas-1-tech-preview/amqmaas10-qpidproton-openshift:latest
labels:
- name: "io.k8s.description"
value: "Metrics for AMQMaas router"
- name: "io.k8s.display-name"
value: "AMQMaas Router Metrics"
- name: "io.openshift.tags"
value: "amqmaas, router-metrics, message"
| 30.785714 | 72 | 0.723898 |
be205febcbcb78fd077bb7db43971f11778c122f | 405 | yml | YAML | ansible/roles/common/tasks/main.yml | mani-sh-reddy/QA-Help-Queue-App | 02ff842d86ca378b5f01c9711819ba7e95b0b035 | [
"MIT"
] | 1 | 2021-04-27T18:28:06.000Z | 2021-04-27T18:28:06.000Z | ansible/roles/common/tasks/main.yml | mani-sh-reddy/QA-Help-Queue-App | 02ff842d86ca378b5f01c9711819ba7e95b0b035 | [
"MIT"
] | null | null | null | ansible/roles/common/tasks/main.yml | mani-sh-reddy/QA-Help-Queue-App | 02ff842d86ca378b5f01c9711819ba7e95b0b035 | [
"MIT"
] | 2 | 2021-05-10T09:30:32.000Z | 2021-05-12T10:32:19.000Z | ---
- name: Update and upgrade apt packages
become: true
apt:
upgrade: yes
update_cache: yes
cache_valid_time: 86400 #One day
- name: Install docker
snap:
name: "{{ item }}"
state: present
with_items:
- 'docker'
- name: Install dependencies
apt:
pkg:
- docker-compose
- mysql-client
- openjdk-8-jre
- maven
state: present | 16.875 | 41 | 0.577778 |
33dc55319525904e31faf4bf2e6e1f3f75ca42db | 22 | yaml | YAML | data/nodes/agent1.localdomain.yaml | Moglius/control-repo | 22eae650e7a17ddb9eb48c34e110e2ea887c99a9 | [
"Apache-2.0"
] | null | null | null | data/nodes/agent1.localdomain.yaml | Moglius/control-repo | 22eae650e7a17ddb9eb48c34e110e2ea887c99a9 | [
"Apache-2.0"
] | null | null | null | data/nodes/agent1.localdomain.yaml | Moglius/control-repo | 22eae650e7a17ddb9eb48c34e110e2ea887c99a9 | [
"Apache-2.0"
] | null | null | null | ---
apache::port: 8088 | 11 | 18 | 0.636364 |
2f22f830ffa0c22914775a5623e3425f192407b1 | 1,341 | yml | YAML | appveyor.yml | CodeArtistsEs/codeartists-api | d5b6bd57f41f8410e37ecfdd18e02633acd30d5e | [
"MIT"
] | null | null | null | appveyor.yml | CodeArtistsEs/codeartists-api | d5b6bd57f41f8410e37ecfdd18e02633acd30d5e | [
"MIT"
] | null | null | null | appveyor.yml | CodeArtistsEs/codeartists-api | d5b6bd57f41f8410e37ecfdd18e02633acd30d5e | [
"MIT"
] | null | null | null | version: 1.0.{build}
image: Visual Studio 2017
# to be able to do RDP on the VM where the worker is running
init:
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
install:
- nuget restore
build:
project: codeartistsapi.sln
verbosity: detailed
environment:
COVERALLS_REPO_TOKEN:
secure: Xs5lc3/PPmTvmDoObEHVfTauYQtCnrhaiNkvFq5QxKhGeeR2dhQiSpVirSNepivy
after_test:
# generate report using XUnit testing framework:
# - cmd: dotnet test
- C:\projects\codeartists-api\packages\opencover\4.6.519\tools\OpenCover.Console.exe -register:user -target:"c:\Program Files\dotnet\dotnet.exe" -targetargs:"test --logger:trx;LogFileName=results.trx /p:DebugType=full C:\projects\codeartists-api\codeartistsapi.Tests\codeartistsapi.Tests.csproj" -output:".\coverage.xml" -filter:"+[*]*"
- C:\projects\codeartists-api\packages\coveralls.io\1.4.2\tools\coveralls.net.exe --opencover coverage.xml -r %COVERALLS_REPO_TOKEN%
# to be able to do RDP on the VM where the worker is running on final stage (a file neews to be removed in desktop to finish the build)
#on_finish:
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
| 47.892857 | 342 | 0.753915 |
e84323cb4cc004a416fe70b930449138ae1157c4 | 575 | yml | YAML | .semaphore/semaphore.yml | yu81/go-binary-playground | 98ef7d8b0fb97a05d19cc58d32a81340b92bcdef | [
"MIT"
] | null | null | null | .semaphore/semaphore.yml | yu81/go-binary-playground | 98ef7d8b0fb97a05d19cc58d32a81340b92bcdef | [
"MIT"
] | null | null | null | .semaphore/semaphore.yml | yu81/go-binary-playground | 98ef7d8b0fb97a05d19cc58d32a81340b92bcdef | [
"MIT"
] | null | null | null | # For more Go information and examples, see
# https://docs.semaphoreci.com/article/86-language-golang
version: v1.0
name: Hello Semaphore
agent:
machine:
type: e1-standard-2
os_image: ubuntu1804
blocks:
- name: Golang example
task:
jobs:
- name: Run Go
commands:
- checkout
- sem-version go 1.12
- go get -d github.com/yu81/go-binary-playground
- go test -v -bench=. -benchmem ./...
- sem-version go 1.11
- go test -v -bench=. -benchmem ./...
| 27.380952 | 61 | 0.549565 |
79ca7013c85f344658af6626e9db7827a8c84cba | 1,392 | yml | YAML | src/pages/_data/activity.yml | muhginanjar/tabler | de64c2d8f350039c76294398ec838305cb5d4126 | [
"MIT"
] | 25,881 | 2018-02-05T22:28:56.000Z | 2022-03-31T19:57:30.000Z | src/pages/_data/activity.yml | ziyacakmak/tabler | 388adaec1392ab27b0d84cf17c57deaf57479925 | [
"MIT"
] | 844 | 2018-02-22T15:23:55.000Z | 2022-03-30T22:18:35.000Z | src/pages/_data/activity.yml | ziyacakmak/tabler | 388adaec1392ab27b0d84cf17c57deaf57479925 | [
"MIT"
] | 3,575 | 2018-02-20T02:42:43.000Z | 2022-03-31T09:31:16.000Z | - text: "<strong>%p</strong> commented on your <strong>\"I'm not a witch.\"</strong> post."
- text: "It's <strong>%p</strong>'s birthday. Wish him well!"
- text: "<strong>%p</strong> posted <strong>\"Well, what do you want?\"</strong>."
- text: "<strong>%p</strong> created a new project <strong>Morning alarm clock</strong>."
- text: "<strong>%p</strong> liked your photo."
- text: "<strong>%p</strong> registered new client as <strong>%c</strong>."
- text: "<strong>%p</strong> closed a new deal on project <strong>Pen Pineapple Apple Pen</strong>."
- text: "<strong>%p</strong> created a new project for <strong>%c</strong>."
- text: "<strong>%p</strong> change status of <strong>Tabler Icons</strong> from <strong>open</strong> to <strong>closed</strong>."
- text: "<strong>%p</strong> liked <strong>Tabler UI Kit</strong>."
- text: "<strong>%p</strong> posted new video."
- text: "<strong>%p</strong> and 3 others followed you."
- text: "<strong>%p</strong> upload 3 new photos to category <strong>Inspirations</strong>."
- text: "<strong>%p</strong> made a <strong>$10</strong> donation."
- text: "<strong>%p</strong> created a profile."
- text: "<strong>%p</strong> hosted the event <strong>Tabler UI Birthday</strong>."
- text: "<strong>%p</strong> mentioned you on <strong>Best of 2020</strong>."
- text: "<strong>%p</strong> sent a Review Request to <strong>Amanda Blake</strong>."
| 73.263158 | 131 | 0.677443 |
a39f17c7d16e5f54c537431581291756d5e56ea8 | 215 | yml | YAML | catalog.api.yml | spring-operator/eShopOnContainers-config | eb5473d6620fc9495c9ac2410810867a298ebdd2 | [
"Apache-2.0"
] | 1 | 2019-03-16T00:15:00.000Z | 2019-03-16T00:15:00.000Z | catalog.api.yml | spring-operator/eShopOnContainers-config | eb5473d6620fc9495c9ac2410810867a298ebdd2 | [
"Apache-2.0"
] | null | null | null | catalog.api.yml | spring-operator/eShopOnContainers-config | eb5473d6620fc9495c9ac2410810867a298ebdd2 | [
"Apache-2.0"
] | 1 | 2019-03-12T02:32:22.000Z | 2019-03-12T02:32:22.000Z | ---
mySql:
client:
database: Microsoft.eShopOnContainers.Services.CatalogDb
PicBaseUrl: ${ESHOP_AZURE_STORAGE_CATALOG_URL?http://localhost:5202/api/v1/c/catalog/items/[0]/pic/}
SubscriptionClientName: Catalog
| 30.714286 | 100 | 0.795349 |
432986255067d6040a6959cf55a8f244b738e52f | 53,886 | yaml | YAML | src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_auto_update.yaml | sudokylumaster/azure-cli | 5bbb75e4860dcd086ca8b4c413a64acb9a6dbb2f | [
"MIT"
] | 1 | 2020-08-25T00:21:50.000Z | 2020-08-25T00:21:50.000Z | src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_auto_update.yaml | sudokylumaster/azure-cli | 5bbb75e4860dcd086ca8b4c413a64acb9a6dbb2f | [
"MIT"
] | 1 | 2021-02-25T19:22:13.000Z | 2021-02-25T19:22:13.000Z | src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vm_auto_update.yaml | sudokylumaster/azure-cli | 5bbb75e4860dcd086ca8b4c413a64acb9a6dbb2f | [
"MIT"
] | 1 | 2021-03-02T09:26:15.000Z | 2021-03-02T09:26:15.000Z | interactions:
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm create
Connection:
- keep-alive
ParameterSetName:
- -g -n --image --enable-agent --enable-auto-update --patch-mode --admin-username
--admin-password --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
Azure-SDK-For-Python AZURECLI/2.10.1
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_auto_update_000001?api-version=2020-10-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001","name":"cli_test_vm_auto_update_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2020-08-18T07:13:09Z","StorageType":"Standard_LRS"},"properties":{"provisioningState":"Succeeded"}}'
headers:
cache-control:
- no-cache
content-length:
- '457'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:13:15 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- '*/*'
Accept-Encoding:
- gzip, deflate
Connection:
- keep-alive
User-Agent:
- python-requests/2.22.0
method: GET
uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json
response:
body:
string: "{\n \"$schema\": \"http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json\",\n
\ \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {},\n \"variables\":
{},\n \"resources\": [],\n \"outputs\": {\n \"aliases\": {\n \"type\":
\"object\",\n \"value\": {\n \"Linux\": {\n \"CentOS\":
{\n \"publisher\": \"OpenLogic\",\n \"offer\": \"CentOS\",\n
\ \"sku\": \"7.5\",\n \"version\": \"latest\"\n },\n
\ \"CoreOS\": {\n \"publisher\": \"CoreOS\",\n \"offer\":
\"CoreOS\",\n \"sku\": \"Stable\",\n \"version\": \"latest\"\n
\ },\n \"Debian\": {\n \"publisher\": \"Debian\",\n
\ \"offer\": \"debian-10\",\n \"sku\": \"10\",\n \"version\":
\"latest\"\n },\n \"openSUSE-Leap\": {\n \"publisher\":
\"SUSE\",\n \"offer\": \"openSUSE-Leap\",\n \"sku\":
\"42.3\",\n \"version\": \"latest\"\n },\n \"RHEL\":
{\n \"publisher\": \"RedHat\",\n \"offer\": \"RHEL\",\n
\ \"sku\": \"7-LVM\",\n \"version\": \"latest\"\n },\n
\ \"SLES\": {\n \"publisher\": \"SUSE\",\n \"offer\":
\"SLES\",\n \"sku\": \"15\",\n \"version\": \"latest\"\n
\ },\n \"UbuntuLTS\": {\n \"publisher\": \"Canonical\",\n
\ \"offer\": \"UbuntuServer\",\n \"sku\": \"18.04-LTS\",\n
\ \"version\": \"latest\"\n }\n },\n \"Windows\":
{\n \"Win2019Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n
\ \"offer\": \"WindowsServer\",\n \"sku\": \"2019-Datacenter\",\n
\ \"version\": \"latest\"\n },\n \"Win2016Datacenter\":
{\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\":
\"WindowsServer\",\n \"sku\": \"2016-Datacenter\",\n \"version\":
\"latest\"\n },\n \"Win2012R2Datacenter\": {\n \"publisher\":
\"MicrosoftWindowsServer\",\n \"offer\": \"WindowsServer\",\n \"sku\":
\"2012-R2-Datacenter\",\n \"version\": \"latest\"\n },\n
\ \"Win2012Datacenter\": {\n \"publisher\": \"MicrosoftWindowsServer\",\n
\ \"offer\": \"WindowsServer\",\n \"sku\": \"2012-Datacenter\",\n
\ \"version\": \"latest\"\n },\n \"Win2008R2SP1\":
{\n \"publisher\": \"MicrosoftWindowsServer\",\n \"offer\":
\"WindowsServer\",\n \"sku\": \"2008-R2-SP1\",\n \"version\":
\"latest\"\n }\n }\n }\n }\n }\n}\n"
headers:
accept-ranges:
- bytes
access-control-allow-origin:
- '*'
cache-control:
- max-age=300
connection:
- keep-alive
content-length:
- '2501'
content-security-policy:
- default-src 'none'; style-src 'unsafe-inline'; sandbox
content-type:
- text/plain; charset=utf-8
date:
- Tue, 18 Aug 2020 07:13:15 GMT
etag:
- W/"540044b4084c3c314537f1baa1770f248628b2bc9ba0328f1004c33862e049da"
expires:
- Tue, 18 Aug 2020 07:18:15 GMT
source-age:
- '212'
strict-transport-security:
- max-age=31536000
vary:
- Authorization,Accept-Encoding, Accept-Encoding
via:
- 1.1 varnish (Varnish/6.0)
- 1.1 varnish
x-cache:
- HIT, HIT
x-cache-hits:
- 2, 1
x-content-type-options:
- nosniff
x-fastly-request-id:
- 17d8986497c3b899d227bbeb74e90ac0c1cdc58e
x-frame-options:
- deny
x-github-request-id:
- 2326:5E20:45838D:4A6DBB:5F3B78A3
x-served-by:
- cache-sin18040-SIN
x-timer:
- S1597734796.798300,VS0,VE0
x-xss-protection:
- 1; mode=block
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm create
Connection:
- keep-alive
ParameterSetName:
- -g -n --image --enable-agent --enable-auto-update --patch-mode --admin-username
--admin-password --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01
response:
body:
string: '{"value":[]}'
headers:
cache-control:
- no-cache
content-length:
- '12'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:13:16 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
status:
code: 200
message: OK
- request:
body: '{"properties": {"template": {"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0", "parameters": {"adminPassword": {"type": "securestring",
"metadata": {"description": "Secure adminPassword"}}}, "variables": {}, "resources":
[{"name": "vm1VNET", "type": "Microsoft.Network/virtualNetworks", "location":
"westus", "apiVersion": "2015-06-15", "dependsOn": [], "tags": {}, "properties":
{"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name":
"vm1Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": "Microsoft.Network/networkSecurityGroups",
"name": "vm1NSG", "apiVersion": "2015-06-15", "location": "westus", "tags":
{}, "dependsOn": []}, {"apiVersion": "2018-01-01", "type": "Microsoft.Network/publicIPAddresses",
"name": "vm1PublicIP", "location": "westus", "tags": {}, "dependsOn": [], "properties":
{"publicIPAllocationMethod": null}}, {"apiVersion": "2015-06-15", "type": "Microsoft.Network/networkInterfaces",
"name": "vm1VMNic", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/virtualNetworks/vm1VNET",
"Microsoft.Network/networkSecurityGroups/vm1NSG", "Microsoft.Network/publicIpAddresses/vm1PublicIP"],
"properties": {"ipConfigurations": [{"name": "ipconfigvm1", "properties": {"privateIPAllocationMethod":
"Dynamic", "subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet"},
"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"}}}],
"networkSecurityGroup": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"}}},
{"apiVersion": "2020-06-01", "type": "Microsoft.Compute/virtualMachines", "name":
"vm1", "location": "westus", "tags": {}, "dependsOn": ["Microsoft.Network/networkInterfaces/vm1VMNic"],
"properties": {"hardwareProfile": {"vmSize": "Standard_DS1_v2"}, "networkProfile":
{"networkInterfaces": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"}]},
"storageProfile": {"osDisk": {"createOption": "fromImage", "name": null, "caching":
"ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference":
{"publisher": "MicrosoftWindowsServer", "offer": "WindowsServer", "sku": "2019-Datacenter",
"version": "latest"}}, "osProfile": {"computerName": "vm1", "adminUsername":
"azureuser", "adminPassword": "[parameters(''adminPassword'')]", "windowsConfiguration":
{"provisionVMAgent": true, "enableAutomaticUpdates": true, "patchSettings":
{"patchMode": "AutomaticByOS"}}}}}], "outputs": {}}, "parameters": {"adminPassword":
{"value": "testPassword0"}}, "mode": "Incremental"}}'
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm create
Connection:
- keep-alive
Content-Length:
- '3189'
Content-Type:
- application/json; charset=utf-8
ParameterSetName:
- -g -n --image --enable-agent --enable-auto-update --patch-mode --admin-username
--admin-password --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
Azure-SDK-For-Python AZURECLI/2.10.1
accept-language:
- en-US
method: PUT
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_auto_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_L4BXP7Im4205C3AVbnLoXTpfKslMwxfa","name":"vm_deploy_L4BXP7Im4205C3AVbnLoXTpfKslMwxfa","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5980398612848371665","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2020-08-18T07:13:20.5132573Z","duration":"PT2.4635527S","correlationId":"2fbdccc5-204f-49e2-9c18-9d643eb0a0dd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}]}}'
headers:
azure-asyncoperation:
- https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_auto_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_L4BXP7Im4205C3AVbnLoXTpfKslMwxfa/operationStatuses/08586038720874279200?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '2781'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:13:21 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
code: 201
message: Created
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm create
Connection:
- keep-alive
ParameterSetName:
- -g -n --image --enable-agent --enable-auto-update --patch-mode --admin-username
--admin-password --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
Azure-SDK-For-Python AZURECLI/2.10.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_auto_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586038720874279200?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
headers:
cache-control:
- no-cache
content-length:
- '20'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:13:52 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm create
Connection:
- keep-alive
ParameterSetName:
- -g -n --image --enable-agent --enable-auto-update --patch-mode --admin-username
--admin-password --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
Azure-SDK-For-Python AZURECLI/2.10.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_auto_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586038720874279200?api-version=2020-06-01
response:
body:
string: '{"status":"Running"}'
headers:
cache-control:
- no-cache
content-length:
- '20'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:14:22 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm create
Connection:
- keep-alive
ParameterSetName:
- -g -n --image --enable-agent --enable-auto-update --patch-mode --admin-username
--admin-password --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
Azure-SDK-For-Python AZURECLI/2.10.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_auto_update_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08586038720874279200?api-version=2020-06-01
response:
body:
string: '{"status":"Succeeded"}'
headers:
cache-control:
- no-cache
content-length:
- '22'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:14:53 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm create
Connection:
- keep-alive
ParameterSetName:
- -g -n --image --enable-agent --enable-auto-update --patch-mode --admin-username
--admin-password --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-resource/10.1.0
Azure-SDK-For-Python AZURECLI/2.10.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vm_auto_update_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2020-10-01
response:
body:
string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Resources/deployments/vm_deploy_L4BXP7Im4205C3AVbnLoXTpfKslMwxfa","name":"vm_deploy_L4BXP7Im4205C3AVbnLoXTpfKslMwxfa","type":"Microsoft.Resources/deployments","properties":{"templateHash":"5980398612848371665","parameters":{"adminPassword":{"type":"SecureString"}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2020-08-18T07:14:36.9628644Z","duration":"PT1M18.9131598S","correlationId":"2fbdccc5-204f-49e2-9c18-9d643eb0a0dd","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"networkSecurityGroups","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"networkInterfaces","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachines","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vm1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG","resourceType":"Microsoft.Network/networkSecurityGroups","resourceName":"vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vm1PublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic","resourceType":"Microsoft.Network/networkInterfaces","resourceName":"vm1VMNic"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Compute/virtualMachines/vm1","resourceType":"Microsoft.Compute/virtualMachines","resourceName":"vm1"}],"outputs":{},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Compute/virtualMachines/vm1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET"}]}}'
headers:
cache-control:
- no-cache
content-length:
- '3848'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:14:53 GMT
expires:
- '-1'
pragma:
- no-cache
strict-transport-security:
- max-age=31536000; includeSubDomains
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm create
Connection:
- keep-alive
ParameterSetName:
- -g -n --image --enable-agent --enable-auto-update --patch-mode --admin-username
--admin-password --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?$expand=instanceView&api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"bf54ec01-31b5-4a22-bf02-003792abb179\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\":
\"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
\"17763.1397.2008070242\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
\"Windows\",\r\n \"name\": \"vm1_disk1_296eb61df3a5484fbde77656e1b8e774\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_AUTO_UPDATE_554FNIYJ2QM2LQSS6NGOLWJNTFVF3CHKLHOY57EXIQWGARMONEL/providers/Microsoft.Compute/disks/vm1_disk1_296eb61df3a5484fbde77656e1b8e774\"\r\n
\ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\":
[]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n
\ \"adminUsername\": \"azureuser\",\r\n \"windowsConfiguration\":
{\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\":
true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n
\ }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n
\ \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\":
{\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n
\ {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n
\ \"level\": \"Warning\",\r\n \"displayStatus\": \"Not
Ready\",\r\n \"message\": \"VM status blob is found but not yet
populated.\",\r\n \"time\": \"2020-08-18T07:14:55+00:00\"\r\n }\r\n
\ ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\":
\"vm1_disk1_296eb61df3a5484fbde77656e1b8e774\",\r\n \"statuses\":
[\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
succeeded\",\r\n \"time\": \"2020-08-18T07:13:49.3342134+00:00\"\r\n
\ }\r\n ]\r\n }\r\n ],\r\n \"hyperVGeneration\":
\"V1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning
succeeded\",\r\n \"time\": \"2020-08-18T07:14:33.9592182+00:00\"\r\n
\ },\r\n {\r\n \"code\": \"PowerState/running\",\r\n
\ \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n
\ }\r\n ]\r\n }\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- '3189'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:14:55 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-HTTPAPI/2.0
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/LowCostGet3Min;3996,Microsoft.Compute/LowCostGet30Min;31995
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm create
Connection:
- keep-alive
ParameterSetName:
- -g -n --image --enable-agent --enable-auto-update --patch-mode --admin-username
--admin-password --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm1VMNic\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\",\r\n
\ \"etag\": \"W/\\\"306e2439-b6c8-4766-98f7-28abdc257b18\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"resourceGuid\": \"ab239e42-efac-4e86-9ef6-aabdb2930967\",\r\n
\ \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfigvm1\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\",\r\n
\ \"etag\": \"W/\\\"306e2439-b6c8-4766-98f7-28abdc257b18\\\"\",\r\n
\ \"type\": \"Microsoft.Network/networkInterfaces/ipConfigurations\",\r\n
\ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n
\ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\":
\"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\"\r\n
\ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/virtualNetworks/vm1VNET/subnets/vm1Subnet\"\r\n
\ },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\":
\"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\":
[],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\":
\"rvwddhy5wlle5mwrmxmzyst3bd.dx.internal.cloudapp.net\"\r\n },\r\n \"macAddress\":
\"00-22-48-08-7B-30\",\r\n \"enableAcceleratedNetworking\": false,\r\n
\ \"enableIPForwarding\": false,\r\n \"networkSecurityGroup\": {\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkSecurityGroups/vm1NSG\"\r\n
\ },\r\n \"primary\": true,\r\n \"virtualMachine\": {\r\n \"id\":
\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Compute/virtualMachines/vm1\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- '2568'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:14:55 GMT
etag:
- W/"306e2439-b6c8-4766-98f7-28abdc257b18"
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-HTTPAPI/2.0
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- 9e23bd76-208a-4409-b8f4-ebc9ab3f210b
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm create
Connection:
- keep-alive
ParameterSetName:
- -g -n --image --enable-agent --enable-auto-update --patch-mode --admin-username
--admin-password --nsg-rule
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-network/11.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP?api-version=2018-01-01
response:
body:
string: "{\r\n \"name\": \"vm1PublicIP\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/publicIPAddresses/vm1PublicIP\",\r\n
\ \"etag\": \"W/\\\"1465f983-8144-4272-8a3c-c297af247857\\\"\",\r\n \"location\":
\"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\":
\"Succeeded\",\r\n \"resourceGuid\": \"97133ea6-a8d5-495e-be30-4efaa2ba6d83\",\r\n
\ \"ipAddress\": \"13.91.97.157\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n
\ \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\":
4,\r\n \"ipTags\": [],\r\n \"ipConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic/ipConfigurations/ipconfigvm1\"\r\n
\ }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n
\ \"sku\": {\r\n \"name\": \"Basic\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- '996'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:14:56 GMT
etag:
- W/"1465f983-8144-4272-8a3c-c297af247857"
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-HTTPAPI/2.0
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
x-ms-arm-service-request-id:
- 9276ae92-f887-4a43-8df0-088a27a6d57d
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm show
Connection:
- keep-alive
ParameterSetName:
- -g -n
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
accept-language:
- en-US
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Compute/virtualMachines/vm1?api-version=2020-06-01
response:
body:
string: "{\r\n \"name\": \"vm1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Compute/virtualMachines/vm1\",\r\n
\ \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\",\r\n
\ \"tags\": {},\r\n \"properties\": {\r\n \"vmId\": \"bf54ec01-31b5-4a22-bf02-003792abb179\",\r\n
\ \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_DS1_v2\"\r\n },\r\n
\ \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\":
\"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\":
\"2019-Datacenter\",\r\n \"version\": \"latest\",\r\n \"exactVersion\":
\"17763.1397.2008070242\"\r\n },\r\n \"osDisk\": {\r\n \"osType\":
\"Windows\",\r\n \"name\": \"vm1_disk1_296eb61df3a5484fbde77656e1b8e774\",\r\n
\ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n
\ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n
\ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_VM_AUTO_UPDATE_554FNIYJ2QM2LQSS6NGOLWJNTFVF3CHKLHOY57EXIQWGARMONEL/providers/Microsoft.Compute/disks/vm1_disk1_296eb61df3a5484fbde77656e1b8e774\"\r\n
\ },\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\":
[]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n
\ \"adminUsername\": \"azureuser\",\r\n \"windowsConfiguration\":
{\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\":
true,\r\n \"patchSettings\": {\r\n \"patchMode\": \"AutomaticByOS\"\r\n
\ }\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\":
true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n \"networkProfile\":
{\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Network/networkInterfaces/vm1VMNic\"}]},\r\n
\ \"provisioningState\": \"Succeeded\"\r\n }\r\n}"
headers:
cache-control:
- no-cache
content-length:
- '1986'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:14:56 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-HTTPAPI/2.0
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/LowCostGet3Min;3995,Microsoft.Compute/LowCostGet30Min;31994
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm assess-patches
Connection:
- keep-alive
Content-Length:
- '0'
ParameterSetName:
- -g -n
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
accept-language:
- en-US
method: POST
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vm_auto_update_000001/providers/Microsoft.Compute/virtualMachines/vm1/assessPatches?api-version=2020-06-01
response:
body:
string: ''
headers:
azure-asyncoperation:
- https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d72b76e-753c-4d6f-9560-66fc0cd5ed28?api-version=2020-06-01
cache-control:
- no-cache
content-length:
- '0'
date:
- Tue, 18 Aug 2020 07:14:57 GMT
expires:
- '-1'
location:
- https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d72b76e-753c-4d6f-9560-66fc0cd5ed28?monitor=true&api-version=2020-06-01
pragma:
- no-cache
server:
- Microsoft-HTTPAPI/2.0
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/PatchOperation3Min;189,Microsoft.Compute/PatchOperation30Min;599
x-ms-ratelimit-remaining-subscription-writes:
- '1199'
status:
code: 202
message: Accepted
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm assess-patches
Connection:
- keep-alive
ParameterSetName:
- -g -n
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d72b76e-753c-4d6f-9560-66fc0cd5ed28?api-version=2020-06-01
response:
body:
string: "{\r\n \"startTime\": \"2020-08-18T07:14:58.1311272+00:00\",\r\n \"status\":
\"InProgress\",\r\n \"name\": \"4d72b76e-753c-4d6f-9560-66fc0cd5ed28\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- '134'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:15:28 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-HTTPAPI/2.0
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm assess-patches
Connection:
- keep-alive
ParameterSetName:
- -g -n
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d72b76e-753c-4d6f-9560-66fc0cd5ed28?api-version=2020-06-01
response:
body:
string: "{\r\n \"startTime\": \"2020-08-18T07:14:58.1311272+00:00\",\r\n \"status\":
\"InProgress\",\r\n \"name\": \"4d72b76e-753c-4d6f-9560-66fc0cd5ed28\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- '134'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:15:58 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-HTTPAPI/2.0
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29993
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm assess-patches
Connection:
- keep-alive
ParameterSetName:
- -g -n
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d72b76e-753c-4d6f-9560-66fc0cd5ed28?api-version=2020-06-01
response:
body:
string: "{\r\n \"startTime\": \"2020-08-18T07:14:58.1311272+00:00\",\r\n \"status\":
\"InProgress\",\r\n \"name\": \"4d72b76e-753c-4d6f-9560-66fc0cd5ed28\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- '134'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:16:29 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-HTTPAPI/2.0
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/GetOperation3Min;14990,Microsoft.Compute/GetOperation30Min;29990
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm assess-patches
Connection:
- keep-alive
ParameterSetName:
- -g -n
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d72b76e-753c-4d6f-9560-66fc0cd5ed28?api-version=2020-06-01
response:
body:
string: "{\r\n \"startTime\": \"2020-08-18T07:14:58.1311272+00:00\",\r\n \"endTime\":
\"2020-08-18T07:16:46.9123993+00:00\",\r\n \"status\": \"Succeeded\",\r\n
\ \"properties\": {\r\n \"output\": {\"status\":\"Succeeded\",\"assessmentActivityId\":\"4d72b76e-753c-4d6f-9560-66fc0cd5ed28\",\"rebootPending\":true,\"criticalAndSecurityPatchCount\":1,\"otherPatchCount\":4,\"startDateTime\":\"2020-08-18T07:14:58.1467491+00:00\",\"availablePatches\":[{\"patchId\":\"b8ea1a5b-3636-4905-ae4b-d171014df7a6\",\"name\":\"Update
for Adobe Flash Player for Windows Server 2019 (1809) for x64-based Systems
(KB4462930)\",\"kbId\":\"4462930\",\"classifications\":[\"Updates\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"2018-10-15T00:00:00+00:00\",\"activityId\":\"4d72b76e-753c-4d6f-9560-66fc0cd5ed28\",\"lastModifiedDateTime\":\"2020-08-18T07:16:38.0109206+00:00\",\"assessmentState\":\"Available\"},{\"patchId\":\"2221dd34-39bb-4f16-b320-be49fe4a6b95\",\"name\":\"Windows
Malicious Software Removal Tool x64 - v5.82 (KB890830)\",\"kbId\":\"890830\",\"classifications\":[\"UpdateRollUp\"],\"rebootBehavior\":\"CanRequestReboot\",\"publishedDate\":\"2020-05-12T00:00:00+00:00\",\"activityId\":\"4d72b76e-753c-4d6f-9560-66fc0cd5ed28\",\"lastModifiedDateTime\":\"2020-08-18T07:16:38.0109206+00:00\",\"assessmentState\":\"Available\"},{\"patchId\":\"884a6101-3b1a-4b53-bede-2f8b6bf14772\",\"name\":\"2020-01
Update for Windows Server 2019 for x64-based Systems (KB4494174)\",\"kbId\":\"4494174\",\"classifications\":[\"Updates\"],\"rebootBehavior\":\"CanRequestReboot\",\"publishedDate\":\"2020-05-19T00:00:00+00:00\",\"activityId\":\"4d72b76e-753c-4d6f-9560-66fc0cd5ed28\",\"lastModifiedDateTime\":\"2020-08-18T07:16:38.0109206+00:00\",\"assessmentState\":\"Available\"},{\"patchId\":\"14b1604e-c818-4fae-b1df-2bd789ec173a\",\"name\":\"2020-06
Security Update for Adobe Flash Player for Windows Server 2019 for x64-based
Systems (KB4561600)\",\"kbId\":\"4561600\",\"classifications\":[\"Security\"],\"rebootBehavior\":\"CanRequestReboot\",\"publishedDate\":\"2020-06-09T00:00:00+00:00\",\"activityId\":\"4d72b76e-753c-4d6f-9560-66fc0cd5ed28\",\"lastModifiedDateTime\":\"2020-08-18T07:16:38.0109206+00:00\",\"assessmentState\":\"Available\"},{\"patchId\":\"191ceec1-9139-4d24-9029-a225a528e572\",\"name\":\"Security
Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version
1.321.1661.0)\",\"kbId\":\"2267602\",\"classifications\":[\"Definition\"],\"rebootBehavior\":\"NeverReboots\",\"publishedDate\":\"2020-08-18T00:00:00+00:00\",\"activityId\":\"4d72b76e-753c-4d6f-9560-66fc0cd5ed28\",\"lastModifiedDateTime\":\"2020-08-18T07:16:38.0109206+00:00\",\"assessmentState\":\"Available\"}]}\r\n
\ },\r\n \"name\": \"4d72b76e-753c-4d6f-9560-66fc0cd5ed28\"\r\n}"
headers:
cache-control:
- no-cache
content-length:
- '2530'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:16:59 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-HTTPAPI/2.0
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/GetOperation3Min;14987,Microsoft.Compute/GetOperation30Min;29987
status:
code: 200
message: OK
- request:
body: null
headers:
Accept:
- application/json
Accept-Encoding:
- gzip, deflate
CommandName:
- vm assess-patches
Connection:
- keep-alive
ParameterSetName:
- -g -n
User-Agent:
- python/3.7.4 (Windows-10-10.0.19041-SP0) msrest/0.6.9 msrest_azure/0.6.3 azure-mgmt-compute/13.0.0
Azure-SDK-For-Python AZURECLI/2.10.1
method: GET
uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/4d72b76e-753c-4d6f-9560-66fc0cd5ed28?monitor=true&api-version=2020-06-01
response:
body:
string: '{"status":"Succeeded","assessmentActivityId":"4d72b76e-753c-4d6f-9560-66fc0cd5ed28","rebootPending":true,"criticalAndSecurityPatchCount":1,"otherPatchCount":4,"startDateTime":"2020-08-18T07:14:58.1467491+00:00","availablePatches":[{"patchId":"b8ea1a5b-3636-4905-ae4b-d171014df7a6","name":"Update
for Adobe Flash Player for Windows Server 2019 (1809) for x64-based Systems
(KB4462930)","kbId":"4462930","classifications":["Updates"],"rebootBehavior":"NeverReboots","publishedDate":"2018-10-15T00:00:00+00:00","activityId":"4d72b76e-753c-4d6f-9560-66fc0cd5ed28","lastModifiedDateTime":"2020-08-18T07:16:38.0109206+00:00","assessmentState":"Available"},{"patchId":"2221dd34-39bb-4f16-b320-be49fe4a6b95","name":"Windows
Malicious Software Removal Tool x64 - v5.82 (KB890830)","kbId":"890830","classifications":["UpdateRollUp"],"rebootBehavior":"CanRequestReboot","publishedDate":"2020-05-12T00:00:00+00:00","activityId":"4d72b76e-753c-4d6f-9560-66fc0cd5ed28","lastModifiedDateTime":"2020-08-18T07:16:38.0109206+00:00","assessmentState":"Available"},{"patchId":"884a6101-3b1a-4b53-bede-2f8b6bf14772","name":"2020-01
Update for Windows Server 2019 for x64-based Systems (KB4494174)","kbId":"4494174","classifications":["Updates"],"rebootBehavior":"CanRequestReboot","publishedDate":"2020-05-19T00:00:00+00:00","activityId":"4d72b76e-753c-4d6f-9560-66fc0cd5ed28","lastModifiedDateTime":"2020-08-18T07:16:38.0109206+00:00","assessmentState":"Available"},{"patchId":"14b1604e-c818-4fae-b1df-2bd789ec173a","name":"2020-06
Security Update for Adobe Flash Player for Windows Server 2019 for x64-based
Systems (KB4561600)","kbId":"4561600","classifications":["Security"],"rebootBehavior":"CanRequestReboot","publishedDate":"2020-06-09T00:00:00+00:00","activityId":"4d72b76e-753c-4d6f-9560-66fc0cd5ed28","lastModifiedDateTime":"2020-08-18T07:16:38.0109206+00:00","assessmentState":"Available"},{"patchId":"191ceec1-9139-4d24-9029-a225a528e572","name":"Security
Intelligence Update for Microsoft Defender Antivirus - KB2267602 (Version
1.321.1661.0)","kbId":"2267602","classifications":["Definition"],"rebootBehavior":"NeverReboots","publishedDate":"2020-08-18T00:00:00+00:00","activityId":"4d72b76e-753c-4d6f-9560-66fc0cd5ed28","lastModifiedDateTime":"2020-08-18T07:16:38.0109206+00:00","assessmentState":"Available"}]}'
headers:
cache-control:
- no-cache
content-length:
- '2305'
content-type:
- application/json; charset=utf-8
date:
- Tue, 18 Aug 2020 07:16:59 GMT
expires:
- '-1'
pragma:
- no-cache
server:
- Microsoft-HTTPAPI/2.0
- Microsoft-HTTPAPI/2.0
strict-transport-security:
- max-age=31536000; includeSubDomains
transfer-encoding:
- chunked
vary:
- Accept-Encoding
x-content-type-options:
- nosniff
x-ms-ratelimit-remaining-resource:
- Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986
status:
code: 200
message: OK
version: 1
| 49.987013 | 3,324 | 0.629848 |
f6adb0bc0c827037bf39826fd3ee210ff203f41b | 248 | yml | YAML | longpdo.github.io-master/_data/skills-languages.yml | MinhTriMai/minhtrimai.github.io | 23e9bf71455a2688e44c3f720e28c9d9b679a4c9 | [
"MIT"
] | null | null | null | longpdo.github.io-master/_data/skills-languages.yml | MinhTriMai/minhtrimai.github.io | 23e9bf71455a2688e44c3f720e28c9d9b679a4c9 | [
"MIT"
] | null | null | null | longpdo.github.io-master/_data/skills-languages.yml | MinhTriMai/minhtrimai.github.io | 23e9bf71455a2688e44c3f720e28c9d9b679a4c9 | [
"MIT"
] | null | null | null | - name: TypeScript
weight: 4
- name: JavaScript
weight: 3
- name: Python
weight: 3
- name: Bash
weight: 3
- name: HTML5
weight: 3
- name: CSS3
weight: 3
- name: SASS
weight: 3
- name: Dart
weight: 2
- name: Java
weight: 1
| 9.185185 | 18 | 0.604839 |
f6d3a0a568e1c36a8f34b7a8956f01ccac2f8542 | 621 | yml | YAML | releases/shibboleth/shibboleth-1.yml | cloud-gov/shibboleth-boshrelease | 58740be48fa56cc5d569c48d9efaf44ed26a3836 | [
"CC0-1.0"
] | 2 | 2016-10-12T21:18:30.000Z | 2020-02-07T02:46:02.000Z | releases/shibboleth/shibboleth-1.yml | cloud-gov/shibboleth-boshrelease | 58740be48fa56cc5d569c48d9efaf44ed26a3836 | [
"CC0-1.0"
] | 12 | 2020-05-22T16:38:02.000Z | 2022-03-08T16:44:58.000Z | releases/shibboleth/shibboleth-1.yml | cloud-gov/shibboleth-boshrelease | 58740be48fa56cc5d569c48d9efaf44ed26a3836 | [
"CC0-1.0"
] | 4 | 2017-02-22T21:48:47.000Z | 2018-05-10T00:50:00.000Z | ---
packages:
- name: idp
version: 44da2a1c0444f0e02beeeb6b8009bf3612fdf254
fingerprint: 44da2a1c0444f0e02beeeb6b8009bf3612fdf254
sha1: 2f7bb082a692a787e1fa1cfdddb6871928068842
dependencies: []
jobs:
- name: idp
version: 9781e2de021706b2b41a89f8a538689e27eab3af
fingerprint: 9781e2de021706b2b41a89f8a538689e27eab3af
sha1: e6b06ceef0438e3c128bc04b1e4c6c5efdafbbeb
license:
version: cbc3b15f61fec179f7d9f8f7eba00eb91ba15b59
fingerprint: cbc3b15f61fec179f7d9f8f7eba00eb91ba15b59
sha1: 63e5837201aff62af034d0daeb97288412c8b76b
commit_hash: 87f53f26
uncommitted_changes: true
name: shibboleth
version: '1'
| 29.571429 | 55 | 0.861514 |
6b625824323e32cdc5264e7ca5072873f36f1ef9 | 5,058 | yml | YAML | docs-ref-autogen/azure-servicefabric/ServicesHealthEvaluation.yml | MicrosoftDocs/azure-docs-sdk-node.es-ES | 200caec0f833367ebbb1e4ea65d167a7c43bdd7d | [
"CC-BY-4.0",
"MIT"
] | 3 | 2017-08-28T07:32:45.000Z | 2021-04-20T21:12:49.000Z | docs-ref-autogen/azure-servicefabric/ServicesHealthEvaluation.yml | MicrosoftDocs/azure-docs-sdk-node.es-ES | 200caec0f833367ebbb1e4ea65d167a7c43bdd7d | [
"CC-BY-4.0",
"MIT"
] | 1 | 2018-01-17T16:45:28.000Z | 2018-01-17T16:45:28.000Z | docs-ref-autogen/azure-servicefabric/ServicesHealthEvaluation.yml | MicrosoftDocs/azure-docs-sdk-node.es-ES | 200caec0f833367ebbb1e4ea65d167a7c43bdd7d | [
"CC-BY-4.0",
"MIT"
] | 2 | 2019-10-13T20:25:42.000Z | 2021-11-18T12:07:59.000Z | ### YamlMime:UniversalReference
items:
- uid: azure-servicefabric.ServicesHealthEvaluation
name: ServicesHealthEvaluation
fullName: ServicesHealthEvaluation
children:
- azure-servicefabric.ServicesHealthEvaluation.aggregatedHealthState
- azure-servicefabric.ServicesHealthEvaluation.description
- azure-servicefabric.ServicesHealthEvaluation.kind
- azure-servicefabric.ServicesHealthEvaluation.maxPercentUnhealthyServices
- azure-servicefabric.ServicesHealthEvaluation.serviceTypeName
- azure-servicefabric.ServicesHealthEvaluation.totalCount
- azure-servicefabric.ServicesHealthEvaluation.unhealthyEvaluations
langs:
- typeScript
type: interface
summary: 'Representa la evaluación de mantenimiento para los servicios de un determinado tipo de servicio que pertenecen a una aplicación, que contiene evaluaciones de estado para cada servicio en mal estado que afectado el actual estado de mantenimiento agregado. Se pueden devolver al evaluar el estado de la aplicación y el estado de mantenimiento agregado es Error o advertencia.'
extends:
name: azure-servicefabric.HealthEvaluation
package: azure-servicefabric
- uid: azure-servicefabric.ServicesHealthEvaluation.aggregatedHealthState
name: aggregatedHealthState
fullName: aggregatedHealthState
children: []
langs:
- typeScript
type: property
summary: 'El estado de mantenimiento de una entidad de Service Fabric como clúster, nodo, aplicación, servicio, partición, réplica etcetera. Los valores posibles son: ''Invalid'', ''Aceptar'', ''Advertencia'', ''Error'', ''Unknown''.'
optional: true
syntax:
content: 'aggregatedHealthState?: string'
return:
type:
- string
package: azure-servicefabric
- uid: azure-servicefabric.ServicesHealthEvaluation.description
name: description
fullName: description
children: []
langs:
- typeScript
type: property
summary: 'Descripción de la evaluación de mantenimiento, que representa un resumen del proceso de evaluación.'
optional: true
syntax:
content: 'description?: string'
return:
type:
- string
package: azure-servicefabric
- uid: azure-servicefabric.ServicesHealthEvaluation.kind
name: kind
fullName: kind
children: []
langs:
- typeScript
type: property
summary: Discriminador polimórfico
syntax:
content: 'kind: string'
return:
type:
- string
package: azure-servicefabric
- uid: azure-servicefabric.ServicesHealthEvaluation.maxPercentUnhealthyServices
name: maxPercentUnhealthyServices
fullName: maxPercentUnhealthyServices
children: []
langs:
- typeScript
type: property
summary: Porcentaje máximo permitido de servicios en mal estado desde el ServiceTypeHealthPolicy.
optional: true
syntax:
content: 'maxPercentUnhealthyServices?: number'
return:
type:
- number
package: azure-servicefabric
- uid: azure-servicefabric.ServicesHealthEvaluation.serviceTypeName
name: serviceTypeName
fullName: serviceTypeName
children: []
langs:
- typeScript
type: property
summary: Nombre del tipo de servicio de los servicios.
optional: true
syntax:
content: 'serviceTypeName?: string'
return:
type:
- string
package: azure-servicefabric
- uid: azure-servicefabric.ServicesHealthEvaluation.totalCount
name: totalCount
fullName: totalCount
children: []
langs:
- typeScript
type: property
summary: Número total de servicios del tipo de servicio actual en la aplicación desde el almacén de estado.
optional: true
syntax:
content: 'totalCount?: number'
return:
type:
- number
package: azure-servicefabric
- uid: azure-servicefabric.ServicesHealthEvaluation.unhealthyEvaluations
name: unhealthyEvaluations
fullName: unhealthyEvaluations
children: []
langs:
- typeScript
type: property
summary: 'Lista de las evaluaciones en mal estado que llevó al estado de mantenimiento agregado. Incluye todos los ServiceHealthEvaluation en mal estado, lo que se ve afectado el mantenimiento agregado.'
optional: true
syntax:
content: 'unhealthyEvaluations?: HealthEvaluationWrapper[]'
return:
type:
- 'azure-servicefabric.HealthEvaluationWrapper[]'
package: azure-servicefabric
references:
- uid: azure-servicefabric.HealthEvaluation
name: HealthEvaluation
spec.typeScript:
- name: HealthEvaluation
fullName: HealthEvaluation
uid: azure-servicefabric.HealthEvaluation
- uid: 'azure-servicefabric.HealthEvaluationWrapper[]'
name: 'HealthEvaluationWrapper[]'
spec.typeScript:
- name: HealthEvaluationWrapper
fullName: HealthEvaluationWrapper
uid: azure-servicefabric.HealthEvaluationWrapper
- name: '[]'
fullName: '[]' | 36.388489 | 388 | 0.716291 |
53d45fa142c770a241a7f96bc5c7a50a78fbfc2f | 216 | yaml | YAML | changelog/releases/v1.3.4/hotfix-dockerpy.yaml | gigabackup/gigantum-client | 70fe6b39b87b1c56351f2b4c551b6f1693813e4f | [
"MIT"
] | 60 | 2018-09-26T15:46:00.000Z | 2021-10-10T02:37:14.000Z | changelog/releases/v1.3.4/hotfix-dockerpy.yaml | gigabackup/gigantum-client | 70fe6b39b87b1c56351f2b4c551b6f1693813e4f | [
"MIT"
] | 1,706 | 2018-09-26T16:11:22.000Z | 2021-08-20T13:37:59.000Z | changelog/releases/v1.3.4/hotfix-dockerpy.yaml | griffinmilsap/gigantum-client | 70fe6b39b87b1c56351f2b4c551b6f1693813e4f | [
"MIT"
] | 11 | 2019-03-14T13:23:51.000Z | 2022-01-25T01:29:16.000Z | prLink: "https://github.com/gigantum/gigantum-client/pull/1529"
changelog:
- type: FIX
description: Catch unexpected error on Docker Desktop for Mac >=2.5.0.0 when checking for a container that does not exist.
| 43.2 | 126 | 0.75463 |
8a2ecb1b834e0bd9fda8e1f0dad694549ea10f9f | 603 | yml | YAML | locale/flarum-auth-facebook.yml | vudoanbinhminh/lang-vietnamese | 590929b109ad20fc78e69dfe2fcd6306e878f923 | [
"MIT"
] | 3 | 2019-07-24T09:52:41.000Z | 2019-09-14T13:33:06.000Z | locale/flarum-auth-facebook.yml | vudoanbinhminh/lang-vietnamese | 590929b109ad20fc78e69dfe2fcd6306e878f923 | [
"MIT"
] | 23 | 2020-11-10T06:44:40.000Z | 2021-02-02T03:22:39.000Z | vendor/luatdolphin/lang-vietnamese/locale/flarum-auth-facebook.yml | huuduy216/Talkie-Web | 8be772eb76b95a73ef5f02a33cac96f5416a6b91 | [
"MIT"
] | 4 | 2019-07-22T14:31:52.000Z | 2019-11-09T14:11:22.000Z | flarum-auth-facebook:
##
# UNIQUE KEYS - The following keys are used in only one location each.
##
# Translations in this namespace are used by the admin interface.
admin:
# These translations are used in the Facebook Settings modal dialog.
facebook_settings:
app_id_label: ID ứng dụng
app_secret_label: Khóa bí mật của ứng dụng
title: Thiết lập Facebook
# Translations in this namespace are used by the forum user interface.
forum:
# These translations are used in the Log In modal dialog.
log_in:
with_facebook_button: Đăng nhập với Facebook
| 27.409091 | 72 | 0.716418 |
58a2e770667a11834113f73ac8917001be4f0c3c | 8,991 | yml | YAML | botbuilder-typescript/v3/docs-ref-autogen/botbuilder-calling/IUniversalCallBotSettings.yml | swatDong/botbuilder-docs-sdk-typescript | 37201db1558fa9e5563dcea5e0892660d3d0a898 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | botbuilder-typescript/v3/docs-ref-autogen/botbuilder-calling/IUniversalCallBotSettings.yml | swatDong/botbuilder-docs-sdk-typescript | 37201db1558fa9e5563dcea5e0892660d3d0a898 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | botbuilder-typescript/v3/docs-ref-autogen/botbuilder-calling/IUniversalCallBotSettings.yml | swatDong/botbuilder-docs-sdk-typescript | 37201db1558fa9e5563dcea5e0892660d3d0a898 | [
"CC-BY-4.0",
"MIT"
] | null | null | null | ### YamlMime:UniversalReference
items:
- uid: botbuilder-calling.IUniversalCallBotSettings
name: IUniversalCallBotSettings
fullName: IUniversalCallBotSettings
children:
- botbuilder-calling.IUniversalCallBotSettings.autoBatchDelay
- botbuilder-calling.IUniversalCallBotSettings.defaultDialogArgs
- botbuilder-calling.IUniversalCallBotSettings.defaultDialogId
- botbuilder-calling.IUniversalCallBotSettings.dialogErrorMessage
- botbuilder-calling.IUniversalCallBotSettings.localizer
- botbuilder-calling.IUniversalCallBotSettings.lookupUser
- botbuilder-calling.IUniversalCallBotSettings.persistConversationData
- botbuilder-calling.IUniversalCallBotSettings.persistUserData
- botbuilder-calling.IUniversalCallBotSettings.processLimit
- botbuilder-calling.IUniversalCallBotSettings.promptDefaults
- botbuilder-calling.IUniversalCallBotSettings.recognizeDefaults
- botbuilder-calling.IUniversalCallBotSettings.recordDefaults
- botbuilder-calling.IUniversalCallBotSettings.storage
langs:
- typeScript
type: interface
summary: Options used to initialize a UniversalCallBot instance.
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.autoBatchDelay
name: autoBatchDelay
fullName: autoBatchDelay
children: []
langs:
- typeScript
type: property
summary: >-
(Optional) time to allow between each message sent as a batch. The default
value is 150ms.
optional: true
syntax:
content: 'autoBatchDelay?: number'
return:
type:
- number
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.defaultDialogArgs
name: defaultDialogArgs
fullName: defaultDialogArgs
children: []
langs:
- typeScript
type: property
summary: (Optional) arguments to pass to the initial dialog for a conversation.
optional: true
syntax:
content: 'defaultDialogArgs?: any'
return:
type:
- any
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.defaultDialogId
name: defaultDialogId
fullName: defaultDialogId
children: []
langs:
- typeScript
type: property
summary: >-
(Optional) dialog to launch when a user initiates a new conversation with
a bot. Default value is '/'.
optional: true
syntax:
content: 'defaultDialogId?: string'
return:
type:
- string
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.dialogErrorMessage
name: dialogErrorMessage
fullName: dialogErrorMessage
children: []
langs:
- typeScript
type: property
summary: >-
(Optional) message to send the user should an unexpected error occur
during a conversation. A default message is provided.
optional: true
syntax:
content: 'dialogErrorMessage?: string | string[] | IAction | IIsAction'
return:
type:
- >-
string | string[] | botbuilder-calling.IAction |
botbuilder-calling.IIsAction
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.localizer
name: localizer
fullName: localizer
children: []
langs:
- typeScript
type: property
summary: (Optional) localizer used to localize the bots responses to the user.
optional: true
syntax:
content: 'localizer?: ILocalizer'
return:
type:
- botbuilder-calling.ILocalizer
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.lookupUser
name: lookupUser
fullName: lookupUser
children: []
langs:
- typeScript
type: property
summary: >-
(Optional) function used to map the user ID for an incoming message to
another user ID. This can be used to implement user account linking.
optional: true
syntax:
content: >-
lookupUser?: (address: IAddress, done: (err: Error, user: IIdentity) =>
void) => void
return:
type:
- >-
(address: IAddress, done: (err: Error, user: IIdentity) => void) =>
void
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.persistConversationData
name: persistConversationData
fullName: persistConversationData
children: []
langs:
- typeScript
type: property
summary: >-
(Optional) if true shared conversationData will be persisted. The default
value is false.
optional: true
syntax:
content: 'persistConversationData?: boolean'
return:
type:
- boolean
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.persistUserData
name: persistUserData
fullName: persistUserData
children: []
langs:
- typeScript
type: property
summary: (optional) if true userData will be persisted. The default value is true.
optional: true
syntax:
content: 'persistUserData?: boolean'
return:
type:
- boolean
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.processLimit
name: processLimit
fullName: processLimit
children: []
langs:
- typeScript
type: property
summary: (Optional) maximum number of async options to conduct in parallel.
optional: true
syntax:
content: 'processLimit?: number'
return:
type:
- number
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.promptDefaults
name: promptDefaults
fullName: promptDefaults
children: []
langs:
- typeScript
type: property
summary: Default prompt settings to use.
syntax:
content: 'promptDefaults: IPrompt'
return:
type:
- botbuilder-calling.IPrompt
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.recognizeDefaults
name: recognizeDefaults
fullName: recognizeDefaults
children: []
langs:
- typeScript
type: property
summary: Default recognizer settings to use.
syntax:
content: 'recognizeDefaults: IRecognizeAction'
return:
type:
- botbuilder-calling.IRecognizeAction
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.recordDefaults
name: recordDefaults
fullName: recordDefaults
children: []
langs:
- typeScript
type: property
summary: Default recording settings to use.
syntax:
content: 'recordDefaults: IRecordAction'
return:
type:
- botbuilder-calling.IRecordAction
description: ''
package: botbuilder-calling
- uid: botbuilder-calling.IUniversalCallBotSettings.storage
name: storage
fullName: storage
children: []
langs:
- typeScript
type: property
summary: (Optional) storage system to use for storing user & conversation data.
optional: true
syntax:
content: 'storage?: IBotStorage'
return:
type:
- botbuilder-calling.IBotStorage
description: ''
package: botbuilder-calling
references:
- uid: >-
string | string[] | botbuilder-calling.IAction |
botbuilder-calling.IIsAction
name: IIsAction
spec.typeScript:
- name: 'string | string[] | '
fullName: 'string | string[] | '
- name: IAction
fullName: IAction
uid: botbuilder-calling.IAction
- name: ' | '
fullName: ' | '
- name: IIsAction
fullName: IIsAction
uid: botbuilder-calling.IIsAction
- uid: botbuilder-calling.ILocalizer
name: ILocalizer
spec.typeScript:
- name: ILocalizer
fullName: ILocalizer
uid: botbuilder-calling.ILocalizer
- uid: botbuilder-calling.IPrompt
name: IPrompt
spec.typeScript:
- name: IPrompt
fullName: IPrompt
uid: botbuilder-calling.IPrompt
- uid: botbuilder-calling.IRecognizeAction
name: IRecognizeAction
spec.typeScript:
- name: IRecognizeAction
fullName: IRecognizeAction
uid: botbuilder-calling.IRecognizeAction
- uid: botbuilder-calling.IRecordAction
name: IRecordAction
spec.typeScript:
- name: IRecordAction
fullName: IRecordAction
uid: botbuilder-calling.IRecordAction
- uid: botbuilder-calling.IBotStorage
name: IBotStorage
spec.typeScript:
- name: IBotStorage
fullName: IBotStorage
uid: botbuilder-calling.IBotStorage
| 30.791096 | 86 | 0.671338 |
58d4d2e125e081491f667d92fe3d5398ce74df93 | 189 | yml | YAML | config/shortcut.set.default.yml | shaal/3paces-test-pull | 40029b933904d7e34b22451b618bddf0ee45262f | [
"MIT"
] | null | null | null | config/shortcut.set.default.yml | shaal/3paces-test-pull | 40029b933904d7e34b22451b618bddf0ee45262f | [
"MIT"
] | null | null | null | config/shortcut.set.default.yml | shaal/3paces-test-pull | 40029b933904d7e34b22451b618bddf0ee45262f | [
"MIT"
] | null | null | null | uuid: 9532ce1b-ac78-48fa-894f-74794b4ace9c
langcode: en
status: true
dependencies: { }
_core:
default_config_hash: U5VlGjd_SfV0Qm_EfnaynOfc549cNscFAx48JfYoMRI
id: default
label: Default
| 21 | 66 | 0.825397 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.