google-apis-networkmanagement_v1 0.63.0 → 0.64.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: b7477c7fc325833a1912d423452651125c7191442052c2586070704105aa024c
4
- data.tar.gz: 7cbdfbb3babf20e6879d71ef1390a0bdcd88ff259fac7130acd85e608ffb60e6
3
+ metadata.gz: cb9b0086d7ee9f0891bc7985573ab71ede8a5b1ba49281eae1234c96427c12b8
4
+ data.tar.gz: 57485424a53d8331d315f12bd7492bc935369963b2a4a49da5f04931bd91260c
5
5
  SHA512:
6
- metadata.gz: 6da212cf03be5379734dd49400eaae6a637f24af0aa0f340c6779b8b259bb1f87063a031560aee80890eed32cde56610af90fe6104e4889fae9b0e047b64ef03
7
- data.tar.gz: e9d02ba72d4ca8ad577196940fef975ee7f12043bde2064850b4229971799f1af7c1c59c919643045b0c723d0dd1fee9a86327094056fea315f3faf0b78b142e
6
+ metadata.gz: b17f51a848d03f45e90a23ae44f35aeaee6c6ee5bc6d0beca4b4a0c4a448e61dd418f4b2fad5a35e48754aaba63f5cdc681bb75e9d13620c4a701e29513752b3
7
+ data.tar.gz: 24f62c06c016e77d4a5f739bd11b8372ec21bebc651a51dff0a566641cf10b5ed3f6eaa69dadc0e3f1fb0882a22d22c27b30ed12c2b48a712a22f178b9415cc8
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-networkmanagement_v1
2
2
 
3
+ ### v0.64.0 (2025-07-13)
4
+
5
+ * Regenerated from discovery document revision 20250702
6
+
3
7
  ### v0.63.0 (2025-07-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20250625
@@ -1290,6 +1290,61 @@ module Google
1290
1290
  end
1291
1291
  end
1292
1292
 
1293
+ # Message describing information about the host.
1294
+ class Host
1295
+ include Google::Apis::Core::Hashable
1296
+
1297
+ # Output only. The cloud instance id of the host.
1298
+ # Corresponds to the JSON property `cloudInstanceId`
1299
+ # @return [String]
1300
+ attr_accessor :cloud_instance_id
1301
+
1302
+ # Output only. The cloud project id of the host.
1303
+ # Corresponds to the JSON property `cloudProjectId`
1304
+ # @return [String]
1305
+ attr_accessor :cloud_project_id
1306
+
1307
+ # Output only. The cloud provider of the host.
1308
+ # Corresponds to the JSON property `cloudProvider`
1309
+ # @return [String]
1310
+ attr_accessor :cloud_provider
1311
+
1312
+ # Output only. The cloud region of the host.
1313
+ # Corresponds to the JSON property `cloudRegion`
1314
+ # @return [String]
1315
+ attr_accessor :cloud_region
1316
+
1317
+ # Output only. The id of Virtual Private Cloud (VPC) of the host.
1318
+ # Corresponds to the JSON property `cloudVpcId`
1319
+ # @return [String]
1320
+ attr_accessor :cloud_vpc_id
1321
+
1322
+ # Output only. The cloud zone of the host.
1323
+ # Corresponds to the JSON property `cloudZone`
1324
+ # @return [String]
1325
+ attr_accessor :cloud_zone
1326
+
1327
+ # Output only. The operating system of the host.
1328
+ # Corresponds to the JSON property `os`
1329
+ # @return [String]
1330
+ attr_accessor :os
1331
+
1332
+ def initialize(**args)
1333
+ update!(**args)
1334
+ end
1335
+
1336
+ # Update properties of this object
1337
+ def update!(**args)
1338
+ @cloud_instance_id = args[:cloud_instance_id] if args.key?(:cloud_instance_id)
1339
+ @cloud_project_id = args[:cloud_project_id] if args.key?(:cloud_project_id)
1340
+ @cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
1341
+ @cloud_region = args[:cloud_region] if args.key?(:cloud_region)
1342
+ @cloud_vpc_id = args[:cloud_vpc_id] if args.key?(:cloud_vpc_id)
1343
+ @cloud_zone = args[:cloud_zone] if args.key?(:cloud_zone)
1344
+ @os = args[:os] if args.key?(:os)
1345
+ end
1346
+ end
1347
+
1293
1348
  # For display only. Metadata associated with a Compute Engine instance.
1294
1349
  class InstanceInfo
1295
1350
  include Google::Apis::Core::Hashable
@@ -1472,6 +1527,81 @@ module Google
1472
1527
  end
1473
1528
  end
1474
1529
 
1530
+ # Message for response to listing MonitoringPoints
1531
+ class ListMonitoringPointsResponse
1532
+ include Google::Apis::Core::Hashable
1533
+
1534
+ # The list of MonitoringPoints.
1535
+ # Corresponds to the JSON property `monitoringPoints`
1536
+ # @return [Array<Google::Apis::NetworkmanagementV1::MonitoringPoint>]
1537
+ attr_accessor :monitoring_points
1538
+
1539
+ # A token identifying a page of results the server should return.
1540
+ # Corresponds to the JSON property `nextPageToken`
1541
+ # @return [String]
1542
+ attr_accessor :next_page_token
1543
+
1544
+ def initialize(**args)
1545
+ update!(**args)
1546
+ end
1547
+
1548
+ # Update properties of this object
1549
+ def update!(**args)
1550
+ @monitoring_points = args[:monitoring_points] if args.key?(:monitoring_points)
1551
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1552
+ end
1553
+ end
1554
+
1555
+ # Message for response to listing NetworkMonitoringProviders
1556
+ class ListNetworkMonitoringProvidersResponse
1557
+ include Google::Apis::Core::Hashable
1558
+
1559
+ # The list of NetworkMonitoringProvider
1560
+ # Corresponds to the JSON property `networkMonitoringProviders`
1561
+ # @return [Array<Google::Apis::NetworkmanagementV1::NetworkMonitoringProvider>]
1562
+ attr_accessor :network_monitoring_providers
1563
+
1564
+ # A token identifying a page of results the server should return.
1565
+ # Corresponds to the JSON property `nextPageToken`
1566
+ # @return [String]
1567
+ attr_accessor :next_page_token
1568
+
1569
+ def initialize(**args)
1570
+ update!(**args)
1571
+ end
1572
+
1573
+ # Update properties of this object
1574
+ def update!(**args)
1575
+ @network_monitoring_providers = args[:network_monitoring_providers] if args.key?(:network_monitoring_providers)
1576
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1577
+ end
1578
+ end
1579
+
1580
+ # Message for response to listing NetworkPaths
1581
+ class ListNetworkPathsResponse
1582
+ include Google::Apis::Core::Hashable
1583
+
1584
+ # The list of NetworkPath
1585
+ # Corresponds to the JSON property `networkPaths`
1586
+ # @return [Array<Google::Apis::NetworkmanagementV1::NetworkPath>]
1587
+ attr_accessor :network_paths
1588
+
1589
+ # A token identifying a page of results the server should return.
1590
+ # Corresponds to the JSON property `nextPageToken`
1591
+ # @return [String]
1592
+ attr_accessor :next_page_token
1593
+
1594
+ def initialize(**args)
1595
+ update!(**args)
1596
+ end
1597
+
1598
+ # Update properties of this object
1599
+ def update!(**args)
1600
+ @network_paths = args[:network_paths] if args.key?(:network_paths)
1601
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1602
+ end
1603
+ end
1604
+
1475
1605
  # The response message for Operations.ListOperations.
1476
1606
  class ListOperationsResponse
1477
1607
  include Google::Apis::Core::Hashable
@@ -1528,6 +1658,31 @@ module Google
1528
1658
  end
1529
1659
  end
1530
1660
 
1661
+ # Message for response to listing WebPaths
1662
+ class ListWebPathsResponse
1663
+ include Google::Apis::Core::Hashable
1664
+
1665
+ # A token identifying a page of results the server should return.
1666
+ # Corresponds to the JSON property `nextPageToken`
1667
+ # @return [String]
1668
+ attr_accessor :next_page_token
1669
+
1670
+ # The list of WebPath.
1671
+ # Corresponds to the JSON property `webPaths`
1672
+ # @return [Array<Google::Apis::NetworkmanagementV1::WebPath>]
1673
+ attr_accessor :web_paths
1674
+
1675
+ def initialize(**args)
1676
+ update!(**args)
1677
+ end
1678
+
1679
+ # Update properties of this object
1680
+ def update!(**args)
1681
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1682
+ @web_paths = args[:web_paths] if args.key?(:web_paths)
1683
+ end
1684
+ end
1685
+
1531
1686
  # For display only. Metadata associated with a specific load balancer backend.
1532
1687
  class LoadBalancerBackend
1533
1688
  include Google::Apis::Core::Hashable
@@ -1744,6 +1899,120 @@ module Google
1744
1899
  end
1745
1900
  end
1746
1901
 
1902
+ # Message describing MonitoringPoint resource.
1903
+ class MonitoringPoint
1904
+ include Google::Apis::Core::Hashable
1905
+
1906
+ # Output only. Indicates if automaitic geographic location is enabled for the
1907
+ # MonitoringPoint.
1908
+ # Corresponds to the JSON property `autoGeoLocationEnabled`
1909
+ # @return [Boolean]
1910
+ attr_accessor :auto_geo_location_enabled
1911
+ alias_method :auto_geo_location_enabled?, :auto_geo_location_enabled
1912
+
1913
+ # Output only. Connection status of the MonitoringPoint.
1914
+ # Corresponds to the JSON property `connectionStatus`
1915
+ # @return [String]
1916
+ attr_accessor :connection_status
1917
+
1918
+ # Output only. The time the MonitoringPoint was created.
1919
+ # Corresponds to the JSON property `createTime`
1920
+ # @return [String]
1921
+ attr_accessor :create_time
1922
+
1923
+ # Output only. Display name of the MonitoringPoint.
1924
+ # Corresponds to the JSON property `displayName`
1925
+ # @return [String]
1926
+ attr_accessor :display_name
1927
+
1928
+ # Output only. The codes of errors detected in the MonitoringPoint.
1929
+ # Corresponds to the JSON property `errors`
1930
+ # @return [Array<String>]
1931
+ attr_accessor :errors
1932
+
1933
+ # Output only. The geographical location of the MonitoringPoint. Examples: - "
1934
+ # New York, NY, USA" - "Berlin, Germany"
1935
+ # Corresponds to the JSON property `geoLocation`
1936
+ # @return [String]
1937
+ attr_accessor :geo_location
1938
+
1939
+ # Message describing information about the host.
1940
+ # Corresponds to the JSON property `host`
1941
+ # @return [Google::Apis::NetworkmanagementV1::Host]
1942
+ attr_accessor :host
1943
+
1944
+ # Output only. The hostname of the MonitoringPoint.
1945
+ # Corresponds to the JSON property `hostname`
1946
+ # @return [String]
1947
+ attr_accessor :hostname
1948
+
1949
+ # Identifier. Name of the resource. Format: `projects/`project`/locations/`
1950
+ # location`/networkMonitoringProviders/`network_monitoring_provider`/
1951
+ # monitoringPoints/`monitoring_point``
1952
+ # Corresponds to the JSON property `name`
1953
+ # @return [String]
1954
+ attr_accessor :name
1955
+
1956
+ # Output only. The network interfaces of the MonitoringPoint.
1957
+ # Corresponds to the JSON property `networkInterfaces`
1958
+ # @return [Array<Google::Apis::NetworkmanagementV1::NetworkInterface>]
1959
+ attr_accessor :network_interfaces
1960
+
1961
+ # Output only. IP address visible when MonitoringPoint connects to the provider.
1962
+ # Corresponds to the JSON property `originatingIp`
1963
+ # @return [String]
1964
+ attr_accessor :originating_ip
1965
+
1966
+ # Output only. The provider tags of the MonitoringPoint.
1967
+ # Corresponds to the JSON property `providerTags`
1968
+ # @return [Array<Google::Apis::NetworkmanagementV1::ProviderTag>]
1969
+ attr_accessor :provider_tags
1970
+
1971
+ # Output only. Deployment type of the MonitoringPoint.
1972
+ # Corresponds to the JSON property `type`
1973
+ # @return [String]
1974
+ attr_accessor :type
1975
+
1976
+ # Output only. The time the MonitoringPoint was updated.
1977
+ # Corresponds to the JSON property `updateTime`
1978
+ # @return [String]
1979
+ attr_accessor :update_time
1980
+
1981
+ # Output only. The type of upgrade available for the MonitoringPoint.
1982
+ # Corresponds to the JSON property `upgradeType`
1983
+ # @return [String]
1984
+ attr_accessor :upgrade_type
1985
+
1986
+ # Output only. Version of the software running on the MonitoringPoint.
1987
+ # Corresponds to the JSON property `version`
1988
+ # @return [String]
1989
+ attr_accessor :version
1990
+
1991
+ def initialize(**args)
1992
+ update!(**args)
1993
+ end
1994
+
1995
+ # Update properties of this object
1996
+ def update!(**args)
1997
+ @auto_geo_location_enabled = args[:auto_geo_location_enabled] if args.key?(:auto_geo_location_enabled)
1998
+ @connection_status = args[:connection_status] if args.key?(:connection_status)
1999
+ @create_time = args[:create_time] if args.key?(:create_time)
2000
+ @display_name = args[:display_name] if args.key?(:display_name)
2001
+ @errors = args[:errors] if args.key?(:errors)
2002
+ @geo_location = args[:geo_location] if args.key?(:geo_location)
2003
+ @host = args[:host] if args.key?(:host)
2004
+ @hostname = args[:hostname] if args.key?(:hostname)
2005
+ @name = args[:name] if args.key?(:name)
2006
+ @network_interfaces = args[:network_interfaces] if args.key?(:network_interfaces)
2007
+ @originating_ip = args[:originating_ip] if args.key?(:originating_ip)
2008
+ @provider_tags = args[:provider_tags] if args.key?(:provider_tags)
2009
+ @type = args[:type] if args.key?(:type)
2010
+ @update_time = args[:update_time] if args.key?(:update_time)
2011
+ @upgrade_type = args[:upgrade_type] if args.key?(:upgrade_type)
2012
+ @version = args[:version] if args.key?(:version)
2013
+ end
2014
+ end
2015
+
1747
2016
  # For display only. Metadata associated with NAT.
1748
2017
  class NatInfo
1749
2018
  include Google::Apis::Core::Hashable
@@ -1879,6 +2148,223 @@ module Google
1879
2148
  end
1880
2149
  end
1881
2150
 
2151
+ # Message describing network interfaces.
2152
+ class NetworkInterface
2153
+ include Google::Apis::Core::Hashable
2154
+
2155
+ # Output only. The description of the interface.
2156
+ # Corresponds to the JSON property `adapterDescription`
2157
+ # @return [String]
2158
+ attr_accessor :adapter_description
2159
+
2160
+ # Output only. The IP address of the interface and subnet mask in CIDR format.
2161
+ # Examples: 192.168.1.0/24, 2001:db8::/32
2162
+ # Corresponds to the JSON property `cidr`
2163
+ # @return [String]
2164
+ attr_accessor :cidr
2165
+
2166
+ # Output only. The name of the network interface. Examples: eth0, eno1
2167
+ # Corresponds to the JSON property `interfaceName`
2168
+ # @return [String]
2169
+ attr_accessor :interface_name
2170
+
2171
+ # Output only. The IP address of the interface.
2172
+ # Corresponds to the JSON property `ipAddress`
2173
+ # @return [String]
2174
+ attr_accessor :ip_address
2175
+
2176
+ # Output only. The MAC address of the interface.
2177
+ # Corresponds to the JSON property `macAddress`
2178
+ # @return [String]
2179
+ attr_accessor :mac_address
2180
+
2181
+ # Output only. Speed of the interface in millions of bits per second.
2182
+ # Corresponds to the JSON property `speed`
2183
+ # @return [Fixnum]
2184
+ attr_accessor :speed
2185
+
2186
+ # Output only. The id of the VLAN.
2187
+ # Corresponds to the JSON property `vlanId`
2188
+ # @return [Fixnum]
2189
+ attr_accessor :vlan_id
2190
+
2191
+ def initialize(**args)
2192
+ update!(**args)
2193
+ end
2194
+
2195
+ # Update properties of this object
2196
+ def update!(**args)
2197
+ @adapter_description = args[:adapter_description] if args.key?(:adapter_description)
2198
+ @cidr = args[:cidr] if args.key?(:cidr)
2199
+ @interface_name = args[:interface_name] if args.key?(:interface_name)
2200
+ @ip_address = args[:ip_address] if args.key?(:ip_address)
2201
+ @mac_address = args[:mac_address] if args.key?(:mac_address)
2202
+ @speed = args[:speed] if args.key?(:speed)
2203
+ @vlan_id = args[:vlan_id] if args.key?(:vlan_id)
2204
+ end
2205
+ end
2206
+
2207
+ # Message describing NetworkMonitoringProvider resource.
2208
+ class NetworkMonitoringProvider
2209
+ include Google::Apis::Core::Hashable
2210
+
2211
+ # Output only. The time the NetworkMonitoringProvider was created.
2212
+ # Corresponds to the JSON property `createTime`
2213
+ # @return [String]
2214
+ attr_accessor :create_time
2215
+
2216
+ # Output only. Identifier. Name of the resource. Format: `projects/`project`/
2217
+ # locations/`location`/networkMonitoringProviders/`network_monitoring_provider``
2218
+ # Corresponds to the JSON property `name`
2219
+ # @return [String]
2220
+ attr_accessor :name
2221
+
2222
+ # Required. Type of the NetworkMonitoringProvider.
2223
+ # Corresponds to the JSON property `providerType`
2224
+ # @return [String]
2225
+ attr_accessor :provider_type
2226
+
2227
+ # Output only. Link to the provider's UI.
2228
+ # Corresponds to the JSON property `providerUri`
2229
+ # @return [String]
2230
+ attr_accessor :provider_uri
2231
+
2232
+ # Output only. State of the NetworkMonitoringProvider.
2233
+ # Corresponds to the JSON property `state`
2234
+ # @return [String]
2235
+ attr_accessor :state
2236
+
2237
+ # Output only. The time the NetworkMonitoringProvider was updated.
2238
+ # Corresponds to the JSON property `updateTime`
2239
+ # @return [String]
2240
+ attr_accessor :update_time
2241
+
2242
+ def initialize(**args)
2243
+ update!(**args)
2244
+ end
2245
+
2246
+ # Update properties of this object
2247
+ def update!(**args)
2248
+ @create_time = args[:create_time] if args.key?(:create_time)
2249
+ @name = args[:name] if args.key?(:name)
2250
+ @provider_type = args[:provider_type] if args.key?(:provider_type)
2251
+ @provider_uri = args[:provider_uri] if args.key?(:provider_uri)
2252
+ @state = args[:state] if args.key?(:state)
2253
+ @update_time = args[:update_time] if args.key?(:update_time)
2254
+ end
2255
+ end
2256
+
2257
+ # Message describing NetworkPath resource.
2258
+ class NetworkPath
2259
+ include Google::Apis::Core::Hashable
2260
+
2261
+ # Output only. The time the NetworkPath was created.
2262
+ # Corresponds to the JSON property `createTime`
2263
+ # @return [String]
2264
+ attr_accessor :create_time
2265
+
2266
+ # Output only. IP address or hostname of the network path destination.
2267
+ # Corresponds to the JSON property `destination`
2268
+ # @return [String]
2269
+ attr_accessor :destination
2270
+
2271
+ # Output only. Geographical location of the destination MonitoringPoint.
2272
+ # Corresponds to the JSON property `destinationGeoLocation`
2273
+ # @return [String]
2274
+ attr_accessor :destination_geo_location
2275
+
2276
+ # Output only. The display name of the network path.
2277
+ # Corresponds to the JSON property `displayName`
2278
+ # @return [String]
2279
+ attr_accessor :display_name
2280
+
2281
+ # Output only. Indicates if the network path is dual ended. When true, the
2282
+ # network path is measured both: from both source to destination, and from
2283
+ # destination to source. When false, the network path is measured from the
2284
+ # source through the destination back to the source (round trip measurement).
2285
+ # Corresponds to the JSON property `dualEnded`
2286
+ # @return [Boolean]
2287
+ attr_accessor :dual_ended
2288
+ alias_method :dual_ended?, :dual_ended
2289
+
2290
+ # Output only. Is monitoring enabled for the network path.
2291
+ # Corresponds to the JSON property `monitoringEnabled`
2292
+ # @return [Boolean]
2293
+ attr_accessor :monitoring_enabled
2294
+ alias_method :monitoring_enabled?, :monitoring_enabled
2295
+
2296
+ # Output only. Display name of the monitoring policy.
2297
+ # Corresponds to the JSON property `monitoringPolicyDisplayName`
2298
+ # @return [String]
2299
+ attr_accessor :monitoring_policy_display_name
2300
+
2301
+ # Output only. ID of monitoring policy.
2302
+ # Corresponds to the JSON property `monitoringPolicyId`
2303
+ # @return [String]
2304
+ attr_accessor :monitoring_policy_id
2305
+
2306
+ # Output only. The monitoring status of the network path.
2307
+ # Corresponds to the JSON property `monitoringStatus`
2308
+ # @return [String]
2309
+ attr_accessor :monitoring_status
2310
+
2311
+ # Identifier. Name of the resource. Format: `projects/`project`/locations/`
2312
+ # location`/networkMonitoringProviders/`network_monitoring_provider`/
2313
+ # networkPaths/`network_path``
2314
+ # Corresponds to the JSON property `name`
2315
+ # @return [String]
2316
+ attr_accessor :name
2317
+
2318
+ # Output only. The network protocol of the network path.
2319
+ # Corresponds to the JSON property `networkProtocol`
2320
+ # @return [String]
2321
+ attr_accessor :network_protocol
2322
+
2323
+ # Output only. The provider tags of the network path.
2324
+ # Corresponds to the JSON property `providerTags`
2325
+ # @return [Array<Google::Apis::NetworkmanagementV1::ProviderTag>]
2326
+ attr_accessor :provider_tags
2327
+
2328
+ # Output only. Link to provider's UI; link shows the NetworkPath.
2329
+ # Corresponds to the JSON property `providerUiUri`
2330
+ # @return [String]
2331
+ attr_accessor :provider_ui_uri
2332
+
2333
+ # Output only. Provider's UUID of the source MonitoringPoint. This id may not
2334
+ # point to a resource in the GCP.
2335
+ # Corresponds to the JSON property `sourceMonitoringPointId`
2336
+ # @return [String]
2337
+ attr_accessor :source_monitoring_point_id
2338
+
2339
+ # Output only. The time the NetworkPath was updated.
2340
+ # Corresponds to the JSON property `updateTime`
2341
+ # @return [String]
2342
+ attr_accessor :update_time
2343
+
2344
+ def initialize(**args)
2345
+ update!(**args)
2346
+ end
2347
+
2348
+ # Update properties of this object
2349
+ def update!(**args)
2350
+ @create_time = args[:create_time] if args.key?(:create_time)
2351
+ @destination = args[:destination] if args.key?(:destination)
2352
+ @destination_geo_location = args[:destination_geo_location] if args.key?(:destination_geo_location)
2353
+ @display_name = args[:display_name] if args.key?(:display_name)
2354
+ @dual_ended = args[:dual_ended] if args.key?(:dual_ended)
2355
+ @monitoring_enabled = args[:monitoring_enabled] if args.key?(:monitoring_enabled)
2356
+ @monitoring_policy_display_name = args[:monitoring_policy_display_name] if args.key?(:monitoring_policy_display_name)
2357
+ @monitoring_policy_id = args[:monitoring_policy_id] if args.key?(:monitoring_policy_id)
2358
+ @monitoring_status = args[:monitoring_status] if args.key?(:monitoring_status)
2359
+ @name = args[:name] if args.key?(:name)
2360
+ @network_protocol = args[:network_protocol] if args.key?(:network_protocol)
2361
+ @provider_tags = args[:provider_tags] if args.key?(:provider_tags)
2362
+ @provider_ui_uri = args[:provider_ui_uri] if args.key?(:provider_ui_uri)
2363
+ @source_monitoring_point_id = args[:source_monitoring_point_id] if args.key?(:source_monitoring_point_id)
2364
+ @update_time = args[:update_time] if args.key?(:update_time)
2365
+ end
2366
+ end
2367
+
1882
2368
  # This resource represents a long-running operation that is the result of a
1883
2369
  # network API call.
1884
2370
  class Operation
@@ -2181,6 +2667,37 @@ module Google
2181
2667
  end
2182
2668
  end
2183
2669
 
2670
+ # Message describing the provider tag.
2671
+ class ProviderTag
2672
+ include Google::Apis::Core::Hashable
2673
+
2674
+ # Output only. The category of the provider tag.
2675
+ # Corresponds to the JSON property `category`
2676
+ # @return [String]
2677
+ attr_accessor :category
2678
+
2679
+ # Output only. The resource type of the provider tag.
2680
+ # Corresponds to the JSON property `resourceType`
2681
+ # @return [String]
2682
+ attr_accessor :resource_type
2683
+
2684
+ # Output only. The value of the provider tag.
2685
+ # Corresponds to the JSON property `value`
2686
+ # @return [String]
2687
+ attr_accessor :value
2688
+
2689
+ def initialize(**args)
2690
+ update!(**args)
2691
+ end
2692
+
2693
+ # Update properties of this object
2694
+ def update!(**args)
2695
+ @category = args[:category] if args.key?(:category)
2696
+ @resource_type = args[:resource_type] if args.key?(:resource_type)
2697
+ @value = args[:value] if args.key?(:value)
2698
+ end
2699
+ end
2700
+
2184
2701
  # For display only. Metadata associated with ProxyConnection.
2185
2702
  class ProxyConnectionInfo
2186
2703
  include Google::Apis::Core::Hashable
@@ -3360,6 +3877,112 @@ module Google
3360
3877
  @uri = args[:uri] if args.key?(:uri)
3361
3878
  end
3362
3879
  end
3880
+
3881
+ # Message describing WebPath resource.
3882
+ class WebPath
3883
+ include Google::Apis::Core::Hashable
3884
+
3885
+ # Output only. The time the WebPath was created.
3886
+ # Corresponds to the JSON property `createTime`
3887
+ # @return [String]
3888
+ attr_accessor :create_time
3889
+
3890
+ # Output only. Web monitoring target.
3891
+ # Corresponds to the JSON property `destination`
3892
+ # @return [String]
3893
+ attr_accessor :destination
3894
+
3895
+ # Output only. Display name of the WebPath.
3896
+ # Corresponds to the JSON property `displayName`
3897
+ # @return [String]
3898
+ attr_accessor :display_name
3899
+
3900
+ # Output only. Monitoring interval.
3901
+ # Corresponds to the JSON property `interval`
3902
+ # @return [String]
3903
+ attr_accessor :interval
3904
+
3905
+ # Output only. Is monitoring enabled for the WebPath.
3906
+ # Corresponds to the JSON property `monitoringEnabled`
3907
+ # @return [Boolean]
3908
+ attr_accessor :monitoring_enabled
3909
+ alias_method :monitoring_enabled?, :monitoring_enabled
3910
+
3911
+ # Output only. Display name of the monitoring policy.
3912
+ # Corresponds to the JSON property `monitoringPolicyDisplayName`
3913
+ # @return [String]
3914
+ attr_accessor :monitoring_policy_display_name
3915
+
3916
+ # Output only. ID of the monitoring policy.
3917
+ # Corresponds to the JSON property `monitoringPolicyId`
3918
+ # @return [String]
3919
+ attr_accessor :monitoring_policy_id
3920
+
3921
+ # Output only. The monitoring status of the WebPath.
3922
+ # Corresponds to the JSON property `monitoringStatus`
3923
+ # @return [String]
3924
+ attr_accessor :monitoring_status
3925
+
3926
+ # Identifier. Name of the resource. Format: `projects/`project`/locations/`
3927
+ # location`/networkMonitoringProviders/`network_monitoring_provider`/webPaths/`
3928
+ # web_path``
3929
+ # Corresponds to the JSON property `name`
3930
+ # @return [String]
3931
+ attr_accessor :name
3932
+
3933
+ # Output only. The provider tags of the web path.
3934
+ # Corresponds to the JSON property `providerTags`
3935
+ # @return [Array<Google::Apis::NetworkmanagementV1::ProviderTag>]
3936
+ attr_accessor :provider_tags
3937
+
3938
+ # Output only. Link to provider's UI; link shows the WebPath.
3939
+ # Corresponds to the JSON property `providerUiUri`
3940
+ # @return [String]
3941
+ attr_accessor :provider_ui_uri
3942
+
3943
+ # Output only. Provider's UUID of the related NetworkPath.
3944
+ # Corresponds to the JSON property `relatedNetworkPathId`
3945
+ # @return [String]
3946
+ attr_accessor :related_network_path_id
3947
+
3948
+ # Output only. ID of the source MonitoringPoint.
3949
+ # Corresponds to the JSON property `sourceMonitoringPointId`
3950
+ # @return [String]
3951
+ attr_accessor :source_monitoring_point_id
3952
+
3953
+ # Output only. The time the WebPath was updated.
3954
+ # Corresponds to the JSON property `updateTime`
3955
+ # @return [String]
3956
+ attr_accessor :update_time
3957
+
3958
+ # Output only. The workflow type of the WebPath.
3959
+ # Corresponds to the JSON property `workflowType`
3960
+ # @return [String]
3961
+ attr_accessor :workflow_type
3962
+
3963
+ def initialize(**args)
3964
+ update!(**args)
3965
+ end
3966
+
3967
+ # Update properties of this object
3968
+ def update!(**args)
3969
+ @create_time = args[:create_time] if args.key?(:create_time)
3970
+ @destination = args[:destination] if args.key?(:destination)
3971
+ @display_name = args[:display_name] if args.key?(:display_name)
3972
+ @interval = args[:interval] if args.key?(:interval)
3973
+ @monitoring_enabled = args[:monitoring_enabled] if args.key?(:monitoring_enabled)
3974
+ @monitoring_policy_display_name = args[:monitoring_policy_display_name] if args.key?(:monitoring_policy_display_name)
3975
+ @monitoring_policy_id = args[:monitoring_policy_id] if args.key?(:monitoring_policy_id)
3976
+ @monitoring_status = args[:monitoring_status] if args.key?(:monitoring_status)
3977
+ @name = args[:name] if args.key?(:name)
3978
+ @provider_tags = args[:provider_tags] if args.key?(:provider_tags)
3979
+ @provider_ui_uri = args[:provider_ui_uri] if args.key?(:provider_ui_uri)
3980
+ @related_network_path_id = args[:related_network_path_id] if args.key?(:related_network_path_id)
3981
+ @source_monitoring_point_id = args[:source_monitoring_point_id] if args.key?(:source_monitoring_point_id)
3982
+ @update_time = args[:update_time] if args.key?(:update_time)
3983
+ @workflow_type = args[:workflow_type] if args.key?(:workflow_type)
3984
+ end
3985
+ end
3363
3986
  end
3364
3987
  end
3365
3988
  end