cirro-ruby-client 2.6.4 → 2.6.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a84aba0003de465a6ddd93ca47a46f8c6c1977d52aaff23113d5ef950b24b1ac
4
- data.tar.gz: 37affd014f89eedf9e49af0b463bbfe0a1c9f9ec418c29aeaa905d4d5621810b
3
+ metadata.gz: a6cb630fc2d389ee8e06ae3c6570e931289dad404b5ad66c74d9a7adc523a0f9
4
+ data.tar.gz: f202a36fdb8b87de31d9c14be3aa5249f8ea877bad5696b7c7f6bb5b05f22daf
5
5
  SHA512:
6
- metadata.gz: d96c0998f29c25eb046a1de5c472c17244f54d8e11eaf0eada55465774441b9ae380171744afc4753e6288b98ff219fd6d16a0065aff3167bba41e55b71d2484
7
- data.tar.gz: '097d1642325f4d755cad313cee52a76bfb80a02374dee43e056af52b6fe11091d05665089d2a75c156c82e4714c740845702cda7ae48398498885183c2f931cc'
6
+ metadata.gz: 77530dc614305cc7f8e9e4180820c7589833b7c48654a1782e5d7c9680481379a31525a2c144b9cf4df0985b7453d3040ef1206fc3a6162773f46e0178496660
7
+ data.tar.gz: f1d0ea7b57e8925005215f01bfee93659fc19d4d32675bffbe6f8b44aa88321e34743a2c8c371015ff3caf773fcbda7e7b06a1427c2914bb540c230e6cf2cc71
data/.circleci/config.yml CHANGED
@@ -1,13 +1,13 @@
1
1
  version: 2.1
2
2
  infra_container: &infra_container
3
- eu.gcr.io/cirro-io/swissknife@sha256:1dceb221bfc058c4ba22fe4dcbf4f30dfdc10951bc2293d5c53aebc4f87037f3
3
+ us.gcr.io/oi-tset/swissknife@sha256:e8b74aab06de688b29c600785782a614efdaf2c20df7ef9b53b2b0276815fb0c
4
4
 
5
5
  # Configure authentication in private registry
6
6
  infra_container_registry_auth:
7
7
  &infra_container_registry_auth
8
8
  auth:
9
9
  username: _json_key # default username when using a JSON key file to authenticate
10
- password: $GOOGLE_JSON_KEY
10
+ password: $GOOGLE_JSON_KEY_OI_TSET
11
11
 
12
12
  jobs:
13
13
  test:
@@ -76,10 +76,10 @@ jobs:
76
76
  - DEFECTDOJO_ENG_NAME: CircleCI Scan
77
77
  steps:
78
78
  - checkout
79
- - run:
79
+ - run:
80
80
  name: Setup access to GCP
81
81
  command: |
82
- echo $GOOGLE_JSON_KEY > ${HOME}/gcloud-service-key.json && \
82
+ echo $GOOGLE_JSON_KEY_OI_TSET > ${HOME}/gcloud-service-key.json && \
83
83
  gcloud auth activate-service-account --key-file=${HOME}/gcloud-service-key.json
84
84
  gcloud auth configure-docker
85
85
  - run:
@@ -92,7 +92,7 @@ jobs:
92
92
  command: |
93
93
  export DEFECTDOJO_TOKEN=$(gcloud secrets versions access latest \
94
94
  --secret="defectdojo_token" \
95
- --project=cirro-io \
95
+ --project=oi-tset \
96
96
  --quiet)
97
97
 
98
98
  # Send Trivy filesystem scan
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cirro-ruby-client (2.6.4)
4
+ cirro-ruby-client (2.6.6)
5
5
  activesupport
6
6
  faraday (< 1.2.0)
7
7
  faraday_middleware
@@ -1,7 +1,7 @@
1
1
  # rubocop:disable Style/MutableConstant
2
2
  module CirroIO
3
3
  module Client
4
- VERSION = '2.6.4'
4
+ VERSION = '2.6.6'
5
5
  end
6
6
  end
7
7
  # rubocop:enable Style/MutableConstant
@@ -9,16 +9,6 @@ module CirroIOV2
9
9
  response = client.request_client.request(:get, resource_root, params:)
10
10
  Responses::NotificationTopicPreferenceListResponse.new(response.body)
11
11
  end
12
-
13
- def create(params)
14
- response = client.request_client.request(:post, resource_root, body: params)
15
- Responses::NotificationTopicPreferenceResponse.new(response.body)
16
- end
17
-
18
- def update(id, params)
19
- response = client.request_client.request(:post, "#{resource_root}/#{id}", body: params)
20
- Responses::NotificationTopicPreferenceResponse.new(response.body)
21
- end
22
12
  end
23
13
  end
24
14
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cirro-ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.6.4
4
+ version: 2.6.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cirro Dev Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-09 00:00:00.000000000 Z
11
+ date: 2024-07-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport