oci-logging-analytics-kubernetes-discovery 1.0.3 → 1.1.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.1.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-03-11 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -282,11 +282,10 @@ files:
282
282
  - lib/config/oci_client_retry_config.rb
283
283
  - lib/discover/infrastructure.rb
284
284
  - 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
285
+ - lib/dto/infra/load_balancer_payload.rb
286
+ - lib/dto/infra/node_pool_payload.rb
287
+ - lib/dto/infra/resource_payload.rb
288
+ - lib/dto/infra/subnet_payload.rb
290
289
  - lib/dto/infra_objects_payload.rb
291
290
  - lib/dto/kubernetes_objects_payload.rb
292
291
  - lib/dto/payload/log_events.rb
@@ -296,6 +295,8 @@ files:
296
295
  - lib/enum/infrastructure_resource_discovery.rb
297
296
  - lib/enum/kubernetes_objects_enum.rb
298
297
  - lib/enum/object_client_mapping_enum.rb
298
+ - lib/enum/stack_job_lifecycle_state_enum.rb
299
+ - lib/enum/stack_job_operation_enum.rb
299
300
  - lib/infra_resources.rb
300
301
  - lib/objects_resources.rb
301
302
  - lib/oci_loganalytics_resources_discovery.rb
@@ -305,6 +306,7 @@ files:
305
306
  - lib/util/log_analytics.rb
306
307
  - lib/util/logging.rb
307
308
  - lib/util/oci_clients.rb
309
+ - lib/util/service_logs.rb
308
310
  - lib/util/state_manager.rb
309
311
  - lib/util/string_utils.rb
310
312
  - lib/version.rb
@@ -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