oci-logging-analytics-kubernetes-discovery 1.0.3 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: oci-logging-analytics-kubernetes-discovery
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oracle
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2024-11-18 00:00:00.000000000 Z
12
+ date: 2025-04-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -274,6 +274,7 @@ files:
274
274
  - ".travis.yml"
275
275
  - Gemfile
276
276
  - LICENSE.txt
277
+ - Makefile
277
278
  - README.md
278
279
  - Rakefile
279
280
  - bin/console
@@ -282,11 +283,10 @@ files:
282
283
  - lib/config/oci_client_retry_config.rb
283
284
  - lib/discover/infrastructure.rb
284
285
  - lib/discover/object.rb
285
- - lib/dto/infra/cluster_entity_payload.rb
286
- - lib/dto/infra/load_balancers_entity_payload.rb
287
- - lib/dto/infra/node_pool_entity_payload.rb
288
- - lib/dto/infra/subnet_entity_payload.rb
289
- - lib/dto/infra/vcn_entity_payload.rb
286
+ - lib/dto/infra/load_balancer_payload.rb
287
+ - lib/dto/infra/node_pool_payload.rb
288
+ - lib/dto/infra/resource_payload.rb
289
+ - lib/dto/infra/subnet_payload.rb
290
290
  - lib/dto/infra_objects_payload.rb
291
291
  - lib/dto/kubernetes_objects_payload.rb
292
292
  - lib/dto/payload/log_events.rb
@@ -296,6 +296,8 @@ files:
296
296
  - lib/enum/infrastructure_resource_discovery.rb
297
297
  - lib/enum/kubernetes_objects_enum.rb
298
298
  - lib/enum/object_client_mapping_enum.rb
299
+ - lib/enum/stack_job_lifecycle_state_enum.rb
300
+ - lib/enum/stack_job_operation_enum.rb
299
301
  - lib/infra_resources.rb
300
302
  - lib/objects_resources.rb
301
303
  - lib/oci_loganalytics_resources_discovery.rb
@@ -305,10 +307,12 @@ files:
305
307
  - lib/util/log_analytics.rb
306
308
  - lib/util/logging.rb
307
309
  - lib/util/oci_clients.rb
310
+ - lib/util/service_logs.rb
308
311
  - lib/util/state_manager.rb
309
312
  - lib/util/string_utils.rb
310
313
  - lib/version.rb
311
314
  - oci-logging-analytics-kubernetes-discovery.gemspec
315
+ - ocibuild.conf
312
316
  homepage: https://rubygems.org/gems/oci-logging-analytics-kubernetes-discovery
313
317
  licenses:
314
318
  - UPL-1.0
@@ -1,22 +0,0 @@
1
- ## Copyright (c) 2024 Oracle and/or its affiliates.
2
- ## The Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/
3
-
4
- module Dto
5
- module Infra
6
- class ClusterEntityPayload
7
- attr_accessor :name, :id
8
-
9
- def initialize(name, id)
10
- @name = name
11
- @id = id
12
- end
13
-
14
- def to_hash
15
- {
16
- name: @name,
17
- id: @id
18
- }.compact
19
- end
20
- end
21
- end
22
- end
@@ -1,22 +0,0 @@
1
- ## Copyright (c) 2024 Oracle and/or its affiliates.
2
- ## The Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/
3
-
4
- module Dto
5
- module Infra
6
- class LoadBalancerEntityPayload
7
- attr_accessor :name, :id
8
-
9
- def initialize(name, id)
10
- @name = name
11
- @id = id
12
- end
13
-
14
- def to_hash
15
- {
16
- name: @name,
17
- id: @id
18
- }.compact
19
- end
20
- end
21
- end
22
- end
@@ -1,22 +0,0 @@
1
- ## Copyright (c) 2024 Oracle and/or its affiliates.
2
- ## The Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/
3
-
4
- module Dto
5
- module Infra
6
- class SubnetEntityPayload
7
- attr_accessor :name, :id
8
-
9
- def initialize(name, id)
10
- @name = name
11
- @id = id
12
- end
13
-
14
- def to_hash
15
- {
16
- name: @name,
17
- id: @id
18
- }.compact
19
- end
20
- end
21
- end
22
- end
@@ -1,22 +0,0 @@
1
- ## Copyright (c) 2024 Oracle and/or its affiliates.
2
- ## The Universal Permissive License (UPL), Version 1.0 as shown at https://oss.oracle.com/licenses/upl/
3
-
4
- module Dto
5
- module Infra
6
- class VcnEntityPayload
7
- attr_accessor :name, :id
8
-
9
- def initialize(name, id)
10
- @name = name
11
- @id = id
12
- end
13
-
14
- def to_hash
15
- {
16
- name: @name,
17
- id: @id
18
- }.compact
19
- end
20
- end
21
- end
22
- end