google-apis-cloudasset_v1 0.15.0 → 0.16.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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 286ee1f529c088104b4afa8fb71de92eb0f22d424de62fcd7f279b127afe7be0
|
4
|
+
data.tar.gz: baf1fb71f1245b5df8e5d0017b4517d8bbc5101d43aa77772b420a933aefcd7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 55d1d9854ebdb16a520cc3b5a28404b8e66d15d4577a581a54c3ac4d7e59321b124326bf3a9846ecbeb17b837690d27081d3ff3f70ae705bccbba3b7fa5defce
|
7
|
+
data.tar.gz: 92529fbeedf9f6964fbd90d66c92a27b4927ff1717816d9479023680fe99aef6994c6e5be64d80e9b7601c972501813a031e3d030b43960d83a145c851ea17ab
|
data/CHANGELOG.md
CHANGED
@@ -50,6 +50,26 @@ module Google
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
# Represents the metadata of the longrunning operation for the
|
54
|
+
# AnalyzeIamPolicyLongrunning rpc.
|
55
|
+
class AnalyzeIamPolicyLongrunningMetadata
|
56
|
+
include Google::Apis::Core::Hashable
|
57
|
+
|
58
|
+
# Output only. The time the operation was created.
|
59
|
+
# Corresponds to the JSON property `createTime`
|
60
|
+
# @return [String]
|
61
|
+
attr_accessor :create_time
|
62
|
+
|
63
|
+
def initialize(**args)
|
64
|
+
update!(**args)
|
65
|
+
end
|
66
|
+
|
67
|
+
# Update properties of this object
|
68
|
+
def update!(**args)
|
69
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
53
73
|
# A request message for AssetService.AnalyzeIamPolicyLongrunning.
|
54
74
|
class AnalyzeIamPolicyLongrunningRequest
|
55
75
|
include Google::Apis::Core::Hashable
|
@@ -210,7 +230,7 @@ module Google
|
|
210
230
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
211
231
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
212
232
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
213
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
233
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
214
234
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
215
235
|
# google.com/iam/docs/).
|
216
236
|
# Corresponds to the JSON property `iamPolicy`
|
@@ -624,6 +644,47 @@ module Google
|
|
624
644
|
end
|
625
645
|
end
|
626
646
|
|
647
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
648
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
649
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
650
|
+
# following: * A full date, with non-zero year, month, and day values * A month
|
651
|
+
# and day value, with a zero year, such as an anniversary * A year on its own,
|
652
|
+
# with zero month and day values * A year and month value, with a zero day, such
|
653
|
+
# as a credit card expiration date Related types are google.type.TimeOfDay and `
|
654
|
+
# google.protobuf.Timestamp`.
|
655
|
+
class Date
|
656
|
+
include Google::Apis::Core::Hashable
|
657
|
+
|
658
|
+
# Day of a month. Must be from 1 to 31 and valid for the year and month, or 0 to
|
659
|
+
# specify a year by itself or a year and month where the day isn't significant.
|
660
|
+
# Corresponds to the JSON property `day`
|
661
|
+
# @return [Fixnum]
|
662
|
+
attr_accessor :day
|
663
|
+
|
664
|
+
# Month of a year. Must be from 1 to 12, or 0 to specify a year without a month
|
665
|
+
# and day.
|
666
|
+
# Corresponds to the JSON property `month`
|
667
|
+
# @return [Fixnum]
|
668
|
+
attr_accessor :month
|
669
|
+
|
670
|
+
# Year of the date. Must be from 1 to 9999, or 0 to specify a date without a
|
671
|
+
# year.
|
672
|
+
# Corresponds to the JSON property `year`
|
673
|
+
# @return [Fixnum]
|
674
|
+
attr_accessor :year
|
675
|
+
|
676
|
+
def initialize(**args)
|
677
|
+
update!(**args)
|
678
|
+
end
|
679
|
+
|
680
|
+
# Update properties of this object
|
681
|
+
def update!(**args)
|
682
|
+
@day = args[:day] if args.key?(:day)
|
683
|
+
@month = args[:month] if args.key?(:month)
|
684
|
+
@year = args[:year] if args.key?(:year)
|
685
|
+
end
|
686
|
+
end
|
687
|
+
|
627
688
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
628
689
|
# messages in your APIs. A typical example is to use it as the request or the
|
629
690
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -1283,7 +1344,7 @@ module Google
|
|
1283
1344
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
1284
1345
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
1285
1346
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
1286
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
1347
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
1287
1348
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
1288
1349
|
# google.com/iam/docs/).
|
1289
1350
|
# Corresponds to the JSON property `iamPolicy`
|
@@ -2905,7 +2966,7 @@ module Google
|
|
2905
2966
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
2906
2967
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
2907
2968
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
2908
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
2969
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
2909
2970
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
2910
2971
|
# google.com/iam/docs/).
|
2911
2972
|
# Corresponds to the JSON property `policy`
|
@@ -3512,7 +3573,7 @@ module Google
|
|
3512
3573
|
# resourcemanager.organizationAdmin - members: - user:eve@example.com role:
|
3513
3574
|
# roles/resourcemanager.organizationViewer condition: title: expirable access
|
3514
3575
|
# description: Does not grant access after Sep 2020 expression: request.time <
|
3515
|
-
# timestamp('2020-10-01T00:00:00.000Z')
|
3576
|
+
# timestamp('2020-10-01T00:00:00.000Z') etag: BwWWja0YfJA= version: 3 For a
|
3516
3577
|
# description of IAM and its features, see the [IAM documentation](https://cloud.
|
3517
3578
|
# google.com/iam/docs/).
|
3518
3579
|
class Policy
|
@@ -3670,6 +3731,51 @@ module Google
|
|
3670
3731
|
end
|
3671
3732
|
end
|
3672
3733
|
|
3734
|
+
# The detailed related resource.
|
3735
|
+
class RelatedResource
|
3736
|
+
include Google::Apis::Core::Hashable
|
3737
|
+
|
3738
|
+
# The type of the asset. Example: `compute.googleapis.com/Instance`
|
3739
|
+
# Corresponds to the JSON property `assetType`
|
3740
|
+
# @return [String]
|
3741
|
+
attr_accessor :asset_type
|
3742
|
+
|
3743
|
+
# The full resource name of the related resource. Example: `//compute.googleapis.
|
3744
|
+
# com/projects/my_proj_123/zones/instance/instance123`
|
3745
|
+
# Corresponds to the JSON property `fullResourceName`
|
3746
|
+
# @return [String]
|
3747
|
+
attr_accessor :full_resource_name
|
3748
|
+
|
3749
|
+
def initialize(**args)
|
3750
|
+
update!(**args)
|
3751
|
+
end
|
3752
|
+
|
3753
|
+
# Update properties of this object
|
3754
|
+
def update!(**args)
|
3755
|
+
@asset_type = args[:asset_type] if args.key?(:asset_type)
|
3756
|
+
@full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
|
3757
|
+
end
|
3758
|
+
end
|
3759
|
+
|
3760
|
+
# The related resources of the primary resource.
|
3761
|
+
class RelatedResources
|
3762
|
+
include Google::Apis::Core::Hashable
|
3763
|
+
|
3764
|
+
# The detailed related resources of the primary resource.
|
3765
|
+
# Corresponds to the JSON property `relatedResources`
|
3766
|
+
# @return [Array<Google::Apis::CloudassetV1::RelatedResource>]
|
3767
|
+
attr_accessor :related_resources
|
3768
|
+
|
3769
|
+
def initialize(**args)
|
3770
|
+
update!(**args)
|
3771
|
+
end
|
3772
|
+
|
3773
|
+
# Update properties of this object
|
3774
|
+
def update!(**args)
|
3775
|
+
@related_resources = args[:related_resources] if args.key?(:related_resources)
|
3776
|
+
end
|
3777
|
+
end
|
3778
|
+
|
3673
3779
|
# The relationship attributes which include `type`, `source_resource_type`, `
|
3674
3780
|
# target_resource_type` and `action`.
|
3675
3781
|
class RelationshipAttributes
|
@@ -3939,6 +4045,15 @@ module Google
|
|
3939
4045
|
# @return [String]
|
3940
4046
|
attr_accessor :project
|
3941
4047
|
|
4048
|
+
# A map of related resources of this resource, keyed by the relationship type. A
|
4049
|
+
# relationship type is in the format of `SourceType`_`ACTION`_`DestType`.
|
4050
|
+
# Example: `DISK_TO_INSTANCE`, `DISK_TO_NETWORK`, `INSTANCE_TO_INSTANCEGROUP`.
|
4051
|
+
# See [supported relationship types](https://cloud.google.com/asset-inventory/
|
4052
|
+
# docs/supported-asset-types#supported_relationship_types).
|
4053
|
+
# Corresponds to the JSON property `relationships`
|
4054
|
+
# @return [Hash<String,Google::Apis::CloudassetV1::RelatedResources>]
|
4055
|
+
attr_accessor :relationships
|
4056
|
+
|
3942
4057
|
# The state of this resource. Different resources types have different state
|
3943
4058
|
# definitions that are mapped from various fields of different resource types.
|
3944
4059
|
# This field is available only when the resource's proto contains it. Example:
|
@@ -3998,6 +4113,7 @@ module Google
|
|
3998
4113
|
@parent_asset_type = args[:parent_asset_type] if args.key?(:parent_asset_type)
|
3999
4114
|
@parent_full_resource_name = args[:parent_full_resource_name] if args.key?(:parent_full_resource_name)
|
4000
4115
|
@project = args[:project] if args.key?(:project)
|
4116
|
+
@relationships = args[:relationships] if args.key?(:relationships)
|
4001
4117
|
@state = args[:state] if args.key?(:state)
|
4002
4118
|
@update_time = args[:update_time] if args.key?(:update_time)
|
4003
4119
|
@versioned_resources = args[:versioned_resources] if args.key?(:versioned_resources)
|
@@ -4113,6 +4229,14 @@ module Google
|
|
4113
4229
|
# @return [Google::Apis::CloudassetV1::WindowsQuickFixEngineeringPackage]
|
4114
4230
|
attr_accessor :qfe_package
|
4115
4231
|
|
4232
|
+
# Contains information about a Windows application as retrieved from the Windows
|
4233
|
+
# Registry. For more information about these fields, see [Windows Installer
|
4234
|
+
# Properties for the Uninstall Registry](https://docs.microsoft.com/en-us/
|
4235
|
+
# windows/win32/msi/uninstall-registry-key)`: class="external" `
|
4236
|
+
# Corresponds to the JSON property `windowsApplication`
|
4237
|
+
# @return [Google::Apis::CloudassetV1::WindowsApplication]
|
4238
|
+
attr_accessor :windows_application
|
4239
|
+
|
4116
4240
|
# Details related to a Windows Update package. Field data and names are taken
|
4117
4241
|
# from Windows Update API IUpdate Interface: https://docs.microsoft.com/en-us/
|
4118
4242
|
# windows/win32/api/_wua/ Descriptive fields like title, and description are
|
@@ -4148,6 +4272,7 @@ module Google
|
|
4148
4272
|
@cos_package = args[:cos_package] if args.key?(:cos_package)
|
4149
4273
|
@googet_package = args[:googet_package] if args.key?(:googet_package)
|
4150
4274
|
@qfe_package = args[:qfe_package] if args.key?(:qfe_package)
|
4275
|
+
@windows_application = args[:windows_application] if args.key?(:windows_application)
|
4151
4276
|
@wua_package = args[:wua_package] if args.key?(:wua_package)
|
4152
4277
|
@yum_package = args[:yum_package] if args.key?(:yum_package)
|
4153
4278
|
@zypper_package = args[:zypper_package] if args.key?(:zypper_package)
|
@@ -4373,6 +4498,59 @@ module Google
|
|
4373
4498
|
end
|
4374
4499
|
end
|
4375
4500
|
|
4501
|
+
# Contains information about a Windows application as retrieved from the Windows
|
4502
|
+
# Registry. For more information about these fields, see [Windows Installer
|
4503
|
+
# Properties for the Uninstall Registry](https://docs.microsoft.com/en-us/
|
4504
|
+
# windows/win32/msi/uninstall-registry-key)`: class="external" `
|
4505
|
+
class WindowsApplication
|
4506
|
+
include Google::Apis::Core::Hashable
|
4507
|
+
|
4508
|
+
# The name of the application or product.
|
4509
|
+
# Corresponds to the JSON property `displayName`
|
4510
|
+
# @return [String]
|
4511
|
+
attr_accessor :display_name
|
4512
|
+
|
4513
|
+
# The version of the product or application in string format.
|
4514
|
+
# Corresponds to the JSON property `displayVersion`
|
4515
|
+
# @return [String]
|
4516
|
+
attr_accessor :display_version
|
4517
|
+
|
4518
|
+
# The internet address for technical support.
|
4519
|
+
# Corresponds to the JSON property `helpLink`
|
4520
|
+
# @return [String]
|
4521
|
+
attr_accessor :help_link
|
4522
|
+
|
4523
|
+
# Represents a whole or partial calendar date, such as a birthday. The time of
|
4524
|
+
# day and time zone are either specified elsewhere or are insignificant. The
|
4525
|
+
# date is relative to the Gregorian Calendar. This can represent one of the
|
4526
|
+
# following: * A full date, with non-zero year, month, and day values * A month
|
4527
|
+
# and day value, with a zero year, such as an anniversary * A year on its own,
|
4528
|
+
# with zero month and day values * A year and month value, with a zero day, such
|
4529
|
+
# as a credit card expiration date Related types are google.type.TimeOfDay and `
|
4530
|
+
# google.protobuf.Timestamp`.
|
4531
|
+
# Corresponds to the JSON property `installDate`
|
4532
|
+
# @return [Google::Apis::CloudassetV1::Date]
|
4533
|
+
attr_accessor :install_date
|
4534
|
+
|
4535
|
+
# The name of the manufacturer for the product or application.
|
4536
|
+
# Corresponds to the JSON property `publisher`
|
4537
|
+
# @return [String]
|
4538
|
+
attr_accessor :publisher
|
4539
|
+
|
4540
|
+
def initialize(**args)
|
4541
|
+
update!(**args)
|
4542
|
+
end
|
4543
|
+
|
4544
|
+
# Update properties of this object
|
4545
|
+
def update!(**args)
|
4546
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
4547
|
+
@display_version = args[:display_version] if args.key?(:display_version)
|
4548
|
+
@help_link = args[:help_link] if args.key?(:help_link)
|
4549
|
+
@install_date = args[:install_date] if args.key?(:install_date)
|
4550
|
+
@publisher = args[:publisher] if args.key?(:publisher)
|
4551
|
+
end
|
4552
|
+
end
|
4553
|
+
|
4376
4554
|
# Information related to a Quick Fix Engineering package. Fields are taken from
|
4377
4555
|
# Windows QuickFixEngineering Interface and match the source names: https://docs.
|
4378
4556
|
# microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module CloudassetV1
|
18
18
|
# Version of the google-apis-cloudasset_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.16.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210827"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AnalyzeIamPolicyLongrunningMetadata
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class AnalyzeIamPolicyLongrunningRequest
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -112,6 +118,12 @@ module Google
|
|
112
118
|
include Google::Apis::Core::JsonObjectSupport
|
113
119
|
end
|
114
120
|
|
121
|
+
class Date
|
122
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
123
|
+
|
124
|
+
include Google::Apis::Core::JsonObjectSupport
|
125
|
+
end
|
126
|
+
|
115
127
|
class Empty
|
116
128
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
117
129
|
|
@@ -514,6 +526,18 @@ module Google
|
|
514
526
|
include Google::Apis::Core::JsonObjectSupport
|
515
527
|
end
|
516
528
|
|
529
|
+
class RelatedResource
|
530
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
531
|
+
|
532
|
+
include Google::Apis::Core::JsonObjectSupport
|
533
|
+
end
|
534
|
+
|
535
|
+
class RelatedResources
|
536
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
537
|
+
|
538
|
+
include Google::Apis::Core::JsonObjectSupport
|
539
|
+
end
|
540
|
+
|
517
541
|
class RelationshipAttributes
|
518
542
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
519
543
|
|
@@ -592,6 +616,12 @@ module Google
|
|
592
616
|
include Google::Apis::Core::JsonObjectSupport
|
593
617
|
end
|
594
618
|
|
619
|
+
class WindowsApplication
|
620
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
621
|
+
|
622
|
+
include Google::Apis::Core::JsonObjectSupport
|
623
|
+
end
|
624
|
+
|
595
625
|
class WindowsQuickFixEngineeringPackage
|
596
626
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
597
627
|
|
@@ -624,6 +654,13 @@ module Google
|
|
624
654
|
end
|
625
655
|
end
|
626
656
|
|
657
|
+
class AnalyzeIamPolicyLongrunningMetadata
|
658
|
+
# @private
|
659
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
660
|
+
property :create_time, as: 'createTime'
|
661
|
+
end
|
662
|
+
end
|
663
|
+
|
627
664
|
class AnalyzeIamPolicyLongrunningRequest
|
628
665
|
# @private
|
629
666
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -764,6 +801,15 @@ module Google
|
|
764
801
|
end
|
765
802
|
end
|
766
803
|
|
804
|
+
class Date
|
805
|
+
# @private
|
806
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
807
|
+
property :day, as: 'day'
|
808
|
+
property :month, as: 'month'
|
809
|
+
property :year, as: 'year'
|
810
|
+
end
|
811
|
+
end
|
812
|
+
|
767
813
|
class Empty
|
768
814
|
# @private
|
769
815
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1465,6 +1511,22 @@ module Google
|
|
1465
1511
|
end
|
1466
1512
|
end
|
1467
1513
|
|
1514
|
+
class RelatedResource
|
1515
|
+
# @private
|
1516
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1517
|
+
property :asset_type, as: 'assetType'
|
1518
|
+
property :full_resource_name, as: 'fullResourceName'
|
1519
|
+
end
|
1520
|
+
end
|
1521
|
+
|
1522
|
+
class RelatedResources
|
1523
|
+
# @private
|
1524
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1525
|
+
collection :related_resources, as: 'relatedResources', class: Google::Apis::CloudassetV1::RelatedResource, decorator: Google::Apis::CloudassetV1::RelatedResource::Representation
|
1526
|
+
|
1527
|
+
end
|
1528
|
+
end
|
1529
|
+
|
1468
1530
|
class RelationshipAttributes
|
1469
1531
|
# @private
|
1470
1532
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1508,6 +1570,8 @@ module Google
|
|
1508
1570
|
property :parent_asset_type, as: 'parentAssetType'
|
1509
1571
|
property :parent_full_resource_name, as: 'parentFullResourceName'
|
1510
1572
|
property :project, as: 'project'
|
1573
|
+
hash :relationships, as: 'relationships', class: Google::Apis::CloudassetV1::RelatedResources, decorator: Google::Apis::CloudassetV1::RelatedResources::Representation
|
1574
|
+
|
1511
1575
|
property :state, as: 'state'
|
1512
1576
|
property :update_time, as: 'updateTime'
|
1513
1577
|
collection :versioned_resources, as: 'versionedResources', class: Google::Apis::CloudassetV1::VersionedResource, decorator: Google::Apis::CloudassetV1::VersionedResource::Representation
|
@@ -1551,6 +1615,8 @@ module Google
|
|
1551
1615
|
|
1552
1616
|
property :qfe_package, as: 'qfePackage', class: Google::Apis::CloudassetV1::WindowsQuickFixEngineeringPackage, decorator: Google::Apis::CloudassetV1::WindowsQuickFixEngineeringPackage::Representation
|
1553
1617
|
|
1618
|
+
property :windows_application, as: 'windowsApplication', class: Google::Apis::CloudassetV1::WindowsApplication, decorator: Google::Apis::CloudassetV1::WindowsApplication::Representation
|
1619
|
+
|
1554
1620
|
property :wua_package, as: 'wuaPackage', class: Google::Apis::CloudassetV1::WindowsUpdatePackage, decorator: Google::Apis::CloudassetV1::WindowsUpdatePackage::Representation
|
1555
1621
|
|
1556
1622
|
property :yum_package, as: 'yumPackage', class: Google::Apis::CloudassetV1::VersionedPackage, decorator: Google::Apis::CloudassetV1::VersionedPackage::Representation
|
@@ -1619,6 +1685,18 @@ module Google
|
|
1619
1685
|
end
|
1620
1686
|
end
|
1621
1687
|
|
1688
|
+
class WindowsApplication
|
1689
|
+
# @private
|
1690
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1691
|
+
property :display_name, as: 'displayName'
|
1692
|
+
property :display_version, as: 'displayVersion'
|
1693
|
+
property :help_link, as: 'helpLink'
|
1694
|
+
property :install_date, as: 'installDate', class: Google::Apis::CloudassetV1::Date, decorator: Google::Apis::CloudassetV1::Date::Representation
|
1695
|
+
|
1696
|
+
property :publisher, as: 'publisher'
|
1697
|
+
end
|
1698
|
+
end
|
1699
|
+
|
1622
1700
|
class WindowsQuickFixEngineeringPackage
|
1623
1701
|
# @private
|
1624
1702
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -29,7 +29,7 @@ module Google
|
|
29
29
|
# This is NOT the gem version.
|
30
30
|
VERSION = 'V1'
|
31
31
|
|
32
|
-
# See, edit, configure, and delete your Google Cloud
|
32
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
33
33
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
34
34
|
end
|
35
35
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-cloudasset_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.16.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: 2021-
|
11
|
+
date: 2021-09-06 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/master/generated/google-apis-cloudasset_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-cloudasset_v1/v0.16.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-cloudasset_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|