google-apis-serviceusage_v1 0.58.0 → 0.60.0

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: 5c25dc5f29929fed36093f79362c1983a35aa161d3df6bae0d51d16de5a49f74
4
- data.tar.gz: c592c1116e69dc799218dd6989a27f6aba1258371fc065bd12c7b962595efdff
3
+ metadata.gz: e47fc183b125945903ac857c2b2faefe525499e8b038d48147a14028ca2fd550
4
+ data.tar.gz: a27b0f64acd5978276ea043d7a5f1a8ca9ea8dc9f7ff35c69f4cb876325b1d8d
5
5
  SHA512:
6
- metadata.gz: 5cac2989ee468103ca3495339043fb678fd4cfd2a80cd618b8bf88f2643a7f4983faa7e18879d759c470affe968d731f90f3bb733e8e29bfe7e74c56ff991441
7
- data.tar.gz: 9116564cb3fddb98dbdabe007c64a8ba7836b360f46a78c3471edb00a9fd3d6c8f220a4c513e91827ab3d79a95318199c14c3960234532d47aa3c8e2a88ac923
6
+ metadata.gz: d16153e1e445a55d1e9a62ca487196a8cf05e3d49f980da70c57584e93bba0e5bfb14e8a8ad6d08b713159ad1c6c76fb0c4e715f2c29ac3e9a21b75679401d8f
7
+ data.tar.gz: 9f343fb2b811576c4f351b34bc0209039c38a884b39151a80d3a36944e5c35a2365905ece27a38a7e2405582790cc635f9da58afee10be1f1414a5f83b61c27e
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-serviceusage_v1
2
2
 
3
+ ### v0.60.0 (2024-11-24)
4
+
5
+ * Regenerated from discovery document revision 20241115
6
+
7
+ ### v0.59.0 (2024-11-03)
8
+
9
+ * Regenerated from discovery document revision 20241025
10
+
3
11
  ### v0.58.0 (2024-10-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20240929
@@ -1719,6 +1719,14 @@ module Google
1719
1719
  class ExperimentalFeatures
1720
1720
  include Google::Apis::Core::Hashable
1721
1721
 
1722
+ # Enables generation of protobuf code using new types that are more Pythonic
1723
+ # which are included in `protobuf>=5.29.x`. This feature will be enabled by
1724
+ # default 1 month after launching the feature in preview packages.
1725
+ # Corresponds to the JSON property `protobufPythonicTypesEnabled`
1726
+ # @return [Boolean]
1727
+ attr_accessor :protobuf_pythonic_types_enabled
1728
+ alias_method :protobuf_pythonic_types_enabled?, :protobuf_pythonic_types_enabled
1729
+
1722
1730
  # Enables generation of asynchronous REST clients if `rest` transport is enabled.
1723
1731
  # By default, asynchronous REST clients will not be generated. This feature
1724
1732
  # will be enabled by default 1 month after launching the feature in preview
@@ -1734,6 +1742,7 @@ module Google
1734
1742
 
1735
1743
  # Update properties of this object
1736
1744
  def update!(**args)
1745
+ @protobuf_pythonic_types_enabled = args[:protobuf_pythonic_types_enabled] if args.key?(:protobuf_pythonic_types_enabled)
1737
1746
  @rest_async_io_enabled = args[:rest_async_io_enabled] if args.key?(:rest_async_io_enabled)
1738
1747
  end
1739
1748
  end
@@ -1906,6 +1915,13 @@ module Google
1906
1915
  # @return [Google::Apis::ServiceusageV1::CommonLanguageSettings]
1907
1916
  attr_accessor :common
1908
1917
 
1918
+ # Map of service names to renamed services. Keys are the package relative
1919
+ # service names and values are the name to be used for the service client and
1920
+ # call options. publishing: go_settings: renamed_services: Publisher: TopicAdmin
1921
+ # Corresponds to the JSON property `renamedServices`
1922
+ # @return [Hash<String,String>]
1923
+ attr_accessor :renamed_services
1924
+
1909
1925
  def initialize(**args)
1910
1926
  update!(**args)
1911
1927
  end
@@ -1913,6 +1929,7 @@ module Google
1913
1929
  # Update properties of this object
1914
1930
  def update!(**args)
1915
1931
  @common = args[:common] if args.key?(:common)
1932
+ @renamed_services = args[:renamed_services] if args.key?(:renamed_services)
1916
1933
  end
1917
1934
  end
1918
1935
 
@@ -2600,6 +2617,223 @@ module Google
2600
2617
  end
2601
2618
  end
2602
2619
 
2620
+ # A message to group the analysis information.
2621
+ class GoogleApiServiceusageV2betaAnalysis
2622
+ include Google::Apis::Core::Hashable
2623
+
2624
+ # An analysis result including blockers and warnings.
2625
+ # Corresponds to the JSON property `analysis`
2626
+ # @return [Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaAnalysisResult]
2627
+ attr_accessor :analysis
2628
+
2629
+ # Output only. The type of analysis.
2630
+ # Corresponds to the JSON property `analysisType`
2631
+ # @return [String]
2632
+ attr_accessor :analysis_type
2633
+
2634
+ # Output only. The user friendly display name of the analysis type. E.g. service
2635
+ # dependency analysis, service resource usage analysis, etc.
2636
+ # Corresponds to the JSON property `displayName`
2637
+ # @return [String]
2638
+ attr_accessor :display_name
2639
+
2640
+ # The names of the service that has analysis result of warnings or blockers.
2641
+ # Example: `services/storage.googleapis.com`.
2642
+ # Corresponds to the JSON property `service`
2643
+ # @return [String]
2644
+ attr_accessor :service
2645
+
2646
+ def initialize(**args)
2647
+ update!(**args)
2648
+ end
2649
+
2650
+ # Update properties of this object
2651
+ def update!(**args)
2652
+ @analysis = args[:analysis] if args.key?(:analysis)
2653
+ @analysis_type = args[:analysis_type] if args.key?(:analysis_type)
2654
+ @display_name = args[:display_name] if args.key?(:display_name)
2655
+ @service = args[:service] if args.key?(:service)
2656
+ end
2657
+ end
2658
+
2659
+ # An analysis result including blockers and warnings.
2660
+ class GoogleApiServiceusageV2betaAnalysisResult
2661
+ include Google::Apis::Core::Hashable
2662
+
2663
+ # Blocking information that would prevent the policy changes at runtime.
2664
+ # Corresponds to the JSON property `blockers`
2665
+ # @return [Array<Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaImpact>]
2666
+ attr_accessor :blockers
2667
+
2668
+ # Warning information indicating that the policy changes might be unsafe, but
2669
+ # will not block the changes at runtime.
2670
+ # Corresponds to the JSON property `warnings`
2671
+ # @return [Array<Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaImpact>]
2672
+ attr_accessor :warnings
2673
+
2674
+ def initialize(**args)
2675
+ update!(**args)
2676
+ end
2677
+
2678
+ # Update properties of this object
2679
+ def update!(**args)
2680
+ @blockers = args[:blockers] if args.key?(:blockers)
2681
+ @warnings = args[:warnings] if args.key?(:warnings)
2682
+ end
2683
+ end
2684
+
2685
+ # Metadata for the `AnalyzeConsumerPolicy` method.
2686
+ class GoogleApiServiceusageV2betaAnalyzeConsumerPolicyMetadata
2687
+ include Google::Apis::Core::Hashable
2688
+
2689
+ def initialize(**args)
2690
+ update!(**args)
2691
+ end
2692
+
2693
+ # Update properties of this object
2694
+ def update!(**args)
2695
+ end
2696
+ end
2697
+
2698
+ # The response of analyzing a consumer policy update.
2699
+ class GoogleApiServiceusageV2betaAnalyzeConsumerPolicyResponse
2700
+ include Google::Apis::Core::Hashable
2701
+
2702
+ # The list of analyses returned from performing the intended policy update
2703
+ # analysis. The analysis is grouped by service name and different analysis types.
2704
+ # The empty analysis list means that the consumer policy can be updated without
2705
+ # any warnings or blockers.
2706
+ # Corresponds to the JSON property `analysis`
2707
+ # @return [Array<Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaAnalysis>]
2708
+ attr_accessor :analysis
2709
+
2710
+ def initialize(**args)
2711
+ update!(**args)
2712
+ end
2713
+
2714
+ # Update properties of this object
2715
+ def update!(**args)
2716
+ @analysis = args[:analysis] if args.key?(:analysis)
2717
+ end
2718
+ end
2719
+
2720
+ # Consumer Policy is a set of rules that define what services or service groups
2721
+ # can be used for a cloud resource hierarchy.
2722
+ class GoogleApiServiceusageV2betaConsumerPolicy
2723
+ include Google::Apis::Core::Hashable
2724
+
2725
+ # Optional. Annotations is an unstructured key-value map stored with a policy
2726
+ # that may be set by external tools to store and retrieve arbitrary metadata.
2727
+ # They are not queryable and should be preserved when modifying objects. [AIP-
2728
+ # 128](https://google.aip.dev/128#annotations)
2729
+ # Corresponds to the JSON property `annotations`
2730
+ # @return [Hash<String,String>]
2731
+ attr_accessor :annotations
2732
+
2733
+ # Output only. The time the policy was created. For singleton policies, this is
2734
+ # the first touch of the policy.
2735
+ # Corresponds to the JSON property `createTime`
2736
+ # @return [String]
2737
+ attr_accessor :create_time
2738
+
2739
+ # Enable rules define usable services, groups, and categories. There can
2740
+ # currently be at most one `EnableRule`. This restriction will be lifted in
2741
+ # later releases.
2742
+ # Corresponds to the JSON property `enableRules`
2743
+ # @return [Array<Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaEnableRule>]
2744
+ attr_accessor :enable_rules
2745
+
2746
+ # Output only. An opaque tag indicating the current version of the policy, used
2747
+ # for concurrency control.
2748
+ # Corresponds to the JSON property `etag`
2749
+ # @return [String]
2750
+ attr_accessor :etag
2751
+
2752
+ # Output only. The resource name of the policy. Only the `default` policy is
2753
+ # supported: `projects/12345/consumerPolicies/default`, `folders/12345/
2754
+ # consumerPolicies/default`, `organizations/12345/consumerPolicies/default`.
2755
+ # Corresponds to the JSON property `name`
2756
+ # @return [String]
2757
+ attr_accessor :name
2758
+
2759
+ # Output only. The time the policy was last updated.
2760
+ # Corresponds to the JSON property `updateTime`
2761
+ # @return [String]
2762
+ attr_accessor :update_time
2763
+
2764
+ def initialize(**args)
2765
+ update!(**args)
2766
+ end
2767
+
2768
+ # Update properties of this object
2769
+ def update!(**args)
2770
+ @annotations = args[:annotations] if args.key?(:annotations)
2771
+ @create_time = args[:create_time] if args.key?(:create_time)
2772
+ @enable_rules = args[:enable_rules] if args.key?(:enable_rules)
2773
+ @etag = args[:etag] if args.key?(:etag)
2774
+ @name = args[:name] if args.key?(:name)
2775
+ @update_time = args[:update_time] if args.key?(:update_time)
2776
+ end
2777
+ end
2778
+
2779
+ # The consumer policy rule that defines enabled services, groups, and categories.
2780
+ class GoogleApiServiceusageV2betaEnableRule
2781
+ include Google::Apis::Core::Hashable
2782
+
2783
+ # The names of the services that are enabled. Example: `services/storage.
2784
+ # googleapis.com`.
2785
+ # Corresponds to the JSON property `services`
2786
+ # @return [Array<String>]
2787
+ attr_accessor :services
2788
+
2789
+ def initialize(**args)
2790
+ update!(**args)
2791
+ end
2792
+
2793
+ # Update properties of this object
2794
+ def update!(**args)
2795
+ @services = args[:services] if args.key?(:services)
2796
+ end
2797
+ end
2798
+
2799
+ # A message to group impacts of updating a policy.
2800
+ class GoogleApiServiceusageV2betaImpact
2801
+ include Google::Apis::Core::Hashable
2802
+
2803
+ # Output only. User friendly impact detail in a free form message.
2804
+ # Corresponds to the JSON property `detail`
2805
+ # @return [String]
2806
+ attr_accessor :detail
2807
+
2808
+ # Output only. The type of impact.
2809
+ # Corresponds to the JSON property `impactType`
2810
+ # @return [String]
2811
+ attr_accessor :impact_type
2812
+
2813
+ def initialize(**args)
2814
+ update!(**args)
2815
+ end
2816
+
2817
+ # Update properties of this object
2818
+ def update!(**args)
2819
+ @detail = args[:detail] if args.key?(:detail)
2820
+ @impact_type = args[:impact_type] if args.key?(:impact_type)
2821
+ end
2822
+ end
2823
+
2824
+ # Metadata for the `UpdateConsumerPolicy` method.
2825
+ class GoogleApiServiceusageV2betaUpdateConsumerPolicyMetadata
2826
+ include Google::Apis::Core::Hashable
2827
+
2828
+ def initialize(**args)
2829
+ update!(**args)
2830
+ end
2831
+
2832
+ # Update properties of this object
2833
+ def update!(**args)
2834
+ end
2835
+ end
2836
+
2603
2837
  # Defines the HTTP configuration for an API service. It contains a list of
2604
2838
  # HttpRule, each specifying the mapping of an RPC method to one or more HTTP
2605
2839
  # REST API methods.
@@ -4298,11 +4532,11 @@ module Google
4298
4532
  # @return [String]
4299
4533
  attr_accessor :name
4300
4534
 
4301
- # Specify the unit of the quota limit. It uses the same syntax as Metric.unit.
4302
- # The supported unit kinds are determined by the quota backend system. Here are
4303
- # some examples: * "1/min/`project`" for quota per minute per project. Note: the
4304
- # order of unit components is insignificant. The "1" at the beginning is
4305
- # required to follow the metric unit syntax.
4535
+ # Specify the unit of the quota limit. It uses the same syntax as
4536
+ # MetricDescriptor.unit. The supported unit kinds are determined by the quota
4537
+ # backend system. Here are some examples: * "1/min/`project`" for quota per
4538
+ # minute per project. Note: the order of unit components is insignificant. The "
4539
+ # 1" at the beginning is required to follow the metric unit syntax.
4306
4540
  # Corresponds to the JSON property `unit`
4307
4541
  # @return [String]
4308
4542
  attr_accessor :unit
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServiceusageV1
18
18
  # Version of the google-apis-serviceusage_v1 gem
19
- GEM_VERSION = "0.58.0"
19
+ GEM_VERSION = "0.60.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240929"
25
+ REVISION = "20241115"
26
26
  end
27
27
  end
28
28
  end
@@ -394,6 +394,54 @@ module Google
394
394
  include Google::Apis::Core::JsonObjectSupport
395
395
  end
396
396
 
397
+ class GoogleApiServiceusageV2betaAnalysis
398
+ class Representation < Google::Apis::Core::JsonRepresentation; end
399
+
400
+ include Google::Apis::Core::JsonObjectSupport
401
+ end
402
+
403
+ class GoogleApiServiceusageV2betaAnalysisResult
404
+ class Representation < Google::Apis::Core::JsonRepresentation; end
405
+
406
+ include Google::Apis::Core::JsonObjectSupport
407
+ end
408
+
409
+ class GoogleApiServiceusageV2betaAnalyzeConsumerPolicyMetadata
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
415
+ class GoogleApiServiceusageV2betaAnalyzeConsumerPolicyResponse
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
421
+ class GoogleApiServiceusageV2betaConsumerPolicy
422
+ class Representation < Google::Apis::Core::JsonRepresentation; end
423
+
424
+ include Google::Apis::Core::JsonObjectSupport
425
+ end
426
+
427
+ class GoogleApiServiceusageV2betaEnableRule
428
+ class Representation < Google::Apis::Core::JsonRepresentation; end
429
+
430
+ include Google::Apis::Core::JsonObjectSupport
431
+ end
432
+
433
+ class GoogleApiServiceusageV2betaImpact
434
+ class Representation < Google::Apis::Core::JsonRepresentation; end
435
+
436
+ include Google::Apis::Core::JsonObjectSupport
437
+ end
438
+
439
+ class GoogleApiServiceusageV2betaUpdateConsumerPolicyMetadata
440
+ class Representation < Google::Apis::Core::JsonRepresentation; end
441
+
442
+ include Google::Apis::Core::JsonObjectSupport
443
+ end
444
+
397
445
  class Http
398
446
  class Representation < Google::Apis::Core::JsonRepresentation; end
399
447
 
@@ -1190,6 +1238,7 @@ module Google
1190
1238
  class ExperimentalFeatures
1191
1239
  # @private
1192
1240
  class Representation < Google::Apis::Core::JsonRepresentation
1241
+ property :protobuf_pythonic_types_enabled, as: 'protobufPythonicTypesEnabled'
1193
1242
  property :rest_async_io_enabled, as: 'restAsyncIoEnabled'
1194
1243
  end
1195
1244
  end
@@ -1240,6 +1289,7 @@ module Google
1240
1289
  class Representation < Google::Apis::Core::JsonRepresentation
1241
1290
  property :common, as: 'common', class: Google::Apis::ServiceusageV1::CommonLanguageSettings, decorator: Google::Apis::ServiceusageV1::CommonLanguageSettings::Representation
1242
1291
 
1292
+ hash :renamed_services, as: 'renamedServices'
1243
1293
  end
1244
1294
  end
1245
1295
 
@@ -1385,6 +1435,75 @@ module Google
1385
1435
  end
1386
1436
  end
1387
1437
 
1438
+ class GoogleApiServiceusageV2betaAnalysis
1439
+ # @private
1440
+ class Representation < Google::Apis::Core::JsonRepresentation
1441
+ property :analysis, as: 'analysis', class: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaAnalysisResult, decorator: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaAnalysisResult::Representation
1442
+
1443
+ property :analysis_type, as: 'analysisType'
1444
+ property :display_name, as: 'displayName'
1445
+ property :service, as: 'service'
1446
+ end
1447
+ end
1448
+
1449
+ class GoogleApiServiceusageV2betaAnalysisResult
1450
+ # @private
1451
+ class Representation < Google::Apis::Core::JsonRepresentation
1452
+ collection :blockers, as: 'blockers', class: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaImpact, decorator: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaImpact::Representation
1453
+
1454
+ collection :warnings, as: 'warnings', class: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaImpact, decorator: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaImpact::Representation
1455
+
1456
+ end
1457
+ end
1458
+
1459
+ class GoogleApiServiceusageV2betaAnalyzeConsumerPolicyMetadata
1460
+ # @private
1461
+ class Representation < Google::Apis::Core::JsonRepresentation
1462
+ end
1463
+ end
1464
+
1465
+ class GoogleApiServiceusageV2betaAnalyzeConsumerPolicyResponse
1466
+ # @private
1467
+ class Representation < Google::Apis::Core::JsonRepresentation
1468
+ collection :analysis, as: 'analysis', class: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaAnalysis, decorator: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaAnalysis::Representation
1469
+
1470
+ end
1471
+ end
1472
+
1473
+ class GoogleApiServiceusageV2betaConsumerPolicy
1474
+ # @private
1475
+ class Representation < Google::Apis::Core::JsonRepresentation
1476
+ hash :annotations, as: 'annotations'
1477
+ property :create_time, as: 'createTime'
1478
+ collection :enable_rules, as: 'enableRules', class: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaEnableRule, decorator: Google::Apis::ServiceusageV1::GoogleApiServiceusageV2betaEnableRule::Representation
1479
+
1480
+ property :etag, as: 'etag'
1481
+ property :name, as: 'name'
1482
+ property :update_time, as: 'updateTime'
1483
+ end
1484
+ end
1485
+
1486
+ class GoogleApiServiceusageV2betaEnableRule
1487
+ # @private
1488
+ class Representation < Google::Apis::Core::JsonRepresentation
1489
+ collection :services, as: 'services'
1490
+ end
1491
+ end
1492
+
1493
+ class GoogleApiServiceusageV2betaImpact
1494
+ # @private
1495
+ class Representation < Google::Apis::Core::JsonRepresentation
1496
+ property :detail, as: 'detail'
1497
+ property :impact_type, as: 'impactType'
1498
+ end
1499
+ end
1500
+
1501
+ class GoogleApiServiceusageV2betaUpdateConsumerPolicyMetadata
1502
+ # @private
1503
+ class Representation < Google::Apis::Core::JsonRepresentation
1504
+ end
1505
+ end
1506
+
1388
1507
  class Http
1389
1508
  # @private
1390
1509
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -59,8 +59,8 @@ module Google
59
59
  # Clients can use Operations.GetOperation or other methods to check whether the
60
60
  # cancellation succeeded or whether the operation completed despite cancellation.
61
61
  # On successful cancellation, the operation is not deleted; instead, it becomes
62
- # an operation with an Operation.error value with a google.rpc.Status.code of 1,
63
- # corresponding to `Code.CANCELLED`.
62
+ # an operation with an Operation.error value with a google.rpc.Status.code of `1`
63
+ # , corresponding to `Code.CANCELLED`.
64
64
  # @param [String] name
65
65
  # The name of the operation resource to be cancelled.
66
66
  # @param [Google::Apis::ServiceusageV1::CancelOperationRequest] cancel_operation_request_object
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-serviceusage_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.58.0
4
+ version: 0.60.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-10-06 00:00:00.000000000 Z
11
+ date: 2024-12-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.58.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.60.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-serviceusage_v1
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.5.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Usage API V1