google-apis-servicemanagement_v1 0.24.0 → 0.27.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: 126d81613768bc9d85089b44942ccc60724bd4bf0a2afd87a6578230c15379d2
4
- data.tar.gz: e4cec108abf9dd23f65b80bd027e6e8b5824b06bf4256f8300101fe7f92aadca
3
+ metadata.gz: 7107b1bd17a379b33c8c5ec87b1e72c617be4f474302883d2bffb319a7ad0dbc
4
+ data.tar.gz: adbc8b4bafe0e513b4284c4e27c69d74e7942e985e4514bc9fe1333091abce83
5
5
  SHA512:
6
- metadata.gz: 2d71bb818e0a437ca6e0c973dfa401ee5ab8f196073115a314ae57f594f8137e3135a621a6031d1a0e9e9b23eccdfbed86ab6acf398be24731dad1605dfc3fa4
7
- data.tar.gz: 8fd268799bdad449f0e6023a161a75619d0afdc07c38922026f912b02e5f79e5ada9b62cc6f65814c3b69951067af537fbeec926dd25925c0c7131e0962e49ec
6
+ metadata.gz: 3b29c1144feae26b05e2ba6e62a92d459a1093cc98de89422ef50f61cae4049b614cd76925412fa5244156c2625f762351b8240fb27b4a6d9302a54d81bacbdb
7
+ data.tar.gz: 6ba4277e9008777b4d113a98eb34608a28ab1b02a3735f01573f25ac74ce6bdec14a2df5cd99fb8936dbbf5960762c6afcfccbb7f0f8bc7af2d39f31c2ba5214
data/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Release history for google-apis-servicemanagement_v1
2
2
 
3
+ ### v0.27.0 (2022-05-25)
4
+
5
+ * Regenerated from discovery document revision 20220524
6
+
7
+ ### v0.26.0 (2022-05-10)
8
+
9
+ * Regenerated from discovery document revision 20220506
10
+
11
+ ### v0.25.0 (2022-05-04)
12
+
13
+ * Regenerated from discovery document revision 20220429
14
+
3
15
  ### v0.24.0 (2022-04-27)
4
16
 
5
17
  * Regenerated from discovery document revision 20220422
@@ -131,8 +131,8 @@ module Google
131
131
  # "audit_log_configs": [ ` "log_type": "DATA_READ" `, ` "log_type": "DATA_WRITE"
132
132
  # , "exempted_members": [ "user:aliya@example.com" ] ` ] ` ] ` For sampleservice,
133
133
  # this policy enables DATA_READ, DATA_WRITE and ADMIN_READ logging. It also
134
- # exempts jose@example.com from DATA_READ logging, and aliya@example.com from
135
- # DATA_WRITE logging.
134
+ # exempts `jose@example.com` from DATA_READ logging, and `aliya@example.com`
135
+ # from DATA_WRITE logging.
136
136
  class AuditConfig
137
137
  include Google::Apis::Core::Hashable
138
138
 
@@ -2341,6 +2341,15 @@ module Google
2341
2341
  class MetricRule
2342
2342
  include Google::Apis::Core::Hashable
2343
2343
 
2344
+ # Metrics to update when the selected methods are called. The key of the map is
2345
+ # the metric name, the value is the DynamicCostType to specify how to calculate
2346
+ # the cost from the request. The cost amount will be increased for the metric
2347
+ # against which the quota limits are defined. It is only implemented in CloudESF(
2348
+ # go/cloudesf)
2349
+ # Corresponds to the JSON property `dynamicMetricCosts`
2350
+ # @return [Hash<String,String>]
2351
+ attr_accessor :dynamic_metric_costs
2352
+
2344
2353
  # Metrics to update when the selected methods are called, and the associated
2345
2354
  # cost applied to each metric. The key of the map is the metric name, and the
2346
2355
  # values are the amount increased for the metric against which the quota limits
@@ -2361,6 +2370,7 @@ module Google
2361
2370
 
2362
2371
  # Update properties of this object
2363
2372
  def update!(**args)
2373
+ @dynamic_metric_costs = args[:dynamic_metric_costs] if args.key?(:dynamic_metric_costs)
2364
2374
  @metric_costs = args[:metric_costs] if args.key?(:metric_costs)
2365
2375
  @selector = args[:selector] if args.key?(:selector)
2366
2376
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ServicemanagementV1
18
18
  # Version of the google-apis-servicemanagement_v1 gem
19
- GEM_VERSION = "0.24.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220422"
25
+ REVISION = "20220524"
26
26
  end
27
27
  end
28
28
  end
@@ -1077,6 +1077,7 @@ module Google
1077
1077
  class MetricRule
1078
1078
  # @private
1079
1079
  class Representation < Google::Apis::Core::JsonRepresentation
1080
+ hash :dynamic_metric_costs, as: 'dynamicMetricCosts'
1080
1081
  hash :metric_costs, as: 'metricCosts'
1081
1082
  property :selector, as: 'selector'
1082
1083
  end
@@ -313,8 +313,9 @@ module Google
313
313
  # Gets the access control policy for a resource. Returns an empty policy if the
314
314
  # resource exists and does not have a policy set.
315
315
  # @param [String] resource
316
- # REQUIRED: The resource for which the policy is being requested. See the
317
- # operation documentation for the appropriate value for this field.
316
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
317
+ # names](https://cloud.google.com/apis/design/resource_names) for the
318
+ # appropriate value for this field.
318
319
  # @param [Google::Apis::ServicemanagementV1::GetIamPolicyRequest] get_iam_policy_request_object
319
320
  # @param [String] fields
320
321
  # Selector specifying which fields to include in a partial response.
@@ -353,7 +354,7 @@ module Google
353
354
  # Management implementation accepts the following forms: - project:
354
355
  # @param [Fixnum] page_size
355
356
  # The max number of items to include in the response list. Page size is 50 if
356
- # not specified. Maximum value is 100.
357
+ # not specified. Maximum value is 500.
357
358
  # @param [String] page_token
358
359
  # Token identifying which result to start with; returned by a previous list call.
359
360
  # @param [String] producer_project_id
@@ -392,8 +393,9 @@ module Google
392
393
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
393
394
  # PERMISSION_DENIED` errors.
394
395
  # @param [String] resource
395
- # REQUIRED: The resource for which the policy is being specified. See the
396
- # operation documentation for the appropriate value for this field.
396
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
397
+ # names](https://cloud.google.com/apis/design/resource_names) for the
398
+ # appropriate value for this field.
397
399
  # @param [Google::Apis::ServicemanagementV1::SetIamPolicyRequest] set_iam_policy_request_object
398
400
  # @param [String] fields
399
401
  # Selector specifying which fields to include in a partial response.
@@ -430,8 +432,9 @@ module Google
430
432
  # permission-aware UIs and command-line tools, not for authorization checking.
431
433
  # This operation may "fail open" without warning.
432
434
  # @param [String] resource
433
- # REQUIRED: The resource for which the policy detail is being requested. See the
434
- # operation documentation for the appropriate value for this field.
435
+ # REQUIRED: The resource for which the policy detail is being requested. See [
436
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
437
+ # appropriate value for this field.
435
438
  # @param [Google::Apis::ServicemanagementV1::TestIamPermissionsRequest] test_iam_permissions_request_object
436
439
  # @param [String] fields
437
440
  # Selector specifying which fields to include in a partial response.
@@ -659,8 +662,9 @@ module Google
659
662
  # Gets the access control policy for a resource. Returns an empty policy if the
660
663
  # resource exists and does not have a policy set.
661
664
  # @param [String] resource
662
- # REQUIRED: The resource for which the policy is being requested. See the
663
- # operation documentation for the appropriate value for this field.
665
+ # REQUIRED: The resource for which the policy is being requested. See [Resource
666
+ # names](https://cloud.google.com/apis/design/resource_names) for the
667
+ # appropriate value for this field.
664
668
  # @param [Google::Apis::ServicemanagementV1::GetIamPolicyRequest] get_iam_policy_request_object
665
669
  # @param [String] fields
666
670
  # Selector specifying which fields to include in a partial response.
@@ -695,8 +699,9 @@ module Google
695
699
  # existing policy. Can return `NOT_FOUND`, `INVALID_ARGUMENT`, and `
696
700
  # PERMISSION_DENIED` errors.
697
701
  # @param [String] resource
698
- # REQUIRED: The resource for which the policy is being specified. See the
699
- # operation documentation for the appropriate value for this field.
702
+ # REQUIRED: The resource for which the policy is being specified. See [Resource
703
+ # names](https://cloud.google.com/apis/design/resource_names) for the
704
+ # appropriate value for this field.
700
705
  # @param [Google::Apis::ServicemanagementV1::SetIamPolicyRequest] set_iam_policy_request_object
701
706
  # @param [String] fields
702
707
  # Selector specifying which fields to include in a partial response.
@@ -733,8 +738,9 @@ module Google
733
738
  # permission-aware UIs and command-line tools, not for authorization checking.
734
739
  # This operation may "fail open" without warning.
735
740
  # @param [String] resource
736
- # REQUIRED: The resource for which the policy detail is being requested. See the
737
- # operation documentation for the appropriate value for this field.
741
+ # REQUIRED: The resource for which the policy detail is being requested. See [
742
+ # Resource names](https://cloud.google.com/apis/design/resource_names) for the
743
+ # appropriate value for this field.
738
744
  # @param [Google::Apis::ServicemanagementV1::TestIamPermissionsRequest] test_iam_permissions_request_object
739
745
  # @param [String] fields
740
746
  # Selector specifying which fields to include in a partial response.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-servicemanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.0
4
+ version: 0.27.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: 2022-05-02 00:00:00.000000000 Z
11
+ date: 2022-05-30 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-servicemanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.24.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-servicemanagement_v1/v0.27.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-servicemanagement_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.3.5
78
+ rubygems_version: 3.3.14
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Management API V1