google-apis-serviceusage_v1 0.60.0 → 0.62.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: e47fc183b125945903ac857c2b2faefe525499e8b038d48147a14028ca2fd550
4
- data.tar.gz: a27b0f64acd5978276ea043d7a5f1a8ca9ea8dc9f7ff35c69f4cb876325b1d8d
3
+ metadata.gz: 701ebb49ef8e95af118f2530683db30e071de59131b44f387c4d2bcb92e7a4e0
4
+ data.tar.gz: 6975cba2966da47dae76993e0da73d0d3ee721c0a258b64e85d5fde419a7c230
5
5
  SHA512:
6
- metadata.gz: d16153e1e445a55d1e9a62ca487196a8cf05e3d49f980da70c57584e93bba0e5bfb14e8a8ad6d08b713159ad1c6c76fb0c4e715f2c29ac3e9a21b75679401d8f
7
- data.tar.gz: 9f343fb2b811576c4f351b34bc0209039c38a884b39151a80d3a36944e5c35a2365905ece27a38a7e2405582790cc635f9da58afee10be1f1414a5f83b61c27e
6
+ metadata.gz: cf9696da0f126d308748b99c8fed816fca0a30e348a29085dcc2797b7f7746d079caac590397ef89ffa0f0b252c0826c17b1aed170cdbc71283d12899f38d960
7
+ data.tar.gz: 7da081bba0bf2d507797f83f7d30a7fd44ba123d7874df591e3682a08b968d8e196fcb67f6a57308f44784218fb67df49eefa6a2f805a7db0b570b1e1cb9d960
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-serviceusage_v1
2
2
 
3
+ ### v0.62.0 (2025-01-05)
4
+
5
+ * Regenerated from discovery document revision 20241219
6
+
7
+ ### v0.61.0 (2024-12-15)
8
+
9
+ * Regenerated from discovery document revision 20241205
10
+
3
11
  ### v0.60.0 (2024-11-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20241115
@@ -1289,6 +1289,12 @@ module Google
1289
1289
  class Documentation
1290
1290
  include Google::Apis::Core::Hashable
1291
1291
 
1292
+ # Optional information about the IAM configuration. This is typically used to
1293
+ # link to documentation about a product's IAM roles and permissions.
1294
+ # Corresponds to the JSON property `additionalIamInfo`
1295
+ # @return [String]
1296
+ attr_accessor :additional_iam_info
1297
+
1292
1298
  # The URL to the root of documentation.
1293
1299
  # Corresponds to the JSON property `documentationRootUrl`
1294
1300
  # @return [String]
@@ -1341,6 +1347,7 @@ module Google
1341
1347
 
1342
1348
  # Update properties of this object
1343
1349
  def update!(**args)
1350
+ @additional_iam_info = args[:additional_iam_info] if args.key?(:additional_iam_info)
1344
1351
  @documentation_root_url = args[:documentation_root_url] if args.key?(:documentation_root_url)
1345
1352
  @overview = args[:overview] if args.key?(:overview)
1346
1353
  @pages = args[:pages] if args.key?(:pages)
@@ -3089,6 +3096,18 @@ module Google
3089
3096
  # @return [String]
3090
3097
  attr_accessor :impact_type
3091
3098
 
3099
+ # The parent resource that the analysis is based on and the service name that
3100
+ # the analysis is for. Example: `projects/100/services/compute.googleapis.com`,
3101
+ # folders/101/services/compute.googleapis.com` and `organizations/102/services/
3102
+ # compute.googleapis.com`. Usually, the parent resource here is same as the
3103
+ # parent resource of the analyzed policy. However, for some analysis types, the
3104
+ # parent can be different. For example, for resource existence analysis, if the
3105
+ # parent resource of the analyzed policy is a folder or an organization, the
3106
+ # parent resource here can still be the project that contains the resources.
3107
+ # Corresponds to the JSON property `parent`
3108
+ # @return [String]
3109
+ attr_accessor :parent
3110
+
3092
3111
  def initialize(**args)
3093
3112
  update!(**args)
3094
3113
  end
@@ -3097,6 +3116,7 @@ module Google
3097
3116
  def update!(**args)
3098
3117
  @detail = args[:detail] if args.key?(:detail)
3099
3118
  @impact_type = args[:impact_type] if args.key?(:impact_type)
3119
+ @parent = args[:parent] if args.key?(:parent)
3100
3120
  end
3101
3121
  end
3102
3122
 
@@ -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.60.0"
19
+ GEM_VERSION = "0.62.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 = "20241115"
25
+ REVISION = "20241219"
26
26
  end
27
27
  end
28
28
  end
@@ -1126,6 +1126,7 @@ module Google
1126
1126
  class Documentation
1127
1127
  # @private
1128
1128
  class Representation < Google::Apis::Core::JsonRepresentation
1129
+ property :additional_iam_info, as: 'additionalIamInfo'
1129
1130
  property :documentation_root_url, as: 'documentationRootUrl'
1130
1131
  property :overview, as: 'overview'
1131
1132
  collection :pages, as: 'pages', class: Google::Apis::ServiceusageV1::Page, decorator: Google::Apis::ServiceusageV1::Page::Representation
@@ -1536,6 +1537,7 @@ module Google
1536
1537
  class Representation < Google::Apis::Core::JsonRepresentation
1537
1538
  property :detail, as: 'detail'
1538
1539
  property :impact_type, as: 'impactType'
1540
+ property :parent, as: 'parent'
1539
1541
  end
1540
1542
  end
1541
1543
 
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.60.0
4
+ version: 0.62.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-12-04 00:00:00.000000000 Z
11
+ date: 2025-01-05 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.60.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-serviceusage_v1/v0.62.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.22
78
+ rubygems_version: 3.5.23
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Service Usage API V1