File tree Expand file tree Collapse file tree 5 files changed +21
-2
lines changed
generated/google-apis-serviceusage_v1beta1
lib/google/apis/serviceusage_v1beta1 Expand file tree Collapse file tree 5 files changed +21
-2
lines changed Original file line number Diff line number Diff line change @@ -317627,6 +317627,7 @@
317627317627"/serviceusage:v1beta1/Impact": impact
317628317628"/serviceusage:v1beta1/Impact/detail": detail
317629317629"/serviceusage:v1beta1/Impact/impactType": impact_type
317630+ "/serviceusage:v1beta1/Impact/parent": parent
317630317631"/serviceusage:v1beta1/ImportAdminOverridesMetadata": import_admin_overrides_metadata
317631317632"/serviceusage:v1beta1/ImportAdminOverridesRequest": import_admin_overrides_request
317632317633"/serviceusage:v1beta1/ImportAdminOverridesRequest/force": force
Original file line number Diff line number Diff line change 11# Release history for google-apis-serviceusage_v1beta1
22
3+ ### v0.62.0 (2025-01-05)
4+
5+ * Regenerated from discovery document revision 20241219
6+
37### v0.61.0 (2024-12-15)
48
59* Regenerated from discovery document revision 20241205
Original file line number Diff line number Diff line change @@ -3174,6 +3174,18 @@ class Impact
31743174 # @return [String]
31753175 attr_accessor :impact_type
31763176
3177+ # The parent resource that the analysis is based on and the service name that
3178+ # the analysis is for. Example: `projects/100/services/compute.googleapis.com`,
3179+ # folders/101/services/compute.googleapis.com` and `organizations/102/services/
3180+ # compute.googleapis.com`. Usually, the parent resource here is same as the
3181+ # parent resource of the analyzed policy. However, for some analysis types, the
3182+ # parent can be different. For example, for resource existence analysis, if the
3183+ # parent resource of the analyzed policy is a folder or an organization, the
3184+ # parent resource here can still be the project that contains the resources.
3185+ # Corresponds to the JSON property `parent`
3186+ # @return [String]
3187+ attr_accessor :parent
3188+
31773189 def initialize ( **args )
31783190 update! ( **args )
31793191 end
@@ -3182,6 +3194,7 @@ def initialize(**args)
31823194 def update! ( **args )
31833195 @detail = args [ :detail ] if args . key? ( :detail )
31843196 @impact_type = args [ :impact_type ] if args . key? ( :impact_type )
3197+ @parent = args [ :parent ] if args . key? ( :parent )
31853198 end
31863199 end
31873200
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
1616 module Apis
1717 module ServiceusageV1beta1
1818 # Version of the google-apis-serviceusage_v1beta1 gem
19- GEM_VERSION = "0.61 .0"
19+ GEM_VERSION = "0.62 .0"
2020
2121 # Version of the code generator used to generate this client
2222 GENERATOR_VERSION = "0.15.1"
2323
2424 # Revision of the discovery document this client was generated from
25- REVISION = "20241205 "
25+ REVISION = "20241219 "
2626 end
2727 end
2828end
Original file line number Diff line number Diff line change @@ -1615,6 +1615,7 @@ class Impact
16151615 class Representation < Google ::Apis ::Core ::JsonRepresentation
16161616 property :detail , as : 'detail'
16171617 property :impact_type , as : 'impactType'
1618+ property :parent , as : 'parent'
16181619 end
16191620 end
16201621
You can’t perform that action at this time.
0 commit comments